From 2015dbf73e06cb8dadd06bbfe8491575bfd00877 Mon Sep 17 00:00:00 2001 From: HungDK <> Date: Thu, 12 Mar 2026 20:58:29 +0700 Subject: [PATCH 01/16] Add PROTOCOL_ADDFRIEND and enable add friend request --- .../Prefab/UI/PlayerOptionPopup.prefab | 2 +- .../Scripts/Network/CSNetwork/GameSession.cs | 76 ++++++++++++++++++- .../Scripts/Network/CSNetwork/OctetsStream.cs | 17 +++++ .../CSNetwork/Protocols/addfriend_re.cs | 43 +++++++++++ .../CSNetwork/Protocols/addfriend_re.cs.meta | 2 + .../CSNetwork/Protocols/addfriendrqst.cs | 42 ++++++++++ .../CSNetwork/Protocols/addfriendrqst.cs.meta | 2 + .../Protocols/rpcdata/GFriendInfo.cs | 32 ++++++++ .../Protocols/rpcdata/GFriendInfo.cs.meta | 2 + .../Scripts/Network/UnityGameSession.cs | 35 ++++++++- .../Scripts/UI/Dialogs/DlgPlayerOptions.cs | 4 +- .../Scripts/UI/Login/LoginScreenUI.cs | 1 + 12 files changed, 253 insertions(+), 5 deletions(-) create mode 100644 Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs create mode 100644 Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs.meta create mode 100644 Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs create mode 100644 Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs.meta create mode 100644 Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs create mode 100644 Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs.meta diff --git a/Assets/PerfectWorld/Prefab/UI/PlayerOptionPopup.prefab b/Assets/PerfectWorld/Prefab/UI/PlayerOptionPopup.prefab index d432d82ba0..c71763bd99 100644 --- a/Assets/PerfectWorld/Prefab/UI/PlayerOptionPopup.prefab +++ b/Assets/PerfectWorld/Prefab/UI/PlayerOptionPopup.prefab @@ -509,7 +509,7 @@ MonoBehaviour: m_PressedTrigger: Pressed m_SelectedTrigger: Selected m_DisabledTrigger: Disabled - m_Interactable: 0 + m_Interactable: 1 m_TargetGraphic: {fileID: 3492245093881047436} m_OnClick: m_PersistentCalls: diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/GameSession.cs b/Assets/PerfectWorld/Scripts/Network/CSNetwork/GameSession.cs index 319935be24..c02d9adfa7 100644 --- a/Assets/PerfectWorld/Scripts/Network/CSNetwork/GameSession.cs +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/GameSession.cs @@ -51,6 +51,12 @@ namespace CSNetwork /// Raised when server sends PROTOCOL_PLAYERLOGOUT(69). public event Action PlayerLogoutReceived; + /// Raised when server sends RPC_ADDFRIENDRQST(204) — another player wants to add you as friend. Args: srcroleid, askerName. + public event Action FriendRequestReceived; + + /// Raised when server sends PROTOCOL_ADDFRIEND_RE(203). Args: retcode (0=success), message. + public event Action AddFriendResultReceived; + /// Raised when the underlying network disconnects. public event Action Disconnected; @@ -587,6 +593,14 @@ namespace CSNetwork } break; + case ProtocolType.RPC_ADDFRIENDRQST: + OnAddFriendRqst((addfriendrqst)protocol); + break; + + case ProtocolType.PROTOCOL_ADDFRIEND_RE: + OnAddFriendRe((addfriend_re)protocol); + break; + default: _logger.Log(LogType.Warning, $"Received unhandled protocol type: {protocol.GetPType()}"); break; @@ -601,6 +615,43 @@ namespace CSNetwork // PostToUnityContext(() => PlayerLogoutReceived?.Invoke(protocol)); } + private void OnAddFriendRqst(addfriendrqst p) + { + string askerName = ""; + if (p.Srcname != null && p.Srcname.Size > 0) + askerName = System.Text.Encoding.Unicode.GetString(p.Srcname.ToArray(), 0, p.Srcname.Size); + PostToUnityContext(() => FriendRequestReceived?.Invoke(p.Srcroleid, askerName)); + } + + private void OnAddFriendRe(addfriend_re p) + { + string friendName = ""; + if (p.info?.name != null && p.info.name.Size > 0) + friendName = System.Text.Encoding.Unicode.GetString(p.info.name.ToArray(), 0, p.info.name.Size); + string msg = p.retcode == 0 + ? $"Add friend success: {friendName}" + : $"Add friend failed: {GetAddFriendRetcodeMessage(p.retcode)}"; + PostToUnityContext(() => AddFriendResultReceived?.Invoke(p.retcode, msg)); + } + + /// FS_ERR server retcodes for addfriend_re. + private static string GetAddFriendRetcodeMessage(byte retcode) + { + switch (retcode) + { + case 0: return "Success"; + case 1: return "Player is offline"; + case 2: return "Request was refused"; + case 3: return "Timeout"; + case 4: return "No remaining space"; + case 5: return "Not found"; + case 6: return "Invalid parameter"; + case 7: return "Duplicate entry"; + case 8: return "Friend list has not been retrieved yet"; + default: return $"retcode={retcode}"; + } + } + // void CECGameSession::OnPrtcPlayerLogout(GNET::Protocol* pProtocol) // { // using namespace GNET; @@ -2039,6 +2090,29 @@ namespace CSNetwork SendProtocol(g); } + /// Send PROTOCOL_ADDFRIEND(202). Port of CECGameSession::friend_Add(idPlayer, szName). + public void Friend_Add(int idPlayer, string name) + { + var p = new addfriend(); + p.Srcroleid = m_iCharID; + p.Dstroleid = idPlayer; + if (!string.IsNullOrEmpty(name)) + p.Dstname = new Octets(System.Text.Encoding.Unicode.GetBytes(name)); + else + p.Dstname = new Octets(); + p.Srclsid = (int)_localsid; + SendProtocol(p); + } + + /// Send PROTOCOL_GETFRIENDS(206). Port of CECGameSession::friend_GetList(). + public void Friend_GetList() + { + var p = new getfriends(); + p.Roleid = m_iCharID; + p.Localsid = (int)_localsid; + SendProtocol(p); + } + public void c2s_SendCmdTeamKickMember(int idMember) { var g = new gamedatasend(); @@ -2047,7 +2121,7 @@ namespace CSNetwork } public void c2s_SendCmdTeamLeaveParty() - { + { var g = new gamedatasend(); g.Data = C2SCommandFactory.CreateTeamLeavePartyCommand(); SendProtocol(g); diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/OctetsStream.cs b/Assets/PerfectWorld/Scripts/Network/CSNetwork/OctetsStream.cs index 5e9d7affe4..24402c1b0b 100644 --- a/Assets/PerfectWorld/Scripts/Network/CSNetwork/OctetsStream.cs +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/OctetsStream.cs @@ -109,6 +109,23 @@ namespace CSNetwork _position += 4; } + /// Write int32 in little-endian (for GNET protocol compatibility with C++ client/server). + public void WriteInt32LE(int value) + { + var bytes = BitConverter.GetBytes(value); + _octets.Insert(_position, bytes); + _position += 4; + } + + /// Read int32 in little-endian (for GNET protocol compatibility with C++ client/server). + public int ReadInt32LE() + { + if (_position + 4 > _octets.Length) + throw new IndexOutOfRangeException("Attempt to read beyond the end of the stream."); + var bytes = ReadBytes(4); + return BitConverter.ToInt32(bytes, 0); + } + public void Write(float value) { var bytes = BitConverter.GetBytes(value); diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs new file mode 100644 index 0000000000..778976ce52 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs @@ -0,0 +1,43 @@ +using CSNetwork.Protocols.RPCData; + +namespace CSNetwork.Protocols +{ + /// PROTOCOL_ADDFRIEND_RE(203). Port of GNET::AddFriend_Re (inl/addfriend_re). + public class addfriend_re : Protocol + { + public byte retcode { get; set; } + public GFriendInfo info { get; set; } + public uint srclsid { get; set; } + + public addfriend_re() : base(ProtocolType.PROTOCOL_ADDFRIEND_RE) + { + info = new GFriendInfo(); + } + + public override Protocol Clone() => new addfriend_re + { + retcode = retcode, + info = info != null ? new GFriendInfo { rid = info.rid, cls = info.cls, gid = info.gid, name = new Octets(info.name?.ToArray() ?? System.Array.Empty()) } : new GFriendInfo(), + srclsid = srclsid + }; + + public override void Marshal(OctetsStream os) + { + os.Write(retcode); + if (info != null) info.Marshal(os); else new GFriendInfo().Marshal(os); + os.Write(srclsid); + } + + public override void Unmarshal(OctetsStream os) + { + retcode = os.ReadByte(); + info = new GFriendInfo(); + info.Unmarshal(os); + srclsid = os.ReadUInt32(); + } + + public override int PriorPolicy() => 1; + + public override bool SizePolicy(int size) => size <= 128; + } +} diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs.meta b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs.meta new file mode 100644 index 0000000000..8c52d27971 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriend_re.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 158e35cf46fa51a4cba4fa7485fdb534 \ No newline at end of file diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs new file mode 100644 index 0000000000..09c5142f92 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs @@ -0,0 +1,42 @@ +using System; + +namespace CSNetwork.Protocols +{ + /// RPC_ADDFRIENDRQST(204). Port of GNET AddFriendRqstArg; server notifies target of friend request. + public class addfriendrqst : Protocol + { + public int Srcroleid { get; set; } + public Octets Srcname { get; set; } + public uint Dstlsid { get; set; } + + public addfriendrqst() : base(ProtocolType.RPC_ADDFRIENDRQST) + { + Srcname = new Octets(); + } + + public override Protocol Clone() => new addfriendrqst + { + Srcroleid = Srcroleid, + Srcname = new Octets(Srcname.ToArray()), + Dstlsid = Dstlsid + }; + + public override void Marshal(OctetsStream os) + { + os.Write(Srcroleid); + os.Write(Srcname); + os.Write(Dstlsid); + } + + public override void Unmarshal(OctetsStream os) + { + Srcroleid = os.ReadInt32(); + Srcname = os.ReadOctets(); + Dstlsid = os.ReadUInt32(); + } + + public override int PriorPolicy() => 1; + + public override bool SizePolicy(int size) => size <= 256; + } +} diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs.meta b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs.meta new file mode 100644 index 0000000000..d935487cb5 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/addfriendrqst.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: bf82fc1afd675674588f017b6f9e0621 \ No newline at end of file diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs new file mode 100644 index 0000000000..c592b4b9f8 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs @@ -0,0 +1,32 @@ +namespace CSNetwork.Protocols.RPCData +{ + /// Port of GNET::GFriendInfo (rpcdata/gfriendinfo). + public class GFriendInfo : IMarshallable + { + public int rid; + public byte cls; + public byte gid; + public Octets name; + + public GFriendInfo() + { + name = new Octets(); + } + + public void Marshal(OctetsStream os) + { + os.Write(rid); + os.Write(cls); + os.Write(gid); + os.Write(name ?? new Octets()); + } + + public void Unmarshal(OctetsStream os) + { + rid = os.ReadInt32(); + cls = os.ReadByte(); + gid = os.ReadByte(); + name = os.ReadOctets(); + } + } +} diff --git a/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs.meta b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs.meta new file mode 100644 index 0000000000..0a4b947df7 --- /dev/null +++ b/Assets/PerfectWorld/Scripts/Network/CSNetwork/Protocols/rpcdata/GFriendInfo.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: a0bf31ab9d8853a479215aa7e1fa5e94 \ No newline at end of file diff --git a/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs b/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs index 01a1120f31..4c3501d56f 100644 --- a/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs +++ b/Assets/PerfectWorld/Scripts/Network/UnityGameSession.cs @@ -173,7 +173,9 @@ namespace BrewMonster.Network // Subscribe to unexpected disconnects _gameSession.Disconnected += OnUnexpectedDisconnect; - + _gameSession.FriendRequestReceived += OnFriendRequestReceived; + _gameSession.AddFriendResultReceived += OnAddFriendResultReceived; + _isInitialized = true; DontDestroyOnLoad(gameObject); @@ -184,6 +186,8 @@ namespace BrewMonster.Network // Tell LoginScene what to show next. LogoutFlowState.NextLoginEntry = entryTarget; _gameSession.Disconnected -= OnUnexpectedDisconnect; + _gameSession.FriendRequestReceived -= OnFriendRequestReceived; + _gameSession.AddFriendResultReceived -= OnAddFriendResultReceived; EC_ManMessageMono.Instance.CECNPCMan.Release(); if (clearSavedCreds) @@ -619,6 +623,16 @@ namespace BrewMonster.Network { Instance._gameSession.c2s_SendCmdDuelReply(accept, idInviter); } + /// Send PROTOCOL_ADDFRIEND(202). Port of CECGameSession::friend_Add. + public static void Friend_Add(int idPlayer, string name) + { + Instance._gameSession.Friend_Add(idPlayer, name ?? ""); + } + /// Send PROTOCOL_GETFRIENDS(206). Port of CECGameSession::friend_GetList(). + public static void Friend_GetList() + { + Instance._gameSession.Friend_GetList(); + } public static void c2s_CmdTeamKickMember(int idMember) { Instance._gameSession.c2s_SendCmdTeamKickMember(idMember); @@ -694,6 +708,25 @@ namespace BrewMonster.Network /// /// Handles unexpected server disconnections. Shows a message box and returns to login. /// + private void OnFriendRequestReceived(int srcroleid, string askerName) + { + string name = string.IsNullOrEmpty(askerName) ? ("Player " + srcroleid) : askerName; + CECUIManager.Instance?.ShowMessageBox( + title: "Friend Request", + message: $"{name} wants to add you as a friend.", + messageBoxType: MessageBoxType.BothYesNoButton, + onClickedYes: () => { /* TODO: accept and call friend_AddResponse */ }, + onClickedNo: () => { /* TODO: refuse */ }); + } + + private void OnAddFriendResultReceived(byte retcode, string message) + { + CECUIManager.Instance?.ShowMessageBox( + title: retcode == 0 ? "Friend added" : "Add friend failed", + message: message, + messageBoxType: MessageBoxType.YesButton); + } + private void OnUnexpectedDisconnect() { // If this was an intentional disconnect (logout), skip UI diff --git a/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPlayerOptions.cs b/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPlayerOptions.cs index 0d341b9901..9c6c348d21 100644 --- a/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPlayerOptions.cs +++ b/Assets/PerfectWorld/Scripts/UI/Dialogs/DlgPlayerOptions.cs @@ -78,8 +78,8 @@ namespace BrewMonster.UI void OnAddFriend(int characterId) { - Debug.Log("OnAddFriend: " + characterId); - // TODO: c2s add friend when available + string name = EC_ManMessageMono.Instance?.GetECManPlayer?.GetElsePlayer(characterId)?.GetName() ?? ""; + UnityGameSession.Friend_Add(characterId, name); } void OnDuel(int characterId) diff --git a/Assets/PerfectWorld/Scripts/UI/Login/LoginScreenUI.cs b/Assets/PerfectWorld/Scripts/UI/Login/LoginScreenUI.cs index 0fbd136d8b..85014f61e4 100644 --- a/Assets/PerfectWorld/Scripts/UI/Login/LoginScreenUI.cs +++ b/Assets/PerfectWorld/Scripts/UI/Login/LoginScreenUI.cs @@ -370,6 +370,7 @@ namespace BrewMonster.UI await Task.Delay(1000); UnityGameSession.RequestCheckSecurityPassWd(""); await Task.Delay(1000); + UnityGameSession.Friend_GetList(); // C++ friend_GetList(); required before Add Friend } //private void OnInventoryReceived(List inventoryData) From b26ca5c56ee9c63edd0a61e62607374cebf9e48a Mon Sep 17 00:00:00 2001 From: Tungdv Date: Fri, 13 Mar 2026 19:50:02 +0700 Subject: [PATCH 02/16] feat: add new model skin sword fly. --- .../AssetGroups/models.asset | 40 + .../models/players/通用装备/飞剑/双头龙.meta | 8 + .../通用装备/飞剑/双头龙/tcks_双头龙.meta | 8 + .../双头龙/tcks_双头龙/tcks_双头龙.controller | 72 + .../双头龙/tcks_双头龙/tcks_双头龙.controller.meta | 8 + .../飞剑/双头龙/tcks_双头龙/前进.anim | 19067 ++++ .../飞剑/双头龙/tcks_双头龙/前进.anim.meta | 8 + .../models/players/通用装备/飞剑/火凤凰.meta | 8 + .../通用装备/飞剑/火凤凰/tcks_火凤凰.meta | 8 + .../火凤凰/tcks_火凤凰/tcks_火凤凰.controller | 72 + .../火凤凰/tcks_火凤凰/tcks_火凤凰.controller.meta | 8 + .../飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim | 81943 ++++++++++++++++ .../飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim.meta | 8 + .../models/players/通用装备/飞剑/狮鹫.meta | 8 + .../players/通用装备/飞剑/狮鹫/tcks_狮鹫.meta | 8 + .../飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller | 72 + .../飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller.meta | 8 + .../通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim | 9171 ++ .../飞剑/狮鹫/tcks_狮鹫/前进.anim.meta | 8 + .../models/players/通用装备/飞剑/雕5.meta | 8 + .../players/通用装备/飞剑/雕5/tcks_雕1.meta | 8 + .../飞剑/雕5/tcks_雕1/tcks_雕1.controller | 72 + .../飞剑/雕5/tcks_雕1/tcks_雕1.controller.meta | 8 + .../通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim | 12049 +++ .../飞剑/雕5/tcks_雕1/飞行悬停.anim.meta | 8 + .../models/players/通用装备/飞剑/飞鳐.meta | 8 + .../players/通用装备/飞剑/飞鳐/tcks_飞鳐.meta | 8 + .../飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller | 72 + .../飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller.meta | 8 + .../飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim | 9017 ++ .../飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim.meta | 8 + .../models/players/通用装备/飞剑/飞鳐1.meta | 8 + .../通用装备/飞剑/飞鳐1/tcks_飞鳐.meta | 8 + .../飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller | 72 + .../飞鳐1/tcks_飞鳐/tcks_飞鳐.controller.meta | 8 + .../飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim | 60209 ++++++++++++ .../飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim.meta | 8 + .../models/players/通用装备/飞剑/飞鳐3.meta | 8 + .../通用装备/飞剑/飞鳐3/tcks_飞鳐.meta | 8 + .../飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller | 72 + .../飞鳐3/tcks_飞鳐/tcks_飞鳐.controller.meta | 8 + .../飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim | 60209 ++++++++++++ .../飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim.meta | 8 + .../models/players/通用装备/飞剑/双头龙.meta | 8 + .../players/通用装备/飞剑/双头龙/双头龙.meta | 8 + .../通用装备/飞剑/双头龙/双头龙.prefab | 4722 + .../通用装备/飞剑/双头龙/双头龙.prefab.meta | 7 + .../飞剑/双头龙/双头龙/Object01_0.mat | 136 + .../飞剑/双头龙/双头龙/Object01_0.mat.meta | 8 + .../飞剑/双头龙/双头龙/Object01_0.mesh | 1787 + .../飞剑/双头龙/双头龙/Object01_0.mesh.meta | 8 + .../飞剑/双头龙/双头龙/Object01_0.prefab | 295 + .../飞剑/双头龙/双头龙/Object01_0.prefab.meta | 7 + .../通用装备/飞剑/双头龙/双头龙/box03_0.mat | 136 + .../飞剑/双头龙/双头龙/box03_0.mat.meta | 8 + .../通用装备/飞剑/双头龙/双头龙/box03_0.mesh | 1787 + .../飞剑/双头龙/双头龙/box03_0.mesh.meta | 8 + .../飞剑/双头龙/双头龙/box03_0.prefab | 295 + .../飞剑/双头龙/双头龙/box03_0.prefab.meta | 7 + .../models/players/通用装备/飞剑/天鹅.meta | 8 + .../players/通用装备/飞剑/天鹅/天鹅.meta | 8 + .../players/通用装备/飞剑/天鹅/天鹅.prefab | 1594 + .../通用装备/飞剑/天鹅/天鹅.prefab.meta | 7 + .../通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat | 136 + .../通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat.meta | 8 + .../通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh | 725 + .../飞剑/天鹅/天鹅/白天鹅_0.mesh.meta | 8 + .../通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab | 177 + .../飞剑/天鹅/天鹅/白天鹅_0.prefab.meta | 7 + .../通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat | 137 + .../飞剑/天鹅/天鹅/白天鹅翅膀_0.mat.meta | 8 + .../通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh | 725 + .../飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh.meta | 8 + .../飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab | 177 + .../飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab.meta | 7 + .../models/players/通用装备/飞剑/火凤凰.meta | 8 + .../players/通用装备/飞剑/火凤凰/火凤凰.meta | 8 + .../通用装备/飞剑/火凤凰/火凤凰.prefab | 2194 + .../通用装备/飞剑/火凤凰/火凤凰.prefab.meta | 7 + .../飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat | 137 + .../火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat.meta | 8 + .../飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh | 977 + .../火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh.meta | 8 + .../飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab | 205 + .../火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab.meta | 7 + .../models/players/通用装备/飞剑/狮鹫.meta | 8 + .../players/通用装备/飞剑/狮鹫/狮鹫.meta | 8 + .../players/通用装备/飞剑/狮鹫/狮鹫.prefab | 3298 + .../通用装备/飞剑/狮鹫/狮鹫.prefab.meta | 7 + .../通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat | 136 + .../飞剑/狮鹫/狮鹫/Object04_0.mat.meta | 8 + .../通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh | 1175 + .../飞剑/狮鹫/狮鹫/Object04_0.mesh.meta | 8 + .../通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab | 227 + .../飞剑/狮鹫/狮鹫/Object04_0.prefab.meta | 7 + .../players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat | 136 + .../通用装备/飞剑/狮鹫/狮鹫/jj_0.mat.meta | 8 + .../players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh | 1175 + .../通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh.meta | 8 + .../通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab | 227 + .../通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab.meta | 7 + .../models/players/通用装备/飞剑/雕5.meta | 8 + .../models/players/通用装备/飞剑/雕5/雕1.meta | 8 + .../players/通用装备/飞剑/雕5/雕1/雕_0.mat | 136 + .../通用装备/飞剑/雕5/雕1/雕_0.mat.meta | 8 + .../players/通用装备/飞剑/雕5/雕1/雕_0.mesh | 959 + .../通用装备/飞剑/雕5/雕1/雕_0.mesh.meta | 8 + .../players/通用装备/飞剑/雕5/雕1/雕_0.prefab | 160 + .../通用装备/飞剑/雕5/雕1/雕_0.prefab.meta | 7 + .../players/通用装备/飞剑/雕5/雕1/雕翅_0.mat | 137 + .../通用装备/飞剑/雕5/雕1/雕翅_0.mat.meta | 8 + .../players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh | 959 + .../通用装备/飞剑/雕5/雕1/雕翅_0.mesh.meta | 8 + .../通用装备/飞剑/雕5/雕1/雕翅_0.prefab | 160 + .../通用装备/飞剑/雕5/雕1/雕翅_0.prefab.meta | 7 + .../players/通用装备/飞剑/雕5/雕5.prefab | 2114 + .../players/通用装备/飞剑/雕5/雕5.prefab.meta | 7 + .../models/players/通用装备/飞剑/飞鳐.meta | 8 + .../players/通用装备/飞剑/飞鳐/飞鳐.meta | 8 + .../players/通用装备/飞剑/飞鳐/飞鳐.prefab | 1474 + .../通用装备/飞剑/飞鳐/飞鳐.prefab.meta | 7 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat | 136 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat.meta | 8 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh | 671 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh.meta | 8 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab | 144 + .../飞剑/飞鳐/飞鳐/飞鳐_0.prefab.meta | 7 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat | 137 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat.meta | 8 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh | 671 + .../飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh.meta | 8 + .../通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab | 144 + .../飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab.meta | 7 + .../models/players/通用装备/飞剑/飞鳐1.meta | 8 + .../players/通用装备/飞剑/飞鳐1/飞鳐1.meta | 8 + .../players/通用装备/飞剑/飞鳐1/飞鳐1.prefab | 1474 + .../通用装备/飞剑/飞鳐1/飞鳐1.prefab.meta | 7 + .../通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat | 136 + .../通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat.meta | 8 + .../通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh | 671 + .../飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh.meta | 8 + .../通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab | 144 + .../飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab.meta | 7 + .../通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat | 137 + .../飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat.meta | 8 + .../通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh | 671 + .../飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh.meta | 8 + .../通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab | 144 + .../飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab.meta | 7 + .../models/players/通用装备/飞剑/飞鳐3.meta | 8 + .../players/通用装备/飞剑/飞鳐3/飞鳐1.meta | 8 + .../通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat | 136 + .../通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat.meta | 8 + .../通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh | 671 + .../飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh.meta | 8 + .../通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab | 144 + .../飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab.meta | 7 + .../通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat | 137 + .../飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat.meta | 8 + .../通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh | 671 + .../飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh.meta | 8 + .../通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab | 144 + .../飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab.meta | 7 + .../players/通用装备/飞剑/飞鳐3/飞鳐3.prefab | 1474 + .../通用装备/飞剑/飞鳐3/飞鳐3.prefab.meta | 7 + .../models/players/通用装备/飞剑/双头龙.meta | 8 + .../通用装备/飞剑/双头龙/textures.meta | 8 + .../通用装备/飞剑/双头龙/textures/双头龙.png | Bin 0 -> 280753 bytes .../飞剑/双头龙/textures/双头龙.png.meta | 143 + .../飞剑/双头龙/textures/双头龙翅膀.png | Bin 0 -> 62471 bytes .../飞剑/双头龙/textures/双头龙翅膀.png.meta | 143 + .../models/players/通用装备/飞剑/天鹅.meta | 8 + .../players/通用装备/飞剑/天鹅/textures.meta | 8 + .../通用装备/飞剑/天鹅/textures/白天鹅.png | Bin 0 -> 76297 bytes .../飞剑/天鹅/textures/白天鹅.png.meta | 143 + .../飞剑/天鹅/textures/白天鹅翅膀.png | Bin 0 -> 58027 bytes .../飞剑/天鹅/textures/白天鹅翅膀.png.meta | 143 + .../models/players/通用装备/飞剑/火凤凰.meta | 8 + .../通用装备/飞剑/火凤凰/textures.meta | 8 + .../飞剑/火凤凰/textures/妖族飞行兽凤凰a.png | Bin 0 -> 337658 bytes .../飞剑/火凤凰/textures/妖族飞行兽凤凰a.png.meta | 143 + .../models/players/通用装备/飞剑/狮鹫.meta | 8 + .../players/通用装备/飞剑/狮鹫/textures.meta | 8 + .../通用装备/飞剑/狮鹫/textures/狮鹫.png | Bin 0 -> 323279 bytes .../通用装备/飞剑/狮鹫/textures/狮鹫.png.meta | 143 + .../通用装备/飞剑/狮鹫/textures/狮鹫透明.png | Bin 0 -> 86247 bytes .../飞剑/狮鹫/textures/狮鹫透明.png.meta | 143 + .../models/players/通用装备/飞剑/雕5.meta | 8 + .../players/通用装备/飞剑/雕5/textures.meta | 8 + .../players/通用装备/飞剑/雕5/textures/雕.png | Bin 0 -> 182282 bytes .../通用装备/飞剑/雕5/textures/雕.png.meta | 143 + .../通用装备/飞剑/雕5/textures/雕翅.png | Bin 0 -> 99300 bytes .../通用装备/飞剑/雕5/textures/雕翅.png.meta | 143 + .../models/players/通用装备/飞剑/飞鳐.meta | 8 + .../players/通用装备/飞剑/飞鳐/textures.meta | 8 + .../通用装备/飞剑/飞鳐/textures/飞鳐.png | Bin 0 -> 314491 bytes .../通用装备/飞剑/飞鳐/textures/飞鳐.png.meta | 143 + .../通用装备/飞剑/飞鳐/textures/飞鳐尾巴.png | Bin 0 -> 50938 bytes .../飞剑/飞鳐/textures/飞鳐尾巴.png.meta | 143 + .../models/players/通用装备/飞剑/飞鳐1.meta | 8 + .../players/通用装备/飞剑/飞鳐1/textures.meta | 8 + .../飞剑/飞鳐1/textures/飞鳐尾巴高.png | Bin 0 -> 25099 bytes .../飞剑/飞鳐1/textures/飞鳐尾巴高.png.meta | 143 + .../通用装备/飞剑/飞鳐1/textures/飞鳐高.png | Bin 0 -> 399580 bytes .../飞剑/飞鳐1/textures/飞鳐高.png.meta | 143 + .../models/players/通用装备/飞剑/飞鳐3.meta | 8 + .../players/通用装备/飞剑/飞鳐3/textures.meta | 8 + .../飞剑/飞鳐3/textures/飞鳐尾巴高.png | Bin 0 -> 25115 bytes .../飞剑/飞鳐3/textures/飞鳐尾巴高.png.meta | 143 + .../通用装备/飞剑/飞鳐3/textures/飞鳐高.png | Bin 0 -> 285045 bytes .../飞剑/飞鳐3/textures/飞鳐高.png.meta | 143 + 211 files changed, 292707 insertions(+) create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller.meta create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim create mode 100644 Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab create mode 100644 Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙翅膀.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙翅膀.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures/白天鹅.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures/白天鹅.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures/白天鹅翅膀.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures/白天鹅翅膀.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures/妖族飞行兽凤凰a.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures/妖族飞行兽凤凰a.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/狮鹫.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/狮鹫/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/狮鹫/textures/狮鹫.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/狮鹫/textures/狮鹫.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/狮鹫/textures/狮鹫透明.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/狮鹫/textures/狮鹫透明.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/雕5.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/雕5/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/雕5/textures/雕.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/雕5/textures/雕.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/雕5/textures/雕翅.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/雕5/textures/雕翅.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐/textures/飞鳐.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐/textures/飞鳐.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐/textures/飞鳐尾巴.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐/textures/飞鳐尾巴.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐1.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐1/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐1/textures/飞鳐尾巴高.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐1/textures/飞鳐尾巴高.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐1/textures/飞鳐高.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐1/textures/飞鳐高.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐3.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐3/textures.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐3/textures/飞鳐尾巴高.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐3/textures/飞鳐尾巴高.png.meta create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐3/textures/飞鳐高.png create mode 100644 Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/飞鳐3/textures/飞鳐高.png.meta diff --git a/Assets/AddressableAssetsData/AssetGroups/models.asset b/Assets/AddressableAssetsData/AssetGroups/models.asset index 39f9d169a7..072c467856 100644 --- a/Assets/AddressableAssetsData/AssetGroups/models.asset +++ b/Assets/AddressableAssetsData/AssetGroups/models.asset @@ -6734,6 +6734,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 4e1db9614941acd468268ffb6421b5db + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u72EE\u9E6B/\u72EE\u9E6B.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: 4e5dc7295da5f804e98944d996111584 m_Address: "models/npcs/\u602A\u7269/2014/\u5E7D\u51A5\u9A91\u5175/\u5E7D\u51A5\u9A91\u5175.ecm" m_ReadOnly: 0 @@ -7904,6 +7909,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 5c09e2e6af540944f90d2cbde9923ad4 + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u706B\u51E4\u51F0/\u706B\u51E4\u51F0.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: 5c358dc787249ff4891db2d7bfecf774 m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u5982\u610F/\u5982\u610F.ecm" m_ReadOnly: 0 @@ -11186,6 +11196,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 80976ca065b4fe848ade2a8dff4fcea8 + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u96D55/\u96D55.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: 80ccab9676ccf49a1980ce07d1044a3a m_Address: "models/weapons/\u4EBA\u7269/\u5315\u9996/\u5315\u99961/14\u54C1\u5315\u9996/14\u54C1\u5315\u9996_\u53F3_\u7279\u54C1.ecm" m_ReadOnly: 0 @@ -13573,6 +13588,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 9c95e354c230d294a97aa1d302d4497c + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u98DE\u9CD03/\u98DE\u9CD03.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: 9c9f57522c02a4181ba55388a113fc3b m_Address: "models/weapons/\u4EBA\u7269/\u65A7\u9524/\u53CC\u624B\u957F\u65A7/\u66B4\u88C2\u957F\u65A7/\u66B4\u88C2\u957F\u65A7\u6781\u54C1.ecm" m_ReadOnly: 0 @@ -14432,6 +14452,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: a5fd8e1d3fa1cf4448bc6c9731a8e9e0 + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u98DE\u9CD0/\u98DE\u9CD0.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: a600db573801b48f7931883495888fbe m_Address: "models/weapons/\u4EBA\u7269/\u5510\u5200/\u7EC6\u5200\u8FC7\u6E212/\u7EC6\u5200\u8FC7\u6E212\u91D1.ecm" m_ReadOnly: 0 @@ -15441,6 +15466,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: b32a5b206ae625c4f8ca31c0281953f0 + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u53CC\u5934\u9F99/\u53CC\u5934\u9F99.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: b337a538bc3274b4ea18b9d3602cef7f m_Address: "models/players/\u88C5\u5907/\u5973/\u91D1\u6C64\u6218\u7532/\u5973\u901A\u7528\u91D1\u6C64\u6218\u7532.ecm" m_ReadOnly: 0 @@ -18540,6 +18570,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: d7a978604f9e83b40b807d49cdbb9850 + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u5929\u9E45/\u5929\u9E45.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: d7b352e9ff12d4019a81b1644a08ca17 m_Address: "models/weapons/\u4EBA\u7269/\u5F13\u5F29/\u5F13/\u706D\u5F71\u4E4B\u5F13/\u706D\u5F71\u4E4B\u5F13\u6781\u54C1.ecm" m_ReadOnly: 0 @@ -18833,6 +18868,11 @@ MonoBehaviour: - equipment - models FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: daa22df71d7835446a6b74eafc509b0f + m_Address: "models/players/\u901A\u7528\u88C5\u5907/\u98DE\u5251/\u98DE\u9CD01/\u98DE\u9CD01.ecm" + m_ReadOnly: 0 + m_SerializedLabels: [] + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: dab674e052ab6435faf663ffc8c61ec0 m_Address: "models/weapons/\u4EBA\u7269/\u65F6\u88C5\u6B66\u5668/\u901A\u7528/2014\u82B1\u5315\u9996/2014\u82B1\u5315\u9996_\u53F3\u624B.ecm" m_ReadOnly: 0 diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙.meta new file mode 100644 index 0000000000..42597e8614 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46772f02b7f1b53419f0f362ffccc78d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙.meta new file mode 100644 index 0000000000..caa2b65f0f --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9503fab3dabdae746b25099610a132b9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller new file mode 100644 index 0000000000..405b12331e --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "tcks_\u53CC\u5934\u9F99" + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 5637416138544840100} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &2971824856920604677 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u524D\u8FDB" + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: c364b5a7192bf27498680ac5e70b94c2, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &5637416138544840100 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 2971824856920604677} + m_Position: {x: 339.5, y: 300.5, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 2971824856920604677} diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller.meta new file mode 100644 index 0000000000..3fed6d2202 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/tcks_双头龙.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c046ac6e2f0266945bd6fdd333888e17 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim new file mode 100644 index 0000000000..2a9846f236 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim @@ -0,0 +1,19067 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u524D\u8FDB" + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.5206376, y: -0.47847387, z: -0.5206368, w: 0.47847322} + inSlope: {x: -0.011928467, y: -0.012958803, z: 0.011929361, w: 0.012958803} + outSlope: {x: -0.011928467, y: -0.012958803, z: 0.011929361, w: 0.012958803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.5198426, y: -0.47933748, z: -0.5198418, w: 0.47933683} + inSlope: {x: -0.01276606, y: -0.01384201, z: 0.012766507, w: 0.013841786} + outSlope: {x: -0.01276606, y: -0.01384201, z: 0.012766507, w: 0.013841786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.51893604, y: -0.4803188, z: -0.5189352, w: 0.48031813} + inSlope: {x: -0.013990924, y: -0.015114499, z: 0.013991371, w: 0.015114052} + outSlope: {x: -0.013990924, y: -0.015114499, z: 0.013991371, w: 0.015114052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.51797783, y: -0.48135203, z: -0.51797694, w: 0.48135132} + inSlope: {x: -0.014312906, y: -0.015402719, z: 0.014313802, w: 0.015402719} + outSlope: {x: -0.014312906, y: -0.015402719, z: 0.014313802, w: 0.015402719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.51702833, y: -0.48237178, z: -0.5170274, w: 0.4823711} + inSlope: {x: -0.013726191, y: -0.014714714, z: 0.013726639, w: 0.014714714} + outSlope: {x: -0.013726191, y: -0.014714714, z: 0.013726639, w: 0.014714714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.5161483, y: -0.4833133, z: -0.5161474, w: 0.48331258} + inSlope: {x: -0.01222272, y: -0.013056738, z: 0.01222272, w: 0.013056515} + outSlope: {x: -0.01222272, y: -0.013056738, z: 0.01222272, w: 0.013056515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.5153992, y: -0.48411205, z: -0.51539826, w: 0.48411134} + inSlope: {x: -0.009797134, y: -0.010434164, z: 0.00979624, w: 0.010434164} + outSlope: {x: -0.009797134, y: -0.010434164, z: 0.00979624, w: 0.010434164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.5148425, y: -0.48470402, z: -0.5148417, w: 0.4847033} + inSlope: {x: -0.0064449655, y: -0.006849006, z: 0.0064445185, w: 0.0068492293} + outSlope: {x: -0.0064449655, y: -0.006849006, z: 0.0064445185, w: 0.0068492293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.5145402, y: -0.48502493, z: -0.5145393, w: 0.48502424} + inSlope: {x: -0.0020991303, y: -0.0022288167, z: 0.0020995773, w: 0.002228593} + outSlope: {x: -0.0020991303, y: -0.0022288167, z: 0.0020995773, w: 0.002228593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.5145627, y: -0.4850011, z: -0.51456183, w: 0.48500034} + inSlope: {x: 0.0031634534, y: 0.0033591008, z: -0.0031639005, w: -0.0033591008} + outSlope: {x: 0.0031634534, y: 0.0033591008, z: -0.0031639005, w: -0.0033591008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.51496184, y: -0.4845772, z: -0.514961, w: 0.48457652} + inSlope: {x: 0.00825342, y: 0.008776637, z: -0.008252973, w: -0.008776413} + outSlope: {x: 0.00825342, y: 0.008776637, z: -0.008252973, w: -0.008776413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.5156628, y: -0.4838313, z: -0.51566184, w: 0.48383057} + inSlope: {x: 0.012122104, y: 0.01292549, z: -0.012122552, w: -0.012925489} + outSlope: {x: 0.012122104, y: 0.01292549, z: -0.012122552, w: -0.012925489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.51657754, y: -0.48285443, z: -0.51657677, w: 0.48285374} + inSlope: {x: 0.014676479, y: 0.01570592, z: -0.014677374, w: -0.015706144} + outSlope: {x: 0.014676479, y: 0.01570592, z: -0.014677374, w: -0.015706144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.51761895, y: -0.4817379, z: -0.5176181, w: 0.48173717} + inSlope: {x: 0.015923698, y: 0.017111223, z: -0.01592325, w: -0.017111223} + outSlope: {x: 0.015923698, y: 0.017111223, z: -0.01592325, w: -0.017111223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.51869994, y: -0.48057374, z: -0.5186991, w: 0.48057306} + inSlope: {x: 0.015873171, y: 0.017131355, z: -0.015873171, w: -0.01713046} + outSlope: {x: 0.015873171, y: 0.017131355, z: -0.015873171, w: -0.01713046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.5197346, y: -0.47945455, z: -0.5197338, w: 0.47945392} + inSlope: {x: 0.015525709, y: 0.016793953, z: -0.015525709, w: -0.01679306} + outSlope: {x: 0.015525709, y: 0.016793953, z: -0.015525709, w: -0.01679306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.5204888, y: 0.47863415, z: 0.5204896, w: 0.4786348} + inSlope: {x: 0.003974665, y: -0.004323477, z: 0.003973771, w: -0.0043225824} + outSlope: {x: 0.003974665, y: -0.004323477, z: 0.003973771, w: -0.0043225824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.5207537, y: 0.47834602, z: 0.5207544, w: 0.47834674} + inSlope: {x: 0.004247006, y: -0.00462332, z: 0.004246559, w: -0.00462332} + outSlope: {x: 0.004247006, y: -0.00462332, z: 0.004246559, w: -0.00462332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.52105486, y: 0.47801793, z: 0.5210556, w: 0.47801858} + inSlope: {x: 0.004642325, y: -0.005059781, z: 0.0046414305, w: -0.0050600045} + outSlope: {x: 0.004642325, y: -0.005059781, z: 0.0046414305, w: -0.0050600045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.52137244, y: 0.47767162, z: 0.52137303, w: 0.4776723} + inSlope: {x: 0.0047357897, y: -0.0051688976, z: 0.0047357897, w: -0.0051693446} + outSlope: {x: 0.0047357897, y: -0.0051688976, z: 0.0047357897, w: -0.0051693446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.5216861, y: 0.477329, z: 0.5216868, w: 0.47732958} + inSlope: {x: 0.0045287395, y: -0.0049495497, z: 0.0045291865, w: -0.004949773} + outSlope: {x: 0.0045287395, y: -0.0049495497, z: 0.0045291865, w: -0.004949773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.52197605, y: 0.47701192, z: 0.5219767, w: 0.47701257} + inSlope: {x: 0.0040229615, y: -0.004401512, z: 0.0040225144, w: -0.0044010645} + outSlope: {x: 0.0040229615, y: -0.004401512, z: 0.0040225144, w: -0.0044010645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.5222223, y: 0.47674233, z: 0.52222294, w: 0.47674298} + inSlope: {x: 0.0032175635, y: -0.003524339, z: 0.0032175635, w: -0.0035234448} + outSlope: {x: 0.0032175635, y: -0.003524339, z: 0.0032175635, w: -0.0035234448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.5224049, y: 0.47654217, z: 0.52240556, w: 0.47654295} + inSlope: {x: 0.0021129935, y: -0.002316914, z: 0.0021138878, w: -0.0023166905} + outSlope: {x: 0.0021129935, y: -0.002316914, z: 0.0021138878, w: -0.0023166905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.5225039, y: 0.47643352, z: 0.5225047, w: 0.4764342} + inSlope: {x: 0.0006873377, y: -0.0007541933, z: 0.00068823213, w: -0.0007553113} + outSlope: {x: 0.0006873377, y: -0.0007541933, z: 0.00068823213, w: -0.0007553113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.5224965, y: 0.47644165, z: 0.5224973, w: 0.47644228} + inSlope: {x: -0.0010370438, y: 0.0011369919, z: -0.0010370438, w: 0.0011367681} + outSlope: {x: -0.0010370438, y: 0.0011369919, z: -0.0010370438, w: 0.0011367681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.5223657, y: 0.47658506, z: 0.52236646, w: 0.47658572} + inSlope: {x: -0.0027073147, y: 0.0029673586, z: -0.002707762, w: 0.0029671346} + outSlope: {x: -0.0027073147, y: 0.0029673586, z: -0.002707762, w: 0.0029671346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.5221357, y: 0.47683716, z: 0.5221364, w: 0.47683775} + inSlope: {x: -0.003984057, y: 0.0043623834, z: -0.003984504, w: 0.0043623834} + outSlope: {x: -0.003984057, y: 0.0043623834, z: -0.003984504, w: 0.0043623834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.5218347, y: 0.4771665, z: 0.5218354, w: 0.47716716} + inSlope: {x: -0.0048364094, y: 0.005288523, z: -0.0048364094, w: 0.0052889707} + outSlope: {x: -0.0048364094, y: 0.005288523, z: -0.0048364094, w: 0.0052889707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.52149105, y: 0.47754204, z: 0.52149177, w: 0.4775427} + inSlope: {x: -0.0052630305, y: 0.0057473425, z: -0.0052630305, w: 0.005747566} + outSlope: {x: -0.0052630305, y: 0.0057473425, z: -0.0052630305, w: 0.005747566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.5211332, y: 0.47793254, z: 0.5211339, w: 0.47793323} + inSlope: {x: -0.0052630333, y: 0.005738848, z: -0.0052630333, w: 0.005738848} + outSlope: {x: -0.0052630333, y: 0.005738848, z: -0.0052630333, w: 0.005738848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.52078956, y: 0.47830695, z: 0.5207903, w: 0.4783076} + inSlope: {x: -0.005156156, y: 0.005618108, z: -0.005156156, w: 0.005617661} + outSlope: {x: -0.005156156, y: 0.005618108, z: -0.005156156, w: 0.005617661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.011516517, y: 0.08768967, z: -0.007462874, w: 0.99605334} + inSlope: {x: 0.00072268036, y: -0.0005991289, z: -0.008264127, w: -0.0000035775563} + outSlope: {x: 0.00072268036, y: -0.0005991289, z: -0.008264127, w: -0.0000035775563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.011468356, y: 0.08764974, z: -0.008013619, w: 0.9960531} + inSlope: {x: 0.0007797744, y: 0.00023701292, z: -0.008844961, w: -0.00008362535} + outSlope: {x: 0.0007797744, y: 0.00023701292, z: -0.008844961, w: -0.00008362535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.011412584, y: 0.08772126, z: -0.008641781, w: 0.9960422} + inSlope: {x: 0.00085128343, y: 0.0001202953, z: -0.009672744, w: -0.00008496693} + outSlope: {x: 0.00085128343, y: 0.0001202953, z: -0.009672744, w: -0.00008496693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.011354892, y: 0.087665774, z: -0.009302858, w: 0.9960418} + inSlope: {x: 0.0008587042, y: -0.0009896414, z: -0.00986249, w: 0.000004919142} + outSlope: {x: 0.0008587042, y: -0.0009896414, z: -0.00986249, w: 0.000004919142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.011298131, y: 0.08758935, z: -0.0099563105, w: 0.99604285} + inSlope: {x: 0.00085771224, y: 0.00254968, z: -0.009478115, w: -0.00030945864} + outSlope: {x: 0.00085771224, y: 0.00254968, z: -0.009478115, w: -0.00030945864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.011240571, y: 0.08800561, z: -0.010566155, w: 0.9960005} + inSlope: {x: 0.00091277284, y: 0.01573817, z: -0.008575143, w: -0.0014811079} + outSlope: {x: 0.00091277284, y: 0.01573817, z: -0.008575143, w: -0.0014811079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.011176472, y: 0.08968703, z: -0.011099255, w: 0.99584544} + inSlope: {x: 0.0011482695, y: 0.04808033, z: -0.00725756, w: -0.0044719437} + outSlope: {x: 0.0011482695, y: 0.04808033, z: -0.00725756, w: -0.0044719437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.011087523, y: 0.09441403, z: -0.011533485, w: 0.9954045} + inSlope: {x: 0.0011510993, y: 0.063946396, z: -0.0051266504, w: -0.0060813967} + outSlope: {x: 0.0011510993, y: 0.063946396, z: -0.0051266504, w: -0.0060813967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.011023046, y: 0.09821017, z: -0.011782564, w: 0.9950349} + inSlope: {x: 0.00034671527, y: 0.01785132, z: -0.0016355084, w: -0.0017301941} + outSlope: {x: 0.00034671527, y: 0.01785132, z: -0.0016355084, w: -0.0017301941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.011041311, y: 0.09679336, z: -0.011751475, w: 0.9951739} + inSlope: {x: -0.0007083211, y: -0.04297556, z: 0.002643373, w: 0.0041401265} + outSlope: {x: -0.0007083211, y: -0.04297556, z: 0.002643373, w: 0.0041401265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.011117456, y: 0.09248214, z: -0.01143024, w: 0.9955867} + inSlope: {x: -0.0013677371, y: -0.074485704, z: 0.0064881966, w: 0.0069283824} + outSlope: {x: -0.0013677371, y: -0.074485704, z: 0.0064881966, w: 0.0069283824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.0112236105, y: 0.08686548, z: -0.010886691, w: 0.9960973} + inSlope: {x: -0.00165738, y: -0.086008996, z: 0.009291692, w: 0.007572346} + outSlope: {x: -0.00165738, y: -0.086008996, z: 0.009291692, w: 0.007572346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.011338361, y: 0.08101837, z: -0.010191791, w: 0.996596} + inSlope: {x: -0.0016534391, y: -0.08138534, z: 0.011025373, w: 0.0067445887} + outSlope: {x: -0.0016534391, y: -0.08138534, z: 0.011025373, w: 0.0067445887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.01144399, y: 0.076017976, z: -0.009417166, w: 0.9969963} + inSlope: {x: -0.0014193251, y: -0.060587347, z: 0.011680466, w: 0.004772458} + outSlope: {x: -0.0014193251, y: -0.060587347, z: 0.011680466, w: 0.004772458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.011527536, y: 0.07294294, z: -0.008634951, w: 0.9972321} + inSlope: {x: -0.0007502945, y: 0.010726156, z: 0.010852846, w: -0.0007392145} + outSlope: {x: -0.0007502945, y: 0.010726156, z: 0.010852846, w: -0.0007392145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.011543994, y: 0.077447616, z: -0.007970637, w: 0.99689776} + inSlope: {x: -0.00024694935, y: 0.067594275, z: 0.009968279, w: -0.005016631} + outSlope: {x: -0.00024694935, y: 0.067594275, z: 0.009968279, w: -0.005016631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.011567384, y: -0.024332222, z: -0.019052953, w: 0.9994554} + inSlope: {x: 0.000047556343, y: 0.0024946746, z: 0.000028844048, w: 0.000060818456} + outSlope: {x: 0.000047556343, y: 0.0024946746, z: 0.000028844048, w: 0.000060818456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.011570553, y: -0.02416597, z: -0.01905103, w: 0.99945945} + inSlope: {x: -0.000010893367, y: -0.00057168177, z: -0.0000066520124, w: -0.000013863017} + outSlope: {x: -0.000010893367, y: -0.00057168177, z: -0.0000066520124, w: -0.000013863017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.011565932, y: -0.024408419, z: -0.01905384, w: 0.99945354} + inSlope: {x: -0.00010649515, y: -0.00558638, z: -0.00006464754, w: -0.00013728868} + outSlope: {x: -0.00010649515, y: -0.00558638, z: -0.00006464754, w: -0.00013728868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.011556359, y: -0.024910554, z: -0.019059647, w: 0.99944115} + inSlope: {x: -0.0001591733, y: -0.008345404, z: -0.00009649619, w: -0.00020839264} + outSlope: {x: -0.0001591733, y: -0.008345404, z: -0.00009649619, w: -0.00020839264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.011544717, y: -0.025520742, z: -0.0190667, w: 0.99942577} + inSlope: {x: -0.0002626779, y: -0.013765516, z: -0.00015893576, w: -0.0003555197} + outSlope: {x: -0.0002626779, y: -0.013765516, z: -0.00015893576, w: -0.0003555197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.011521348, y: -0.0267453, z: -0.01908083, w: 0.99939376} + inSlope: {x: -0.00055511505, y: -0.02906114, z: -0.0003345294, w: -0.0007986893} + outSlope: {x: -0.00055511505, y: -0.02906114, z: -0.0003345294, w: -0.0007986893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.011470728, y: -0.029394178, z: -0.019111289, w: 0.9993193} + inSlope: {x: -0.0012631495, y: -0.065972656, z: -0.0007547803, w: -0.0020561998} + outSlope: {x: -0.0012631495, y: -0.065972656, z: -0.0007547803, w: -0.0020561998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.011352988, y: -0.035538517, z: -0.019181432, w: 0.9991197} + inSlope: {x: -0.0016217225, y: -0.08449499, z: -0.00096057355, w: -0.0029617683} + outSlope: {x: -0.0016217225, y: -0.08449499, z: -0.00096057355, w: -0.0029617683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.011254575, y: -0.040656157, z: -0.01923932, w: 0.99892455} + inSlope: {x: -0.00063146633, y: -0.03284399, z: -0.00037168834, w: -0.0012400699} + outSlope: {x: -0.00063146633, y: -0.03284399, z: -0.00037168834, w: -0.0012400699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.0112688225, y: -0.039916154, z: -0.019230973, w: 0.9989544} + inSlope: {x: 0.00064307265, y: 0.03343617, z: 0.00037803303, w: 0.0012861312} + outSlope: {x: 0.00064307265, y: 0.03343617, z: 0.00037803303, w: 0.0012861312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.0113402875, y: -0.036199592, z: -0.019188933, w: 0.999096} + inSlope: {x: 0.0012694242, y: 0.066122055, z: 0.0007511608, w: 0.0023500065} + outSlope: {x: 0.0012694242, y: 0.066122055, z: 0.0007511608, w: 0.0023500065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.011438019, y: -0.031103026, z: -0.019130854, w: 0.99926764} + inSlope: {x: 0.0015260517, y: 0.07971965, z: 0.0009125145, w: 0.002464042} + outSlope: {x: 0.0015260517, y: 0.07971965, z: 0.0009125145, w: 0.002464042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.011543688, y: -0.025574103, z: -0.019067308, w: 0.9994244} + inSlope: {x: 0.0015092329, y: 0.07909302, z: 0.00091283594, w: 0.0020441266} + outSlope: {x: 0.0015092329, y: 0.07909302, z: 0.00091283594, w: 0.0020441266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.011639178, y: -0.020561058, z: -0.019009186, w: 0.9995401} + inSlope: {x: 0.0012222033, y: 0.06423463, z: 0.0007468845, w: 0.0013684148} + outSlope: {x: 0.0012222033, y: 0.06423463, z: 0.0007468845, w: 0.0013684148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.011706591, y: -0.017012542, z: -0.018967759, w: 0.9996068} + inSlope: {x: 0.00025856897, y: 0.013601154, z: 0.00015854424, w: 0.000267422} + outSlope: {x: 0.00025856897, y: 0.013601154, z: 0.00015854424, w: 0.000267422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.011673641, y: -0.018748216, z: -0.018988054, w: 0.99957573} + inSlope: {x: -0.00049441576, y: -0.026044428, z: -0.00030453966, w: -0.00046597698} + outSlope: {x: -0.00049441576, y: -0.026044428, z: -0.00030453966, w: -0.00046597698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.004324164, y: 0.041643783, z: -0.010912509, w: 0.99906355} + inSlope: {x: -0.0013470617, y: -0.12314877, z: -0.0005269908, w: 0.0046266746} + outSlope: {x: -0.0013470617, y: -0.12314877, z: -0.0005269908, w: 0.0046266746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.0042343917, y: 0.033436798, z: -0.010947629, w: 0.9993719} + inSlope: {x: -0.0013034425, y: -0.11900184, z: -0.0005041908, w: 0.004014912} + outSlope: {x: -0.0013034425, y: -0.11900184, z: -0.0005041908, w: 0.004014912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.0041504335, y: 0.025782535, z: -0.01097971, w: 0.9995987} + inSlope: {x: -0.001219216, y: -0.1110094, z: -0.00046092467, w: 0.0028920062} + outSlope: {x: -0.001219216, y: -0.1110094, z: -0.00046092467, w: 0.0028920062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.0040718876, y: 0.018640826, z: -0.011009064, w: 0.99975735} + inSlope: {x: -0.0011646063, y: -0.10576263, z: -0.0004306483, w: 0.0019815187} + outSlope: {x: -0.0011646063, y: -0.10576263, z: -0.0004306483, w: 0.0019815187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.003995208, y: 0.0116858855, z: -0.011037109, w: 0.9998628} + inSlope: {x: -0.0011049864, y: -0.10011024, z: -0.00040013436, w: 0.0011984815} + outSlope: {x: -0.0011049864, y: -0.10011024, z: -0.00040013436, w: 0.0011984815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.0039246087, y: 0.005297562, z: -0.011062396, w: 0.9999171} + inSlope: {x: -0.0009992631, y: -0.09033127, z: -0.00035468113, w: 0.0005120378} + outSlope: {x: -0.0009992631, y: -0.09033127, z: -0.00035468113, w: 0.0005120378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.0038620206, y: -0.00035398448, z: -0.011084383, w: 0.99993104} + inSlope: {x: -0.0009557592, y: -0.086214095, z: -0.00033258687, w: -0.00003890592} + outSlope: {x: -0.0009557592, y: -0.086214095, z: -0.00033258687, w: -0.00003890592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.0037972196, y: -0.00619355, z: -0.011106725, w: 0.9999119} + inSlope: {x: -0.0007246488, y: -0.06526872, z: -0.00024866103, w: -0.00030677536} + outSlope: {x: -0.0007246488, y: -0.06526872, z: -0.00024866103, w: -0.00030677536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0037654352, y: -0.009053376, z: -0.011117526, w: 0.99989015} + inSlope: {x: 0.000033017524, y: 0.0029744655, z: 0.00001132668, w: 0.000017887942} + outSlope: {x: 0.000033017524, y: 0.0029744655, z: 0.00001132668, w: 0.000017887942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.0038016203, y: -0.005797099, z: -0.011105215, w: 0.9999143} + inSlope: {x: 0.0007935886, y: 0.071490094, z: 0.00027278866, w: 0.00030632832} + outSlope: {x: 0.0007935886, y: 0.071490094, z: 0.00027278866, w: 0.00030632832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.0038712092, y: 0.00047523316, z: -0.0110811675, w: 0.999931} + inSlope: {x: 0.001174404, y: 0.10599944, z: 0.00041097862, w: -0.00013415833} + outSlope: {x: 0.001174404, y: 0.10599944, z: 0.00041097862, w: -0.00013415833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0039581517, y: 0.008331118, z: -0.011050438, w: 0.9998964} + inSlope: {x: 0.001364354, y: 0.123465456, z: 0.0004888326, w: -0.0010746089} + outSlope: {x: 0.001364354, y: 0.123465456, z: 0.0004888326, w: -0.0010746089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.004053058, y: 0.016931413, z: -0.011016013, w: 0.99978775} + inSlope: {x: 0.0014141516, y: 0.12833953, z: 0.0005197729, w: -0.002167552} + outSlope: {x: 0.0014141516, y: 0.12833953, z: 0.0005197729, w: -0.002167552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.004146638, y: 0.025436943, z: -0.010981159, w: 0.9996075} + inSlope: {x: 0.0013253689, y: 0.12062572, z: 0.0004993624, w: -0.003013196} + outSlope: {x: 0.0013253689, y: 0.12062572, z: 0.0004993624, w: -0.003013196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.004229711, y: 0.033009104, z: -0.010949455, w: 0.99938613} + inSlope: {x: 0.0010399858, y: 0.094880976, z: 0.00039998756, w: -0.003014986} + outSlope: {x: 0.0010399858, y: 0.094880976, z: 0.00039998756, w: -0.003014986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.004285253, y: 0.03808322, z: -0.010927847, w: 0.99920565} + inSlope: {x: 0.0008334313, y: 0.076138996, z: 0.00032424417, w: -0.0027082118} + outSlope: {x: 0.0008334313, y: 0.076138996, z: 0.00032424417, w: -0.0027082118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.010839135, y: 0.22450611, z: 0.037690625, w: 0.9736832} + inSlope: {x: 0.007326947, y: 0.047874637, z: 0.0020543558, w: -0.011120833} + outSlope: {x: 0.007326947, y: 0.047874637, z: 0.0020543558, w: -0.011120833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.010350847, y: 0.22769661, z: 0.037827533, w: 0.97294205} + inSlope: {x: 0.007439157, y: 0.04112859, z: 0.0020335051, w: -0.00960529} + outSlope: {x: 0.007439157, y: 0.04112859, z: 0.0020335051, w: -0.00960529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.009847602, y: 0.22998796, z: 0.03796166, w: 0.97240293} + inSlope: {x: 0.0075279097, y: 0.03126291, z: 0.0019053835, w: -0.007385415} + outSlope: {x: 0.0075279097, y: 0.03126291, z: 0.0019053835, w: -0.007385415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.0093474835, y: 0.23186351, z: 0.038081493, w: 0.9719577} + inSlope: {x: 0.0074564023, y: 0.028180297, z: 0.0017227608, w: -0.0067182025} + outSlope: {x: 0.0074564023, y: 0.028180297, z: 0.0017227608, w: -0.0067182025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.00885377, y: 0.233744, z: 0.03819128, w: 0.9715075} + inSlope: {x: 0.0072675757, y: 0.028079685, z: 0.0016472972, w: -0.006754427} + outSlope: {x: 0.0072675757, y: 0.028079685, z: 0.0016472972, w: -0.006754427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.00837882, y: 0.23560613, z: 0.038301054, w: 0.9710574} + inSlope: {x: 0.0070285555, y: 0.029476378, z: 0.0017958772, w: -0.0071653975} + outSlope: {x: 0.0070285555, y: 0.029476378, z: 0.0017958772, w: -0.0071653975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.007916964, y: 0.23767278, z: 0.038430646, w: 0.97055244} + inSlope: {x: 0.007486939, y: 0.043998115, z: 0.0025145463, w: -0.010854749} + outSlope: {x: 0.007486939, y: 0.043998115, z: 0.0025145463, w: -0.010854749} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.007380917, y: 0.24147046, z: 0.038636208, w: 0.96961063} + inSlope: {x: 0.006519539, y: 0.045681804, z: 0.0025853706, w: -0.011391383} + outSlope: {x: 0.006519539, y: 0.045681804, z: 0.0025853706, w: -0.011391383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.007048002, y: 0.24376151, z: 0.03877524, w: 0.96903414} + inSlope: {x: 0.0012508401, y: -0.0005501751, z: 0.00052028225, w: 0.00012566568} + outSlope: {x: 0.0012508401, y: -0.0005501751, z: 0.00052028225, w: 0.00012566568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.007214198, y: 0.24139713, z: 0.038705554, w: 0.9696274} + inSlope: {x: -0.0047481013, y: -0.041589092, z: -0.0019959689, w: 0.010378938} + outSlope: {x: -0.0047481013, y: -0.041589092, z: -0.0019959689, w: 0.010378938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.007680856, y: 0.23821828, z: 0.038509205, w: 0.9704175} + inSlope: {x: -0.008275703, y: -0.04661096, z: -0.0035001067, w: 0.011518385} + outSlope: {x: -0.008275703, y: -0.04661096, z: -0.0035001067, w: 0.011518385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.008317231, y: 0.23518455, z: 0.03823904, w: 0.9711626} + inSlope: {x: -0.0101571, y: -0.043052204, z: -0.0043251542, w: 0.010516228} + outSlope: {x: -0.0101571, y: -0.043052204, z: -0.0043251542, w: 0.010516228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.009034652, y: 0.23248003, z: 0.037932724, w: 0.97181916} + inSlope: {x: -0.01073898, y: -0.036728766, z: -0.004538941, w: 0.0088741295} + outSlope: {x: -0.01073898, y: -0.036728766, z: -0.004538941, w: 0.0088741295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.009748584, y: 0.23028913, z: 0.037634064, w: 0.9723454} + inSlope: {x: -0.010089194, y: -0.027636055, z: -0.0040447055, w: 0.006611769} + outSlope: {x: -0.010089194, y: -0.027636055, z: -0.0040447055, w: 0.006611769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.010379398, y: 0.22879654, z: 0.037393622, w: 0.9727004} + inSlope: {x: -0.0072853854, y: -0.022989493, z: -0.0015077995, w: 0.0053878007} + outSlope: {x: -0.0072853854, y: -0.022989493, z: -0.0015077995, w: 0.0053878007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.010719622, y: 0.22722496, z: 0.037433095, w: 0.9730635} + inSlope: {x: -0.0051051755, y: -0.023582147, z: 0.0005923095, w: 0.005448621} + outSlope: {x: -0.0051051755, y: -0.023582147, z: 0.0005923095, w: 0.005448621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.01178775, y: -0.0024176377, z: 0.0042808056, w: 0.99991846} + inSlope: {x: -0.000059574697, y: 0.013880662, z: 0.00016353345, w: 0.000026831673} + outSlope: {x: -0.000059574697, y: 0.013880662, z: 0.00016353345, w: 0.000026831673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.01178378, y: -0.0014925908, z: 0.004291704, w: 0.99992025} + inSlope: {x: -0.00006376015, y: 0.014839701, z: 0.00017483206, w: 0.00002101814} + outSlope: {x: -0.00006376015, y: 0.014839701, z: 0.00017483206, w: 0.00002101814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.0117792515, y: -0.00043971703, z: 0.004304108, w: 0.99992126} + inSlope: {x: -0.0000698881, y: 0.016231563, z: 0.00019113018, w: 0.000006707916} + outSlope: {x: -0.0000698881, y: 0.016231563, z: 0.00019113018, w: 0.000006707916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.0117744645, y: 0.0006708455, z: 0.004317179, w: 0.99992114} + inSlope: {x: -0.00007159304, y: 0.01657126, z: 0.00019505018, w: -0.00001073267} + outSlope: {x: -0.00007159304, y: 0.01657126, z: 0.00019505018, w: -0.00001073267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.011769709, y: 0.0017689953, z: 0.0043301056, w: 0.99991983} + inSlope: {x: -0.0000687352, y: 0.015858836, z: 0.00018661292, w: -0.00002727887} + outSlope: {x: -0.0000687352, y: 0.015858836, z: 0.00018661292, w: -0.00002727887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.011765303, y: 0.0027846016, z: 0.0043420517, w: 0.9999175} + inSlope: {x: -0.00006118878, y: 0.014095216, z: 0.00016580784, w: -0.000038458726} + outSlope: {x: -0.00006118878, y: 0.014095216, z: 0.00016580784, w: -0.000038458726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.011761554, y: 0.0036476864, z: 0.0043522054, w: 0.9999147} + inSlope: {x: -0.000049079586, y: 0.011279624, z: 0.00013265952, w: -0.000040247498} + outSlope: {x: -0.000049079586, y: 0.011279624, z: 0.00013265952, w: -0.000040247498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.0117587615, y: 0.004288015, z: 0.0043597333, w: 0.99991214} + inSlope: {x: -0.00003237967, y: 0.0074113314, z: 0.00008712604, w: -0.000030856412} + outSlope: {x: -0.00003237967, y: 0.0074113314, z: 0.00008712604, w: -0.000030856412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.011757238, y: 0.0046355114, z: 0.004363818, w: 0.9999106} + inSlope: {x: -0.00001055798, y: 0.0024132563, z: 0.000028372388, w: -0.000010732664} + outSlope: {x: -0.00001055798, y: 0.0024132563, z: 0.000028372388, w: -0.000010732664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.011757354, y: 0.0046096677, z: 0.004363515, w: 0.9999107} + inSlope: {x: 0.000015917327, y: -0.0036364207, z: -0.000042703574, w: 0.000016098998} + outSlope: {x: 0.000015917327, y: -0.0036364207, z: -0.000042703574, w: 0.000016098998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.011759359, y: 0.0041508283, z: 0.0043581263, w: 0.99991274} + inSlope: {x: 0.000041386444, y: -0.009494551, z: -0.00011165187, w: 0.000038011523} + outSlope: {x: 0.000041386444, y: -0.009494551, z: -0.00011165187, w: 0.000038011523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0117628705, y: 0.0033441791, z: 0.0043486333, w: 0.9999158} + inSlope: {x: 0.000060755585, y: -0.013965619, z: -0.00016428114, w: 0.000045166656} + outSlope: {x: 0.000060755585, y: -0.013965619, z: -0.00016428114, w: 0.000045166656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.011767457, y: 0.0022894111, z: 0.00433623, w: 0.99991876} + inSlope: {x: 0.00007349363, y: -0.016941518, z: -0.0001993265, w: 0.00003756435} + outSlope: {x: 0.00007349363, y: -0.016941518, z: -0.0001993265, w: 0.00003756435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.011772666, y: 0.001086117, z: 0.004322066, w: 0.9999208} + inSlope: {x: 0.000079649515, y: -0.018421235, z: -0.0002168194, w: 0.00001922936} + outSlope: {x: 0.000079649515, y: -0.018421235, z: -0.0002168194, w: 0.00001922936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.011778073, y: -0.00016587721, z: 0.004307331, w: 0.9999213} + inSlope: {x: 0.00007931415, y: -0.018405128, z: -0.00021666927, w: -0.0000026831722} + outSlope: {x: 0.00007931415, y: -0.018405128, z: -0.00021666927, w: -0.0000026831722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.011783238, y: -0.0013670233, z: 0.004293187, w: 0.9999204} + inSlope: {x: 0.00007749047, y: -0.01802364, z: -0.00021223586, w: -0.000013415844} + outSlope: {x: 0.00007749047, y: -0.01802364, z: -0.00021223586, w: -0.000013415844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.021602131, y: -0.010283017, z: -0.020755678, w: 0.9994983} + inSlope: {x: 0.0012501044, y: 0.06032954, z: 0.001306395, w: 0.0004990691} + outSlope: {x: 0.0012501044, y: 0.06032954, z: 0.001306395, w: 0.0004990691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.021685442, y: -0.0062624835, z: -0.020668617, w: 0.99953157} + inSlope: {x: 0.0013332963, y: 0.06449685, z: 0.0013995091, w: 0.00038592884} + outSlope: {x: 0.0013332963, y: 0.06449685, z: 0.0013995091, w: 0.00038592884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.02177984, y: -0.001686506, z: -0.020569144, w: 0.99954975} + inSlope: {x: 0.001451551, y: 0.07054494, z: 0.001537161, w: 0.000110009816} + outSlope: {x: 0.001451551, y: 0.07054494, z: 0.001537161, w: 0.000110009816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.021878913, y: 0.0031401534, z: -0.020463735, w: 0.99954623} + inSlope: {x: 0.00147454, y: 0.0720209, z: 0.0015763326, w: -0.00022449167} + outSlope: {x: 0.00147454, y: 0.0720209, z: 0.0015763326, w: -0.00022449167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.021976376, y: 0.007912853, z: -0.020359041, w: 0.9995198} + inSlope: {x: 0.0014041491, y: 0.06892441, z: 0.0015149974, w: -0.0005330559} + outSlope: {x: 0.0014041491, y: 0.06892441, z: 0.0015149974, w: -0.0005330559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.022066066, y: 0.012326792, z: -0.020261807, w: 0.9994752} + inSlope: {x: 0.0012421526, y: 0.06125548, z: 0.001351841, w: -0.0007351877} + outSlope: {x: 0.0012421526, y: 0.06125548, z: 0.001351841, w: -0.0007351877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.022141937, y: 0.016077334, z: -0.02017886, w: 0.99942183} + inSlope: {x: 0.0009901862, y: 0.049016096, z: 0.0010854247, w: -0.0007651496} + outSlope: {x: 0.0009901862, y: 0.049016096, z: 0.0010854247, w: -0.0007651496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.022198044, y: 0.01885994, z: -0.020117136, w: 0.9993732} + inSlope: {x: 0.00064885116, y: 0.03220838, z: 0.00071477034, w: -0.0005871662} + outSlope: {x: 0.00064885116, y: 0.03220838, z: 0.00071477034, w: -0.0005871662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.02222842, y: 0.020370252, z: -0.020083591, w: 0.9993436} + inSlope: {x: 0.00021093599, y: 0.010489013, z: 0.0002329603, w: -0.0002052622} + outSlope: {x: 0.00021093599, y: 0.010489013, z: 0.0002329603, w: -0.0002052622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.022226159, y: 0.020257976, z: -0.020086085, w: 0.99934584} + inSlope: {x: -0.00031795521, y: -0.015803194, z: -0.00035107558, w: 0.0003054338} + outSlope: {x: -0.00031795521, y: -0.015803194, z: -0.00035107558, w: 0.0003054338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.02218604, y: 0.018263912, z: -0.020130385, w: 0.9993843} + inSlope: {x: -0.0008317396, y: -0.041261207, z: -0.00091516937, w: 0.0007231133} + outSlope: {x: -0.0008317396, y: -0.041261207, z: -0.00091516937, w: 0.0007231133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0221153, y: 0.014758444, z: -0.020208064, w: 0.9994422} + inSlope: {x: -0.0012278706, y: -0.06069228, z: -0.001342059, w: 0.00086353277} + outSlope: {x: -0.0012278706, y: -0.06069228, z: -0.001342059, w: 0.00086353277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.022022383, y: 0.010174499, z: -0.020309262, w: 0.9994994} + inSlope: {x: -0.0014965786, y: -0.073625945, z: -0.0016216254, w: 0.0007257969} + outSlope: {x: -0.0014965786, y: -0.073625945, z: -0.0016216254, w: 0.0007257969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.021915827, y: 0.004945158, z: -0.020424204, w: 0.99953896} + inSlope: {x: -0.0016361165, y: -0.08006078, z: -0.0017550703, w: 0.00038771753} + outSlope: {x: -0.0016361165, y: -0.08006078, z: -0.0017550703, w: 0.00038771753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.021804312, y: -0.0004964634, z: -0.020543188, w: 0.99955106} + inSlope: {x: -0.0016438593, y: -0.07999419, z: -0.0017450232, w: -0.000031303716} + outSlope: {x: -0.0016438593, y: -0.07999419, z: -0.0017450232, w: -0.000031303716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.021696724, y: -0.005716924, z: -0.02065679, w: 0.9995348} + inSlope: {x: -0.0016144011, y: -0.07833493, z: -0.0017046507, w: -0.00024416836} + outSlope: {x: -0.0016144011, y: -0.07833493, z: -0.0017046507, w: -0.00024416836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.012506021, y: 0.043405972, z: 0.018770693, w: 0.9988029} + inSlope: {x: -0.0005883962, y: 0.03132961, z: -0.00039300014, w: -0.0013943525} + outSlope: {x: -0.0005883962, y: 0.03132961, z: -0.00039300014, w: -0.0013943525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.012545234, y: 0.045493867, z: 0.018744502, w: 0.99871} + inSlope: {x: -0.0006285388, y: 0.033490926, z: -0.0004209078, w: -0.0015307467} + outSlope: {x: -0.0006285388, y: 0.033490926, z: -0.0004209078, w: -0.0015307467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.012589796, y: 0.047869835, z: 0.018714592, w: 0.9985989} + inSlope: {x: -0.00068638753, y: 0.03662704, z: -0.00046193783, w: -0.0017583685} + outSlope: {x: -0.00068638753, y: 0.03662704, z: -0.00046193783, w: -0.0017583685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.012636719, y: 0.05037573, z: 0.018682932, w: 0.9984756} + inSlope: {x: -0.00069955894, y: 0.037389122, z: -0.0004732855, w: -0.0018858192} + outSlope: {x: -0.00069955894, y: 0.037389122, z: -0.0004732855, w: -0.0018858192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.012683038, y: 0.05285327, z: 0.01865151, w: 0.9983475} + inSlope: {x: -0.0006684651, y: 0.035777718, z: -0.00045455934, w: -0.0018907387} + outSlope: {x: -0.0006684651, y: 0.035777718, z: -0.00045455934, w: -0.0018907387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.012725816, y: 0.05514439, z: 0.018622346, w: 0.9982236} + inSlope: {x: -0.00059323845, y: 0.031794496, z: -0.0004053259, w: -0.0017507665} + outSlope: {x: -0.00059323845, y: 0.031794496, z: -0.0004053259, w: -0.0017507665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.012762108, y: 0.057091024, z: 0.018597485, w: 0.99811417} + inSlope: {x: -0.00047409593, y: 0.025440553, z: -0.00032522212, w: -0.0014489099} + outSlope: {x: -0.00047409593, y: 0.025440553, z: -0.00032522212, w: -0.0014489099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.012789006, y: 0.05853525, z: 0.018578999, w: 0.9980305} + inSlope: {x: -0.00031121934, y: 0.016716266, z: -0.00021415022, w: -0.0009748838} + outSlope: {x: -0.00031121934, y: 0.016716266, z: -0.00021415022, w: -0.0009748838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.012803589, y: 0.059319064, z: 0.018568942, w: 0.99798423} + inSlope: {x: -0.00010126157, y: 0.00544325, z: -0.000069846166, w: -0.00032108554} + outSlope: {x: -0.00010126157, y: 0.00544325, z: -0.000069846166, w: -0.00032108554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.012802503, y: 0.05926076, z: 0.01856969, w: 0.9979877} + inSlope: {x: 0.00015266098, y: -0.008201433, z: 0.000105174535, w: 0.00048296998} + outSlope: {x: 0.00015266098, y: -0.008201433, z: 0.000105174535, w: 0.00048296998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.012783241, y: 0.05822593, z: 0.01858296, w: 0.9980486} + inSlope: {x: 0.00039879954, y: -0.021414435, z: 0.00027420005, w: 0.0012409644} + outSlope: {x: 0.00039879954, y: -0.021414435, z: 0.00027420005, w: 0.0012409644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.012749349, y: 0.05640652, z: 0.018606236, w: 0.9981531} + inSlope: {x: 0.0005872923, y: -0.031501286, z: 0.00040227952, w: 0.0017713378} + outSlope: {x: 0.0005872923, y: -0.031501286, z: 0.00040227952, w: 0.0017713378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.012704964, y: 0.05402726, z: 0.018636579, w: 0.9982847} + inSlope: {x: 0.0007135269, y: -0.03821736, z: 0.00048638, w: 0.0020620143} + outSlope: {x: 0.0007135269, y: -0.03821736, z: 0.00048638, w: 0.0020620143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.012654246, y: 0.051312692, z: 0.018671064, w: 0.9984279} + inSlope: {x: 0.00077722385, y: -0.04156124, z: 0.000526823, w: 0.0021335646} + outSlope: {x: 0.00077722385, y: -0.04156124, z: 0.000526823, w: 0.0021335646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.012601371, y: 0.048487738, z: 0.018706797, w: 0.9985691} + inSlope: {x: 0.00077799277, y: -0.041531578, z: 0.0005243077, w: 0.0020186363} + outSlope: {x: 0.00077799277, y: -0.041531578, z: 0.0005243077, w: 0.0020186363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.0125505505, y: 0.045777127, z: 0.018740946, w: 0.998697} + inSlope: {x: 0.0007625789, y: -0.040673707, z: 0.00051242934, w: 0.00191936} + outSlope: {x: 0.0007625789, y: -0.040673707, z: 0.00051242934, w: 0.00191936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.014796031, y: -0.044996757, z: -0.045856252, w: 0.99782443} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.023374531, y: 0.32149142, z: 0.053804804, w: 0.94509363} + inSlope: {x: -0.0032514955, y: 0.033000275, z: -0.0052376543, w: -0.011051966} + outSlope: {x: -0.0032514955, y: 0.033000275, z: -0.0052376543, w: -0.011051966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.02359122, y: 0.32369065, z: 0.05345575, w: 0.9443571} + inSlope: {x: -0.0034144414, y: 0.035264637, z: -0.005610809, w: -0.011861833} + outSlope: {x: -0.0034144414, y: 0.035264637, z: -0.005610809, w: -0.011861833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.023829628, y: 0.3261917, z: 0.053056963, w: 0.9435126} + inSlope: {x: -0.003604233, y: 0.038539883, z: -0.0061601307, w: -0.013071939} + outSlope: {x: -0.003604233, y: 0.038539883, z: -0.0061601307, w: -0.013071939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.024071613, y: 0.32882747, z: 0.052634694, w: 0.9426148} + inSlope: {x: -0.0035384684, y: 0.039313093, z: -0.00631134, w: -0.013451163} + outSlope: {x: -0.0035384684, y: 0.039313093, z: -0.00631134, w: -0.013451163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.024301255, y: 0.33143157, z: 0.05221575, w: 0.9417198} + inSlope: {x: -0.0032531172, y: 0.03759185, z: -0.006058397, w: -0.012973562} + outSlope: {x: -0.0032531172, y: 0.03759185, z: -0.006058397, w: -0.012973562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.024505207, y: 0.33383793, z: 0.051827196, w: 0.9408856} + inSlope: {x: -0.0027822205, y: 0.03338419, z: -0.005397833, w: -0.011613194} + outSlope: {x: -0.0027822205, y: 0.03338419, z: -0.005397833, w: -0.011613194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.024672085, y: 0.3358812, z: 0.051496297, w: 0.9401719} + inSlope: {x: -0.002152612, y: 0.026698176, z: -0.0043273326, w: -0.009349046} + outSlope: {x: -0.002152612, y: 0.026698176, z: -0.0043273326, w: -0.009349046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.02479212, y: 0.3373964, z: 0.051250424, w: 0.9396395} + inSlope: {x: -0.0013789379, y: 0.017535834, z: -0.002846588, w: -0.006169941} + outSlope: {x: -0.0013789379, y: 0.017535834, z: -0.002846588, w: -0.006169941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.024855878, y: 0.33821848, z: 0.051116887, w: 0.93934953} + inSlope: {x: -0.00044300192, y: 0.0057086595, z: -0.0009273973, w: -0.0020137161} + outSlope: {x: -0.00044300192, y: 0.0057086595, z: -0.0009273973, w: -0.0020137161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.024851166, y: 0.3381573, z: 0.051126815, w: 0.9393711} + inSlope: {x: 0.000669464, y: -0.008602679, z: 0.0013974267, w: 0.0030328727} + outSlope: {x: 0.000669464, y: -0.008602679, z: 0.0013974267, w: 0.0030328727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.024766648, y: 0.33707187, z: 0.051303145, w: 0.9397538} + inSlope: {x: 0.0017788275, y: -0.022465706, z: 0.0036455845, w: 0.007894769} + outSlope: {x: 0.0017788275, y: -0.022465706, z: 0.0036455845, w: 0.007894769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.024614073, y: 0.33516294, z: 0.05161272, w: 0.94042337} + inSlope: {x: 0.0026999374, y: -0.033064675, z: 0.0053540375, w: 0.011549247} + outSlope: {x: 0.0026999374, y: -0.033064675, z: 0.0053540375, w: 0.011549247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.024406785, y: 0.33266482, z: 0.05201676, w: 0.9412931} + inSlope: {x: 0.0034098865, y: -0.040142197, z: 0.006480185, w: 0.013908198} + outSlope: {x: 0.0034098865, y: -0.040142197, z: 0.006480185, w: 0.013908198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.024159584, y: 0.32981256, z: 0.052476436, w: 0.94227713} + inSlope: {x: 0.0038758616, y: -0.04368843, z: 0.007024194, w: 0.014996218} + outSlope: {x: 0.0038758616, y: -0.04368843, z: 0.007024194, w: 0.014996218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.023890188, y: 0.32684177, z: 0.052952986, w: 0.9432919} + inSlope: {x: 0.004047586, y: -0.043692477, z: 0.0069914125, w: 0.014852227} + outSlope: {x: 0.004047586, y: -0.043692477, z: 0.0069914125, w: 0.014852227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.023620099, y: 0.32398897, z: 0.05340829, w: 0.9442567} + inSlope: {x: 0.0040527866, y: -0.042807274, z: 0.0068320185, w: 0.014477484} + outSlope: {x: 0.0040527866, y: -0.042807274, z: 0.0068320185, w: 0.014477484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.000000021182402, y: -0.6906856, z: 0.000001925228, w: 0.7231552} + inSlope: {x: 0.00000044811003, y: -0.29052886, z: 0.0000008415877, w: -0.28511873} + outSlope: {x: 0.00000044811003, y: -0.29052886, z: 0.0000008415877, w: -0.28511873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.000000008680932, y: -0.71004725, z: 0.0000019813137, w: 0.7041541} + inSlope: {x: 0.00000022018394, y: -0.27765054, z: 0.0000006654522, w: -0.27948672} + outSlope: {x: 0.00000022018394, y: -0.27765054, z: 0.0000006654522, w: -0.27948672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.000000008164973, y: -0.7276924, z: 0.0000020139232, w: 0.6859036} + inSlope: {x: 0.00000026295302, y: -0.10147646, z: 0.00000015300658, w: -0.104330905} + outSlope: {x: 0.00000026295302, y: -0.10147646, z: 0.00000015300658, w: -0.104330905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.00000004372882, y: -0.7235726, z: 0.0000020017073, w: 0.69024825} + inSlope: {x: -0.0000003349948, y: 0.34663618, z: -0.000000732377, w: 0.34454596} + outSlope: {x: -0.0000003349948, y: 0.34663618, z: -0.000000732377, w: 0.34454596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.00000003648503, y: -0.6814908, z: 0.0000019163078, w: 0.73182666} + inSlope: {x: -0.00000023578659, y: 0.7354938, z: -0.0000019977526, w: 0.67480904} + outSlope: {x: -0.00000023578659, y: 0.7354938, z: -0.0000019977526, w: 0.67480904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.000000012301844, y: -0.6255418, z: 0.0000017354355, w: 0.78019065} + inSlope: {x: 0.0000003727218, y: 0.6420157, z: -0.000001918192, w: 0.5343237} + outSlope: {x: 0.0000003727218, y: 0.6420157, z: -0.000001918192, w: 0.5343237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000013193457, y: -0.59591925, z: 0.0000016606402, w: 0.8030444} + inSlope: {x: 0.0000003026778, y: 0.21557811, z: -0.0000005816108, w: 0.16650836} + outSlope: {x: 0.0000003026778, y: 0.21557811, z: -0.0000005816108, w: 0.16650836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000052644484, y: -0.5968083, z: 0.000001657915, w: 0.80238384} + inSlope: {x: -0.00000013317171, y: -0.10139283, z: 0.00000017131529, w: -0.07658114} + outSlope: {x: -0.00000013317171, y: -0.10139283, z: 0.00000017131529, w: -0.07658114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.0000000045564374, y: -0.6094335, z: 0.0000016834741, w: 0.7928372} + inSlope: {x: -0.00000038922158, y: -0.18368876, z: 0.0000005342508, w: -0.14108229} + outSlope: {x: -0.00000038922158, y: -0.18368876, z: 0.0000005342508, w: -0.14108229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 7.6678225e-10, y: -0.6212914, z: 0.000001729123, w: 0.7835796} + inSlope: {x: -0.00000020137868, y: -0.21452326, z: 0.0000006854781, w: -0.17123124} + outSlope: {x: -0.00000020137868, y: -0.21452326, z: 0.0000006854781, w: -0.17123124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.000000031397352, y: -0.63802636, z: 0.0000017748386, w: 0.7700145} + inSlope: {x: -0.00000013179935, y: -0.22473037, z: 0.0000006688417, w: -0.18540502} + outSlope: {x: -0.00000013179935, y: -0.22473037, z: 0.0000006688417, w: -0.18540502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000016800195, y: -0.65124476, z: 0.0000018182701, w: 0.75886774} + inSlope: {x: 0.00000033418462, y: -0.19122621, z: 0.00000062279435, w: -0.16393885} + outSlope: {x: 0.00000033418462, y: -0.19122621, z: 0.00000062279435, w: -0.16393885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.00000001314467, y: -0.6635141, z: 0.0000018578481, w: 0.7481638} + inSlope: {x: 0.00000027364052, y: -0.17643303, z: 0.00000041317622, w: -0.15629004} + outSlope: {x: 0.00000027364052, y: -0.17643303, z: 0.00000041317622, w: -0.15629004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.000000019672164, y: -0.67476076, z: 0.0000018733406, w: 0.7380365} + inSlope: {x: -0.00000001266427, y: -0.15615849, z: 0.00000026634564, w: -0.14247033} + outSlope: {x: -0.00000001266427, y: -0.15615849, z: 0.00000026634564, w: -0.14247033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000011456703, y: -0.6843278, z: 0.0000018933482, w: 0.72917455} + inSlope: {x: -0.00000019343325, y: -0.10806098, z: 0.0000002128287, w: -0.10076724} + outSlope: {x: -0.00000019343325, y: -0.10806098, z: 0.0000002128287, w: -0.10076724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.0000000061097176, y: -0.68916374, z: 0.0000019017076, w: 0.7246057} + inSlope: {x: -0.0000002635906, y: -0.07256541, z: 0.00000012543576, w: -0.06855764} + outSlope: {x: -0.0000002635906, y: -0.07256541, z: 0.00000012543576, w: -0.06855764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Bip01 Ponytail1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.063878834, y: 0.07990791, z: -0.711984, w: 0.6947036} + inSlope: {x: 1.2707042, y: -0.73679084, z: -0.07740311, w: 0.018472712} + outSlope: {x: 1.2707042, y: -0.73679084, z: -0.07740311, w: 0.018472712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.020804523, y: 0.03080606, z: -0.71714234, w: 0.69593465} + inSlope: {x: 0.59497005, y: -0.600482, z: -0.036433835, w: 0.017732155} + outSlope: {x: 0.59497005, y: -0.600482, z: -0.036433835, w: 0.017732155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.015422171, y: -0.00012776998, z: -0.7168401, w: 0.697067} + inSlope: {x: -0.0046133287, y: -0.021352619, z: -0.0049370257, w: -0.004054264} + outSlope: {x: -0.0046133287, y: -0.021352619, z: -0.0049370257, w: -0.004054264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.020189632, y: 0.02796006, z: -0.7178004, w: 0.6953943} + inSlope: {x: -0.05310353, y: 0.082669914, z: -0.006059036, w: -0.0059709367} + outSlope: {x: -0.05310353, y: 0.082669914, z: -0.006059036, w: -0.0059709367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.008344232, y: 0.01089096, z: -0.7176477, w: 0.6962712} + inSlope: {x: -0.31826833, y: 0.35684234, z: 0.030508958, w: 0.004382954} + outSlope: {x: -0.31826833, y: 0.35684234, z: 0.030508958, w: 0.004382954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.022230985, y: 0.07552204, z: -0.713734, w: 0.69597846} + inSlope: {x: 0.0681456, y: 0.17913222, z: 0.0057902876, w: -0.0011694144} + outSlope: {x: 0.0681456, y: 0.17913222, z: 0.0057902876, w: -0.0011694144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.017427087, y: 0.034766708, z: -0.7168759, w: 0.6961153} + inSlope: {x: 0.54563826, y: -0.568682, z: -0.031089848, w: -0.012326914} + outSlope: {x: 0.54563826, y: -0.568682, z: -0.031089848, w: -0.012326914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.05049483, y: -0.00027517078, z: -0.7178778, w: 0.69433546} + inSlope: {x: 0.22588404, y: -0.30206943, z: -0.015118748, w: -0.019818313} + outSlope: {x: 0.22588404, y: -0.30206943, z: -0.015118748, w: -0.019818313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.047534212, y: -0.0054948465, z: -0.718891, w: 0.6934738} + inSlope: {x: -0.2074046, y: 0.059890166, z: -0.009282863, w: 0.0010276595} + outSlope: {x: -0.2074046, y: 0.059890166, z: -0.009282863, w: 0.0010276595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.022850774, y: 0.0077073234, z: -0.7191151, w: 0.69447243} + inSlope: {x: -0.40834802, y: 0.24744663, z: 0.011342636, w: 0.019751241} + outSlope: {x: -0.40834802, y: 0.24744663, z: 0.011342636, w: 0.019751241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.006892739, y: 0.027486255, z: -0.7173792, w: 0.6961064} + inSlope: {x: -0.36479223, y: 0.25111973, z: 0.028090067, w: 0.019369777} + outSlope: {x: -0.36479223, y: 0.25111973, z: 0.028090067, w: 0.019369777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.025770836, y: 0.04117801, z: -0.7153711, w: 0.69705415} + inSlope: {x: 0.15055026, y: 0.03853696, z: -0.0040815603, w: -0.006554988} + outSlope: {x: 0.15055026, y: 0.03853696, z: -0.0040815603, w: -0.006554988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.013173436, y: 0.03262269, z: -0.7179232, w: 0.6952327} + inSlope: {x: 0.021112889, y: -0.0025076754, z: -0.0051914966, w: -0.0044469135} + outSlope: {x: 0.021112889, y: -0.0025076754, z: -0.0051914966, w: -0.0044469135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.02295682, y: 0.04084378, z: -0.716063, w: 0.69646144} + inSlope: {x: 0.04237145, y: -0.007820737, z: 0.004514875, w: 0.0040448736} + outSlope: {x: 0.04237145, y: -0.007820737, z: 0.004514875, w: 0.0040448736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.018820949, y: 0.0315803, z: -0.71732146, w: 0.6957718} + inSlope: {x: -0.30072856, y: 0.28909698, z: 0.029454943, w: -0.013334002} + outSlope: {x: -0.30072856, y: 0.28909698, z: 0.029454943, w: -0.013334002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.06303958, y: 0.07937625, z: -0.7121371, w: 0.6946842} + inSlope: {x: -1.2283473, y: 0.7171958, z: 0.077793114, w: -0.016319927} + outSlope: {x: -1.2283473, y: 0.7171958, z: 0.077793114, w: -0.016319927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.10635139, y: -0.071208216, z: 0.008846399, w: 0.9917361} + inSlope: {x: -1.2878269, y: -0.0074628945, z: -0.09253555, w: 0.08215232} + outSlope: {x: -1.2878269, y: -0.0074628945, z: -0.09253555, w: 0.08215232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.020526923, y: -0.071705565, z: 0.002679566, w: 0.997211} + inSlope: {x: -0.028433144, y: -0.00024964754, z: -0.0020416453, w: 0.0029939823} + outSlope: {x: -0.028433144, y: -0.00024964754, z: -0.0020416453, w: 0.0029939823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.10256168, y: -0.07124149, z: 0.008574279, w: 0.99213517} + inSlope: {x: 0.053880453, y: 0.00015875418, z: 0.0038741082, w: -0.0013031214} + outSlope: {x: 0.053880453, y: 0.00015875418, z: 0.0038741082, w: -0.0013031214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.027708419, y: -0.071684405, z: 0.003195929, w: 0.9970373} + inSlope: {x: -0.0748997, y: -0.00061992207, z: -0.005378749, w: 0.0073625967} + outSlope: {x: -0.0748997, y: -0.00061992207, z: -0.005378749, w: 0.0073625967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.09257859, y: -0.07132412, z: 0.007857366, w: 0.9931165} + inSlope: {x: -0.05750081, y: -0.0001684248, z: -0.004134435, w: 0.001376912} + outSlope: {x: -0.05750081, y: -0.0001684248, z: -0.004134435, w: 0.001376912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.020044388, y: -0.071706854, z: 0.0026448688, w: 0.9972208} + inSlope: {x: -0.48218155, y: -0.002688534, z: -0.034648415, w: 0.029289458} + outSlope: {x: -0.48218155, y: -0.002688534, z: -0.034648415, w: 0.029289458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.028310692, y: -0.07168246, z: 0.0032392289, w: 0.99702036} + inSlope: {x: 0.17867337, y: 0.0006275255, z: 0.012845287, w: -0.0057267714} + outSlope: {x: 0.17867337, y: 0.0006275255, z: 0.012845287, w: -0.0057267714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.043859005, y: -0.07162321, z: 0.0043569626, w: 0.9964575} + inSlope: {x: 0.2605017, y: 0.0011732704, z: 0.018723745, w: -0.011942327} + outSlope: {x: 0.2605017, y: 0.0011732704, z: 0.018723745, w: -0.011942327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.06303186, y: -0.07152608, z: 0.0057348376, w: 0.9954286} + inSlope: {x: 0.2874778, y: 0.0016561853, z: 0.02065653, w: -0.018203057} + outSlope: {x: 0.2874778, y: 0.0016561853, z: 0.02065653, w: -0.018203057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.08217569, y: -0.07140247, z: 0.0071101827, w: 0.9940313} + inSlope: {x: 0.25975746, y: 0.0018235478, z: 0.018659238, w: -0.02099489} + outSlope: {x: 0.25975746, y: 0.0018235478, z: 0.018659238, w: -0.02099489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.09765381, y: -0.07128303, z: 0.008221847, w: 0.9926303} + inSlope: {x: 0.17762846, y: 0.0014239787, z: 0.012756699, w: -0.016818535} + outSlope: {x: 0.17762846, y: 0.0014239787, z: 0.012756699, w: -0.016818535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.10585103, y: -0.07121267, z: 0.008810469, w: 0.99178964} + inSlope: {x: -0.48476315, y: -0.0028754629, z: -0.034830995, w: 0.031845193} + outSlope: {x: -0.48476315, y: -0.0028754629, z: -0.034830995, w: 0.031845193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.03304185, y: -0.071666285, z: 0.0035793763, w: 0.9968748} + inSlope: {x: -0.055320203, y: -0.00047643273, z: -0.003972329, w: 0.0056963935} + outSlope: {x: -0.055320203, y: -0.00047643273, z: -0.003972329, w: 0.0056963935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.0984777, y: -0.07127617, z: 0.008281019, w: 0.9925489} + inSlope: {x: -0.07420528, y: -0.00023997575, z: -0.005335156, w: 0.00209108} + outSlope: {x: -0.07420528, y: -0.00023997575, z: -0.005335156, w: 0.00209108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.023151346, y: -0.07169827, z: 0.0028682756, w: 0.9971535} + inSlope: {x: 0.05238694, y: 0.00045049563, z: 0.0037617348, w: -0.005383808} + outSlope: {x: 0.05238694, y: 0.00045049563, z: 0.0037617348, w: -0.005383808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.10546006, y: -0.07121613, z: 0.008782399, w: 0.9918313} + inSlope: {x: 1.2350725, y: 0.0072347173, z: 0.08874359, w: -0.079861835} + outSlope: {x: 1.2350725, y: 0.0072347173, z: 0.08874359, w: -0.079861835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01/Dummy02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.032704264, y: -0.708779, z: 0.035621032, w: 0.70377123} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01/Dummy02/Bone22 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.045850176, y: -0.6961583, z: 0.03430696, w: 0.7156007} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.32721373, y: 0.6748673, z: 0.6312224, w: -0.19759434} + inSlope: {x: -0.026095143, y: 0.013364856, z: 0.011186124, w: 0.03858618} + outSlope: {x: -0.026095143, y: 0.013364856, z: 0.011186124, w: 0.03858618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.32547468, y: 0.67575794, z: 0.6319679, w: -0.19502285} + inSlope: {x: -0.021853276, y: 0.0119342785, z: 0.008957753, w: 0.033809356} + outSlope: {x: -0.021853276, y: 0.0119342785, z: 0.008957753, w: 0.033809356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.324301, y: 0.67645794, z: 0.63241637, w: -0.19308804} + inSlope: {x: -0.015738113, y: 0.009847667, z: 0.0057120137, w: 0.026738089} + outSlope: {x: -0.015738113, y: 0.009847667, z: 0.0057120137, w: 0.026738089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.323377, y: 0.6770705, z: 0.63272923, w: -0.19145904} + inSlope: {x: -0.013965661, y: 0.009188505, z: 0.004694648, w: 0.024419166} + outSlope: {x: -0.013965661, y: 0.009188505, z: 0.004694648, w: 0.024419166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.32243958, y: 0.67768264, z: 0.6330421, w: -0.18983331} + inSlope: {x: -0.014045488, y: 0.009062398, z: 0.0047237165, w: 0.02424689} + outSlope: {x: -0.014045488, y: 0.009062398, z: 0.0047237165, w: 0.02424689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.32150495, y: 0.6782784, z: 0.63335884, w: -0.18822728} + inSlope: {x: -0.014953513, y: 0.009120978, z: 0.0053220615, w: 0.025253408} + outSlope: {x: -0.014953513, y: 0.009120978, z: 0.0053220615, w: 0.025253408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.3204465, y: 0.67889833, z: 0.63375145, w: -0.1864674} + inSlope: {x: -0.023588162, y: 0.012004933, z: 0.009698305, w: 0.036352098} + outSlope: {x: -0.023588162, y: 0.012004933, z: 0.009698305, w: 0.036352098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.31836098, y: 0.6798785, z: 0.6346515, w: -0.18338206} + inSlope: {x: -0.025016725, y: 0.011738406, z: 0.010789907, w: 0.037225243} + outSlope: {x: -0.025016725, y: 0.011738406, z: 0.010789907, w: 0.037225243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.31711212, y: 0.6804629, z: 0.6351896, w: -0.1815058} + inSlope: {x: 0.0011287276, y: 0.00030990224, z: -0.00077499216, w: 0.00042661093} + outSlope: {x: 0.0011287276, y: 0.00030990224, z: -0.00077499216, w: 0.00042661093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.31851143, y: 0.6799198, z: 0.6345482, w: -0.1833252} + inSlope: {x: 0.023437914, y: -0.010213029, z: -0.010438416, w: -0.03318631} + outSlope: {x: 0.023437914, y: -0.010213029, z: -0.010438416, w: -0.03318631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.32023606, y: 0.67910165, z: 0.6337983, w: -0.18592906} + inSlope: {x: 0.024343697, y: -0.012521443, z: -0.010351209, w: -0.039108045} + outSlope: {x: 0.024343697, y: -0.012521443, z: -0.010351209, w: -0.039108045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.3217561, y: 0.67825085, z: 0.6331685, w: -0.18853775} + inSlope: {x: 0.020825628, y: -0.012488356, z: -0.008435878, w: -0.037750266} + outSlope: {x: 0.020825628, y: -0.012488356, z: -0.008435878, w: -0.037750266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.32301182, y: 0.6774371, z: 0.6326739, w: -0.19096063} + inSlope: {x: 0.016432837, y: -0.0114361085, z: -0.006247756, w: -0.033523273} + outSlope: {x: 0.016432837, y: -0.0114361085, z: -0.006247756, w: -0.033523273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.32394636, y: 0.6767266, z: 0.6323358, w: -0.19300592} + inSlope: {x: 0.011206691, y: -0.009428646, z: -0.00369472, w: -0.02640996} + outSlope: {x: 0.011206691, y: -0.009428646, z: -0.00369472, w: -0.02640996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.3245055, y: 0.6761804, z: 0.63218147, w: -0.1944807} + inSlope: {x: 0.010850283, y: -0.008142967, z: -0.0031554054, w: -0.020467537} + outSlope: {x: 0.010850283, y: -0.008142967, z: -0.0031554054, w: -0.020467537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.32539254, y: 0.67564124, z: 0.6319152, w: -0.19573395} + inSlope: {x: 0.013310306, y: -0.008090648, z: -0.0039952383, w: -0.018805435} + outSlope: {x: 0.013310306, y: -0.008090648, z: -0.0039952383, w: -0.018805435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.69470286, y: 0.10468252, z: 0.017862178, w: 0.7114144} + inSlope: {x: -0.0064995256, y: 0.12728722, z: 0.03324788, w: -0.014039226} + outSlope: {x: -0.0064995256, y: 0.12728722, z: 0.03324788, w: -0.014039226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.6942697, y: 0.113165304, z: 0.020077912, w: 0.7104788} + inSlope: {x: -0.008364325, y: 0.12840854, z: 0.028750734, w: -0.013093854} + outSlope: {x: -0.008364325, y: 0.12840854, z: 0.028750734, w: -0.013093854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.693588, y: 0.12179755, z: 0.021694241, w: 0.7096692} + inSlope: {x: -0.011865409, y: 0.12978286, z: 0.022361368, w: -0.01136142} + outSlope: {x: -0.011865409, y: 0.12978286, z: 0.022361368, w: -0.01136142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.6926882, y: 0.13046351, z: 0.023058364, w: 0.70896447} + inSlope: {x: -0.014764573, y: 0.12920982, z: 0.020722643, w: -0.010017157} + outSlope: {x: -0.014764573, y: 0.12920982, z: 0.020722643, w: -0.010017157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.6916201, y: 0.13901937, z: 0.024456274, w: 0.708334} + inSlope: {x: -0.016687512, y: 0.12409393, z: 0.02096859, w: -0.008735499} + outSlope: {x: -0.016687512, y: 0.12409393, z: 0.02096859, w: -0.008735499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.690464, y: 0.14700346, z: 0.025853178, w: 0.70780015} + inSlope: {x: -0.017233087, y: 0.11351608, z: 0.02188732, w: -0.0074985577} + outSlope: {x: -0.017233087, y: 0.11351608, z: 0.02188732, w: -0.0074985577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.6893232, y: 0.15414944, z: 0.027373541, w: 0.7073346} + inSlope: {x: -0.016427685, y: 0.10641091, z: 0.03127408, w: -0.008408149} + outSlope: {x: -0.016427685, y: 0.10641091, z: 0.03127408, w: -0.008408149} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.68827444, y: 0.16118652, z: 0.030021567, w: 0.70667946} + inSlope: {x: -0.013274966, y: 0.08266612, z: 0.031930685, w: -0.00707551} + outSlope: {x: -0.013274966, y: 0.08266612, z: 0.031930685, w: -0.00707551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.6875538, y: 0.16516766, z: 0.031629447, w: 0.7063915} + inSlope: {x: -0.006141769, y: 0.014672323, z: 0.00048880186, w: 0.002590154} + outSlope: {x: -0.006141769, y: 0.014672323, z: 0.00048880186, w: 0.002590154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.68745583, y: 0.16314213, z: 0.030086718, w: 0.7070247} + inSlope: {x: 0.0027748407, y: -0.056526724, z: -0.027212307, w: 0.011350245} + outSlope: {x: 0.0027748407, y: -0.056526724, z: -0.027212307, w: 0.011350245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.68792367, y: 0.15763345, z: 0.028002435, w: 0.70790434} + inSlope: {x: 0.010047563, y: -0.098981, z: -0.030597556, w: 0.013333995} + outSlope: {x: 0.010047563, y: -0.098981, z: -0.030597556, w: 0.013333995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.68879503, y: 0.14994937, z: 0.0260085, w: 0.7088019} + inSlope: {x: 0.014953293, y: -0.1255311, z: -0.02843396, w: 0.012949861} + outSlope: {x: 0.014953293, y: -0.1255311, z: -0.02843396, w: 0.012949861} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.68991673, y: 0.14090195, z: 0.024212595, w: 0.70963037} + inSlope: {x: 0.017703539, y: -0.13988581, z: -0.024650484, w: 0.011355612} + outSlope: {x: 0.017703539, y: -0.13988581, z: -0.024650484, w: 0.011355612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.69115466, y: 0.13130459, z: 0.022722943, w: 0.71031547} + inSlope: {x: 0.018666342, y: -0.14201552, z: -0.019257296, w: 0.008739073} + outSlope: {x: 0.018666342, y: -0.14201552, z: -0.019257296, w: 0.008739073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.6924047, y: 0.121973306, z: 0.021645872, w: 0.71079516} + inSlope: {x: 0.018558577, y: -0.13606957, z: -0.01857188, w: 0.0058837384} + outSlope: {x: 0.018558577, y: -0.13606957, z: -0.01857188, w: 0.0058837384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.69362825, y: 0.11316846, z: 0.020247577, w: 0.7110997} + inSlope: {x: 0.01836003, y: -0.1321199, z: -0.020981932, w: 0.0045694364} + outSlope: {x: 0.01836003, y: -0.1321199, z: -0.020981932, w: 0.0045694364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.0000000023124733, y: 0.79711473, z: -0.000000023295978, w: 0.6038279} + inSlope: {x: -0.00000022179526, y: -0.171898, z: 0.00000069279264, w: 0.22255889} + outSlope: {x: -0.00000022179526, y: -0.171898, z: 0.00000069279264, w: 0.22255889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000017093544, y: 0.78565896, z: 0.000000022873705, w: 0.61865985} + inSlope: {x: 0.000000009213977, y: -0.18628779, z: 0.00000025371415, w: 0.23594472} + outSlope: {x: 0.000000009213977, y: -0.18628779, z: 0.00000025371415, w: 0.23594472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.0000000010843763, y: 0.7722852, z: 0.000000010520492, w: 0.63527596} + inSlope: {x: 0.0000000025528522, y: -0.20903073, z: 0.00000013646002, w: 0.25380963} + outSlope: {x: 0.0000000025528522, y: -0.20903073, z: 0.00000013646002, w: 0.25380963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000016753285, y: 0.75779814, z: 0.00000004106188, w: 0.65248907} + inSlope: {x: -0.000000055596985, y: -0.2189974, z: -0.0000004553645, w: 0.25440758} + outSlope: {x: -0.000000055596985, y: -0.2189974, z: -0.0000004553645, w: 0.25440758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.000000008494667, y: 0.743096, z: -0.00000005017307, w: 0.66918486} + inSlope: {x: 0.0000000527613, y: -0.2147813, z: -0.00000013700475, w: 0.23890477} + outSlope: {x: 0.0000000527613, y: -0.2147813, z: -0.00000013700475, w: 0.23890477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000009720958, y: 0.72917086, z: 0.000000022801109, w: 0.68433166} + inSlope: {x: 0.000000012901205, y: -0.19507608, z: 0.0000005315481, w: 0.20850265} + outSlope: {x: 0.000000012901205, y: -0.19507608, z: 0.0000005315481, w: 0.20850265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0000000067751196, y: 0.71709514, z: 0.00000002067469, w: 0.6969753} + inSlope: {x: 0.0000000107985105, y: -0.15888727, z: 0.00000032026347, w: 0.16421336} + outSlope: {x: 0.0000000107985105, y: -0.15888727, z: 0.00000032026347, w: 0.16421336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.0000000082816705, y: 0.70799345, z: 0.00000006548767, w: 0.70621896} + inSlope: {x: 0.00000009584036, y: -0.105726145, z: -0.00000023044328, w: 0.10662277} + outSlope: {x: 0.00000009584036, y: -0.105726145, z: -0.00000023044328, w: 0.10662277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0000000059990364, y: 0.70300335, z: -0.000000010040118, w: 0.7111866} + inSlope: {x: 0.00000001699329, y: -0.03464549, z: -0.0000004908589, w: 0.03450686} + outSlope: {x: 0.00000001699329, y: -0.03464549, z: -0.0000004908589, w: 0.03450686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0000000060166956, y: 0.7033757, z: 6.315426e-11, w: 0.71081823} + inSlope: {x: -0.000000057049856, y: 0.052143317, z: -0.00000026525635, w: -0.052052535} + outSlope: {x: -0.000000057049856, y: 0.052143317, z: -0.00000026525635, w: -0.052052535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.0000000016048861, y: 0.7099533, z: -0.00000004539502, w: 0.7042487} + inSlope: {x: 0.0000000016020358, y: 0.13498205, z: -0.00000018042408, w: -0.13703735} + outSlope: {x: 0.0000000016020358, y: 0.13498205, z: -0.00000018042408, w: -0.13703735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000005803167, y: 0.7213669, z: -0.000000023984807, w: 0.6925531} + inSlope: {x: -0.00000013582724, y: 0.19541913, z: 0.00000040202758, w: -0.20457634} + outSlope: {x: -0.00000013582724, y: 0.19541913, z: 0.00000040202758, w: -0.20457634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000019708711, y: 0.7359999, z: 0.000000008189503, w: 0.6769816} + inSlope: {x: -0.00000005036693, y: 0.23194507, z: 0.0000003122993, w: -0.2529279} + outSlope: {x: -0.00000005036693, y: 0.23194507, z: 0.0000003122993, w: -0.2529279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000012516349, y: 0.75228184, z: 0.000000017640215, w: 0.65884143} + inSlope: {x: 0.00000012567786, y: 0.24570784, z: -0.000000008470018, w: -0.28083497} + outSlope: {x: 0.00000012567786, y: 0.24570784, z: -0.000000008470018, w: -0.28083497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.000000002957642, y: 0.76874924, z: 0.0000000070605712, w: 0.6395503} + inSlope: {x: 0.0000001938738, y: 0.23859441, z: -0.00000013944239, w: -0.2864939} + outSlope: {x: 0.0000001938738, y: 0.23859441, z: -0.00000013944239, w: -0.2864939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0000000133242555, y: 0.78408307, z: -9.454617e-10, w: 0.6206559} + inSlope: {x: 0.00000024431583, y: 0.23008977, z: -0.00000012013346, w: -0.28351793} + outSlope: {x: 0.00000024431583, y: 0.23008977, z: -0.00000012013346, w: -0.28351793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.026738167, y: 0.15217645, z: 0.04172747, w: 0.98711} + inSlope: {x: 0.025601832, y: 0.61265117, z: 0.017823888, w: -0.1089992} + outSlope: {x: 0.025601832, y: 0.61265117, z: 0.017823888, w: -0.1089992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.028444346, y: 0.19300528, z: 0.042915303, w: 0.979846} + inSlope: {x: 0.026921108, y: 0.65189373, z: 0.018378379, w: -0.13194205} + outSlope: {x: 0.026921108, y: 0.65189373, z: 0.018378379, w: -0.13194205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.030326366, y: 0.23906459, z: 0.044177044, w: 0.969524} + inSlope: {x: 0.028462581, y: 0.7057122, z: 0.018648986, w: -0.17672676} + outSlope: {x: 0.028462581, y: 0.7057122, z: 0.018648986, w: -0.17672676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.032238003, y: 0.28706667, z: 0.045400947, w: 0.95629084} + inSlope: {x: 0.02793378, y: 0.7110047, z: 0.017430495, w: -0.21498743} + outSlope: {x: 0.02793378, y: 0.7110047, z: 0.017430495, w: -0.21498743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.03404954, y: 0.33383137, z: 0.04650028, w: 0.9408693} + inSlope: {x: 0.025609717, y: 0.6699637, z: 0.015122333, w: -0.23798445} + outSlope: {x: 0.025609717, y: 0.6699637, z: 0.015122333, w: -0.23798445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.03565141, y: 0.37636325, z: 0.047416538, w: 0.9245709} + inSlope: {x: 0.021795673, y: 0.58567476, z: 0.012135349, w: -0.23752959} + outSlope: {x: 0.021795673, y: 0.58567476, z: 0.012135349, w: -0.23752959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.036954593, y: 0.41189346, z: 0.04811775, w: 0.90920997} + inSlope: {x: 0.01676311, y: 0.46138453, z: 0.008814928, w: -0.20738328} + outSlope: {x: 0.01676311, y: 0.46138453, z: 0.008814928, w: -0.20738328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.037885696, y: 0.43785924, z: 0.048591442, w: 0.8969297} + inSlope: {x: 0.010680009, y: 0.29942548, z: 0.0053568855, w: -0.14447598} + outSlope: {x: 0.010680009, y: 0.29942548, z: 0.0053568855, w: -0.14447598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.038378086, y: 0.4518026, z: 0.048831746, w: 0.8899534} + inSlope: {x: 0.0034221269, y: 0.09686029, z: 0.0016718082, w: -0.048392244} + outSlope: {x: 0.0034221269, y: 0.09686029, z: 0.0016718082, w: -0.048392244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.038341817, y: 0.45076934, z: 0.04881427, w: 0.8904797} + inSlope: {x: -0.0051704617, y: -0.14612144, z: -0.0025393374, w: 0.07254835} + outSlope: {x: -0.0051704617, y: -0.14612144, z: -0.0025393374, w: 0.07254835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.037688937, y: 0.4323267, z: 0.04849329, w: 0.89962304} + inSlope: {x: -0.013798993, y: -0.38490623, z: -0.0070143277, w: 0.18223083} + outSlope: {x: -0.013798993, y: -0.38490623, z: -0.0070143277, w: 0.18223083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.036502607, y: 0.3994668, z: 0.04787936, w: 0.91476846} + inSlope: {x: -0.021078825, y: -0.5747824, z: -0.011339122, w: 0.24861874} + outSlope: {x: -0.021078825, y: -0.5747824, z: -0.011339122, w: 0.24861874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.03487943, y: 0.35571644, z: 0.046981946, w: 0.93276036} + inSlope: {x: -0.026784718, y: -0.7099507, z: -0.015377065, w: 0.26980725} + outSlope: {x: -0.026784718, y: -0.7099507, z: -0.015377065, w: 0.26980725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.032932587, y: 0.30484053, z: 0.045829818, w: 0.9507299} + inSlope: {x: -0.030569343, y: -0.78595424, z: -0.0187029, w: 0.25301588} + outSlope: {x: -0.030569343, y: -0.78595424, z: -0.0187029, w: 0.25301588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.030804973, y: 0.25095993, z: 0.044489115, w: 0.9664838} + inSlope: {x: -0.031964324, y: -0.79767776, z: -0.020699997, w: 0.21007413} + outSlope: {x: -0.031964324, y: -0.79767776, z: -0.020699997, w: 0.21007413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0286722, y: 0.1985215, z: 0.043070804, w: 0.9787298} + inSlope: {x: -0.03200305, y: -0.786858, z: -0.02128228, w: 0.18375592} + outSlope: {x: -0.03200305, y: -0.786858, z: -0.02128228, w: 0.18375592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.15289801, y: 0.09187222, z: -0.41007736, w: 0.89443743} + inSlope: {x: 0.03594013, y: -0.45806628, z: 0.067744605, w: 0.07600161} + outSlope: {x: 0.03594013, y: -0.45806628, z: 0.067744605, w: 0.07600161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.15050286, y: 0.061345376, z: -0.40556267, w: 0.8995024} + inSlope: {x: 0.039772578, y: -0.4902385, z: 0.076062635, w: 0.07317175} + outSlope: {x: 0.039772578, y: -0.4902385, z: 0.076062635, w: 0.07317175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.1475969, y: 0.026530424, z: -0.3999393, w: 0.9041902} + inSlope: {x: 0.046327885, y: -0.5369889, z: 0.090834126, w: 0.06290102} + outSlope: {x: 0.046327885, y: -0.5369889, z: 0.090834126, w: 0.06290102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.14432801, y: -0.010227601, z: -0.39345577, w: 0.9078862} + inSlope: {x: 0.050285794, y: -0.5483791, z: 0.10085868, w: 0.045655873} + outSlope: {x: 0.050285794, y: -0.5483791, z: 0.10085868, w: 0.045655873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.14089452, y: -0.046560694, z: -0.38649628, w: 0.91027546} + inSlope: {x: 0.050890855, y: -0.52428734, z: 0.10408588, w: 0.026079942} + outSlope: {x: 0.050890855, y: -0.52428734, z: 0.10408588, w: 0.026079942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.13754499, y: -0.08010761, z: -0.3795826, w: 0.9113623} + inSlope: {x: 0.047447562, y: -0.46501914, z: 0.09860482, w: 0.008711798} + outSlope: {x: 0.047447562, y: -0.46501914, z: 0.09860482, w: 0.008711798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.13457043, y: -0.10854111, z: -0.37335366, w: 0.9114366} + inSlope: {x: 0.03943528, y: -0.37116805, z: 0.0829606, w: -0.0028124056} + outSlope: {x: 0.03943528, y: -0.37116805, z: 0.0829606, w: -0.0028124056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.13228883, y: -0.12957902, z: -0.36852515, w: 0.91098744} + inSlope: {x: 0.026606053, y: -0.24332546, z: 0.056436382, w: -0.0065478203} + outSlope: {x: 0.026606053, y: -0.24332546, z: 0.056436382, w: -0.0065478203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.13102423, y: -0.14097293, z: -0.3658315, w: 0.9105639} + inSlope: {x: 0.008777196, y: -0.0791325, z: 0.018693395, w: -0.0029089993} + outSlope: {x: 0.008777196, y: -0.0791325, z: 0.018693395, w: -0.0029089993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.13111895, y: -0.14012626, z: -0.36603358, w: 0.9105997} + inSlope: {x: -0.013194247, y: 0.11926004, z: -0.02808023, w: 0.004170982} + outSlope: {x: -0.013194247, y: 0.11926004, z: -0.02808023, w: 0.004170982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.13278283, y: -0.12507726, z: -0.3695742, w: 0.9111198} + inSlope: {x: -0.033842888, y: 0.31192055, z: -0.07162981, w: 0.0067503992} + outSlope: {x: -0.033842888, y: 0.31192055, z: -0.07162981, w: 0.0067503992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.13562973, y: -0.09855169, z: -0.37558082, w: 0.91149944} + inSlope: {x: -0.048137367, y: 0.4600504, z: -0.10080862, w: -0.001144374} + outSlope: {x: -0.048137367, y: 0.4600504, z: -0.10080862, w: -0.001144374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.13919885, y: -0.063759126, z: -0.38301054, w: 0.9109673} + inSlope: {x: -0.05569283, y: 0.55954367, z: -0.11484069, w: -0.019218182} + outSlope: {x: -0.05569283, y: 0.55954367, z: -0.11484069, w: -0.019218182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.14305279, y: -0.023972519, z: -0.39088744, w: 0.90893793} + inSlope: {x: -0.057105385, y: 0.60942614, z: -0.11540969, w: -0.043114457} + outSlope: {x: -0.057105385, y: 0.60942614, z: -0.11540969, w: -0.043114457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.14681019, y: 0.017468704, z: -0.398393, w: 0.90522075} + inSlope: {x: -0.053370997, y: 0.60899407, z: -0.10527564, w: -0.0661459} + outSlope: {x: -0.053370997, y: 0.60899407, z: -0.10527564, w: -0.0661459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.15016638, y: 0.05719768, z: -0.40491918, w: 0.9001216} + inSlope: {x: -0.05036084, y: 0.5961479, z: -0.09792761, w: -0.07651413} + outSlope: {x: -0.05036084, y: 0.5961479, z: -0.09792761, w: -0.07651413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.00000003286611, y: -0.6847833, z: -0.000000023642757, w: 0.7287468} + inSlope: {x: 0.00000012239757, y: -0.31804565, z: -0.00000040241417, w: -0.30781564} + outSlope: {x: 0.00000012239757, y: -0.31804565, z: -0.00000040241417, w: -0.30781564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.000000041023036, y: -0.70597875, z: -0.000000050460788, w: 0.70823306} + inSlope: {x: -0.00000017893163, y: -0.33439457, z: 0.00000042493227, w: -0.33469063} + outSlope: {x: -0.00000017893163, y: -0.33439457, z: 0.00000042493227, w: -0.33469063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.000000009017072, y: -0.7293533, z: 0.00000003299467, w: 0.6841373} + inSlope: {x: -0.00000018059835, y: -0.35366502, z: -0.0000003277405, w: -0.37773526} + outSlope: {x: -0.00000018059835, y: -0.35366502, z: -0.0000003277405, w: -0.37773526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.00000001695185, y: -0.75311726, z: -0.000000094143935, w: 0.6578863} + inSlope: {x: -0.00000045699198, y: -0.3476271, z: -0.00000048343725, w: -0.39778847} + outSlope: {x: -0.00000045699198, y: -0.3476271, z: -0.00000048343725, w: -0.39778847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.000000051893416, y: -0.77568704, z: -0.000000031440653, w: 0.63111776} + inSlope: {x: -0.000000010475958, y: -0.3195997, z: 0.0000004896726, w: -0.39175633} + outSlope: {x: -0.000000010475958, y: -0.3195997, z: 0.0000004896726, w: -0.39175633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.000000015555557, y: -0.79571533, z: -0.000000028877581, w: 0.6056708} + inSlope: {x: 0.0000006145251, y: -0.27303997, z: -0.0000007594369, w: -0.35690814} + outSlope: {x: 0.0000006145251, y: -0.27303997, z: -0.0000007594369, w: -0.35690814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000030013997, y: -0.81207937, z: -0.00000013266278, w: 0.583547} + inSlope: {x: -0.000000047482168, y: -0.21089152, z: -0.00000005578721, w: -0.29129437} + outSlope: {x: -0.000000047482168, y: -0.21089152, z: -0.00000005578721, w: -0.29129437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000009226859, y: -0.82382417, z: -0.00000003631322, w: 0.5668454} + inSlope: {x: -0.00000013052303, y: -0.13486847, z: -0.00000029300736, w: -0.19406447} + outSlope: {x: -0.00000013052303, y: -0.13486847, z: -0.00000029300736, w: -0.19406447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.000000012617135, y: -0.8300554, z: -0.0000001717165, w: 0.55768096} + inSlope: {x: -0.0000006087676, y: -0.043300044, z: -0.000000109691484, w: -0.06362682} + outSlope: {x: -0.0000006087676, y: -0.043300044, z: -0.000000109691484, w: -0.06362682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.000000071913114, y: -0.82959545, z: -0.000000050933647, w: 0.55836487} + inSlope: {x: -0.000000031202433, y: 0.065411575, z: 0.0000012961615, w: 0.09575193} + outSlope: {x: -0.000000031202433, y: 0.065411575, z: 0.0000012961615, w: 0.09575193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000008458372, y: -0.821337, z: 0.0000000010432719, w: 0.57044333} + inSlope: {x: 0.00000014379464, y: 0.17407131, z: 0.00000011512705, w: 0.2476889} + outSlope: {x: 0.00000014379464, y: 0.17407131, z: 0.00000011512705, w: 0.2476889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.00000005274734, y: -0.8063942, z: -0.00000003558885, w: 0.5913783} + inSlope: {x: 0.00000011620307, y: 0.26473027, z: -0.0000009568564, w: 0.35800388} + outSlope: {x: 0.00000011620307, y: 0.26473027, z: -0.0000009568564, w: 0.35800388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.00000002394652, y: -0.7860522, z: -0.00000012649198, w: 0.6181601} + inSlope: {x: 0.00000045786186, y: 0.3348548, z: -0.00000045694384, w: 0.42373386} + outSlope: {x: 0.00000045786186, y: 0.3348548, z: -0.00000045694384, w: 0.42373386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.000000008279063, y: -0.76176286, z: -0.00000009649288, w: 0.64785594} + inSlope: {x: -0.000000039884938, y: 0.38078737, z: 0.00000053337135, w: 0.44703206} + outSlope: {x: -0.000000039884938, y: 0.38078737, z: 0.00000053337135, w: 0.44703206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000018630425, y: -0.7352987, z: -0.000000055401177, w: 0.67774314} + inSlope: {x: -0.000000018471162, y: 0.39730424, z: 0.0000006769806, w: 0.43174624} + outSlope: {x: -0.000000018471162, y: 0.39730424, z: 0.0000006769806, w: 0.43174624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.000000005817131, y: -0.7088079, z: -0.000000006261051, w: 0.70540154} + inSlope: {x: -0.00000019226817, y: 0.3975043, z: 0.00000073736567, w: 0.4150245} + outSlope: {x: -0.00000019226817, y: 0.3975043, z: 0.00000073736567, w: 0.4150245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger0/Bip01 + L Finger01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.1153388, y: -0.041053876, z: -0.24763177, w: 0.96108794} + inSlope: {x: 0.09519084, y: -0.45492497, z: -0.06626774, w: -0.032762367} + outSlope: {x: 0.09519084, y: -0.45492497, z: -0.06626774, w: -0.032762367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.10899501, y: -0.07137138, z: -0.25204805, w: 0.95890456} + inSlope: {x: 0.102741085, y: -0.4856875, z: -0.06857872, w: -0.043633655} + outSlope: {x: 0.102741085, y: -0.4856875, z: -0.06857872, w: -0.043633655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.10164488, y: -0.105789095, z: -0.25677234, w: 0.9552722} + inSlope: {x: 0.11436371, y: -0.52949536, z: -0.07017106, w: -0.06589365} + outSlope: {x: 0.11436371, y: -0.52949536, z: -0.07017106, w: -0.06589365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.09375196, y: -0.14194557, z: -0.26140085, w: 0.9501219} + inSlope: {x: 0.11875495, y: -0.53802514, z: -0.06633079, w: -0.08678614} + outSlope: {x: 0.11875495, y: -0.53802514, z: -0.06633079, w: -0.08678614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.08581654, y: -0.17750017, z: -0.2656133, w: 0.94370484} + inSlope: {x: 0.11539683, y: -0.5118333, z: -0.05837723, w: -0.101410314} + outSlope: {x: 0.11539683, y: -0.5118333, z: -0.05837723, w: -0.101410314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.07837121, y: -0.21016563, z: -0.2691817, w: 0.93660533} + inSlope: {x: 0.10387747, y: -0.45187563, z: -0.047641642, w: -0.10507729} + outSlope: {x: 0.10387747, y: -0.45187563, z: -0.047641642, w: -0.10507729} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.071971156, y: -0.23772874, z: -0.27196324, w: 0.92969954} + inSlope: {x: 0.0839461, y: -0.35925597, z: -0.03522528, w: -0.09411653} + outSlope: {x: 0.0839461, y: -0.35925597, z: -0.03522528, w: -0.09411653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.06718239, y: -0.25804934, z: -0.27387673, w: 0.92406094} + inSlope: {x: 0.055529803, y: -0.2348325, z: -0.02174371, w: -0.06663599} + outSlope: {x: 0.055529803, y: -0.2348325, z: -0.02174371, w: -0.06663599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.06456982, y: -0.26902857, z: -0.27486137, w: 0.9208179} + inSlope: {x: 0.018141111, y: -0.07625715, z: -0.0068476633, w: -0.022488957} + outSlope: {x: 0.018141111, y: -0.07625715, z: -0.0068476633, w: -0.022488957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.06476444, y: -0.26821333, z: -0.27478942, w: 0.9210635} + inSlope: {x: -0.027318211, y: 0.11495714, z: 0.010381394, w: 0.03366882} + outSlope: {x: -0.027318211, y: 0.11495714, z: 0.010381394, w: 0.03366882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.06821095, y: -0.25370643, z: -0.27347767, w: 0.9253055} + inSlope: {x: -0.071010105, y: 0.30127275, z: 0.028344521, w: 0.083696455} + outSlope: {x: -0.071010105, y: 0.30127275, z: 0.028344521, w: 0.083696455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.07422908, y: -0.22805797, z: -0.2710115, w: 0.932219} + inSlope: {x: -0.10355848, y: 0.4459607, z: 0.044988673, w: 0.11179686} + outSlope: {x: -0.10355848, y: 0.4459607, z: 0.044988673, w: 0.11179686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.082013816, y: -0.19426624, z: -0.26748133, w: 0.9402064} + inSlope: {x: -0.12406843, y: 0.5449983, z: 0.059831057, w: 0.117270075} + outSlope: {x: -0.12406843, y: 0.5449983, z: 0.059831057, w: 0.117270075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.090765625, y: -0.15541749, z: -0.26303688, w: 0.94784945} + inSlope: {x: -0.13278191, y: 0.5968108, z: 0.07152808, w: 0.104448065} + outSlope: {x: -0.13278191, y: 0.5968108, z: 0.07152808, w: 0.104448065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.09971175, y: -0.11471986, z: -0.25794765, w: 0.95412785} + inSlope: {x: -0.1302475, y: 0.599741, z: 0.07809225, w: 0.08017439} + outSlope: {x: -0.1302475, y: 0.599741, z: 0.07809225, w: 0.08017439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.10812575, y: -0.075480595, z: -0.2526283, w: 0.95853555} + inSlope: {x: -0.12625517, y: 0.5887996, z: 0.079818904, w: 0.066139214} + outSlope: {x: -0.12625517, y: 0.5887996, z: 0.079818904, w: 0.066139214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 5.870553e-10, y: -0.74253154, z: 0.000000046947786, w: 0.66981107} + inSlope: {x: 0.000000213887, y: -0.29158515, z: -0.0000012784179, w: -0.3329873} + outSlope: {x: 0.000000213887, y: -0.29158515, z: -0.0000012784179, w: -0.3329873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.000000014841097, y: -0.7619636, z: -0.000000038249638, w: 0.64761984} + inSlope: {x: 0.00000025883674, y: -0.30566368, z: 0.00000045306257, w: -0.36111936} + outSlope: {x: 0.00000025883674, y: -0.30566368, z: 0.00000045306257, w: -0.36111936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.000000035086302, y: -0.78327215, z: 0.00000010733461, w: 0.621679} + inSlope: {x: 0.00000010252188, y: -0.3213199, z: -0.00000021266635, w: -0.4056062} + outSlope: {x: 0.00000010252188, y: -0.3213199, z: -0.00000021266635, w: -0.4056062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.000000028505804, y: -0.804791, z: -0.000000066595035, w: 0.5935583} + inSlope: {x: -0.00000018723857, y: -0.31364924, z: -0.00000027141198, w: -0.42509323} + outSlope: {x: -0.00000018723857, y: -0.31364924, z: -0.00000027141198, w: -0.42509323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0000000101300754, y: -0.8250771, z: 0.00000007115919, w: 0.56502014} + inSlope: {x: 0.0000000994398, y: -0.28621572, z: -0.000000013595468, w: -0.41677195} + outSlope: {x: 0.0000000994398, y: -0.28621572, z: -0.000000013595468, w: -0.41677195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.00000004175971, y: -0.84293944, z: -0.00000006840712, w: 0.5380086} + inSlope: {x: 0.00000035703442, y: -0.2426862, z: -0.0000010709813, w: -0.37820312} + outSlope: {x: 0.00000035703442, y: -0.2426862, z: -0.0000010709813, w: -0.37820312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000057717667, y: -0.8574237, z: -0.0000000715873, w: 0.51461107} + inSlope: {x: -0.00000010880463, y: 12.834763, z: 0.00000048426114, w: -7.765321} + outSlope: {x: -0.00000010880463, y: 12.834763, z: 0.00000048426114, w: -7.765321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000027257602, y: 0.8677516, z: -0.000000003861996, w: -0.4969981} + inSlope: {x: -0.0000004043254, y: 12.984358, z: 0.00000045571645, w: -7.517398} + outSlope: {x: -0.0000004043254, y: 12.984358, z: 0.00000045571645, w: -7.517398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0000000038268495, y: 0.87320614, z: -0.000000010846783, w: -0.487351} + inSlope: {x: -0.00000021484132, y: 0.03790777, z: -0.000000027981788, w: 0.06698055} + outSlope: {x: -0.00000021484132, y: 0.03790777, z: -0.000000027981788, w: 0.06698055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0000000013776825, y: 0.87280416, z: -0.000000007591573, w: -0.48807055} + inSlope: {x: 0.0000005788321, y: -13.045472, z: -0.00000008838475, w: 7.4136925} + outSlope: {x: 0.0000005788321, y: -13.045472, z: -0.00000008838475, w: 7.4136925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.00000008097693, y: -0.8655696, z: -0.000000022627216, w: 0.5007887} + inSlope: {x: 0.00000027435118, y: -12.943676, z: 0.00000030371444, w: 7.5848684} + outSlope: {x: 0.00000027435118, y: -12.943676, z: 0.00000030371444, w: 7.5848684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000035189423, y: -0.8524036, z: 0.000000032889236, w: 0.5228844} + inSlope: {x: -0.00000044448987, y: 0.23431522, z: -0.00000037059166, w: 0.37861106} + outSlope: {x: -0.00000044448987, y: 0.23431522, z: -0.00000037059166, w: 0.37861106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000000021732774, y: -0.8343387, z: -0.00000007202171, w: 0.5512521} + inSlope: {x: -0.0000005166486, y: 0.29878142, z: -0.00000046448758, w: 0.4498974} + outSlope: {x: -0.0000005166486, y: 0.29878142, z: -0.00000046448758, w: 0.4498974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000033672467, y: -0.8125803, z: -0.000000029020251, w: 0.5828493} + inSlope: {x: -0.0000000018205526, y: 0.34263632, z: 0.00000094603405, w: 0.47690332} + outSlope: {x: -0.0000000018205526, y: 0.34263632, z: 0.00000094603405, w: 0.47690332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000021490122, y: -0.7886702, z: 0.000000054071158, w: 0.61481655} + inSlope: {x: 0.00000029220143, y: 0.36035788, z: 0.00000040814703, w: 0.46303064} + outSlope: {x: 0.00000029220143, y: 0.36035788, z: 0.00000040814703, w: 0.46303064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.000000005273841, y: -0.76454973, z: 0.000000025379965, w: 0.6445647} + inSlope: {x: -0.00000024333124, y: 0.3619362, z: -0.00000043052188, w: 0.44638178} + outSlope: {x: -0.00000024333124, y: 0.3619362, z: -0.00000043052188, w: 0.44638178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger1/Bip01 + L Finger11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.07885452, y: -0.04805689, z: 0.08564704, w: 0.9920368} + inSlope: {x: -0.032376103, y: -0.46263814, z: -0.077301934, w: -0.020603146} + outSlope: {x: -0.032376103, y: -0.46263814, z: -0.077301934, w: -0.020603146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.07669689, y: -0.07888842, z: 0.08049542, w: 0.99066377} + inSlope: {x: -0.03529969, y: -0.49386632, z: -0.083361015, w: -0.030920813} + outSlope: {x: -0.03529969, y: -0.49386632, z: -0.083361015, w: -0.030920813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.07414958, y: -0.11388223, z: 0.074536204, w: 0.9879155} + inSlope: {x: -0.04003787, y: -0.53829235, z: -0.092640564, w: -0.052601688} + outSlope: {x: -0.04003787, y: -0.53829235, z: -0.092640564, w: -0.052601688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.07136041, y: -0.15063512, z: 0.06814775, w: 0.9836527} + inSlope: {x: -0.04236508, y: -0.54683363, z: -0.096038066, w: -0.07389442} + outSlope: {x: -0.04236508, y: -0.54683363, z: -0.096038066, w: -0.07389442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.06850292, y: -0.18676735, z: 0.0617357, w: 0.97806644} + inSlope: {x: -0.041901574, y: -0.5200891, z: -0.09317372, w: -0.08972959} + outSlope: {x: -0.041901574, y: -0.5200891, z: -0.09317372, w: -0.08972959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.06577553, y: -0.21995556, z: 0.055729024, w: 0.97169304} + inSlope: {x: -0.038311824, y: -0.4590628, z: -0.08375288, w: -0.095246166} + outSlope: {x: -0.038311824, y: -0.4590628, z: -0.08375288, w: -0.095246166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.0633965, y: -0.24795388, z: 0.050572637, w: 0.9653715} + inSlope: {x: -0.03135643, y: -0.36490235, z: -0.06760269, w: -0.08662826} + outSlope: {x: -0.03135643, y: -0.36490235, z: -0.06760269, w: -0.08662826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.061596163, y: -0.26859185, z: 0.04671855, w: 0.9601467} + inSlope: {x: -0.020930488, y: -0.2384891, z: -0.04468073, w: -0.061898857} + outSlope: {x: -0.020930488, y: -0.2384891, z: -0.04468073, w: -0.061898857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.060606763, y: -0.27974108, z: 0.044617333, w: 0.95712125} + inSlope: {x: -0.0068687657, y: -0.07743797, z: -0.014590806, w: -0.020976992} + outSlope: {x: -0.0068687657, y: -0.07743797, z: -0.014590806, w: -0.020976992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.060680654, y: -0.27891323, z: 0.044773802, w: 0.9573508} + inSlope: {x: 0.010335026, y: 0.11674032, z: 0.02197312, w: 0.031382762} + outSlope: {x: 0.010335026, y: 0.11674032, z: 0.02197312, w: 0.031382762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.061984275, y: -0.26418126, z: 0.047546037, w: 0.9613041} + inSlope: {x: 0.026699994, y: 0.30597544, z: 0.057149824, w: 0.07756452} + outSlope: {x: 0.026699994, y: 0.30597544, z: 0.057149824, w: 0.07756452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.06423938, y: -0.23813106, z: 0.05239106, w: 0.96768904} + inSlope: {x: 0.038497057, y: 0.45300066, z: 0.08343439, w: 0.10234496} + outSlope: {x: 0.038497057, y: 0.45300066, z: 0.08343439, w: 0.10234496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.06711538, y: -0.20380275, z: 0.058666646, w: 0.97494525} + inSlope: {x: 0.04540456, y: 0.55372864, z: 0.10010367, w: 0.105119795} + outSlope: {x: 0.04540456, y: 0.55372864, z: 0.10010367, w: 0.105119795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.07029116, y: -0.16432695, z: 0.06573345, w: 0.9817} + inSlope: {x: 0.047687747, y: 0.60652846, z: 0.10731731, w: 0.090400346} + outSlope: {x: 0.047687747, y: 0.60652846, z: 0.10731731, w: 0.090400346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.07347148, y: -0.12296114, z: 0.07297052, w: 0.9869943} + inSlope: {x: 0.045819502, y: 0.6096686, z: 0.10546291, w: 0.06529041} + outSlope: {x: 0.045819502, y: 0.6096686, z: 0.10546291, w: 0.06529041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.076398246, y: -0.08306684, z: 0.079790145, w: 0.9904023} + inSlope: {x: 0.043917213, y: 0.5986286, z: 0.10233103, w: 0.05113762} + outSlope: {x: 0.043917213, y: 0.5986286, z: 0.10233103, w: 0.05113762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.000000012755393, y: -0.7571756, z: 0.000000020193331, w: 0.65321136} + inSlope: {x: 0.00000039482768, y: -0.28414384, z: 0.0000006564546, w: -0.33936074} + outSlope: {x: 0.00000039482768, y: -0.28414384, z: 0.0000006564546, w: -0.33936074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.000000013557052, y: -0.7761118, z: 0.00000006394134, w: 0.6305954} + inSlope: {x: 0.0000002379037, y: -0.29759538, z: -0.00000022092186, w: -0.3677969} + outSlope: {x: 0.0000002379037, y: -0.29759538, z: -0.00000022092186, w: -0.3677969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.000000018953775, y: -0.79684085, z: -0.000000009252415, w: 0.6041893} + inSlope: {x: 0.00000013916386, y: -0.3122629, z: -0.00000061739553, w: -0.41261867} + outSlope: {x: 0.00000013916386, y: -0.3122629, z: -0.00000061739553, w: -0.41261867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.000000032105614, y: -0.817732, z: -0.000000018348686, w: 0.5755992} + inSlope: {x: 0.00000025395963, y: -0.30416292, z: 0.0000011088963, w: -0.43193132} + outSlope: {x: 0.00000025395963, y: -0.30416292, z: 0.0000011088963, w: -0.43193132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.00000005280297, y: -0.8373814, z: 0.0000001385476, w: 0.546619} + inSlope: {x: 0.0000003363541, y: -0.27691942, z: -0.00000017561945, w: -0.4230045} + outSlope: {x: 0.0000003363541, y: -0.27691942, z: -0.00000017561945, w: -0.4230045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.00000007693681, y: -0.8546414, z: -0.000000041756252, w: 0.51921874} + inSlope: {x: -0.00000027709655, y: 12.799459, z: -0.00000078703937, w: -7.81873} + outSlope: {x: -0.00000027709655, y: 12.799459, z: -0.00000078703937, w: -7.81873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000015869936, y: 0.8686043, z: 0.000000033646547, w: -0.49550635} + inSlope: {x: -0.00000046763265, y: 13.003498, z: 0.00000022892183, w: -7.479327} + outSlope: {x: -0.00000046763265, y: 13.003498, z: 0.00000022892183, w: -7.479327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000014608035, y: 0.8785398, z: -0.000000011244228, w: -0.4776691} + inSlope: {x: -0.00000008352189, y: 0.113854796, z: -0.000000079560465, w: 0.20709437} + outSlope: {x: -0.00000008352189, y: 0.113854796, z: -0.000000079560465, w: 0.20709437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0000000047376583, y: 0.8837795, z: 0.000000023042269, w: -0.4679036} + inSlope: {x: -0.0000001206227, y: 0.03641593, z: 0.000000031347284, w: 0.06780339} + outSlope: {x: -0.0000001206227, y: 0.03641593, z: 0.000000031347284, w: 0.06780339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0000000014692487, y: 0.8833935, z: -0.0000000070660566, w: -0.46863186} + inSlope: {x: 0.000000029445175, y: -0.05504963, z: 0.00000007157372, w: -0.102062285} + outSlope: {x: 0.000000029445175, y: -0.05504963, z: 0.00000007157372, w: -0.102062285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000008662286, y: 0.8764422, z: 0.000000032582054, w: -0.48150706} + inSlope: {x: 0.00000030475076, y: -13.108393, z: 0.00000054422514, w: 7.296507} + outSlope: {x: 0.00000030475076, y: -13.108393, z: 0.00000054422514, w: 7.296507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.00000003914969, y: -0.86376864, z: 0.000000065471404, w: 0.5038886} + inSlope: {x: 0.00000035780442, y: -12.925447, z: 0.00000059738477, w: 7.608889} + outSlope: {x: 0.00000035780442, y: -12.925447, z: 0.00000059738477, w: 7.608889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.00000005635251, y: -0.84633595, z: 0.0000001122049, w: 0.53264946} + inSlope: {x: -0.00000024268027, y: 0.2887504, z: 0.00000024855024, w: 0.4564014} + outSlope: {x: -0.00000024268027, y: 0.2887504, z: 0.00000024855024, w: 0.4564014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.000000006803852, y: -0.82528234, z: 0.00000009859957, w: 0.5647204} + inSlope: {x: -0.00000045235538, y: 0.3319958, z: -0.0000006329545, w: 0.48436964} + outSlope: {x: -0.00000045235538, y: 0.3319958, z: -0.0000006329545, w: 0.48436964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.0000000039400203, y: -0.80208564, z: 0.000000027841086, w: 0.59720904} + inSlope: {x: -0.00000014679266, y: 0.35002053, z: -0.0000005204604, w: 0.47089365} + outSlope: {x: -0.00000014679266, y: 0.35002053, z: -0.0000005204604, w: 0.47089365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.000000012761511, y: -0.7786296, z: 0.000000029229616, w: 0.6274838} + inSlope: {x: -0.0000001323697, y: 0.35196644, z: 0.000000020835405, w: 0.4542837} + outSlope: {x: -0.0000001323697, y: 0.35196644, z: 0.000000020835405, w: 0.4542837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger2/Bip01 + L Finger21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.123636276, y: -0.08137979, z: 0.21601018, w: 0.9651067} + inSlope: {x: -0.06807799, y: -0.4535039, z: -0.10485326, w: -0.013697569} + outSlope: {x: -0.06807799, y: -0.4535039, z: -0.10485326, w: -0.013697569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.11909936, y: -0.11160259, z: 0.20902246, w: 0.9641939} + inSlope: {x: -0.07384679, y: -0.483808, z: -0.113968514, w: -0.023301065} + outSlope: {x: -0.07384679, y: -0.483808, z: -0.113968514, w: -0.023301065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.11379355, y: -0.1458645, z: 0.2008198, w: 0.962001} + inSlope: {x: -0.08297424, y: -0.52667785, z: -0.12853396, w: -0.04377094} + outSlope: {x: -0.08297424, y: -0.52667785, z: -0.12853396, w: -0.04377094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.10804008, y: -0.18180124, z: 0.19189072, w: 0.95835984} + inSlope: {x: -0.08698056, y: -0.53432953, z: -0.13524234, w: -0.06435397} + outSlope: {x: -0.08698056, y: -0.53432953, z: -0.13524234, w: -0.06435397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.102200285, y: -0.217083, z: 0.18279393, w: 0.95342356} + inSlope: {x: -0.085283644, y: -0.50752604, z: -0.1330669, w: -0.080114916} + outSlope: {x: -0.085283644, y: -0.50752604, z: -0.1330669, w: -0.080114916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.09667299, y: -0.24944721, z: 0.1741548, w: 0.94768167} + inSlope: {x: -0.07738617, y: -0.44742054, z: -0.12111514, w: -0.0863139} + outSlope: {x: -0.07738617, y: -0.44742054, z: -0.12111514, w: -0.0863139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.09188581, y: -0.27671778, z: 0.16665101, w: 0.94191915} + inSlope: {x: -0.06294826, y: -0.35527122, z: -0.09876467, w: -0.07922451} + outSlope: {x: -0.06294826, y: -0.35527122, z: -0.09876467, w: -0.07922451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.08828288, y: -0.2967998, z: 0.16099088, w: 0.93712217} + inSlope: {x: -0.041835595, y: -0.23201251, z: -0.06575513, w: -0.05691309} + outSlope: {x: -0.041835595, y: -0.23201251, z: -0.06575513, w: -0.05691309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.08630972, y: -0.30764174, z: 0.15788679, w: 0.93433344} + inSlope: {x: -0.013699687, y: -0.075305514, z: -0.02155119, w: -0.019333554} + outSlope: {x: -0.013699687, y: -0.075305514, z: -0.02155119, w: -0.019333554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.08645691, y: -0.30683696, z: 0.15811841, w: 0.9345453} + inSlope: {x: 0.020620916, y: 0.1135326, z: 0.03243434, w: 0.028912013} + outSlope: {x: 0.020620916, y: 0.1135326, z: 0.03243434, w: 0.028912013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.0890582, y: -0.29250947, z: 0.16220982, w: 0.938187} + inSlope: {x: 0.05343056, y: 0.29773062, z: 0.08393939, w: 0.07121928} + outSlope: {x: 0.05343056, y: 0.29773062, z: 0.08393939, w: 0.07121928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.09357844, y: -0.2671537, z: 0.16930634, w: 0.9440378} + inSlope: {x: 0.077463046, y: 0.44122422, z: 0.121423066, w: 0.093297765} + outSlope: {x: 0.077463046, y: 0.44122422, z: 0.121423066, w: 0.093297765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.099382915, y: -0.23370059, z: 0.17839378, w: 0.95062226} + inSlope: {x: 0.09206009, y: 0.5400224, z: 0.14386193, w: 0.09461699} + outSlope: {x: 0.09206009, y: 0.5400224, z: 0.14386193, w: 0.09461699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.10584874, y: -0.19517645, z: 0.18848108, w: 0.9566489} + inSlope: {x: 0.097585246, y: 0.5923681, z: 0.15193217, w: 0.07958451} + outSlope: {x: 0.097585246, y: 0.5923681, z: 0.15193217, w: 0.07958451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.11238964, y: -0.15474635, z: 0.19864418, w: 0.96122974} + inSlope: {x: 0.09472772, y: 0.5963172, z: 0.14688106, w: 0.0551297} + outSlope: {x: 0.09472772, y: 0.5963172, z: 0.14688106, w: 0.0551297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.11847459, y: -0.115695894, z: 0.20805822, w: 0.9639969} + inSlope: {x: 0.09130689, y: 0.58596647, z: 0.14126123, w: 0.041522037} + outSlope: {x: 0.09130689, y: 0.58596647, z: 0.14126123, w: 0.041522037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.00000003125205, y: -0.6355351, z: 0.000000017629532, w: 0.77207196} + inSlope: {x: 0.00000048561026, y: -0.33754066, z: 0.0000007963396, w: -0.2863038} + outSlope: {x: 0.00000048561026, y: -0.33754066, z: 0.0000007963396, w: -0.2863038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.0000000011104049, y: -0.6580298, z: 0.000000070699876, w: 0.75299186} + inSlope: {x: 0.0000004701078, y: -0.35561663, z: -0.0000005721252, w: -0.31204873} + outSlope: {x: 0.0000004701078, y: -0.35561663, z: -0.0000005721252, w: -0.31204873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.000000031406614, y: -0.68293375, z: -0.00000005862663, w: 0.7304803} + inSlope: {x: 0.00000023224841, y: -0.37766773, z: -0.00000021919556, w: -0.35373658} + outSlope: {x: 0.00000023224841, y: -0.37766773, z: -0.00000021919556, w: -0.35373658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.00000003206581, y: -0.7083675, z: 0.00000004148423, w: 0.7058438} + inSlope: {x: 0.00000009689079, y: -0.37295753, z: 0.00000078406845, w: -0.37414303} + outSlope: {x: 0.00000009689079, y: -0.37295753, z: 0.00000078406845, w: -0.37414303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.00000004432077, y: -0.73264366, z: 0.000000045878533, w: 0.6806124} + inSlope: {x: 0.00000022249631, y: -0.3445952, z: -0.000000048875016, w: -0.36996186} + outSlope: {x: 0.00000022249631, y: -0.3445952, z: -0.000000048875016, w: -0.36996186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.00000006172139, y: -0.75429714, z: 0.00000003496989, w: 0.6565332} + inSlope: {x: 0.000000008835684, y: -0.29585046, z: 0.00000027847986, w: -0.33824003} + outSlope: {x: 0.000000008835684, y: -0.29585046, z: 0.00000027847986, w: -0.33824003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000045498435, y: -0.7720763, z: 0.00000008299594, w: 0.6355298} + inSlope: {x: -0.0000002128545, y: -0.2295346, z: -0.0000002678178, w: -0.27684194} + outSlope: {x: -0.0000002128545, y: -0.2295346, z: -0.0000002678178, w: -0.27684194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000033350915, y: -0.78489083, z: -7.264064e-10, w: 0.6196341} + inSlope: {x: -0.00000019021225, y: -0.14730091, z: 0.00000020309034, w: -0.18480577} + outSlope: {x: -0.00000019021225, y: -0.14730091, z: 0.00000020309034, w: -0.18480577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.000000020145851, y: -0.7917094, z: 0.00000011006499, w: 0.61089784} + inSlope: {x: 0.00000018320372, y: -0.047378454, z: 0.00000020246466, w: -0.060651183} + outSlope: {x: 0.00000018320372, y: -0.047378454, z: 0.00000020246466, w: -0.060651183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.00000005776933, y: -0.7912057, z: 0.00000002625932, w: 0.61155015} + inSlope: {x: -0.00000009838419, y: 0.07154797, z: -0.000000111935776, w: 0.091257624} + outSlope: {x: -0.00000009838419, y: 0.07154797, z: -0.000000111935776, w: 0.091257624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000007032608, y: -0.7821731, z: 0.000000095145616, w: 0.6230612} + inSlope: {x: -0.00000011730776, y: 0.18993464, z: 0.000000048592995, w: 0.23574434} + outSlope: {x: -0.00000011730776, y: 0.18993464, z: 0.000000048592995, w: 0.23574434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000042133877, y: -0.7658901, z: 0.00000003273608, w: 0.6429715} + inSlope: {x: 0.00000019681244, y: 0.2876311, z: -0.00000012966674, w: 0.33987865} + outSlope: {x: 0.00000019681244, y: 0.2876311, z: -0.00000012966674, w: 0.33987865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.00000003326491, y: -0.743836, z: 0.00000007786285, w: 0.66836214} + inSlope: {x: -0.0000003851731, y: 0.36191413, z: 0.00000031305422, w: 0.40087014} + outSlope: {x: -0.0000003851731, y: 0.36191413, z: 0.00000031305422, w: 0.40087014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000009204206, y: -0.71765214, z: 0.00000007446171, w: 0.6964018} + inSlope: {x: 0.000000093146895, y: 0.4092741, z: -0.0000006285177, w: 0.4211073} + outSlope: {x: 0.000000093146895, y: 0.4092741, z: -0.0000006285177, w: 0.4211073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000045680064, y: -0.6892856, z: -0.0000000059096097, w: 0.72448975} + inSlope: {x: 0.0000000072450916, y: 0.4247535, z: -0.0000006139658, w: 0.40477058} + outSlope: {x: 0.0000000072450916, y: 0.4247535, z: -0.0000006139658, w: 0.40477058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.000000008238492, y: -0.6610386, z: -0.0000000073711877, w: 0.7503519} + inSlope: {x: -0.0000008090677, y: 0.4238566, z: -0.000000021931514, w: 0.38807118} + outSlope: {x: -0.0000008090677, y: 0.4238566, z: -0.000000021931514, w: 0.38807118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger3/Bip01 + L Finger31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.2874716, y: 0.7192205, z: -0.5900748, w: -0.22780173} + inSlope: {x: 0.034027033, y: 0.0074466835, z: -0.018950315, w: 0.030018829} + outSlope: {x: 0.034027033, y: 0.0074466835, z: -0.018950315, w: 0.030018829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.28520393, y: 0.7197168, z: -0.5913377, w: -0.22580118} + inSlope: {x: 0.029841287, y: 0.005879713, z: -0.016878909, w: 0.025166094} + outSlope: {x: 0.029841287, y: 0.005879713, z: -0.016878909, w: 0.025166094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.28349417, y: 0.7200042, z: -0.5923245, w: -0.22444744} + inSlope: {x: 0.02362908, y: 0.0035873933, z: -0.013838878, w: 0.018151956} + outSlope: {x: 0.02362908, y: 0.0035873933, z: -0.013838878, w: 0.018151956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.2820545, y: 0.72019494, z: -0.5931822, w: -0.22338179} + inSlope: {x: 0.021574004, y: 0.0028446042, z: -0.012863102, w: 0.016088828} + outSlope: {x: 0.021574004, y: 0.0028446042, z: -0.012863102, w: 0.016088828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.28061867, y: 0.72038335, z: -0.59403896, w: -0.22230303} + inSlope: {x: 0.021420173, y: 0.0028513127, z: -0.012708375, w: 0.016160496} + outSlope: {x: 0.021420173, y: 0.0028513127, z: -0.012708375, w: 0.016160496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.2791995, y: 0.720575, z: -0.59487605, w: -0.22122782} + inSlope: {x: 0.022341166, y: 0.0032909042, z: -0.012897983, w: 0.017218664} + outSlope: {x: 0.022341166, y: 0.0032909042, z: -0.012897983, w: 0.017218664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.2776409, y: 0.720822, z: -0.5957581, w: -0.22000803} + inSlope: {x: 0.03221879, y: 0.0063206456, z: -0.017329678, w: 0.027160576} + outSlope: {x: 0.03221879, y: 0.0063206456, z: -0.017329678, w: 0.027160576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.2749052, y: 0.7214174, z: -0.59718585, w: -0.2176077} + inSlope: {x: 0.033032686, y: 0.007134539, z: -0.01714588, w: 0.028805356} + outSlope: {x: 0.033032686, y: 0.007134539, z: -0.01714588, w: 0.028805356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.27323812, y: 0.7217729, z: -0.5980434, w: -0.21616869} + inSlope: {x: 0.00044047553, y: -0.00055184076, z: -0.00042661838, w: -0.0012138085} + outSlope: {x: 0.00044047553, y: -0.00055184076, z: -0.00042661838, w: -0.0012138085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.2748465, y: 0.7213439, z: -0.5972427, w: -0.21776949} + inSlope: {x: -0.029418249, y: -0.006958795, z: 0.01498549, w: -0.02693453} + outSlope: {x: -0.029418249, y: -0.006958795, z: 0.01498549, w: -0.02693453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.27715915, y: 0.7208454, z: -0.59604603, w: -0.21975867} + inSlope: {x: -0.03479463, y: -0.0068684584, z: 0.01826163, w: -0.02818957} + outSlope: {x: -0.03479463, y: -0.0068684584, z: 0.01826163, w: -0.02818957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.27948412, y: 0.7204284, z: -0.5948087, w: -0.22152676} + inSlope: {x: -0.03368985, y: -0.0055756215, z: 0.018122561, w: -0.024319783} + outSlope: {x: -0.03368985, y: -0.0055756215, z: 0.018122561, w: -0.024319783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.28164953, y: 0.72010225, z: -0.59363055, w: -0.22300015} + inSlope: {x: -0.029990884, y: -0.0040976442, z: 0.016513556, w: -0.01935872} + outSlope: {x: -0.029990884, y: -0.0040976442, z: 0.016513556, w: -0.01935872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.28348148, y: 0.71988225, z: -0.5926077, w: -0.224107} + inSlope: {x: -0.023666423, y: -0.0023424043, z: 0.013499904, w: -0.013333101} + outSlope: {x: -0.023666423, y: -0.0023424043, z: 0.013499904, w: -0.013333101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.28480393, y: 0.71979004, z: -0.5918312, w: -0.22477727} + inSlope: {x: -0.018061742, y: -0.0017910146, z: 0.011265279, w: -0.012512058} + outSlope: {x: -0.018061742, y: -0.0017910146, z: 0.011265279, w: -0.012512058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.28588885, y: 0.71964353, z: -0.5911062, w: -0.22577468} + inSlope: {x: -0.016279679, y: -0.0021984095, z: 0.010879355, w: -0.014966492} + outSlope: {x: -0.016279679, y: -0.0021984095, z: 0.010879355, w: -0.014966492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.6709474, y: 0.15466303, z: -0.11961686, w: 0.7152627} + inSlope: {x: 0.00531446, y: -0.015873842, z: 0.022449054, w: 0.01212881} + outSlope: {x: 0.00531446, y: -0.015873842, z: 0.022449054, w: 0.01212881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.6705932, y: 0.15360515, z: -0.11812079, w: 0.716071} + inSlope: {x: 0.005525982, y: -0.024085557, z: 0.031056145, w: 0.015416581} + outSlope: {x: 0.005525982, y: -0.024085557, z: 0.031056145, w: 0.015416581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.67021084, y: 0.15145276, z: -0.11547752, w: 0.7173175} + inSlope: {x: 0.0059038606, y: -0.036037385, z: 0.04365573, w: 0.020121511} + outSlope: {x: 0.0059038606, y: -0.036037385, z: 0.04365573, w: 0.020121511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.6698063, y: 0.14880188, z: -0.1123021, w: 0.7187529} + inSlope: {x: 0.0061609987, y: -0.039462566, z: 0.04722111, w: 0.02129272} + outSlope: {x: 0.0061609987, y: -0.039462566, z: 0.04722111, w: 0.02129272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.66938967, y: 0.14619297, z: -0.10918362, w: 0.72015554} + inSlope: {x: 0.0061744153, y: -0.03716176, z: 0.044244036, w: 0.02001017} + outSlope: {x: 0.0061744153, y: -0.03716176, z: 0.044244036, w: 0.02001017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.66898334, y: 0.14384875, z: -0.106405005, w: 0.72142} + inSlope: {x: 0.005850198, y: -0.0302479, z: 0.035647884, w: 0.016751012} + outSlope: {x: 0.005850198, y: -0.0302479, z: 0.035647884, w: 0.016751012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.6686099, y: 0.14216135, z: -0.10443226, w: 0.7223882} + inSlope: {x: 0.0053234017, y: -0.010708628, z: 0.012867963, w: 0.00893405} + outSlope: {x: 0.0053234017, y: -0.010708628, z: 0.012867963, w: 0.00893405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.6682738, y: 0.14242144, z: -0.10468989, w: 0.7226108} + inSlope: {x: 0.003972875, y: 0.0040247496, z: -0.004470882, w: 0.0022341833} + outSlope: {x: 0.003972875, y: 0.0040247496, z: -0.004470882, w: 0.0022341833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.6680804, y: 0.1426978, z: -0.10502817, w: 0.722686} + inSlope: {x: 0.0010759494, y: -0.009396124, z: 0.009789824, w: 0.004246114} + outSlope: {x: 0.0010759494, y: -0.009396124, z: 0.009789824, w: 0.004246114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.6681304, y: 0.14116907, z: -0.103385046, w: 0.7231767} + inSlope: {x: -0.0022950019, y: -0.014900975, z: 0.01661591, w: 0.003187605} + outSlope: {x: -0.0022950019, y: -0.014900975, z: 0.01661591, w: 0.003187605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.6683863, y: 0.14071171, z: -0.102813505, w: 0.72311085} + inSlope: {x: -0.0049942667, y: 0.0035784496, z: -0.0024599042, w: -0.0056713196} + outSlope: {x: -0.0049942667, y: 0.0035784496, z: -0.0024599042, w: -0.0056713196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.66879606, y: 0.14164603, z: -0.10371292, w: 0.7224208} + inSlope: {x: -0.00688635, y: 0.022442017, z: -0.022808716, w: -0.014091998} + outSlope: {x: -0.00688635, y: 0.022442017, z: -0.022808716, w: -0.014091998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.66930413, y: 0.14370291, z: -0.10585358, w: 0.7212326} + inSlope: {x: -0.007882252, y: 0.037289876, z: -0.039687343, w: -0.020624613} + outSlope: {x: -0.007882252, y: 0.037289876, z: -0.039687343, w: -0.020624613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.66984665, y: 0.14661624, z: -0.10900267, w: 0.71967185} + inSlope: {x: -0.007886274, y: 0.048187207, z: -0.053041786, w: -0.025243677} + outSlope: {x: -0.007886274, y: 0.048187207, z: -0.053041786, w: -0.025243677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.67035526, y: 0.15012558, z: -0.112923294, w: 0.717868} + inSlope: {x: -0.006525016, y: 0.04907256, z: -0.059024267, w: -0.025620673} + outSlope: {x: -0.006525016, y: 0.04907256, z: -0.059024267, w: -0.025620673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.67071635, y: 0.1531569, z: -0.11686976, w: 0.716257} + inSlope: {x: -0.005418212, y: 0.045486193, z: -0.059218206, w: -0.024173561} + outSlope: {x: -0.005418212, y: 0.045486193, z: -0.059218206, w: -0.024173561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.000000007455345, y: 0.7206753, z: -0.000000028799938, w: 0.6932727} + inSlope: {x: -0.00000026578246, y: -0.10119655, z: 0.0000004165118, w: 0.10418381} + outSlope: {x: -0.00000026578246, y: -0.10119655, z: 0.0000004165118, w: 0.10418381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000025167848, y: 0.71393126, z: -0.000000001042402, w: 0.7002158} + inSlope: {x: 0.00000003572879, y: -0.10879704, z: 0.00000028747272, w: 0.11077991} + outSlope: {x: 0.00000003572879, y: -0.10879704, z: 0.00000028747272, w: 0.11077991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.000000002693201, y: 0.7061742, z: 0.000000009516072, w: 0.7080381} + inSlope: {x: 0.000000037230265, y: -0.120283216, z: 0.00000017514382, w: 0.119893715} + outSlope: {x: 0.000000037230265, y: -0.120283216, z: 0.00000017514382, w: 0.119893715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000020205583, y: 0.6978992, z: 0.000000022301776, w: 0.71619594} + inSlope: {x: -0.00000010432153, y: -0.12416847, z: -0.00000046782424, w: 0.12101261} + outSlope: {x: -0.00000010432153, y: -0.12416847, z: -0.00000046782424, w: 0.12101261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.000000016597776, y: 0.6896243, z: -0.000000052838207, w: 0.72416735} + inSlope: {x: 0.00000004467296, y: -0.12011245, z: -0.00000012483216, w: 0.11448226} + outSlope: {x: 0.00000004467296, y: -0.12011245, z: -0.00000012483216, w: 0.11448226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000014251317, y: 0.68188995, z: 0.000000005663436, w: 0.7314548} + inSlope: {x: 0.000000023904956, y: -0.10779311, z: 0.00000042765336, w: 0.10064962} + outSlope: {x: 0.000000023904956, y: -0.10779311, z: 0.00000042765336, w: 0.10064962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0000000134115865, y: 0.675257, z: 0.0000000041618726, w: 0.7375825} + inSlope: {x: 0.000000100860554, y: -0.08695561, z: 0.00000038731145, w: 0.079794236} + outSlope: {x: 0.000000100860554, y: -0.08695561, z: 0.00000038731145, w: 0.079794236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -8.080412e-10, y: 0.6703, z: 0.000000057286535, w: 0.7420902} + inSlope: {x: 0.00000013421592, y: -0.057471633, z: -0.00000016572244, w: 0.05207221} + outSlope: {x: 0.00000013421592, y: -0.057471633, z: -0.00000016572244, w: 0.05207221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.000000004477486, y: 0.6675969, z: -0.000000017926567, w: 0.744523} + inSlope: {x: -0.00000009538884, y: -0.018769642, z: -0.00000051898246, w: 0.016896345} + outSlope: {x: -0.00000009538884, y: -0.018769642, z: -0.00000051898246, w: 0.016896345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0000000135219995, y: 0.6677983, z: -0.000000011886438, w: 0.74434227} + inSlope: {x: -0.000000056530418, y: 0.028266264, z: -0.00000018524176, w: -0.02547577} + outSlope: {x: -0.000000056530418, y: 0.028266264, z: -0.00000018524176, w: -0.02547577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.000000003057198, y: 0.67136437, z: -0.000000042616662, w: 0.74112743} + inSlope: {x: 0.000000014120623, y: 0.073508024, z: -0.00000009859518, w: -0.066832304} + outSlope: {x: 0.000000014120623, y: 0.073508024, z: -0.00000009859518, w: -0.066832304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000011639922, y: 0.67759585, z: -0.000000025027772, w: 0.7354345} + inSlope: {x: -0.00000016590559, y: 0.10733834, z: 0.00000030764326, w: -0.09915423} + outSlope: {x: -0.00000016590559, y: 0.10733834, z: 0.00000030764326, w: -0.09915423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000025170038, y: 0.68567103, z: -0.0000000016122165, w: 0.7279116} + inSlope: {x: 0.000000007888559, y: 0.12893157, z: 0.00000025393143, w: -0.121638715} + outSlope: {x: 0.000000007888559, y: 0.12893157, z: 0.00000025393143, w: -0.121638715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000010588477, y: 0.6947806, z: 0.000000008817652, w: 0.7192218} + inSlope: {x: 0.00000015201155, y: 0.13858688, z: -0.0000000047849724, w: -0.1339459} + outSlope: {x: 0.00000015201155, y: 0.13858688, z: -0.0000000047849724, w: -0.1339459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.000000004909063, y: 0.7041427, z: -0.0000000022499853, w: 0.7100585} + inSlope: {x: 0.00000014509698, y: 0.1367758, z: -0.0000000030506015, w: -0.13556391} + outSlope: {x: 0.00000014509698, y: 0.1367758, z: -0.0000000030506015, w: -0.13556391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.00000000875087, y: 0.71301085, z: 0.000000008411042, w: 0.70115304} + inSlope: {x: 0.00000020497232, y: 0.13306996, z: 0.00000015997261, w: -0.13362986} + outSlope: {x: 0.00000020497232, y: 0.13306996, z: 0.00000015997261, w: -0.13362986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.053966235, y: -0.047903575, z: -0.0955724, w: 0.9928035} + inSlope: {x: -0.02080349, y: 0.23624605, z: 0.013528306, w: 0.009673713} + outSlope: {x: -0.02080349, y: 0.23624605, z: 0.013528306, w: 0.009673713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.05535264, y: -0.032159463, z: -0.09467083, w: 0.9934482} + inSlope: {x: -0.02211276, y: 0.25263327, z: 0.014679549, w: 0.008064706} + outSlope: {x: -0.02211276, y: 0.25263327, z: 0.014679549, w: 0.008064706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.05691355, y: -0.014231162, z: -0.09361582, w: 0.9938784} + inSlope: {x: -0.023913637, y: 0.2764262, z: 0.016511925, w: 0.00400552} + outSlope: {x: -0.023913637, y: 0.2764262, z: 0.016511925, w: 0.00400552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.058539987, y: 0.004684214, z: -0.09247003, w: 0.9939821} + inSlope: {x: -0.02411186, y: 0.28223354, z: 0.0173436, w: -0.0011059125} + outSlope: {x: -0.02411186, y: 0.28223354, z: 0.0173436, w: -0.0011059125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.060127318, y: 0.023386542, z: -0.09130417, w: 0.993731} + inSlope: {x: -0.0227823, y: 0.2700385, z: 0.017052758, w: -0.0059736255} + outSlope: {x: -0.0227823, y: 0.2700385, z: 0.017052758, w: -0.0059736255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.06157654, y: 0.040676482, z: -0.09019714, w: 0.9931859} + inSlope: {x: -0.020002507, y: 0.23988038, z: 0.015524525, w: -0.009336974} + outSlope: {x: -0.020002507, y: 0.23988038, z: 0.015524525, w: -0.009336974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.06279337, y: 0.055359174, z: -0.08923497, w: 0.99248654} + inSlope: {x: -0.015836803, y: 0.19183657, z: 0.01266952, w: -0.010192007} + outSlope: {x: -0.015836803, y: 0.19183657, z: 0.01266952, w: -0.010192007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.06368736, y: 0.06624556, z: -0.08850847, w: 0.9918274} + inSlope: {x: -0.0103244325, y: 0.1259848, z: 0.008442638, w: -0.008003438} + outSlope: {x: -0.0103244325, y: 0.1259848, z: 0.008442638, w: -0.008003438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.06416947, y: 0.072151154, z: -0.08810969, w: 0.9914198} + inSlope: {x: -0.003348256, y: 0.041013148, z: 0.0027685245, w: -0.0028217966} + outSlope: {x: -0.003348256, y: 0.041013148, z: 0.0027685245, w: -0.0028217966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.06413364, y: 0.07171203, z: -0.08813947, w: 0.9914513} + inSlope: {x: 0.005048937, y: -0.06179936, z: -0.004166343, w: 0.004192895} + outSlope: {x: 0.005048937, y: -0.06179936, z: -0.004166343, w: 0.004192895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.063496515, y: 0.06391418, z: -0.088665, w: 0.99197865} + inSlope: {x: 0.013254395, y: -0.16141938, z: -0.010774478, w: 0.009797582} + outSlope: {x: 0.013254395, y: -0.16141938, z: -0.010774478, w: 0.009797582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.062367015, y: 0.05019713, z: -0.08957555, w: 0.9927572} + inSlope: {x: 0.019689336, y: -0.23758942, z: -0.015570813, w: 0.0113337} + outSlope: {x: 0.019689336, y: -0.23758942, z: -0.015570813, w: 0.0113337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.06087221, y: 0.03224691, z: -0.09074037, w: 0.99348927} + inSlope: {x: 0.024190878, y: -0.2883988, z: -0.018437106, w: 0.008787822} + outSlope: {x: 0.024190878, y: -0.2883988, z: -0.018437106, w: 0.008787822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.059142716, y: 0.01175769, z: -0.092032954, w: 0.9939285} + inSlope: {x: 0.026677549, y: -0.31372032, z: -0.019477552, w: 0.0033624547} + outSlope: {x: 0.026677549, y: -0.31372032, z: -0.019477552, w: 0.0033624547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.05731647, y: -0.00956754, z: -0.09333645, w: 0.99393743} + inSlope: {x: 0.027032968, y: -0.31346226, z: -0.018859537, w: -0.0030914575} + outSlope: {x: 0.027032968, y: -0.31346226, z: -0.018859537, w: -0.0030914575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.055539608, y: -0.030022347, z: -0.09454666, w: 0.99351645} + inSlope: {x: 0.02666248, y: -0.30693188, z: -0.018159686, w: -0.0063170735} + outSlope: {x: 0.02666248, y: -0.30693188, z: -0.018159686, w: -0.0063170735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.08242858, y: -0.010461635, z: 0.47273165, w: 0.8772804} + inSlope: {x: -0.05263178, y: -0.29380843, z: -0.0709407, w: 0.03604388} + outSlope: {x: -0.05263178, y: -0.29380843, z: -0.0709407, w: 0.03604388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.07892105, y: -0.03004187, z: 0.46800396, w: 0.8796825} + inSlope: {x: -0.056571443, y: -0.31398064, z: -0.077649504, w: 0.03512936} + outSlope: {x: -0.056571443, y: -0.31398064, z: -0.077649504, w: 0.03512936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.074888416, y: -0.05231078, z: 0.46238208, w: 0.88196266} + inSlope: {x: -0.06250235, y: -0.3430695, z: -0.08873209, w: 0.031215064} + outSlope: {x: -0.06250235, y: -0.3430695, z: -0.08873209, w: 0.031215064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.07059038, y: -0.07576815, z: 0.45617723, w: 0.883843} + inSlope: {x: -0.06445129, y: -0.34967887, z: -0.094641335, w: 0.024076056} + outSlope: {x: -0.06445129, y: -0.34967887, z: -0.094641335, w: 0.024076056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.06629798, y: -0.09891798, z: 0.44976774, w: 0.88517165} + inSlope: {x: -0.062254295, y: -0.33392966, z: -0.094358504, w: 0.015657177} + outSlope: {x: -0.062254295, y: -0.33392966, z: -0.094358504, w: 0.015657177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.06229277, y: -0.1202762, z: 0.4436006, w: 0.8859299} + inSlope: {x: -0.055772644, y: -0.29605255, z: -0.08692478, w: 0.007854078} + outSlope: {x: -0.055772644, y: -0.29605255, z: -0.08692478, w: 0.007854078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.05886428, y: -0.13837756, z: 0.4381819, w: 0.8862185} + inSlope: {x: -0.04491391, y: -0.2363286, z: -0.07160365, w: 0.0021876749} + outSlope: {x: -0.04491391, y: -0.2363286, z: -0.07160365, w: 0.0021876749} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.056306385, y: -0.15177543, z: 0.43405685, w: 0.88622147} + inSlope: {x: -0.029644154, y: -0.15498371, z: -0.048024654, w: -0.00053081976} + outSlope: {x: -0.029644154, y: -0.15498371, z: -0.048024654, w: -0.00053081976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.054913137, y: -0.15903468, z: 0.4317809, w: 0.88614774} + inSlope: {x: -0.009674743, y: -0.050416578, z: -0.01579893, w: -0.0004986217} + outSlope: {x: -0.009674743, y: -0.050416578, z: -0.01579893, w: -0.0004986217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.05501688, y: -0.15849525, z: 0.43195108, w: 0.886155} + inSlope: {x: 0.014571103, y: 0.07597811, z: 0.023761451, w: 0.0006618477} + outSlope: {x: 0.014571103, y: 0.07597811, z: 0.023761451, w: 0.0006618477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.056855258, y: -0.14890788, z: 0.43494797, w: 0.88623595} + inSlope: {x: 0.03793016, y: 0.19865337, z: 0.06118335, w: -0.000005366339} + outSlope: {x: 0.03793016, y: 0.19865337, z: 0.06118335, w: -0.000005366339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.06007243, y: -0.13201758, z: 0.44010594, w: 0.8861543} + inSlope: {x: 0.05547966, y: 0.29289883, z: 0.08769397, w: -0.004646353} + outSlope: {x: 0.05547966, y: 0.29289883, z: 0.08769397, w: -0.004646353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.0642499, y: -0.10986866, z: 0.44663632, w: 0.88561666} + inSlope: {x: 0.06676984, y: 0.3562903, z: 0.102630034, w: -0.013104588} + outSlope: {x: 0.06676984, y: 0.3562903, z: 0.102630034, w: -0.013104588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.068971895, y: -0.08452918, z: 0.45378506, w: 0.88440764} + inSlope: {x: 0.07189773, y: 0.3884186, z: 0.10685285, w: -0.023560436} + outSlope: {x: 0.07189773, y: 0.3884186, z: 0.10685285, w: -0.023560436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.07383285, y: -0.05809799, z: 0.46087828, w: 0.8824764} + inSlope: {x: 0.07105458, y: 0.38887218, z: 0.101751745, w: -0.033221193} + outSlope: {x: 0.07105458, y: 0.38887218, z: 0.101751745, w: -0.033221193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.078442454, y: -0.032698076, z: 0.46734712, w: 0.8799797} + inSlope: {x: 0.06916885, y: 0.38113502, z: 0.09706721, w: -0.037463296} + outSlope: {x: 0.06916885, y: 0.38113502, z: 0.09706721, w: -0.037463296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.000000017595042, y: -0.64358693, z: 0.000000035526504, w: 0.76537305} + inSlope: {x: -0.00000055068233, y: -0.2796701, z: 0.00000039266624, w: -0.24110582} + outSlope: {x: -0.00000055068233, y: -0.2796701, z: 0.00000039266624, w: -0.24110582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000019104004, y: -0.66222495, z: 0.000000061694905, w: 0.74930507} + inSlope: {x: 0.00000011775194, y: -0.29532006, z: -0.00000037121498, w: -0.26189542} + outSlope: {x: 0.00000011775194, y: -0.29532006, z: -0.00000037121498, w: -0.26189542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.00000003328971, y: -0.6829489, z: -0.000000013951177, w: 0.7304661} + inSlope: {x: -0.00000006402533, y: -0.31513074, z: 0.000000025505017, w: -0.29508477} + outSlope: {x: -0.00000006402533, y: -0.31513074, z: 0.000000025505017, w: -0.29508477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000027637666, y: -0.7042274, z: 0.000000065094355, w: 0.70997447} + inSlope: {x: 0.000000018627304, y: -0.31297266, z: 0.0000003412734, w: -0.310336} + outSlope: {x: 0.000000018627304, y: -0.31297266, z: 0.0000003412734, w: -0.310336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000035772437, y: -0.7246637, z: 0.000000031535716, w: 0.68910277} + inSlope: {x: -0.00000004421733, y: -0.2910083, z: 0.000000021505741, w: -0.30535385} + outSlope: {x: -0.00000004421733, y: -0.2910083, z: 0.000000021505741, w: -0.30535385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000033531197, y: -0.74301463, z: 0.00000006796076, w: 0.66927516} + inSlope: {x: -0.000000290273, y: -0.25148162, z: 0.00000016798418, w: -0.27805302} + outSlope: {x: -0.000000290273, y: -0.25148162, z: 0.00000016798418, w: -0.27805302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0000000029167821, y: -0.7581826, z: 0.0000000539256, w: 0.65204227} + inSlope: {x: 0.00000062899653, y: -0.19630224, z: -0.00000069068045, w: -0.22689347} + outSlope: {x: 0.00000062899653, y: -0.19630224, z: -0.00000069068045, w: -0.22689347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000050305086, y: -0.7691789, z: -0.000000024097112, w: 0.6390335} + inSlope: {x: -0.00000024189382, y: -0.1265815, z: 0.00000017567834, w: -0.15115932} + outSlope: {x: -0.00000024189382, y: -0.1265815, z: 0.00000017567834, w: -0.15115932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.000000035157782, y: -0.7750541, z: 0.000000077341014, w: 0.6318949} + inSlope: {x: -0.00000005085286, y: -0.04081856, z: 0.00000074838164, w: -0.049561657} + outSlope: {x: -0.00000005085286, y: -0.04081856, z: 0.00000074838164, w: -0.049561657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.000000043527056, y: -0.77461946, z: 0.000000075651506, w: 0.63242763} + inSlope: {x: 0.00000062239155, y: 0.06161221, z: -0.0000003091566, w: 0.07458398} + outSlope: {x: 0.00000062239155, y: 0.06161221, z: -0.0000003091566, w: 0.07458398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.00000004779808, y: -0.76684207, z: 0.00000003613484, w: 0.64183587} + inSlope: {x: -0.000000204461, y: 0.16300057, z: -0.00000040404285, w: 0.19292682} + outSlope: {x: -0.000000204461, y: 0.16300057, z: -0.00000040404285, w: 0.19292682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000016275315, y: -0.7528938, z: 0.000000021798346, w: 0.65814203} + inSlope: {x: -0.0000004595841, y: 0.24540296, z: 0.00000038729195, w: 0.27887055} + outSlope: {x: -0.0000004595841, y: 0.24540296, z: 0.00000038729195, w: 0.27887055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000013457914, y: -0.73413336, z: 0.00000008775528, w: 0.6790053} + inSlope: {x: 0.0000005989797, y: 0.30660555, z: -0.0000006692412, w: 0.33018833} + outSlope: {x: 0.0000005989797, y: 0.30660555, z: -0.0000006692412, w: 0.33018833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.00000009611081, y: -0.71202767, z: -0.000000067402034, w: 0.7021514} + inSlope: {x: 0.00000034937398, y: 0.34423682, z: -0.00000054880985, w: 0.34862602} + outSlope: {x: 0.00000034937398, y: 0.34423682, z: -0.00000054880985, w: 0.34862602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000033108666, y: -0.6882515, z: 0.000000014606746, w: 0.7254722} + inSlope: {x: -0.00000079448785, y: 0.35490838, z: 0.0000005605685, w: 0.3371561} + outSlope: {x: -0.00000079448785, y: 0.35490838, z: 0.0000005605685, w: 0.3371561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.000000009783073, y: -0.66472346, z: 0.000000007313768, w: 0.7470895} + inSlope: {x: -0.00000064360626, y: 0.35304686, z: -0.00000010943381, w: 0.32437542} + outSlope: {x: -0.00000064360626, y: 0.35304686, z: -0.00000010943381, w: 0.32437542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger0/Bip01 + R Finger01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.01625671, y: 0.002211803, z: 0.13800742, w: 0.9902953} + inSlope: {x: -0.02808214, y: -0.3075757, z: 0.0046067745, w: -0.0036267478} + outSlope: {x: -0.02808214, y: -0.3075757, z: 0.0046067745, w: -0.0036267478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.018128185, y: -0.01828592, z: 0.13831443, w: 0.9900536} + inSlope: {x: -0.029951101, y: -0.32874295, z: 0.004389549, w: -0.007707396} + outSlope: {x: -0.029951101, y: -0.32874295, z: 0.004389549, w: -0.007707396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.020248765, y: -0.041604944, z: 0.13859248, w: 0.989268} + inSlope: {x: -0.03260109, y: -0.3593067, z: 0.0036680002, w: -0.016526517} + outSlope: {x: -0.03260109, y: -0.3593067, z: 0.0036680002, w: -0.016526517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.022473445, y: -0.066176385, z: 0.13880332, w: 0.98785084} + inSlope: {x: -0.033094447, y: -0.36634576, z: 0.0025206115, w: -0.025597412} + outSlope: {x: -0.033094447, y: -0.36634576, z: 0.0025206115, w: -0.025597412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.024659783, y: -0.090433605, z: 0.13892844, w: 0.98585624} + inSlope: {x: -0.031476043, y: -0.34995604, z: 0.0012530393, w: -0.03273733} + outSlope: {x: -0.031476043, y: -0.34995604, z: 0.0012530393, w: -0.03273733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.026668752, y: -0.11282052, z: 0.13897033, w: 0.9834874} + inSlope: {x: -0.027800672, y: -0.31035158, z: 0.00016255531, w: -0.035836823} + outSlope: {x: -0.027800672, y: -0.31035158, z: 0.00016255531, w: -0.035836823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.028365215, y: -0.13179904, z: 0.13895011, w: 0.9810797} + inSlope: {x: -0.022121198, y: -0.24780384, z: -0.0005128202, w: -0.033222966} + outSlope: {x: -0.022121198, y: -0.24780384, z: -0.0005128202, w: -0.033222966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.029617192, y: -0.14584924, z: 0.13890198, w: 0.9790593} + inSlope: {x: -0.014472902, y: -0.16253929, z: -0.0006455251, w: -0.024011208} + outSlope: {x: -0.014472902, y: -0.16253929, z: -0.0006455251, w: -0.024011208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.030294247, y: -0.15346321, z: 0.13886407, w: 0.97787935} + inSlope: {x: -0.004702472, y: -0.052879054, z: -0.0002611615, w: -0.008178737} + outSlope: {x: -0.004702472, y: -0.052879054, z: -0.0002611615, w: -0.008178737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.030243965, y: -0.15289727, z: 0.13886717, w: 0.97796917} + inSlope: {x: 0.007087962, y: 0.07968792, z: 0.00037966805, w: 0.012225401} + outSlope: {x: 0.007087962, y: 0.07968792, z: 0.00037966805, w: 0.012225401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.029349523, y: -0.14284195, z: 0.13891467, w: 0.9795088} + inSlope: {x: 0.018562704, y: 0.20832662, z: 0.000719424, w: 0.02999914} + outSlope: {x: 0.018562704, y: 0.20832662, z: 0.000719424, w: 0.02999914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.02776982, y: -0.1251303, z: 0.13896306, w: 0.9819676} + inSlope: {x: 0.0274504, y: 0.30709285, z: 0.000330812, w: 0.038987767} + outSlope: {x: 0.0274504, y: 0.30709285, z: 0.000330812, w: 0.038987767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.025690777, y: -0.10191087, z: 0.13895877, w: 0.9847053} + inSlope: {x: 0.03352116, y: 0.37344375, z: -0.00077029236, w: 0.039000288} + outSlope: {x: 0.03352116, y: 0.37344375, z: -0.00077029236, w: 0.039000288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.02330193, y: -0.07535558, z: 0.13886039, w: 0.9871658} + inSlope: {x: 0.036705226, y: 0.40697992, z: -0.002299138, w: 0.03203164} + outSlope: {x: 0.036705226, y: 0.40697992, z: -0.002299138, w: 0.03203164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.020798493, y: -0.047666237, z: 0.13865232, w: 0.9889747} + inSlope: {x: 0.036915872, y: 0.40731, z: -0.0038175888, w: 0.021177344} + outSlope: {x: 0.036915872, y: 0.40731, z: -0.0038175888, w: 0.021177344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.018381571, y: -0.021066984, z: 0.13835156, w: 0.98998845} + inSlope: {x: 0.0362668, y: 0.39913157, z: -0.00451309, w: 0.015211778} + outSlope: {x: 0.0362668, y: 0.39913157, z: -0.00451309, w: 0.015211778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.0000000034314476, y: -0.7044949, z: 0.00000002171645, w: 0.70970905} + inSlope: {x: -0.00000003834883, y: -0.25884247, z: -0.00000035034947, w: -0.26334214} + outSlope: {x: -0.00000003834883, y: -0.25884247, z: -0.00000035034947, w: -0.26334214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.0000000059871232, y: -0.7217449, z: -0.0000000016318393, w: 0.6921592} + inSlope: {x: 0.000000281611, y: -0.2727242, z: -0.0000002499349, w: -0.28535077} + outSlope: {x: 0.000000281611, y: -0.2727242, z: -0.0000002499349, w: -0.28535077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.00000003410329, y: -0.74084514, z: -0.000000011596307, w: 0.67167586} + inSlope: {x: 0.000000023798492, y: -0.28973055, z: -0.00000038346732, w: -0.32006016} + outSlope: {x: 0.000000023798492, y: -0.28973055, z: -0.00000038346732, w: -0.32006016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.0000000028151192, y: -0.76036185, z: -0.00000005274257, w: 0.6494997} + inSlope: {x: -0.0000001702648, y: -0.2863221, z: 0.0000002982937, w: -0.33508193} + outSlope: {x: -0.0000001702648, y: -0.2863221, z: 0.0000002982937, w: -0.33508193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000011409414, y: -0.7790078, z: 0.000000028161962, w: 0.6270142} + inSlope: {x: 0.000000109369495, y: -0.2648434, z: 0.00000021191559, w: -0.32830566} + outSlope: {x: 0.000000109369495, y: -0.2648434, z: 0.00000021191559, w: -0.32830566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.000000011762271, y: -0.7956617, z: -0.000000024497254, w: 0.60574126} + inSlope: {x: -0.00000025563736, y: -0.2277025, z: -0.00000036164613, w: -0.2978387} + outSlope: {x: -0.00000025563736, y: -0.2277025, z: -0.00000036164613, w: -0.2978387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000022663405, y: -0.8093573, z: -0.000000020040291, w: 0.5873166} + inSlope: {x: 0.00000001545618, y: -0.17692843, z: -0.00000069625713, w: -0.24230468} + outSlope: {x: 0.00000001545618, y: -0.17692843, z: -0.00000069625713, w: -0.24230468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000013822361, y: -0.8192437, z: -0.00000011729841, w: 0.5734455} + inSlope: {x: 0.00000022343073, y: -0.11368844, z: 0.000000088107186, w: -0.16108076} + outSlope: {x: 0.00000022343073, y: -0.11368844, z: 0.000000088107186, w: -0.16108076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.00000000711673, y: -0.82451034, z: -0.000000008296852, w: 0.5658468} + inSlope: {x: 0.00000008372037, y: -0.036593467, z: 0.00000087974354, w: -0.052758202} + outSlope: {x: 0.00000008372037, y: -0.036593467, z: 0.00000087974354, w: -0.052758202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.000000024981079, y: -0.8241211, z: -4.113019e-11, w: 0.5664136} + inSlope: {x: 0.0000002586437, y: 0.05525355, z: 0.0000005122605, w: 0.07940965} + outSlope: {x: 0.0000002586437, y: 0.05525355, z: 0.0000005122605, w: 0.07940965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000041590237, y: -0.8171458, z: 0.00000005998017, w: 0.576431} + inSlope: {x: -0.0000004908949, y: 0.14654022, z: 0.00000022056642, w: 0.20570809} + outSlope: {x: -0.0000004908949, y: 0.14654022, z: 0.00000022056642, w: 0.20570809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000040448224, y: -0.8045894, z: 0.000000029357233, w: 0.59383154} + inSlope: {x: -0.0000001917497, y: 0.22157687, z: -0.00000076590385, w: 0.29815316} + outSlope: {x: -0.0000001917497, y: 0.22157687, z: -0.00000076590385, w: 0.29815316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.00000001603268, y: -0.7876128, z: -0.00000004210385, w: 0.6161705} + inSlope: {x: 0.0000006048872, y: 0.2783406, z: -0.0000006895694, w: 0.35434178} + outSlope: {x: 0.0000006048872, y: 0.2783406, z: -0.0000006895694, w: 0.35434178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.00000004017458, y: -0.76749057, z: -0.00000006255249, w: 0.64106023} + inSlope: {x: -0.000000027296537, y: 0.31432354, z: 0.000000060209715, w: 0.37581813} + outSlope: {x: -0.000000027296537, y: 0.31432354, z: 0.000000060209715, w: 0.37581813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000012394439, y: -0.74571794, z: -0.000000034078752, w: 0.66626173} + inSlope: {x: -0.00000022812873, y: 0.32590425, z: 0.00000041029088, w: 0.3652672} + outSlope: {x: -0.00000022812873, y: 0.32590425, z: 0.00000041029088, w: 0.3652672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0000000097682715, y: -0.7240522, z: -0.0000000078665785, w: 0.6897451} + inSlope: {x: -0.00000003940661, y: 0.32510257, z: 0.0000003933233, w: 0.35237697} + outSlope: {x: -0.00000003940661, y: 0.32510257, z: 0.0000003933233, w: 0.35237697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger1/Bip01 + R Finger11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.09766884, y: 0.0080407215, z: -0.10276752, w: 0.98986614} + inSlope: {x: 0.022171794, y: -0.30483982, z: 0.04438216, w: 0.006059486} + outSlope: {x: 0.022171794, y: -0.30483982, z: 0.04438216, w: 0.006059486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.09619125, y: -0.012274675, z: -0.099809766, w: 0.99026996} + inSlope: {x: 0.024074826, y: -0.3258417, z: 0.04783304, w: 0.0026464975} + outSlope: {x: 0.024074826, y: -0.3258417, z: 0.04783304, w: 0.0026464975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.09446001, y: -0.03538933, z: -0.09639206, w: 0.9902189} + inSlope: {x: 0.027111048, y: -0.35618448, z: 0.053118587, w: -0.0052066846} + outSlope: {x: 0.027111048, y: -0.35618448, z: 0.053118587, w: -0.0052066846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.09257773, y: -0.059748996, z: -0.092729814, w: 0.989576} + inSlope: {x: 0.028503394, y: -0.3632139, z: 0.055064175, w: -0.014052194} + outSlope: {x: 0.028503394, y: -0.3632139, z: 0.055064175, w: -0.014052194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.090660915, y: -0.08380056, z: -0.08905279, w: 0.9883459} + inSlope: {x: 0.028043851, y: -0.34701258, z: 0.05345753, w: -0.021705931} + outSlope: {x: 0.028043851, y: -0.34701258, z: 0.05345753, w: -0.021705931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.08883989, y: -0.10600081, z: -0.08560469, w: 0.9866829} + inSlope: {x: 0.02554034, y: -0.30778122, z: 0.048111588, w: -0.026051762} + outSlope: {x: 0.02554034, y: -0.30778122, z: 0.048111588, w: -0.026051762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.08725675, y: -0.12482341, z: -0.0826402, w: 0.9848736} + inSlope: {x: 0.02084686, y: -0.2457796, z: 0.03889233, w: -0.025408244} + outSlope: {x: 0.02084686, y: -0.2457796, z: 0.03889233, w: -0.025408244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.0860613, y: -0.13875973, z: -0.0804209, w: 0.98329633} + inSlope: {x: 0.013892317, y: -0.16122453, z: 0.025739837, w: -0.018884126} + outSlope: {x: 0.013892317, y: -0.16122453, z: 0.025739837, w: -0.018884126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.085405104, y: -0.14631234, z: -0.07920945, w: 0.9823566} + inSlope: {x: 0.0045557925, y: -0.052453328, z: 0.0084119495, w: -0.00651115} + outSlope: {x: 0.0045557925, y: -0.052453328, z: 0.0084119495, w: -0.00651115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.08545408, y: -0.14575101, z: -0.0792997, w: 0.9824285} + inSlope: {x: -0.006855658, y: 0.07904597, z: -0.012666334, w: 0.009711721} + outSlope: {x: -0.006855658, y: 0.07904597, z: -0.012666334, w: 0.009711721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.086318865, y: -0.13577664, z: -0.08089769, w: 0.98365104} + inSlope: {x: -0.017729469, y: 0.20663702, z: -0.03291032, w: 0.023429409} + outSlope: {x: -0.017729469, y: 0.20663702, z: -0.03291032, w: 0.023429409} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.08781716, y: -0.11820924, z: -0.08368618, w: 0.9855513} + inSlope: {x: -0.025619388, y: 0.30457085, z: -0.047971573, w: 0.029304214} + outSlope: {x: -0.025619388, y: 0.30457085, z: -0.047971573, w: 0.029304214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.08973356, y: -0.0951817, z: -0.08729161, w: 0.9875569} + inSlope: {x: -0.030326556, y: 0.37032703, z: -0.05746635, w: 0.027226549} + outSlope: {x: -0.030326556, y: 0.37032703, z: -0.05746635, w: 0.027226549} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.09185926, y: -0.06884994, z: -0.09134562, w: 0.9891802} + inSlope: {x: -0.032018892, y: 0.40352046, z: -0.061543286, w: 0.019204317} + outSlope: {x: -0.032018892, y: 0.40352046, z: -0.061543286, w: 0.019204317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.094001226, y: -0.04139817, z: -0.09549446, w: 0.99011654} + inSlope: {x: -0.03097348, y: 0.40378457, z: -0.060467698, w: 0.008344648} + outSlope: {x: -0.03097348, y: 0.40378457, z: -0.060467698, w: 0.008344648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.09598758, y: -0.015031234, z: -0.0994051, w: 0.99029243} + inSlope: {x: -0.02980598, y: 0.3956456, z: -0.058680676, w: 0.0026393437} + outSlope: {x: -0.02980598, y: 0.3956456, z: -0.058680676, w: 0.0026393437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.00000000394052, y: -0.7200315, z: -0.000000018637332, w: 0.6939414} + inSlope: {x: 0.0000003231771, y: -0.25294843, z: -0.0000013334899, w: -0.2690063} + outSlope: {x: 0.0000003231771, y: -0.25294843, z: -0.0000013334899, w: -0.2690063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.000000017596927, y: -0.7368887, z: -0.0000001075049, w: 0.67601407} + inSlope: {x: 0.00000017514917, y: -0.26634052, z: 0.00000023769252, w: -0.29131722} + outSlope: {x: 0.00000017514917, y: -0.26634052, z: 0.00000023769252, w: -0.29131722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.000000019404364, y: -0.7555309, z: 0.000000013043734, w: 0.655113} + inSlope: {x: 0.000000094356096, y: -0.28257498, z: 0.00000020136059, w: -0.32639468} + outSlope: {x: 0.000000094356096, y: -0.28257498, z: 0.00000020136059, w: -0.32639468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.00000003017325, y: -0.7745519, z: -0.0000000806664, w: 0.6325103} + inSlope: {x: -0.00000011610213, y: -0.27883515, z: 0.00000020046093, w: -0.3413373} + outSlope: {x: -0.00000011610213, y: -0.27883515, z: 0.00000020046093, w: -0.3413373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0000000039296157, y: -0.79269564, z: 0.000000039762266, w: 0.6096176} + inSlope: {x: -0.00000009244768, y: -0.2575121, z: 0.00000020762837, w: -0.33408746} + outSlope: {x: -0.00000009244768, y: -0.2575121, z: 0.00000020762837, w: -0.33408746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.000000017851297, y: -0.8088746, z: -0.00000005299251, w: 0.5879812} + inSlope: {x: -0.00000008714599, y: -0.2210545, z: -0.0000010443133, w: -0.3028057} + outSlope: {x: -0.00000008714599, y: -0.2210545, z: -0.0000010443133, w: -0.3028057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.00000000768571, y: -0.82215905, z: -0.00000009942979, w: 0.5692579} + inSlope: {x: -0.00000037791045, y: -0.17152141, z: -0.00000021027961, w: -0.24616173} + outSlope: {x: -0.00000037791045, y: -0.17152141, z: -0.00000021027961, w: -0.24616173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000032518784, y: -0.83173597, z: -0.00000008101979, w: 0.5551714} + inSlope: {x: 0.00000006408797, y: -0.11009523, z: 0.00000042174665, w: -0.16355777} + outSlope: {x: 0.00000006408797, y: -0.11009523, z: 0.00000042174665, w: -0.16355777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 8.563038e-10, y: -0.8368332, z: -0.000000043216968, w: 0.547458} + inSlope: {x: 0.0000002314391, y: -0.03541735, z: 0.0000004916348, w: -0.053555105} + outSlope: {x: 0.0000002314391, y: -0.03541735, z: 0.0000004916348, w: -0.053555105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0000000016712463, y: -0.8364566, z: -0.000000015491898, w: 0.54803324} + inSlope: {x: 0.00000041938537, y: 0.053482663, z: 0.0000004347097, w: 0.080613054} + outSlope: {x: 0.00000041938537, y: 0.053482663, z: 0.0000004347097, w: 0.080613054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000056754406, y: -0.8297047, z: 0.000000014723621, w: 0.55820256} + inSlope: {x: 0.00000015567161, y: 0.14195158, z: -0.000000023320808, w: 0.2089015} + outSlope: {x: 0.00000015567161, y: 0.14195158, z: -0.000000023320808, w: 0.2089015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000019077566, y: -0.8175365, z: -0.000000018600227, w: 0.57587683} + inSlope: {x: -0.00000034959513, y: 0.21492353, z: -0.00000070878457, w: 0.30298465} + outSlope: {x: -0.00000034959513, y: 0.21492353, z: -0.00000070878457, w: 0.30298465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000000010158366, y: -0.8010585, z: -0.00000007974722, w: 0.5985861} + inSlope: {x: -0.00000028880768, y: 0.27042884, z: 0.00000031971746, w: 0.36041558} + outSlope: {x: -0.00000028880768, y: 0.27042884, z: 0.00000031971746, w: 0.36041558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000019416376, y: -0.7814922, z: 0.000000024013616, w: 0.6239151} + inSlope: {x: 0.00000007520251, y: 0.30592746, z: 0.0000002476204, w: 0.38268346} + outSlope: {x: 0.00000007520251, y: 0.30592746, z: 0.0000002476204, w: 0.38268346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.00000002018179, y: -0.7602827, z: -0.00000004674294, w: 0.64959234} + inSlope: {x: 0.00000024761283, y: 0.31773937, z: -0.00000021658548, w: 0.3723919} + outSlope: {x: 0.00000024761283, y: 0.31773937, z: -0.00000021658548, w: 0.3723919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.000000013586893, y: -0.73914206, z: -0.0000000048541806, w: 0.6735496} + inSlope: {x: -0.00000009895885, y: 0.31722298, z: 0.0000006285562, w: 0.35948738} + outSlope: {x: -0.00000009895885, y: 0.31722298, z: 0.0000006285562, w: 0.35948738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger2/Bip01 + R Finger21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.0773421, y: 0.109628126, z: -0.16549024, w: 0.9770429} + inSlope: {x: 0.009351285, y: -0.29562533, z: 0.07762291, w: 0.0438036} + outSlope: {x: 0.009351285, y: -0.29562533, z: 0.07762291, w: 0.0438036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.076718904, y: 0.08992681, z: -0.16031723, w: 0.9799621} + inSlope: {x: 0.010293746, y: -0.31638622, z: 0.08360256, w: 0.0430371} + outSlope: {x: 0.010293746, y: -0.31638622, z: 0.08360256, w: 0.0430371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.07597009, y: 0.067458354, z: -0.15434721, w: 0.98277915} + inSlope: {x: 0.011882905, y: -0.346681, z: 0.09272453, w: 0.039041862} + outSlope: {x: 0.011882905, y: -0.346681, z: 0.09272453, w: 0.039041862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.07513508, y: 0.04371917, z: -0.14795837, w: 0.98516583} + inSlope: {x: 0.012798147, y: -0.35442147, z: 0.09599801, w: 0.031173479} + outSlope: {x: 0.012798147, y: -0.35442147, z: 0.09599801, w: 0.031173479} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.07426428, y: 0.02021903, z: -0.14155205, w: 0.9869341} + inSlope: {x: 0.012872105, y: -0.3394646, z: 0.093082994, w: 0.021601735} + outSlope: {x: 0.012872105, y: -0.3394646, z: 0.093082994, w: 0.021601735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.073419414, y: -0.0015266066, z: -0.13555174, w: 0.98804504} + inSlope: {x: 0.01194641, y: -0.301786, z: 0.08368205, w: 0.012440952} + outSlope: {x: 0.01194641, y: -0.301786, z: 0.08368205, w: 0.012440952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.072671995, y: -0.02000474, z: -0.13039842, w: 0.9885923} + inSlope: {x: 0.009898368, y: -0.24146558, z: 0.06758483, w: 0.005385115} + outSlope: {x: 0.009898368, y: -0.24146558, z: 0.06758483, w: 0.005385115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.0721001, y: -0.033710532, z: -0.12654364, w: 0.9887628} + inSlope: {x: 0.0066655446, y: -0.15862331, z: 0.044699818, w: 0.0013424776} + outSlope: {x: 0.0066655446, y: -0.15862331, z: 0.044699818, w: 0.0013424776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.07178357, y: -0.041146968, z: -0.12444057, w: 0.98877126} + inSlope: {x: 0.0021970659, y: -0.05164435, z: 0.014603299, w: 0.00007378709} + outSlope: {x: 0.0021970659, y: -0.05164435, z: 0.014603299, w: 0.00007378709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.071807265, y: -0.04059399, z: -0.12459723, w: 0.98877263} + inSlope: {x: -0.0033032575, y: 0.077817164, z: -0.021990506, w: -0.00021062855} + outSlope: {x: -0.0033032575, y: 0.077817164, z: -0.021990506, w: -0.00021062855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.07222385, y: -0.030775048, z: -0.1273716, w: 0.9887432} + inSlope: {x: -0.008482663, y: 0.2032225, z: -0.057162456, w: -0.0024850594} + outSlope: {x: -0.008482663, y: 0.2032225, z: -0.057162456, w: -0.0024850594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.07293788, y: -0.013507323, z: -0.13221617, w: 0.9884414} + inSlope: {x: -0.0120962225, y: 0.29900044, z: -0.08339084, w: -0.008829412} + outSlope: {x: -0.0120962225, y: 0.29900044, z: -0.08339084, w: -0.008829412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0738361, y: 0.009077432, z: -0.1384864, w: 0.98756635} + inSlope: {x: -0.014053481, y: 0.36268985, z: -0.10000769, w: -0.019038413} + outSlope: {x: -0.014053481, y: 0.36268985, z: -0.10000769, w: -0.019038413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.07481101, y: 0.03483405, z: -0.14554577, w: 0.98590386} + inSlope: {x: -0.014498265, y: 0.3941235, z: -0.107244484, w: -0.03108314} + outSlope: {x: -0.014498265, y: 0.3941235, z: -0.107244484, w: -0.03108314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.075768515, y: 0.061608482, z: -0.15278056, w: 0.9834234} + inSlope: {x: -0.013661012, y: 0.39326227, z: -0.10551947, w: -0.041846685} + outSlope: {x: -0.013661012, y: 0.39326227, z: -0.10551947, w: -0.041846685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.07663183, y: 0.087250285, z: -0.15961, w: 0.9803263} + inSlope: {x: -0.012954338, y: 0.38476467, z: -0.102478266, w: -0.046473376} + outSlope: {x: -0.012954338, y: 0.38476467, z: -0.102478266, w: -0.046473376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.00000001513245, y: -0.5920262, z: -0.000000005611321, w: 0.80591875} + inSlope: {x: 0.0000005016112, y: -0.29487652, z: -0.00000079688226, w: -0.22225301} + outSlope: {x: 0.0000005016112, y: -0.29487652, z: -0.00000079688226, w: -0.22225301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.000000048561255, y: -0.6116776, z: -0.00000005871783, w: 0.7911072} + inSlope: {x: -0.00000013588584, y: -0.31185466, z: 0.00000014555175, w: -0.24197155} + outSlope: {x: -0.00000013588584, y: -0.31185466, z: 0.00000014555175, w: -0.24197155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.0000000029792095, y: -0.63359195, z: 0.000000013788673, w: 0.7736674} + inSlope: {x: 0.00000007142205, y: -0.3337975, z: -0.000000018260664, w: -0.27379075} + outSlope: {x: 0.00000007142205, y: -0.3337975, z: -0.000000018260664, w: -0.27379075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.0000000580808, y: -0.65616804, z: -0.000000061151724, w: 0.7546148} + inSlope: {x: 0.000000033497912, y: -0.33264428, z: 0.00000015973512, w: -0.28915104} + outSlope: {x: 0.000000033497912, y: -0.33264428, z: 0.00000015973512, w: -0.28915104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0000000014856124, y: -0.6779287, z: 0.000000035079044, w: 0.7351277} + inSlope: {x: -0.00000014184394, y: -0.31040043, z: 0.00000014446505, w: -0.28561914} + outSlope: {x: -0.00000014184394, y: -0.31040043, z: 0.00000014446505, w: -0.28561914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.00000003917503, y: -0.69754, z: -0.000000041896598, w: 0.7165458} + inSlope: {x: 0.00000016265516, y: -0.26916903, z: -0.0000006927982, w: -0.26096794} + outSlope: {x: 0.00000016265516, y: -0.26916903, z: -0.0000006927982, w: -0.26096794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000023165212, y: -0.7138051, z: -0.000000057261058, w: 0.7003444} + inSlope: {x: -0.00000047676997, y: -0.21075466, z: 0.00000019492802, w: -0.21353622} + outSlope: {x: -0.00000047676997, y: -0.21075466, z: 0.00000019492802, w: -0.21353622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000024371616, y: -0.7256306, z: -0.000000015915468, w: 0.6880845} + inSlope: {x: -0.0000001249857, y: -0.136219, z: 0.00000012892968, w: -0.14253606} + outSlope: {x: -0.0000001249857, y: -0.136219, z: 0.00000012892968, w: -0.14253606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0000000065064008, y: -0.73196113, z: -0.000000040076568, w: 0.68134636} + inSlope: {x: 0.0000000886632, y: -0.043979775, z: -0.000000055320072, w: -0.046779215} + outSlope: {x: 0.0000000886632, y: -0.043979775, z: -0.000000055320072, w: -0.046779215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.000000012554057, y: -0.73149246, z: -0.00000002328886, w: 0.6818495} + inSlope: {x: 0.00000029602808, y: 0.06636947, z: 0.0000006092676, w: 0.07038482} + outSlope: {x: 0.00000029602808, y: 0.06636947, z: 0.0000006092676, w: 0.07038482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000045962743, y: -0.723115, z: 0.000000041130118, w: 0.69072765} + inSlope: {x: 0.00000014736054, y: 0.17529798, z: 0.00000009783517, w: 0.18182611} + outSlope: {x: 0.00000014736054, y: 0.17529798, z: 0.00000009783517, w: 0.18182611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0000000070870034, y: -0.70812774, z: -0.0000000102488205, w: 0.7060843} + inSlope: {x: -0.00000016791107, y: 0.26315704, z: -0.00000089104947, w: 0.26218215} + outSlope: {x: -0.00000016791107, y: 0.26315704, z: -0.00000089104947, w: 0.26218215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000000023582572, y: -0.68803996, z: -0.00000007763402, w: 0.7256728} + inSlope: {x: -0.00000033720386, y: 0.32759196, z: 0.00000011287585, w: 0.30937773} + outSlope: {x: -0.00000033720386, y: 0.32759196, z: 0.00000011287585, w: 0.30937773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000037857482, y: -0.6644644, z: 0.000000004795986, w: 0.74731994} + inSlope: {x: -0.00000008187027, y: 0.3663515, z: 0.00000036007853, w: 0.32530886} + outSlope: {x: -0.00000008187027, y: 0.3663515, z: 0.00000036007853, w: 0.32530886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000012670429, y: -0.6392105, z: -0.000000029640681, w: 0.7690318} + inSlope: {x: 0.00000046630873, y: 0.37624806, z: 0.00000008346029, w: 0.31316364} + outSlope: {x: 0.00000046630873, y: 0.37624806, z: 0.00000008346029, w: 0.31316364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.000000024294817, y: -0.6143159, z: 0.000000015920012, w: 0.7890602} + inSlope: {x: 0.00000017442821, y: 0.37355253, z: 0.00000068365495, w: 0.3005328} + outSlope: {x: 0.00000017442821, y: 0.37355253, z: 0.00000068365495, w: 0.3005328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger3/Bip01 + R Finger31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.69452554, y: 0.2632811, z: 0.14163275, w: 0.6544139} + inSlope: {x: 0.002406801, y: 0.0038033896, z: 0.0062873317, w: -0.00033897345} + outSlope: {x: 0.002406801, y: 0.0038033896, z: 0.0062873317, w: -0.00033897345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.69436514, y: 0.26353458, z: 0.14205176, w: 0.6543913} + inSlope: {x: 0.0043561207, y: 0.0068682358, z: 0.011349348, w: -0.0006162339} + outSlope: {x: 0.0043561207, y: 0.0068682358, z: 0.011349348, w: -0.0006162339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.69394493, y: 0.26419654, z: 0.14314546, w: 0.65433174} + inSlope: {x: 0.0075701065, y: 0.011893805, z: 0.019633511, w: -0.00107908} + outSlope: {x: 0.0075701065, y: 0.011893805, z: 0.019633511, w: -0.00107908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.69335616, y: 0.26511985, z: 0.14466862, w: 0.65424746} + inSlope: {x: 0.009408525, y: 0.01470845, z: 0.024240289, w: -0.0013545521} + outSlope: {x: 0.009408525, y: 0.01470845, z: 0.024240289, w: -0.0013545521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.6926909, y: 0.26615697, z: 0.14637634, w: 0.6541512} + inSlope: {x: 0.009846778, y: 0.015307918, z: 0.025180187, w: -0.0014346002} + outSlope: {x: 0.009846778, y: 0.015307918, z: 0.025180187, w: -0.0014346002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.6920437, y: 0.26716018, z: 0.14802478, w: 0.65405625} + inSlope: {x: 0.00884819, y: 0.013684599, z: 0.022468617, w: -0.0013049135} + outSlope: {x: 0.00884819, y: 0.013684599, z: 0.022468617, w: -0.0013049135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.6915116, y: 0.26798093, z: 0.14937109, w: 0.6539773} + inSlope: {x: 0.006383253, y: 0.009830674, z: 0.016117781, w: -0.0009493937} + outSlope: {x: 0.006383253, y: 0.009830674, z: 0.016117781, w: -0.0009493937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.6911929, y: 0.26847047, z: 0.15017305, w: 0.6539297} + inSlope: {x: 0.0025221766, y: 0.0038747157, z: 0.006347701, w: -0.00037698488} + outSlope: {x: 0.0025221766, y: 0.0038747157, z: 0.006347701, w: -0.00037698488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.6911754, y: 0.26849738, z: 0.15021715, w: 0.653927} + inSlope: {x: -0.0017006819, y: -0.0026116178, z: -0.0042783124, w: 0.00025445386} + outSlope: {x: -0.0017006819, y: -0.0026116178, z: -0.0042783124, w: 0.00025445386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.6914196, y: 0.26812238, z: 0.14960282, w: 0.6539636} + inSlope: {x: -0.005059112, y: -0.0077840914, z: -0.012758572, w: 0.0007544172} + outSlope: {x: -0.005059112, y: -0.0077840914, z: -0.012758572, w: 0.0007544172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.6918497, y: 0.26745987, z: 0.14851661, w: 0.6540276} + inSlope: {x: -0.007328174, y: -0.011313794, z: -0.018565275, w: 0.0010839992} + outSlope: {x: -0.007328174, y: -0.011313794, z: -0.018565275, w: 0.0010839992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.69239634, y: 0.2666144, z: 0.14712833, w: 0.6541081} + inSlope: {x: -0.008561093, y: -0.013276537, z: -0.021820972, w: 0.0012539336} + outSlope: {x: -0.008561093, y: -0.013276537, z: -0.021820972, w: 0.0012539336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.6929908, y: 0.2656903, z: 0.14560819, w: 0.6541947} + inSlope: {x: -0.008775299, y: -0.013678118, z: -0.022518596, w: 0.0012718214} + outSlope: {x: -0.008775299, y: -0.013678118, z: -0.022518596, w: 0.0012718214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.69356596, y: 0.2647913, z: 0.14412692, w: 0.6542776} + inSlope: {x: -0.007994494, y: -0.012522338, z: -0.020649202, w: 0.0011466064} + outSlope: {x: -0.007994494, y: -0.012522338, z: -0.020649202, w: 0.0011466064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.69405633, y: 0.26402125, z: 0.14285594, w: 0.65434754} + inSlope: {x: -0.006238811, y: -0.009813014, z: -0.016203871, w: 0.000887234} + outSlope: {x: -0.006238811, y: -0.009813014, z: -0.016203871, w: 0.000887234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.6943975, y: 0.26348338, z: 0.14196718, w: 0.6543959} + inSlope: {x: -0.005119486, y: -0.008070972, z: -0.013336243, w: 0.00072534994} + outSlope: {x: -0.005119486, y: -0.008070972, z: -0.013336243, w: 0.00072534994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.0006317151, y: 0.0011885288, z: -0.022328429, w: 0.9997498} + inSlope: {x: 0.000015884141, y: 0.0000088775105, z: 0.013054028, w: 0.0002862045} + outSlope: {x: 0.000015884141, y: 0.0000088775105, z: 0.013054028, w: 0.0002862045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.0006327737, y: 0.0011891205, z: -0.021458471, w: 0.99976885} + inSlope: {x: 0.000028679839, y: 0.0000161121, z: 0.023572039, w: 0.00048923073} + outSlope: {x: 0.000028679839, y: 0.0000161121, z: 0.023572039, w: 0.00048923073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.0006355377, y: 0.0011906764, z: -0.019186612, w: 0.999815} + inSlope: {x: 0.000049603204, y: 0.000027785445, z: 0.04080378, w: 0.0007647024} + outSlope: {x: 0.000049603204, y: 0.000027785445, z: 0.04080378, w: 0.0007647024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.0006393851, y: 0.0011928239, z: -0.016019909, w: 0.9998708} + inSlope: {x: 0.00006119184, y: 0.000034181554, z: 0.050426625, w: 0.00079824217} + outSlope: {x: 0.00006119184, y: 0.000034181554, z: 0.050426625, w: 0.00079824217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0006436937, y: 0.0011952323, z: -0.012465463, w: 0.9999214} + inSlope: {x: 0.000063552725, y: 0.000035364184, z: 0.052438896, w: 0.00065648166} + outSlope: {x: 0.000063552725, y: 0.000035364184, z: 0.052438896, w: 0.00065648166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.00064785575, y: 0.0011975374, z: -0.0090305535, w: 0.9999583} + inSlope: {x: 0.00005667666, y: 0.000031356896, z: 0.04683905, w: 0.00043780345} + outSlope: {x: 0.00005667666, y: 0.000031356896, z: 0.04683905, w: 0.00043780345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.0006512479, y: 0.0011994117, z: -0.006222486, w: 0.99997973} + inSlope: {x: 0.00004061084, y: 0.000022393782, z: 0.033626337, w: 0.00022851632} + outSlope: {x: 0.00004061084, y: 0.000022393782, z: 0.033626337, w: 0.00022851632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.0006532686, y: 0.0012005222, z: -0.004548642, w: 0.99998873} + inSlope: {x: 0.000016002485, y: 0.0000088111265, z: 0.013250206, w: 0.00007065671} + outSlope: {x: 0.000016002485, y: 0.0000088111265, z: 0.013250206, w: 0.00007065671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0006533808, y: 0.0012005861, z: -0.0044564223, w: 0.99998915} + inSlope: {x: -0.000010793816, y: -0.0000059296985, z: -0.008929097, w: -0.000046061068} + outSlope: {x: -0.000010793816, y: -0.0000059296985, z: -0.008929097, w: -0.000046061068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.00065182993, y: 0.0011997318, z: -0.005738762, w: 0.9999826} + inSlope: {x: -0.000032170494, y: -0.000017748032, z: -0.026623307, w: -0.00016590916} + outSlope: {x: -0.000032170494, y: -0.000017748032, z: -0.026623307, w: -0.00016590916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.00064909295, y: 0.0011982205, z: -0.008004929, w: 0.99996704} + inSlope: {x: -0.000046788587, y: -0.000025869147, z: -0.038714834, w: -0.00032197998} + outSlope: {x: -0.000046788587, y: -0.000025869147, z: -0.038714834, w: -0.00032197998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0006455937, y: 0.0011962838, z: -0.010898898, w: 0.9999397} + inSlope: {x: -0.00005503463, y: -0.00003055684, z: -0.045464694, w: -0.00050175237} + outSlope: {x: -0.00005503463, y: -0.00003055684, z: -0.045464694, w: -0.00050175237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.0006417576, y: 0.0011941477, z: -0.014064723, w: 0.99990016} + inSlope: {x: -0.000056854416, y: -0.00003164688, z: -0.046873257, w: -0.000657376} + outSlope: {x: -0.000056854416, y: -0.00003164688, z: -0.046873257, w: -0.000657376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.0006380158, y: 0.0011920658, z: -0.017146433, w: 0.99985206} + inSlope: {x: -0.000052138763, y: -0.000029147119, z: -0.04294118, w: -0.00072669087} + outSlope: {x: -0.000052138763, y: -0.000029147119, z: -0.04294118, w: -0.00072669087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.00063480827, y: 0.0011902628, z: -0.01978817, w: 0.9998033} + inSlope: {x: -0.000040938827, y: -0.00002299471, z: -0.033669405, w: -0.00065290404} + outSlope: {x: -0.000040938827, y: -0.00002299471, z: -0.033669405, w: -0.00065290404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.00063255924, y: 0.0011890009, z: -0.021634083, w: 0.99976504} + inSlope: {x: -0.000033747485, y: -0.000018935905, z: -0.027698603, w: -0.0005741981} + outSlope: {x: -0.000033747485, y: -0.000018935905, z: -0.027698603, w: -0.0005741981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.0012873973, y: -0.000053045696, z: -0.016368821, w: 0.9998652} + inSlope: {x: -0.0000009852255, y: -0.000013760949, z: 0.0106937075, w: 0.0001717227} + outSlope: {x: -0.0000009852255, y: -0.000013760949, z: 0.0106937075, w: 0.0001717227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.001287463, y: -0.000053962765, z: -0.015656162, w: 0.9998766} + inSlope: {x: -0.0000017992588, y: -0.000024882724, z: 0.019309891, w: 0.0002915708} + outSlope: {x: -0.0000017992588, y: -0.000024882724, z: 0.019309891, w: 0.0002915708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.0012876372, y: -0.00005636221, z: -0.013795088, w: 0.99990404} + inSlope: {x: -0.000003071841, y: -0.000043125656, z: 0.033425316, w: 0.00044898316} + outSlope: {x: -0.000003071841, y: -0.000043125656, z: 0.033425316, w: 0.00044898316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.0012878724, y: -0.0000597108, z: -0.011201044, w: 0.99993646} + inSlope: {x: -0.0000036299616, y: -0.000053234267, z: 0.04130704, w: 0.0004556912} + outSlope: {x: -0.0000036299616, y: -0.000053234267, z: 0.04130704, w: 0.0004556912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.001288121, y: -0.00006345758, z: -0.008289449, w: 0.9999648} + inSlope: {x: -0.0000036587853, y: -0.000055408676, z: 0.042954538, w: 0.0003577557} + outSlope: {x: -0.0000036587853, y: -0.000055408676, z: 0.042954538, w: 0.0003577557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.0012883601, y: -0.000067095985, z: -0.0054758177, w: 0.99998415} + inSlope: {x: -0.0000031521972, y: -0.000049511505, z: 0.038366817, w: 0.0002200197} + outSlope: {x: -0.0000031521972, y: -0.000049511505, z: 0.038366817, w: 0.0002200197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0012885411, y: -0.000070056754, z: -0.0031756994, w: 0.9999941} + inSlope: {x: -0.0000021582368, y: -0.000035436606, z: 0.027544059, w: 0.00010061874} + outSlope: {x: -0.0000021582368, y: -0.000035436606, z: 0.027544059, w: 0.00010061874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.0012886478, y: -0.00007181918, z: -0.0018045866, w: 0.99999756} + inSlope: {x: -0.0000008297552, y: -0.000013973951, z: 0.010853435, w: 0.000026831663} + outSlope: {x: -0.0000008297552, y: -0.000013973951, z: 0.010853435, w: 0.000026831663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.0012886517, y: -0.00007191928, z: -0.001729091, w: 0.9999977} + inSlope: {x: 0.00000057209496, y: 0.000009417021, z: -0.0073143146, w: -0.000016993403} + outSlope: {x: 0.00000057209496, y: 0.000009417021, z: -0.0073143146, w: -0.000016993403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0012885715, y: -0.00007056403, z: -0.0027794796, w: 0.9999953} + inSlope: {x: 0.0000016699921, y: 0.000028087823, z: -0.021807473, w: -0.000069315145} + outSlope: {x: 0.0000016699921, y: 0.000028087823, z: -0.021807473, w: -0.000069315145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.0012884291, y: -0.00006817558, z: -0.004635716, w: 0.99998844} + inSlope: {x: 0.000002518962, y: 0.000040854473, z: -0.031711824, w: -0.00015517646} + outSlope: {x: 0.000002518962, y: 0.000040854473, z: -0.031711824, w: -0.00015517646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.0012882358, y: -0.00006511871, z: -0.0070062145, w: 0.9999746} + inSlope: {x: 0.000003138223, y: 0.00004805273, z: -0.037241325, w: -0.00026518642} + outSlope: {x: 0.000003138223, y: 0.00004805273, z: -0.037241325, w: -0.00026518642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0012880109, y: -0.000061770836, z: -0.009599452, w: 0.9999531} + inSlope: {x: 0.0000033661872, y: 0.000049496666, z: -0.03839592, w: -0.00036714674} + outSlope: {x: 0.0000033661872, y: 0.000049496666, z: -0.03839592, w: -0.00036714674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.0012877871, y: -0.00005852151, z: -0.012123842, w: 0.9999257} + inSlope: {x: 0.0000031460822, y: 0.0000453649, z: -0.035175417, w: -0.00042036275} + outSlope: {x: 0.0000031460822, y: 0.0000453649, z: -0.035175417, w: -0.00042036275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.0012875915, y: -0.00005572434, z: -0.014287834, w: 0.99989706} + inSlope: {x: 0.0000025006211, y: 0.00003556788, z: -0.027580962, w: -0.00038503454} + outSlope: {x: 0.0000025006211, y: 0.00003556788, z: -0.027580962, w: -0.00038503454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.0012874538, y: -0.00005378082, z: -0.01579999, w: 0.99987435} + inSlope: {x: 0.000002066529, y: 0.000029163248, z: -0.022690454, w: -0.00034076243} + outSlope: {x: 0.000002066529, y: 0.000029163248, z: -0.022690454, w: -0.00034076243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.0012548829, y: 0.0010251928, z: -0.1797929, w: 0.98370314} + inSlope: {x: 0.00004374471, y: 0.00004808739, z: 0.027372554, w: 0.004977275} + outSlope: {x: 0.00004374471, y: 0.00004808739, z: 0.027372554, w: 0.004977275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.0012577982, y: 0.0010283975, z: -0.17796871, w: 0.98403484} + inSlope: {x: 0.0000787036, y: 0.00008670768, z: 0.049447965, w: 0.008866524} + outSlope: {x: 0.0000787036, y: 0.00008670768, z: 0.049447965, w: 0.008866524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.001265373, y: 0.0010367497, z: -0.17320219, w: 0.9848849} + inSlope: {x: 0.00013577154, y: 0.00014974462, z: 0.085657515, w: 0.014979223} + outSlope: {x: 0.00013577154, y: 0.00014974462, z: 0.085657515, w: 0.014979223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.0012758946, y: 0.0010483563, z: -0.16655178, w: 0.98603135} + inSlope: {x: 0.00016686032, y: 0.00018423889, z: 0.10596531, w: 0.017853346} + outSlope: {x: 0.00016686032, y: 0.00018423889, z: 0.10596531, w: 0.017853346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0012876131, y: 0.0010613061, z: -0.15907852, w: 0.9872645} + inSlope: {x: 0.00017249395, y: 0.00019078789, z: 0.11031631, w: 0.017788954} + outSlope: {x: 0.00017249395, y: 0.00019078789, z: 0.11031631, w: 0.017788954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.0012988856, y: 0.0010737856, z: -0.1518482, w: 0.98840237} + inSlope: {x: 0.00015328902, y: 0.00016975748, z: 0.09863814, w: 0.015220713} + outSlope: {x: 0.00015328902, y: 0.00016975748, z: 0.09863814, w: 0.015220713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.0013080443, y: 0.0010839324, z: -0.14593147, w: 0.9892932} + inSlope: {x: 0.000109567874, y: 0.00012143599, z: 0.070871145, w: 0.010541713} + outSlope: {x: 0.000109567874, y: 0.00012143599, z: 0.070871145, w: 0.010541713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.0013134894, y: 0.0010899713, z: -0.14240208, w: 0.9898074} + inSlope: {x: 0.000043005777, y: 0.000047752852, z: 0.027938917, w: 0.0040676803} + outSlope: {x: 0.000043005777, y: 0.000047752852, z: 0.027938917, w: 0.0040676803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0013137764, y: 0.0010902971, z: -0.14220761, w: 0.9898354} + inSlope: {x: -0.000029051942, y: -0.000032253927, z: -0.018829249, w: -0.0027332548} + outSlope: {x: -0.000029051942, y: -0.000032253927, z: -0.018829249, w: -0.0027332548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.0013096172, y: 0.0010856723, z: -0.14491175, w: 0.9894431} + inSlope: {x: -0.00008662822, y: -0.000096015814, z: -0.05612135, w: -0.00827936} + outSlope: {x: -0.00008662822, y: -0.000096015814, z: -0.05612135, w: -0.00827936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.00130223, y: 0.0010774996, z: -0.14968778, w: 0.98873186} + inSlope: {x: -0.00012648266, y: -0.00014006443, z: -0.08155607, w: -0.01240249} + outSlope: {x: -0.00012648266, y: -0.00014006443, z: -0.08155607, w: -0.01240249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0012927589, y: 0.0010670037, z: -0.15578201, w: 0.98779005} + inSlope: {x: -0.00014911669, y: -0.00016517116, z: -0.09569149, w: -0.015119202} + outSlope: {x: -0.00014911669, y: -0.00016517116, z: -0.09569149, w: -0.015119202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.0012823549, y: 0.0010554846, z: -0.16244209, w: 0.9867167} + inSlope: {x: -0.00015462539, y: -0.00017089822, z: -0.09855845, w: -0.01621617} + outSlope: {x: -0.00015462539, y: -0.00017089822, z: -0.09855845, w: -0.01621617} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.0012721495, y: 0.0010442254, z: -0.16891845, w: 0.98562866} + inSlope: {x: -0.00014243054, y: -0.00015709625, z: -0.09020123, w: -0.01541479} + outSlope: {x: -0.00014243054, y: -0.00015709625, z: -0.09020123, w: -0.01541479} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.001263371, y: 0.001034546, z: -0.17446463, w: 0.9846621} + inSlope: {x: -0.00011214364, y: -0.00012354797, z: -0.070664115, w: -0.012458393} + outSlope: {x: -0.00011214364, y: -0.00012354797, z: -0.070664115, w: -0.012458393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0012572024, y: 0.0010277582, z: -0.17833696, w: 0.98396814} + inSlope: {x: -0.00009256233, y: -0.00010185211, z: -0.058105808, w: -0.010413378} + outSlope: {x: -0.00009256233, y: -0.00010185211, z: -0.058105808, w: -0.010413378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000026082002, y: -0.001736588, z: 0.08660153, w: 0.9962415} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.004349157, y: 0.0076967166, z: -0.49192074, w: 0.8705951} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.03460414, y: 0.68286747, z: 0.052095585, w: 0.7278603} + inSlope: {x: 1.6227125, y: 0.6827623, z: -1.4115435, w: -0.7191604} + outSlope: {x: 1.6227125, y: 0.6827623, z: -1.4115435, w: -0.7191604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.07353806, y: 0.7283687, z: -0.04197371, w: 0.67993337} + inSlope: {x: 0.03780538, y: 0.017489433, z: -0.029006898, w: -0.012785405} + outSlope: {x: 0.03780538, y: 0.017489433, z: -0.029006898, w: -0.012785405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.029565262, y: 0.68519855, z: 0.048229415, w: 0.7261562} + inSlope: {x: -0.06406289, y: -0.023949057, z: 0.06278074, w: 0.03549114} + outSlope: {x: -0.06406289, y: -0.023949057, z: 0.06278074, w: 0.03549114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.06499939, y: 0.72517663, z: -0.033605922, w: 0.68466383} + inSlope: {x: -0.013902605, y: -0.015828133, z: 0.0065801144, w: 0.013869435} + outSlope: {x: -0.013902605, y: -0.015828133, z: 0.0065801144, w: 0.013869435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.031418238, y: 0.6830889, z: 0.049106415, w: 0.72800475} + inSlope: {x: -0.542385, y: -0.30481187, z: 0.45122367, w: 0.3284886} + outSlope: {x: -0.542385, y: -0.30481187, z: 0.45122367, w: 0.3284886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.0072927806, y: 0.68454957, z: 0.026535742, w: 0.72844666} + inSlope: {x: 0.2877648, y: 0.039633952, z: -0.26115653, w: -0.021161685} + outSlope: {x: 0.2877648, y: 0.039633952, z: -0.26115653, w: -0.021161685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.0069367, y: 0.68837154, z: 0.014297978, w: 0.7251842} + inSlope: {x: 0.22223186, y: 0.07960239, z: -0.1867483, w: -0.07457503} + outSlope: {x: 0.22223186, y: 0.07960239, z: -0.1867483, w: -0.07457503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.022327563, y: 0.69515944, z: 0.0016448523, w: 0.7185069} + inSlope: {x: 0.2297041, y: 0.11379801, z: -0.18878862, w: -0.11707057} + outSlope: {x: 0.2297041, y: 0.11379801, z: -0.18878862, w: -0.11707057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.037552986, y: 0.7035392, z: -0.010864858, w: 0.70958036} + inSlope: {x: 0.21819744, y: 0.12799694, z: -0.1812731, w: -0.14103176} + outSlope: {x: 0.21819744, y: 0.12799694, z: -0.1812731, w: -0.14103176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.05141016, y: 0.7122196, z: -0.02251626, w: 0.69970936} + inSlope: {x: 0.18963632, y: 0.12363679, z: -0.16181603, w: -0.14432624} + outSlope: {x: 0.18963632, y: 0.12363679, z: -0.16181603, w: -0.14432624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.062828794, y: 0.7200182, z: -0.03243262, w: 0.69034374} + inSlope: {x: 0.14584921, y: 0.10227649, z: -0.12827599, w: -0.12502706} + outSlope: {x: 0.14584921, y: 0.10227649, z: -0.12827599, w: -0.12502706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.07084978, y: 0.7258516, z: -0.039613623, w: 0.683045} + inSlope: {x: 0.088063054, y: 0.065028794, z: -0.07932208, w: -0.08197791} + outSlope: {x: 0.088063054, y: 0.065028794, z: -0.07932208, w: -0.08197791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.07456634, y: 0.7286856, z: -0.04300512, w: 0.67941725} + inSlope: {x: -0.712832, y: -0.28639534, z: 0.6275644, w: 0.30933774} + outSlope: {x: -0.712832, y: -0.28639534, z: 0.6275644, w: 0.30933774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.024160573, y: 0.6876792, z: 0.04403178, w: 0.72427535} + inSlope: {x: -0.031039596, y: -0.011026919, z: 0.030755699, w: 0.0169518} + outSlope: {x: -0.031039596, y: -0.011026919, z: 0.030755699, w: 0.0169518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.070429206, y: 0.7272159, z: -0.038905814, w: 0.6816767} + inSlope: {x: 0.38124418, y: 0.16679801, z: -0.3165354, w: -0.15373634} + outSlope: {x: 0.38124418, y: 0.16679801, z: -0.3165354, w: -0.15373634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.026653886, y: 0.709911, z: 0.0018420863, w: 0.70378447} + inSlope: {x: -0.65686476, y: -0.25966635, z: 0.6114372, w: 0.33173534} + outSlope: {x: -0.65686476, y: -0.25966635, z: 0.6114372, w: 0.33173534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.065418035, y: -0.69824433, z: 0.01371824, w: 0.71273214} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.010478523, y: -0.1522831, z: -0.012961607, w: 0.9881964} + inSlope: {x: 3.6906154, y: 1.256215, z: 0.89217556, w: -0.29790312} + outSlope: {x: 3.6906154, y: 1.256215, z: 0.89217556, w: -0.29790312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.23547463, y: -0.06856535, z: 0.046495523, w: 0.96834326} + inSlope: {x: 0.08086741, y: 0.023668528, z: 0.02598241, w: 0.0043198466} + outSlope: {x: 0.08086741, y: 0.023668528, z: 0.02598241, w: 0.0043198466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.00029987303, y: -0.14912845, z: -0.009498539, w: 0.98877215} + inSlope: {x: -0.14762187, y: -0.058347702, z: -0.024704754, w: 0.031109527} + outSlope: {x: -0.14762187, y: -0.058347702, z: -0.024704754, w: 0.031109527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.21579875, y: -0.07634226, z: 0.04320273, w: 0.9724897} + inSlope: {x: -0.1353972, y: -0.022357285, z: -0.034750253, w: -0.00501702} + outSlope: {x: -0.1353972, y: -0.022357285, z: -0.034750253, w: -0.00501702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.01774654, y: -0.15210833, z: -0.014130228, w: 0.98810345} + inSlope: {x: -1.9631191, y: -0.5511085, z: -0.46351254, w: 0.11245245} + outSlope: {x: -1.9631191, y: -0.5511085, z: -0.46351254, w: 0.11245245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.045856964, y: -0.14979714, z: -0.018576862, w: 0.987478} + inSlope: {x: -0.39152822, y: 0.051226348, z: -0.06008566, w: -0.0107724685} + outSlope: {x: -0.39152822, y: 0.051226348, z: -0.06008566, w: -0.0107724685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.06993166, y: -0.14528058, z: -0.02213879, w: 0.98666763} + inSlope: {x: -0.3308637, y: 0.080938265, z: -0.046192445, w: -0.011939196} + outSlope: {x: -0.3308637, y: 0.080938265, z: -0.046192445, w: -0.011939196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.08995639, y: -0.13900922, z: -0.024733657, w: 0.9858867} + inSlope: {x: -0.2699464, y: 0.10397985, z: -0.031667568, w: -0.010260427} + outSlope: {x: -0.2699464, y: 0.10397985, z: -0.031667568, w: -0.010260427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.10591167, y: -0.13142155, z: -0.026359625, w: 0.98530006} + inSlope: {x: -0.2086885, y: 0.12055187, z: -0.017591976, w: -0.006435576} + outSlope: {x: -0.2086885, y: 0.12055187, z: -0.017591976, w: -0.006435576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.11777158, y: -0.12294138, z: -0.027078416, w: 0.9850289} + inSlope: {x: -0.14699432, y: 0.13087395, z: -0.0047934814, w: -0.0010938393} + outSlope: {x: -0.14699432, y: 0.13087395, z: -0.0047934814, w: -0.0010938393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.12550391, y: -0.113977924, z: -0.026998527, w: 0.9851543} + inSlope: {x: -0.08477609, y: 0.13515097, z: 0.006151005, w: 0.0051749335} + outSlope: {x: -0.08477609, y: 0.13515097, z: 0.006151005, w: 0.0051749335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.12907103, y: -0.10492768, z: -0.026258575, w: 0.98571867} + inSlope: {x: 2.3062496, y: 0.29101914, z: 0.4824543, w: -0.040691152} + outSlope: {x: 2.3062496, y: 0.29101914, z: 0.4824543, w: -0.040691152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.18188606, y: -0.07518924, z: 0.037305705, w: 0.9797307} + inSlope: {x: 1.0579348, y: -0.30562186, z: 0.15314007, w: 0.02645687} + outSlope: {x: 1.0579348, y: -0.30562186, z: 0.15314007, w: 0.02645687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.011936355, y: -0.14566275, z: -0.005847239, w: 0.989245} + inSlope: {x: 0.34586596, y: 0.028172016, z: 0.0599941, w: -0.07313149} + outSlope: {x: 0.34586596, y: 0.028172016, z: 0.0599941, w: -0.07313149} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.22798508, y: -0.07143431, z: 0.045302067, w: 0.96998334} + inSlope: {x: 0.8491642, y: 0.27540144, z: 0.23085153, w: -0.025650963} + outSlope: {x: 0.8491642, y: 0.27540144, z: 0.23085153, w: -0.025650963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.12511794, y: -0.10895563, z: 0.024922004, w: 0.9858261} + inSlope: {x: -1.5435592, y: -0.5630211, z: -0.30581033, w: 0.23772606} + outSlope: {x: -1.5435592, y: -0.5630211, z: -0.30581033, w: 0.23772606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03/Dummy04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.06785052, y: -0.7017595, z: 0.021019824, w: 0.7088639} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03/Dummy04/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.33869445, y: 0.63293815, z: -0.6172449, w: 0.32200018} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.00000006496729, y: -0.5511861, z: -0.00000015381806, w: 0.83438236} + inSlope: {x: 0.00000015864521, y: 0.05025125, z: -0.0000000999402, w: 0.033051252} + outSlope: {x: 0.00000015864521, y: 0.05025125, z: -0.0000000999402, w: 0.033051252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.00000007553986, y: -0.5478372, z: -0.00000016047836, w: 0.836585} + inSlope: {x: 0.00000013908712, y: 0.09104834, z: -0.00000006818401, w: 0.059203625} + outSlope: {x: 0.00000013908712, y: 0.09104834, z: -0.00000006818401, w: 0.059203625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.00000008350562, y: -0.53905064, z: -0.00000016290602, w: 0.84227335} + inSlope: {x: 0.000000029670279, y: 0.15854338, z: -0.00000014340647, w: 0.10100691} + outSlope: {x: 0.000000029670279, y: 0.15854338, z: -0.00000014340647, w: 0.10100691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.000000079494484, y: -0.5267056, z: -0.0000001795924, w: 0.85004777} + inSlope: {x: -0.00000017938969, y: 0.19757769, z: 0.000000053217576, w: 0.1221789} + outSlope: {x: -0.00000017938969, y: 0.19757769, z: 0.000000053217576, w: 0.1221789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000059595536, y: -0.51271635, z: -0.00000015581288, w: 0.85855806} + inSlope: {x: -0.00000007833926, y: 0.20735988, z: 0.000000005759361, w: 0.123909116} + outSlope: {x: -0.00000007833926, y: 0.20735988, z: 0.000000005759361, w: 0.123909116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.00000006905298, y: -0.49906752, z: -0.00000017882476, w: 0.8665631} + inSlope: {x: 0.00000004505256, y: 0.18681371, z: -0.00000016232852, w: 0.10794873} + outSlope: {x: 0.00000004505256, y: 0.18681371, z: -0.00000016232852, w: 0.10794873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000065600396, y: -0.48781675, z: -0.00000017744895, w: 0.8729461} + inSlope: {x: 0.0000000032558383, y: 0.1350185, z: -0.00000012447735, w: 0.07591438} + outSlope: {x: 0.0000000032558383, y: 0.1350185, z: -0.00000012447735, w: 0.07591438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.00000006948694, y: -0.48107147, z: -0.00000019541582, w: 0.8766814} + inSlope: {x: 0.00000012027047, y: 0.053401943, z: 0.00000012458888, w: 0.029557314} + outSlope: {x: 0.00000012027047, y: 0.053401943, z: 0.00000012458888, w: 0.029557314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.00000008163074, y: -0.48069903, z: -0.00000016084303, w: 0.87688565} + inSlope: {x: -0.00000008176139, y: -0.03600544, z: 0.00000010446783, w: -0.019886306} + outSlope: {x: -0.00000008176139, y: -0.03600544, z: 0.00000010446783, w: -0.019886306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.00000005858933, y: -0.48587048, z: -0.00000018149173, w: 0.8740308} + inSlope: {x: -0.0000001532622, y: -0.10705435, z: 0.00000009926757, w: -0.059829265} + outSlope: {x: -0.0000001532622, y: -0.10705435, z: 0.00000009926757, w: -0.059829265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.00000006120309, y: -0.49496785, z: -0.00000014761206, w: 0.86891127} + inSlope: {x: -0.000000028853597, y: -0.15483034, z: 0.00000027014414, w: -0.08849485} + outSlope: {x: -0.000000028853597, y: -0.15483034, z: 0.00000027014414, w: -0.08849485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000054743555, y: -0.50650716, z: -0.00000014548536, w: 0.8622357} + inSlope: {x: 0.000000013195649, y: -0.18051346, z: -0.00000019379907, w: -0.10619217} + outSlope: {x: 0.000000013195649, y: -0.18051346, z: -0.00000019379907, w: -0.10619217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000000062961874, y: -0.5190277, z: -0.00000017344269, w: 0.85475737} + inSlope: {x: 0.000000102162204, y: -0.18458852, z: 0.0000000030580765, w: -0.112037} + outSlope: {x: 0.000000102162204, y: -0.18458852, z: 0.0000000030580765, w: -0.112037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.000000068360315, y: -0.53111017, z: -0.00000014507773, w: 0.8473028} + inSlope: {x: 0.00000024524851, y: -0.16772339, z: 0.00000015730751, w: -0.10489616} + outSlope: {x: 0.00000024524851, y: -0.16772339, z: 0.00000015730751, w: -0.10489616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.00000009565001, y: -0.54138285, z: -0.00000015247583, w: 0.8407762} + inSlope: {x: 0.00000007196252, y: -0.1305741, z: 0.000000059303332, w: -0.08373986} + outSlope: {x: 0.00000007196252, y: -0.1305741, z: 0.000000059303332, w: -0.08373986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.00000007795191, y: -0.5485138, z: -0.00000013717346, w: 0.83614147} + inSlope: {x: -0.00000026556648, y: -0.10700298, z: 0.00000022961777, w: -0.06954595} + outSlope: {x: -0.00000026556648, y: -0.10700298, z: 0.00000022961777, w: -0.06954595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone02/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.14457689, y: 0.57694554, z: -0.22446749, w: 0.7719104} + inSlope: {x: -0.9135006, y: -0.6509614, z: -2.325101, w: -0.66759974} + outSlope: {x: -0.9135006, y: -0.6509614, z: -2.325101, w: -0.66759974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.20545518, y: 0.5335636, z: -0.37941885, w: 0.7274197} + inSlope: {x: -0.818749, y: -0.67204875, z: -2.1485546, w: -0.83084303} + outSlope: {x: -0.818749, y: -0.67204875, z: -2.1485546, w: -0.83084303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.25370446, y: 0.48737103, z: -0.51083916, w: 0.6611709} + inSlope: {x: -1.1877986, y: -0.30341402, z: -1.6486845, w: -1.5917048} + outSlope: {x: -1.1877986, y: -0.30341402, z: -1.6486845, w: -1.5917048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.36377183, y: 0.49312285, z: -0.599165, w: 0.5152681} + inSlope: {x: 5.421293, y: -7.190746, z: 8.276866, w: -8.37726} + outSlope: {x: 5.421293, y: -7.190746, z: 8.276866, w: -8.37726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.4688763, y: -0.47105262, z: 0.5923487, w: -0.45539805} + inSlope: {x: 6.614261, y: -6.579711, z: 9.70108, w: -6.2748537} + outSlope: {x: 6.614261, y: -6.579711, z: 9.70108, w: -6.2748537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.5178146, y: -0.38385853, z: 0.6938503, w: -0.32108015} + inSlope: {x: 0.692567, y: 1.3448086, z: 1.0588328, w: 1.5495887} + outSlope: {x: 0.692567, y: 1.3448086, z: 1.0588328, w: 1.5495887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.5611856, y: -0.2918088, z: 0.733476, w: -0.24886} + inSlope: {x: 0.41657233, y: 0.92576146, z: 0.33763266, w: 0.60928255} + outSlope: {x: 0.41657233, y: 0.92576146, z: 0.33763266, w: 0.60928255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.57333773, y: -0.2604677, z: 0.7388519, w: -0.23987146} + inSlope: {x: 0.088839635, y: 0.24123834, z: 0.0040462166, w: -0.05218021} + outSlope: {x: 0.088839635, y: 0.24123834, z: 0.0040462166, w: -0.05218021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.57302666, y: -0.25965518, z: 0.7340153, w: -0.25581488} + inSlope: {x: -0.029529164, y: -0.3143368, z: -0.40823334, w: -0.7545274} + outSlope: {x: -0.029529164, y: -0.3143368, z: -0.40823334, w: -0.7545274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.5694019, y: -0.3023643, z: 0.68444026, w: -0.34043914} + inSlope: {x: -0.6128531, y: -0.9632481, z: -0.89836645, w: -1.6841078} + outSlope: {x: -0.6128531, y: -0.9632481, z: -0.89836645, w: -1.6841078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.49134207, y: -0.3880424, z: 0.6142759, w: -0.4802824} + inSlope: {x: -1.1508715, y: -1.1220176, z: -0.51255363, w: -1.145029} + outSlope: {x: -1.1508715, y: -1.1220176, z: -0.51255363, w: -1.145029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.41600713, y: -0.45191327, z: 0.61612415, w: -0.4930552} + inSlope: {x: -6.5008183, y: 6.9045353, z: -7.8019123, w: 8.317989} + outSlope: {x: -6.5008183, y: 6.9045353, z: -7.8019123, w: 8.317989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.3751237, y: 0.53223294, z: -0.4256069, w: 0.62838614} + inSlope: {x: -5.377163, y: 7.281666, z: -7.1091003, w: 9.165251} + outSlope: {x: -5.377163, y: 7.281666, z: -7.1091003, w: 9.165251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.30069143, y: 0.5186282, z: -0.3314167, w: 0.7285413} + inSlope: {x: 1.3664901, y: 0.33350328, z: 1.2773988, w: 0.92485887} + outSlope: {x: 1.3664901, y: 0.33350328, z: 1.2773988, w: 0.92485887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.19299003, y: 0.5766842, z: -0.25534782, w: 0.75165665} + inSlope: {x: 1.0635707, y: 0.5868735, z: 0.7026321, w: 0.15838552} + outSlope: {x: 1.0635707, y: 0.5868735, z: 0.7026321, w: 0.15838552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.15893261, y: 0.59685004, z: -0.23776585, w: 0.74965185} + inSlope: {x: 0.51104414, y: 0.30259615, z: 0.2638239, w: -0.030082794} + outSlope: {x: 0.51104414, y: 0.30259615, z: 0.2638239, w: -0.030082794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.012432071, y: -0.29464936, z: 0.2051541, w: 0.9332411} + inSlope: {x: 0.32291862, y: 0.48254257, z: 0.83759916, w: -0.07335779} + outSlope: {x: 0.32291862, y: 0.48254257, z: 0.83759916, w: -0.07335779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.033952292, y: -0.26249135, z: 0.2609741, w: 0.92835236} + inSlope: {x: 0.30351016, y: 0.45629677, z: 0.7276168, w: -0.07963549} + outSlope: {x: 0.30351016, y: 0.45629677, z: 0.7276168, w: -0.07963549} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.052885648, y: -0.23383151, z: 0.30213505, w: 0.92262685} + inSlope: {x: 0.25490355, y: -0.13252136, z: -1.2096837, w: 0.17997026} + outSlope: {x: 0.25490355, y: -0.13252136, z: -1.2096837, w: 0.17997026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.06792731, y: -0.28015456, z: 0.0997405, w: 0.9523398} + inSlope: {x: 0.16830452, y: -0.56105477, z: -3.0320063, w: 0.15060565} + outSlope: {x: 0.16830452, y: -0.56105477, z: -3.0320063, w: 0.15060565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.07531824, y: -0.3086121, z: -0.10198811, w: 0.94270045} + inSlope: {x: 0.05122178, y: -0.50026476, z: -1.8948399, w: -0.22485347} + outSlope: {x: 0.05122178, y: -0.50026476, z: -1.8948399, w: -0.22485347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.07475444, y: -0.3468327, z: -0.15281457, w: 0.9223701} + inSlope: {x: -0.2098435, y: -0.28462908, z: -0.87734485, w: -0.23861092} + outSlope: {x: -0.2098435, y: -0.28462908, z: -0.87734485, w: -0.23861092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.047349088, y: -0.3465491, z: -0.21892565, w: 0.910897} + inSlope: {x: -0.6575976, y: 0.3650432, z: -1.3474325, w: -0.20784879} + outSlope: {x: -0.6575976, y: 0.3650432, z: -1.3474325, w: -0.20784879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.012893955, y: -0.29817763, z: -0.33240813, w: 0.8946668} + inSlope: {x: -0.86378825, y: 0.8685093, z: -1.4662004, w: -0.24864143} + outSlope: {x: -0.86378825, y: 0.8685093, z: -1.4662004, w: -0.24864143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.06778158, y: -0.23078917, z: -0.4143493, w: 0.87775666} + inSlope: {x: -0.32231092, y: 0.80489403, z: -0.58780146, w: -0.03661441} + outSlope: {x: -0.32231092, y: 0.80489403, z: -0.58780146, w: -0.03661441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.055853423, y: -0.19089675, z: -0.4107537, w: 0.8897866} + inSlope: {x: 0.9774994, y: 0.52927595, z: 0.36597162, w: 0.27757186} + outSlope: {x: 0.9774994, y: 0.52927595, z: 0.36597162, w: 0.27757186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.06250516, y: -0.16024426, z: -0.3655705, w: 0.914753} + inSlope: {x: 0.8767191, y: 0.24191955, z: 0.8644093, w: 0.37739047} + outSlope: {x: 0.8767191, y: 0.24191955, z: 0.8644093, w: 0.37739047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.061000757, y: -0.15865232, z: -0.29554024, w: 0.9400874} + inSlope: {x: -0.33258623, y: -0.108675614, z: 1.6204748, w: 0.43714303} + outSlope: {x: -0.33258623, y: -0.108675614, z: 1.6204748, w: 0.43714303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.01817619, y: -0.17472915, z: -0.1495844, w: 0.97301793} + inSlope: {x: -0.40037793, y: -0.40955862, z: 2.062054, w: 0.27507263} + outSlope: {x: -0.40037793, y: -0.40955862, z: 2.062054, w: 0.27507263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.0076361154, y: -0.21324064, z: -0.020697953, w: 0.9767506} + inSlope: {x: -0.05345645, y: -0.5916296, z: 1.8384087, w: -0.07869548} + outSlope: {x: -0.05345645, y: -0.5916296, z: 1.8384087, w: -0.07869548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.011051207, y: -0.25358495, z: 0.09544929, w: 0.96252894} + inSlope: {x: 0.025401833, y: -0.50857794, z: 1.4476986, w: -0.24534751} + outSlope: {x: 0.025401833, y: -0.50857794, z: 1.4476986, w: -0.24534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.011021818, y: -0.2810268, z: 0.17225958, w: 0.9440493} + inSlope: {x: -0.00044098997, y: -0.41177517, z: 1.1525667, w: -0.27729386} + outSlope: {x: -0.00044098997, y: -0.41177517, z: 1.1525667, w: -0.27729386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.018534223, y: 0.26690412, z: -0.0589639, w: 0.961739} + inSlope: {x: -0.112758316, y: 0.47391352, z: 0.84047633, w: -0.11532253} + outSlope: {x: -0.112758316, y: 0.47391352, z: 0.84047633, w: -0.11532253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.026048759, y: 0.29848707, z: -0.0029521561, w: 0.9540536} + inSlope: {x: 0.008397553, y: 0.48407257, z: 1.1303477, w: -0.17169896} + outSlope: {x: 0.008397553, y: 0.48407257, z: 1.1303477, w: -0.17169896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.017414946, y: 0.3314241, z: 0.09169534, w: 0.938854} + inSlope: {x: 0.36394486, y: 0.25224066, z: 1.567687, w: -0.25400418} + outSlope: {x: 0.36394486, y: 0.25224066, z: 1.567687, w: -0.25400418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.022459907, y: 0.33210716, z: 0.2059982, w: 0.92019844} + inSlope: {x: 0.4485477, y: -0.06312353, z: 1.1938937, w: -0.20471847} + outSlope: {x: 0.4485477, y: -0.06312353, z: 1.1938937, w: -0.20471847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.042370066, y: 0.32301062, z: 0.25082433, w: 0.9115679} + inSlope: {x: 0.39436764, y: -0.6558754, z: 0.24035682, w: 0.12553513} + outSlope: {x: 0.39436764, y: -0.6558754, z: 0.24035682, w: 0.12553513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.07502347, y: 0.24468835, z: 0.23803432, w: 0.9369305} + inSlope: {x: 0.27871576, y: -0.82660604, z: -0.22028543, w: 0.2758211} + outSlope: {x: 0.27871576, y: -0.82660604, z: -0.22028543, w: 0.2758211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.07951889, y: 0.21283585, z: 0.22146343, w: 0.94833094} + inSlope: {x: -0.66292673, y: -0.16780993, z: -1.029462, w: 0.24551912} + outSlope: {x: -0.66292673, y: -0.16780993, z: -1.029462, w: 0.24551912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.013335225, y: 0.22232167, z: 0.100821696, w: 0.9696547} + inSlope: {x: -1.5651882, y: 0.28734004, z: -2.1943195, w: 0.0625871} + outSlope: {x: -1.5651882, y: 0.28734004, z: -2.1943195, w: 0.0625871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.1290984, y: 0.2511342, z: -0.071008116, w: 0.9566729} + inSlope: {x: -1.0309733, y: 0.04226944, z: -2.4566703, w: -0.26108432} + outSlope: {x: -1.0309733, y: 0.04226944, z: -2.4566703, w: -0.26108432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.15074927, y: 0.22795561, z: -0.22661734, w: 0.9348559} + inSlope: {x: 0.49340528, y: -1.2423285, z: -2.307032, w: -0.27919972} + outSlope: {x: 0.49340528, y: -1.2423285, z: -2.307032, w: -0.27919972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.06333449, y: 0.08554951, z: -0.37850252, w: 0.9194596} + inSlope: {x: 0.76575303, y: -1.1852875, z: -1.7369277, w: -0.37562183} + outSlope: {x: 0.76575303, y: -1.1852875, z: -1.7369277, w: -0.37562183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.04868529, y: 0.06997368, z: -0.45812508, w: 0.88479084} + inSlope: {x: -0.013121635, y: 0.08928159, z: -0.8406116, w: -0.41983786} + outSlope: {x: -0.013121635, y: 0.08928159, z: -0.8406116, w: -0.41983786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0650834, y: 0.09744945, z: -0.49054405, w: 0.8635012} + inSlope: {x: -0.21566397, y: 0.5166453, z: 0.12853575, w: -0.01103422} + outSlope: {x: -0.21566397, y: 0.5166453, z: 0.12853575, w: -0.01103422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.07743021, y: 0.13883512, z: -0.44099307, w: 0.88332015} + inSlope: {x: -0.042074066, y: 0.7250714, z: 1.3794072, w: 0.49235475} + outSlope: {x: -0.042074066, y: 0.7250714, z: 1.3794072, w: 0.49235475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.07069127, y: 0.19409114, z: -0.30668873, w: 0.9291251} + inSlope: {x: 0.2513922, y: 0.7736907, z: 2.1241686, w: 0.5479144} + outSlope: {x: 0.2513922, y: 0.7736907, z: 2.1241686, w: 0.5479144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.043923236, y: 0.24195702, z: -0.15787178, w: 0.9563493} + inSlope: {x: 0.40166423, y: 0.71824515, z: 2.233053, w: 0.40850976} + outSlope: {x: 0.40166423, y: 0.71824515, z: 2.233053, w: 0.40850976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.06905034, y: 0.79972106, z: -0.0757282, w: 0.59156024} + inSlope: {x: 1.278025, y: 0.09016962, z: 0.89892274, w: 0.0043762457} + outSlope: {x: 1.278025, y: 0.09016962, z: 0.89892274, w: 0.0043762457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.0161209, y: 0.8057302, z: -0.01582142, w: 0.5918519} + inSlope: {x: 1.4963362, y: 0.028279247, z: 1.0679201, w: -0.10900721} + outSlope: {x: 1.4963362, y: 0.028279247, z: 1.0679201, w: -0.10900721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.13038993, y: 0.8034903, z: 0.066610314, w: 0.57703114} + inSlope: {x: 1.1033204, y: -0.01377314, z: 1.4082341, w: -0.34766054} + outSlope: {x: 1.1033204, y: -0.01377314, z: 1.4082341, w: -0.34766054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.16317779, y: 0.80389446, z: 0.17187613, w: 0.5455137} + inSlope: {x: 0.27314466, y: -0.024232134, z: 1.1377838, w: -0.33010286} + outSlope: {x: 0.27314466, y: -0.024232134, z: 1.1377838, w: -0.33010286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.16679622, y: 0.8002605, z: 0.21826068, w: 0.53303313} + inSlope: {x: 0.022126071, y: -0.02623154, z: 0.3446597, w: -0.09225043} + outSlope: {x: 0.022126071, y: -0.02623154, z: 0.3446597, w: -0.09225043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.16612688, y: 0.8003982, z: 0.21781434, w: 0.533218} + inSlope: {x: -0.02179022, y: 0.0051270844, z: -0.0203905, w: 0.00734964} + outSlope: {x: -0.02179022, y: 0.0051270844, z: -0.0203905, w: 0.00734964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.1638919, y: 0.80094385, z: 0.21554291, w: 0.53401273} + inSlope: {x: -0.063873336, y: 0.010638755, z: -0.09784826, w: 0.041959804} + outSlope: {x: -0.063873336, y: 0.010638755, z: -0.09784826, w: 0.041959804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.15761347, y: 0.80181617, z: 0.20477256, w: 0.5388107} + inSlope: {x: -0.25961232, y: 0.0046977773, z: -0.24818517, w: 0.15375483} + outSlope: {x: -0.25961232, y: 0.0046977773, z: -0.24818517, w: 0.15375483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.12928927, y: 0.80157, z: 0.18246336, w: 0.55450606} + inSlope: {x: -0.9960855, y: -0.06257284, z: -0.6180712, w: 0.42644307} + outSlope: {x: -0.9960855, y: -0.06257284, z: -0.6180712, w: 0.42644307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.024849553, y: 0.7934761, z: 0.12239253, w: 0.5956494} + inSlope: {x: -2.4095087, y: -0.39211977, z: -1.6794004, w: 0.58492875} + outSlope: {x: -2.4095087, y: -0.39211977, z: -1.6794004, w: 0.58492875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.19186386, y: 0.749306, z: -0.041376743, w: 0.6324687} + inSlope: {x: -1.9195454, y: -0.35139057, z: -2.3391297, w: -0.009431332} + outSlope: {x: -1.9195454, y: -0.35139057, z: -2.3391297, w: -0.009431332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.23099853, y: 0.74664074, z: -0.18938015, w: 0.59439236} + inSlope: {x: 0.32020038, y: -0.031650193, z: -2.4681315, w: -0.73682874} + outSlope: {x: 0.32020038, y: -0.031650193, z: -2.4681315, w: -0.73682874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.14918579, y: 0.7450875, z: -0.3703434, w: 0.53426} + inSlope: {x: 0.6839572, y: 0.080724835, z: -1.2068609, w: -0.4603593} + outSlope: {x: 0.6839572, y: 0.080724835, z: -1.2068609, w: -0.4603593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.13983685, y: 0.7574002, z: -0.35023737, w: 0.5330331} + inSlope: {x: 0.18961087, y: 0.30779988, z: 0.8083122, w: 0.08528936} + outSlope: {x: 0.18961087, y: 0.30779988, z: 0.8083122, w: 0.08528936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.12391336, y: 0.78611284, z: -0.2626069, w: 0.54562783} + inSlope: {x: 0.36724398, y: 0.33107555, z: 1.4747646, w: 0.28246245} + outSlope: {x: 0.36724398, y: 0.33107555, z: 1.4747646, w: 0.28246245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.090888485, y: 0.80152786, z: -0.15367235, w: 0.5706813} + inSlope: {x: 0.49555042, y: 0.23130792, z: 1.6346028, w: 0.3759361} + outSlope: {x: 0.49555042, y: 0.23130792, z: 1.6346028, w: 0.3759361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.045347527, y: 0.88650304, z: -0.04006618, w: 0.45874903} + inSlope: {x: 0.89922625, y: 0.37498337, z: 0.38168052, w: -0.71954185} + outSlope: {x: 0.89922625, y: 0.37498337, z: 0.38168052, w: -0.71954185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.0145794805, y: 0.911493, z: -0.014629899, w: 0.4107967} + inSlope: {x: 1.048131, y: 0.33356506, z: 0.39392573, w: -0.7972028} + outSlope: {x: 1.048131, y: 0.33356506, z: 0.39392573, w: -0.7972028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.094353385, y: 0.9309625, z: 0.012438505, w: 0.35249326} + inSlope: {x: 0.68806934, y: 0.11612968, z: 0.6837306, w: -0.4446512} + outSlope: {x: 0.68806934, y: 0.11612968, z: 0.6837306, w: -0.4446512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.10628933, y: 0.92697144, z: 0.07650165, w: 0.35153103} + inSlope: {x: 0.17938285, y: -0.04355048, z: 0.822986, w: -0.09835978} + outSlope: {x: 0.17938285, y: -0.04355048, z: 0.822986, w: -0.09835978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.11826256, y: 0.92515785, z: 0.1221308, w: 0.3393833} + inSlope: {x: 0.37209037, y: 0.0870831, z: 0.37062952, w: -0.52972144} + outSlope: {x: 0.37209037, y: 0.0870831, z: 0.37062952, w: -0.52972144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.15588365, y: 0.93857837, z: 0.12590127, w: 0.28092673} + inSlope: {x: 0.34467933, y: 0.116633266, z: 0.08568503, w: -0.5573189} + outSlope: {x: 0.34467933, y: 0.116633266, z: 0.08568503, w: -0.5573189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.16420339, y: 0.9407034, z: 0.13355139, w: 0.26510066} + inSlope: {x: -0.081053756, y: -0.062136766, z: 0.20364395, w: 0.14407352} + outSlope: {x: -0.081053756, y: -0.062136766, z: 0.20364395, w: 0.14407352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.14508034, y: 0.9302964, z: 0.1530441, w: 0.30012968} + inSlope: {x: -0.48353592, y: -0.18683559, z: 0.25550362, w: 0.6451676} + outSlope: {x: -0.48353592, y: -0.18683559, z: 0.25550362, w: 0.6451676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.09975494, y: 0.91580087, z: 0.16760638, w: 0.3510923} + inSlope: {x: -1.3011385, y: -0.1855768, z: -0.089506805, w: 0.74217284} + outSlope: {x: -1.3011385, y: -0.1855768, z: -0.089506805, w: 0.74217284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.02834278, y: 0.9055617, z: 0.14111415, w: 0.3990507} + inSlope: {x: -2.8084018, y: -0.38099316, z: -1.0951325, w: 0.51240146} + outSlope: {x: -2.8084018, y: -0.38099316, z: -1.0951325, w: 0.51240146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.27456492, y: 0.8650199, z: 0.021640847, w: 0.4193881} + inSlope: {x: -1.7883971, y: -0.27373755, z: -1.4862753, w: 0.10243367} + outSlope: {x: -1.7883971, y: -0.27373755, z: -1.4862753, w: 0.10243367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.26671064, y: 0.8690764, z: -0.056985192, w: 0.41270366} + inSlope: {x: 0.6727333, y: 0.100777104, z: -1.7719798, w: -0.25914955} + outSlope: {x: 0.6727333, y: 0.100777104, z: -1.7719798, w: -0.25914955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.18489923, y: 0.87845206, z: -0.21453868, w: 0.38484716} + inSlope: {x: 0.7924815, y: 0.11332807, z: -1.0979412, w: -0.18157408} + outSlope: {x: 0.7924815, y: 0.11332807, z: -1.0979412, w: -0.18157408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.16108422, y: 0.8841814, z: -0.20332496, w: 0.38850245} + inSlope: {x: 0.36964095, y: 0.0814891, z: 0.4505961, w: 0.17736132} + outSlope: {x: 0.36964095, y: 0.0814891, z: 0.4505961, w: 0.17736132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.13563135, y: 0.8893134, z: -0.15448064, w: 0.4084869} + inSlope: {x: 0.587098, y: 0.052537307, z: 0.8613875, w: 0.36494592} + outSlope: {x: 0.587098, y: 0.052537307, z: 0.8613875, w: 0.36494592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.08283246, y: 0.89118385, z: -0.08851433, w: 0.43714452} + inSlope: {x: 0.7922667, y: 0.02806684, z: 0.9898487, w: 0.43001804} + outSlope: {x: 0.7922667, y: 0.02806684, z: 0.9898487, w: 0.43001804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.0065054325, y: 0.54868966, z: -0.015913105, w: 0.83584934} + inSlope: {x: 0.029562509, y: -0.0033727412, z: 0.044931646, w: 0.0027234147} + outSlope: {x: 0.029562509, y: -0.0033727412, z: 0.044931646, w: 0.0027234147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.008475563, y: 0.5484649, z: -0.012918731, w: 0.83603084} + inSlope: {x: 0.10749055, y: 0.00090512086, z: 0.1682323, w: -0.0014059787} + outSlope: {x: 0.10749055, y: 0.00090512086, z: 0.1682323, w: -0.0014059787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.020832391, y: 0.5488103, z: 0.006509864, w: 0.83566195} + inSlope: {x: 0.3226861, y: 0.15812615, z: 0.72990793, w: -0.1502913} + outSlope: {x: 0.3226861, y: 0.15812615, z: 0.72990793, w: -0.1502913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.051485024, y: 0.56954086, z: 0.084367596, w: 0.81599915} + inSlope: {x: 0.48866737, y: 0.32615638, z: 1.1377196, w: -0.3773539} + outSlope: {x: 0.48866737, y: 0.32615638, z: 1.1377196, w: -0.3773539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.08596478, y: 0.5922823, z: 0.15815166, w: 0.78536606} + inSlope: {x: 0.49542415, y: 0.36963987, z: 0.88513464, w: -0.49605775} + outSlope: {x: 0.49542415, y: 0.36963987, z: 0.88513464, w: -0.49605775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.11751798, y: 0.61880857, z: 0.20234339, w: 0.74988174} + inSlope: {x: 0.31174272, y: 0.25632071, z: 0.396932, w: -0.34462732} + outSlope: {x: 0.31174272, y: 0.25632071, z: 0.396932, w: -0.34462732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.12751563, y: 0.6264462, z: 0.21105702, w: 0.73943216} + inSlope: {x: 0.106338695, y: 0.04682617, z: -0.07471656, w: -0.03696285} + outSlope: {x: 0.106338695, y: 0.04682617, z: -0.07471656, w: -0.03696285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.13169141, y: 0.6250498, z: 0.19238473, w: 0.7449551} + inSlope: {x: -0.09253743, y: -0.03623303, z: -0.4673936, w: 0.15725546} + outSlope: {x: -0.09253743, y: -0.03623303, z: -0.4673936, w: 0.15725546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.11518171, y: 0.62161684, z: 0.14876011, w: 0.76039207} + inSlope: {x: -0.7653912, y: -0.12423338, z: -0.9380413, w: 0.3390053} + outSlope: {x: -0.7653912, y: -0.12423338, z: -0.9380413, w: 0.3390053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.029675748, y: 0.6084913, z: 0.06735726, w: 0.7901397} + inSlope: {x: -1.9448446, y: -0.32367715, z: -1.6785766, w: 0.2924689} + outSlope: {x: -1.9448446, y: -0.32367715, z: -1.6785766, w: 0.2924689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.1440383, y: 0.5784753, z: -0.07497016, w: 0.799374} + inSlope: {x: -1.6824694, y: -0.228464, z: -2.5088356, w: -0.33022624} + outSlope: {x: -1.6824694, y: -0.228464, z: -2.5088356, w: -0.33022624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.19457346, y: 0.5780403, z: -0.26703477, w: 0.7461252} + inSlope: {x: -0.19767922, y: -0.33941817, z: -2.9608681, w: -0.87529176} + outSlope: {x: -0.19767922, y: -0.33941817, z: -2.9608681, w: -0.87529176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.17038615, y: 0.5332357, z: -0.46961153, w: 0.6827101} + inSlope: {x: 0.53309536, y: -0.16427001, z: -1.1709653, w: -0.31174275} + outSlope: {x: 0.53309536, y: -0.16427001, z: -1.1709653, w: -0.31174275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.123519465, y: 0.5561455, z: -0.4231076, w: 0.7045744} + inSlope: {x: 1.0225335, y: 0.40823483, z: 1.6039453, w: 0.6312771} + outSlope: {x: 1.0225335, y: 0.40823483, z: 1.6039453, w: 0.6312771} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.034096994, y: 0.5876476, z: -0.25582847, w: 0.76685035} + inSlope: {x: 0.9303178, y: 0.127491, z: 2.3827772, w: 0.81075656} + outSlope: {x: 0.9303178, y: 0.127491, z: 2.3827772, w: 0.81075656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.00047862044, y: 0.57313824, z: -0.10551747, w: 0.8126367} + inSlope: {x: 0.5188198, y: -0.21771857, z: 2.2554717, w: 0.68704057} + outSlope: {x: 0.5188198, y: -0.21771857, z: 2.2554717, w: 0.68704057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.018671598, y: 0.28166807, z: 0.07379988, w: 0.95648736} + inSlope: {x: 0.25007173, y: 0.15966858, z: 0.7757987, w: -0.13644263} + outSlope: {x: 0.25007173, y: 0.15966858, z: 0.7757987, w: -0.13644263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.035337094, y: 0.29230884, z: 0.12550132, w: 0.94739443} + inSlope: {x: 0.2952875, y: 0.18216914, z: 0.8978238, w: -0.19590873} + outSlope: {x: 0.2952875, y: 0.18216914, z: 0.8978238, w: -0.19590873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.058029212, y: 0.30594862, z: 0.19346699, w: 0.9303755} + inSlope: {x: 0.03393294, y: 0.124077216, z: 0.87189627, w: -0.21287525} + outSlope: {x: 0.03393294, y: 0.124077216, z: 0.87189627, w: -0.21287525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.039859872, y: 0.30884656, z: 0.24171267, w: 0.9190212} + inSlope: {x: -0.26176724, y: -0.009142455, z: 0.44287452, w: -0.092334464} + outSlope: {x: -0.26176724, y: -0.009142455, z: 0.44287452, w: -0.092334464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.023139374, y: 0.30473006, z: 0.25249586, w: 0.91806865} + inSlope: {x: -0.46871194, y: -0.40940776, z: -0.805229, w: 0.28855723} + outSlope: {x: -0.46871194, y: -0.40940776, z: -0.805229, w: 0.28855723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.022612726, y: 0.25427836, z: 0.13438717, w: 0.95748174} + inSlope: {x: -0.5387218, y: -0.6703229, z: -1.61167, w: 0.42404282} + outSlope: {x: -0.5387218, y: -0.6703229, z: -1.61167, w: 0.42404282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.048664548, y: 0.21538559, z: 0.037683252, w: 0.9745875} + inSlope: {x: -0.30552244, y: -0.31820565, z: -1.1059521, w: 0.1326146} + outSlope: {x: -0.30552244, y: -0.31820565, z: -1.1059521, w: 0.1326146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.06333452, y: 0.21186608, z: -0.013020498, w: 0.9751574} + inSlope: {x: -0.18118277, y: -0.050798938, z: -0.5898798, w: -0.0012271013} + outSlope: {x: -0.18118277, y: -0.050798938, z: -0.5898798, w: -0.0012271013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.07281363, y: 0.20861481, z: -0.040939324, w: 0.97442394} + inSlope: {x: 0.021495208, y: -0.32872415, z: -0.25005805, w: 0.057561133} + outSlope: {x: 0.021495208, y: -0.32872415, z: -0.25005805, w: 0.057561133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.060469523, y: 0.16805187, z: -0.04634967, w: 0.98282945} + inSlope: {x: 0.5140818, y: -0.901353, z: -0.028654017, w: 0.15484694} + outSlope: {x: 0.5140818, y: -0.901353, z: -0.028654017, w: 0.15484694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.004293858, y: 0.08847733, z: -0.04475849, w: 0.9950628} + inSlope: {x: 0.69675696, y: -0.7466068, z: -0.30444187, w: 0.07875093} + outSlope: {x: 0.69675696, y: -0.7466068, z: -0.30444187, w: 0.07875093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.03239826, y: 0.06853981, z: -0.08692744, w: 0.9933258} + inSlope: {x: 0.41577455, y: -0.24072781, z: -1.0801947, w: -0.11995775} + outSlope: {x: 0.41577455, y: -0.24072781, z: -1.0801947, w: -0.11995775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.051122952, y: 0.05639175, z: -0.18873298, w: 0.9790742} + inSlope: {x: 0.029662088, y: 0.12383715, z: -0.79796606, w: -0.12418598} + outSlope: {x: 0.029662088, y: 0.12383715, z: -0.79796606, w: -0.12418598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.036351778, y: 0.085045554, z: -0.19328485, w: 0.9767736} + inSlope: {x: -0.37768775, y: 0.7824308, z: 0.121643245, w: -0.05448482} + outSlope: {x: -0.37768775, y: 0.7824308, z: 0.121643245, w: -0.05448482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.0007825523, y: 0.16067864, z: -0.17251967, w: 0.9718121} + inSlope: {x: -0.28864914, y: 1.1445999, z: 1.0926646, w: -0.049392182} + outSlope: {x: -0.28864914, y: 1.1445999, z: 1.0926646, w: -0.049392182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.0021210434, y: 0.23760435, z: -0.04764834, w: 0.97019035} + inSlope: {x: -0.043569516, y: 1.1542985, z: 1.8737402, w: -0.024335446} + outSlope: {x: -0.043569516, y: 1.1542985, z: 1.8737402, w: -0.024335446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone19/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.009234045, y: 0.746115, z: -0.03252612, w: 0.664958} + inSlope: {x: 0.9815672, y: 0.46926895, z: 2.117189, w: -0.719206} + outSlope: {x: 0.9815672, y: 0.46926895, z: 2.117189, w: -0.719206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.056180395, y: 0.77738845, z: 0.108569406, w: 0.61702806} + inSlope: {x: 0.99043465, y: 0.23573948, z: 1.8563793, w: -0.65178955} + outSlope: {x: 0.99043465, y: 0.23573948, z: 1.8563793, w: -0.65178955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.12277677, y: 0.77753574, z: 0.21490276, w: 0.57808375} + inSlope: {x: 0.56691486, y: -0.09419613, z: 0.64831144, w: -0.1299037} + outSlope: {x: 0.56691486, y: -0.09419613, z: 0.64831144, w: -0.1299037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.13174208, y: 0.76483345, z: 0.19498008, w: 0.59971374} + inSlope: {x: 0.1323409, y: -0.15728903, z: -0.21000855, w: 0.24466456} + outSlope: {x: 0.1323409, y: -0.15728903, z: -0.21000855, w: 0.24466456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.14041592, y: 0.75657135, z: 0.18691161, w: 0.61069405} + inSlope: {x: 0.41638434, y: -0.1287849, z: 0.28548443, w: -0.050491855} + outSlope: {x: 0.41638434, y: -0.1287849, z: 0.28548443, w: -0.050491855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.18724015, y: 0.74766827, z: 0.23303108, w: 0.5929839} + inSlope: {x: 0.45919937, y: -0.097705744, z: 0.45633453, w: -0.17429811} + outSlope: {x: 0.45919937, y: -0.097705744, z: 0.45633453, w: -0.17429811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.20162064, y: 0.7435486, z: 0.24773449, w: 0.5874626} + inSlope: {x: -0.26814234, y: 0.033996165, z: -0.14504515, w: 0.087370604} + outSlope: {x: -0.26814234, y: 0.033996165, z: -0.14504515, w: 0.087370604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.1515006, y: 0.7521995, z: 0.21369863, w: 0.60462916} + inSlope: {x: -0.9255985, y: 0.1510162, z: -0.705102, w: 0.260027} + outSlope: {x: -0.9255985, y: 0.1510162, z: -0.705102, w: 0.260027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.07825153, y: 0.7636769, z: 0.15375443, w: 0.6221205} + inSlope: {x: -0.9100133, y: 0.20213465, z: -1.1755123, w: 0.14172083} + outSlope: {x: -0.9100133, y: 0.20213465, z: -1.1755123, w: 0.14172083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.030208819, y: 0.7791411, z: 0.05701965, w: 0.6235185} + inSlope: {x: -0.4139128, y: 0.08711223, z: -2.0736494, w: -0.022223316} + outSlope: {x: -0.4139128, y: 0.08711223, z: -2.0736494, w: -0.022223316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.023082891, y: 0.7752877, z: -0.12263341, w: 0.61915845} + inSlope: {x: -0.53664166, y: -0.1149151, z: -1.8426989, w: -0.0573576} + outSlope: {x: -0.53664166, y: -0.1149151, z: -1.8426989, w: -0.0573576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.041317873, y: 0.7638246, z: -0.18858588, w: 0.6158736} + inSlope: {x: -0.91189075, y: -0.12627521, z: -0.67963445, w: -0.08419647} + outSlope: {x: -0.91189075, y: -0.12627521, z: -0.67963445, w: -0.08419647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.09845912, y: 0.758457, z: -0.21321899, w: 0.60793626} + inSlope: {x: -0.53321767, y: -0.03649423, z: -0.060005598, w: -0.040362477} + outSlope: {x: -0.53321767, y: -0.03649423, z: -0.060005598, w: -0.040362477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.11238814, y: 0.7589604, z: -0.19658375, w: 0.61049384} + inSlope: {x: -0.10881749, y: -0.024334084, z: 0.3544435, w: 0.1203257} + outSlope: {x: -0.10881749, y: -0.024334084, z: 0.3544435, w: 0.1203257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.11296294, y: 0.7552136, z: -0.16597672, w: 0.62397397} + inSlope: {x: 0.39270678, y: -0.0444574, z: 0.7646498, w: 0.2841001} + outSlope: {x: 0.39270678, y: -0.0444574, z: 0.7646498, w: 0.2841001} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.06004597, y: 0.7530349, z: -0.094666876, w: 0.6483603} + inSlope: {x: 0.7940386, y: -0.032692622, z: 1.0700303, w: 0.3659261} + outSlope: {x: 0.7940386, y: -0.032692622, z: 1.0700303, w: 0.3659261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.80628324, y: 0.2571401, z: -0.5175478, w: -0.12621644} + inSlope: {x: -1.1538182, y: 1.7437756, z: -0.41951677, w: -0.74907386} + outSlope: {x: -1.1538182, y: 1.7437756, z: -0.41951677, w: -0.74907386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.7293895, y: 0.3733503, z: -0.5455056, w: -0.17613687} + inSlope: {x: -1.1828768, y: 1.7762103, z: 0.13468169, w: -1.2503226} + outSlope: {x: -1.1828768, y: 1.7762103, z: 0.13468169, w: -1.2503226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.64862263, y: 0.4938836, z: -0.49959663, w: -0.29286662} + inSlope: {x: -1.032215, y: 1.5869665, z: 1.1400893, w: -1.6113448} + outSlope: {x: -1.032215, y: 1.5869665, z: 1.1400893, w: -1.6113448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.5918099, y: 0.58487034, z: -0.39354792, w: -0.39090618} + inSlope: {x: -1.32834, y: 1.516331, z: 0.93554866, w: -0.7342049} + outSlope: {x: -1.32834, y: 1.516331, z: 0.93554866, w: -0.7342049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.47157386, y: 0.6959889, z: -0.37490132, w: -0.39072567} + inSlope: {x: -7.168027, y: -9.8594265, z: 5.111042, w: 6.70841} + outSlope: {x: -7.168027, y: -9.8594265, z: 5.111042, w: 6.70841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.36358556, y: -0.72925013, z: 0.2876809, w: 0.50322896} + inSlope: {x: -5.876677, y: -10.679021, z: 4.414411, w: 7.2296753} + outSlope: {x: -5.876677, y: -10.679021, z: 4.414411, w: 7.2296753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.31170315, y: -0.7273718, z: 0.21347651, w: 0.5728867} + inSlope: {x: 0.8574722, y: -0.07120721, z: -0.6408365, w: 0.67068785} + outSlope: {x: 0.8574722, y: -0.07120721, z: -0.6408365, w: 0.67068785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.24929672, y: -0.73874104, z: 0.20226651, w: 0.5926221} + inSlope: {x: 0.80582136, y: -0.11216977, z: -0.027414024, w: 0.22334811} + outSlope: {x: 0.80582136, y: -0.11216977, z: -0.027414024, w: 0.22334811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.20429863, y: -0.74232244, z: 0.20982261, w: 0.6026558} + inSlope: {x: -0.027517766, y: 0.092212036, z: 0.23125511, w: 0.017354667} + outSlope: {x: -0.027517766, y: 0.092212036, z: 0.23125511, w: 0.017354667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.2529644, y: -0.7264505, z: 0.2330895, w: 0.59493524} + inSlope: {x: -1.5938253, y: 0.6614221, z: 0.8740907, w: -0.4679058} + outSlope: {x: -1.5938253, y: 0.6614221, z: 0.8740907, w: -0.4679058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.41673282, y: -0.6541643, z: 0.32632643, w: 0.54029065} + inSlope: {x: 5.9387665, y: 9.658224, z: -5.008335, w: -7.8739743} + outSlope: {x: 5.9387665, y: 9.658224, z: -5.008335, w: -7.8739743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.5385886, y: 0.5608533, z: -0.43445018, w: -0.45455346} + inSlope: {x: 7.899059, y: 8.221314, z: -6.3662167, w: -6.7342696} + outSlope: {x: 7.899059, y: 8.221314, z: -6.3662167, w: -6.7342696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.6360991, y: 0.44162002, z: -0.52219945, w: -0.35729176} + inSlope: {x: 1.2840505, y: -1.6732347, z: -0.9752048, w: 1.5188227} + outSlope: {x: 1.2840505, y: -1.6732347, z: -0.9752048, w: 1.5188227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.70973414, y: 0.33783504, z: -0.564431, w: -0.2521161} + inSlope: {x: 0.9329146, y: -1.3989229, z: -0.41421336, w: 1.5374447} + outSlope: {x: 0.9329146, y: -1.3989229, z: -0.41421336, w: 1.5374447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.76044333, y: 0.25516352, z: -0.5774082, w: -0.15237227} + inSlope: {x: 0.5808395, y: -0.61776394, z: 0.15096277, w: 0.86171824} + outSlope: {x: 0.5808395, y: -0.61776394, z: 0.15096277, w: 0.86171824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.78715175, y: 0.2554959, z: -0.54430985, w: -0.13726136} + inSlope: {x: 0.4007697, y: 0.0049875635, z: 0.49665275, w: 0.22674476} + outSlope: {x: 0.4007697, y: 0.0049875635, z: 0.49665275, w: 0.22674476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.059196517, y: 0.18990678, z: 0.22065577, w: 0.9548519} + inSlope: {x: -0.5369723, y: -0.24368323, z: 0.9471504, w: -0.18171303} + outSlope: {x: -0.5369723, y: -0.24368323, z: 0.9471504, w: -0.18171303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.023411147, y: 0.17366703, z: 0.28377658, w: 0.94274205} + inSlope: {x: -0.4976516, y: -0.28055045, z: 0.82678926, w: -0.177089} + outSlope: {x: -0.4976516, y: -0.28055045, z: 0.82678926, w: -0.177089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.007133345, y: 0.1525134, z: 0.33085498, w: 0.9312485} + inSlope: {x: -0.49971035, y: -0.060706414, z: -1.2766255, w: 0.26961124} + outSlope: {x: -0.49971035, y: -0.060706414, z: -1.2766255, w: 0.26961124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.043193128, y: 0.16557573, z: 0.11362059, w: 0.9786774} + inSlope: {x: -0.44588023, y: 0.15824322, z: -3.208745, w: 0.34911838} + outSlope: {x: -0.44588023, y: 0.15824322, z: -3.208745, w: 0.34911838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.066562824, y: 0.17360497, z: -0.09682492, w: 0.977781} + inSlope: {x: -0.16340376, y: 0.30666715, z: -1.8892615, w: -0.091603786} + outSlope: {x: -0.16340376, y: 0.30666715, z: -1.8892615, w: -0.091603786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.06497251, y: 0.20645007, z: -0.13819095, w: 0.9664679} + inSlope: {x: -0.036554337, y: 0.33999375, z: -0.59814525, w: -0.15610173} + outSlope: {x: -0.036554337, y: 0.33999375, z: -0.59814525, w: -0.15610173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.071435, y: 0.21892127, z: -0.17654915, w: 0.95697486} + inSlope: {x: -0.16332377, y: 0.078680724, z: -0.7952995, w: -0.18986979} + outSlope: {x: -0.16332377, y: 0.078680724, z: -0.7952995, w: -0.18986979} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.08674125, y: 0.2169371, z: -0.24419305, w: 0.941161} + inSlope: {x: -0.2044277, y: -0.032992885, z: -0.905105, w: -0.23869538} + outSlope: {x: -0.2044277, y: -0.032992885, z: -0.905105, w: -0.23869538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.0986823, y: 0.21452379, z: -0.29718676, w: 0.92516017} + inSlope: {x: 0.17988178, y: -0.029729381, z: -0.54432136, w: -0.14257096} + outSlope: {x: 0.17988178, y: -0.029729381, z: -0.54432136, w: -0.14257096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0627656, y: 0.2129746, z: -0.3167433, w: 0.9221583} + inSlope: {x: 1.309613, y: -0.07212341, z: -0.42748553, w: -0.11900918} + outSlope: {x: 1.309613, y: -0.07212341, z: -0.42748553, w: -0.11900918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.07587043, y: 0.20491077, z: -0.35416448, w: 0.90929794} + inSlope: {x: 1.1406634, y: -0.07846439, z: -0.28679135, w: -0.10394676} + outSlope: {x: 1.1406634, y: -0.07846439, z: -0.28679135, w: -0.10394676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.08926859, y: 0.2025164, z: -0.35496852, w: 0.9083037} + inSlope: {x: 0.02231773, y: -0.0024280278, z: 0.26327005, w: 0.09544211} + outSlope: {x: 0.02231773, y: -0.0024280278, z: 0.26327005, w: 0.09544211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.078845076, y: 0.20458715, z: -0.31907436, w: 0.922019} + inSlope: {x: -0.08829743, y: 0.110926695, z: 1.0871916, w: 0.31341898} + outSlope: {x: -0.08829743, y: 0.110926695, z: 1.0871916, w: 0.31341898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.07749981, y: 0.21730135, z: -0.21006139, w: 0.95007795} + inSlope: {x: -0.031056084, y: 0.11972266, z: 2.1896923, w: 0.37597245} + outSlope: {x: -0.031056084, y: 0.11972266, z: 2.1896923, w: 0.37597245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.07470574, y: 0.22054447, z: -0.027219566, w: 0.9721308} + inSlope: {x: -0.0929161, y: -0.10527348, z: 2.667582, w: 0.11991693} + outSlope: {x: -0.0929161, y: -0.10527348, z: 2.667582, w: 0.11991693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.06511542, y: 0.20326991, z: 0.14548916, w: 0.9660612} + inSlope: {x: -0.14390628, y: -0.2592111, z: 2.5915577, w: -0.09107658} + outSlope: {x: -0.14390628, y: -0.2592111, z: 2.5915577, w: -0.09107658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.01983779, y: -0.24504007, z: -0.0401456, w: 0.96847826} + inSlope: {x: 0.055609845, y: -0.039848387, z: -0.079871796, w: -0.014920198} + outSlope: {x: 0.055609845, y: -0.039848387, z: -0.079871796, w: -0.014920198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.023543788, y: -0.24769568, z: -0.045468483, w: 0.96748394} + inSlope: {x: 0.05804478, y: -0.0661509, z: -0.042452764, w: -0.020371495} + outSlope: {x: 0.05804478, y: -0.0661509, z: -0.042452764, w: -0.020371495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.02757433, y: -0.25385705, z: -0.045803946, w: 0.96576303} + inSlope: {x: -0.33378625, y: -0.085421726, z: 1.4457484, w: -0.09862649} + outSlope: {x: -0.33378625, y: -0.085421726, z: 1.4457484, w: -0.09862649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.020945165, y: -0.25908118, z: 0.1472292, w: 0.95433843} + inSlope: {x: -0.5723443, y: -0.003186021, z: 2.2100623, w: -0.24342006} + outSlope: {x: -0.5723443, y: -0.003186021, z: 2.2100623, w: -0.24342006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.048711006, y: -0.2542817, z: 0.24876584, w: 0.9333186} + inSlope: {x: 0.040614054, y: 0.17087696, z: -0.0711121, w: 0.055528596} + outSlope: {x: 0.040614054, y: 0.17087696, z: -0.0711121, w: 0.055528596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.015531895, y: -0.23630573, z: 0.13775097, w: 0.9617396} + inSlope: {x: 0.45151025, y: 0.2227402, z: -1.6563537, w: 0.30508953} + outSlope: {x: 0.45151025, y: 0.2227402, z: -1.6563537, w: 0.30508953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.011468863, y: -0.22459361, z: 0.027997516, w: 0.9739827} + inSlope: {x: 0.34058547, y: 0.10365541, z: -1.4223659, w: 0.0852196} + outSlope: {x: 0.34058547, y: 0.10365541, z: -1.4223659, w: 0.0852196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.029863296, y: -0.22248994, z: -0.05183016, w: 0.97309816} + inSlope: {x: 0.265109, y: 0.027543709, z: -1.1533253, w: -0.059735782} + outSlope: {x: 0.265109, y: 0.027543709, z: -1.1533253, w: -0.059735782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.04680412, y: -0.22092243, z: -0.12572433, w: 0.96602076} + inSlope: {x: 0.26258218, y: 0.044713877, z: -1.1489947, w: -0.15597211} + outSlope: {x: 0.26258218, y: 0.044713877, z: -1.1489947, w: -0.15597211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.064861745, y: -0.21653022, z: -0.20497473, w: 0.9523093} + inSlope: {x: 0.26257616, y: 0.07628446, z: -1.1551707, w: -0.2470437} + outSlope: {x: 0.26257616, y: 0.07628446, z: -1.1551707, w: -0.2470437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.081801765, y: -0.2107548, z: -0.27969205, w: 0.93309337} + inSlope: {x: 0.13050887, y: 0.038766388, z: -0.5764473, w: -0.15028057} + outSlope: {x: 0.13050887, y: 0.038766388, z: -0.5764473, w: -0.15028057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.08225672, y: -0.21136321, z: -0.28180695, w: 0.93227905} + inSlope: {x: -0.04236215, y: -0.04762121, z: 0.1796547, w: 0.04407463} + outSlope: {x: -0.04236215, y: -0.04762121, z: 0.1796547, w: 0.04407463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.0761555, y: -0.21710202, z: -0.25574666, w: 0.9389679} + inSlope: {x: -0.11973041, y: -0.103845395, z: 0.49400622, w: 0.11614269} + outSlope: {x: -0.11973041, y: -0.103845395, z: 0.49400622, w: 0.11614269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.066298366, y: -0.22520432, z: -0.21596298, w: 0.9477592} + inSlope: {x: -0.16144335, y: -0.119368926, z: 0.6343608, w: 0.12573095} + outSlope: {x: -0.16144335, y: -0.119368926, z: 0.6343608, w: 0.12573095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.0546374, y: -0.2330122, z: -0.1711954, w: 0.955726} + inSlope: {x: -0.23155057, y: -0.11656687, z: 0.8843861, w: 0.12912655} + outSlope: {x: -0.23155057, y: -0.11656687, z: 0.8843861, w: 0.12912655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.03543599, y: -0.24074101, z: -0.09808697, w: 0.96496993} + inSlope: {x: -0.2881242, y: -0.11597371, z: 1.097019, w: 0.1387082} + outSlope: {x: -0.2881242, y: -0.11597371, z: 1.097019, w: 0.1387082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.020198263, y: -0.52612144, z: 0.019349193, w: 0.8499493} + inSlope: {x: -0.13561882, y: 0.0033083453, z: 0.21930797, w: -0.0087766405} + outSlope: {x: -0.13561882, y: 0.0033083453, z: 0.21930797, w: -0.0087766405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.029236289, y: -0.52590096, z: 0.033964504, w: 0.8493644} + inSlope: {x: -0.16537687, y: 0.0060885525, z: 0.26748067, w: -0.014022676} + outSlope: {x: -0.16537687, y: 0.0060885525, z: 0.26748067, w: -0.014022676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.042240642, y: -0.5253099, z: 0.055000555, w: 0.8480803} + inSlope: {x: -0.15875587, y: 0.008456446, z: 0.25683784, w: -0.01768296} + outSlope: {x: -0.15875587, y: 0.008456446, z: 0.25683784, w: -0.01768296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.050396185, y: -0.52477384, z: 0.06819733, w: 0.8470075} + inSlope: {x: -0.1242763, y: -0.0003962163, z: 0.20657398, w: -0.024446335} + outSlope: {x: -0.1242763, y: -0.0003962163, z: 0.20657398, w: -0.024446335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.0588049, y: -0.52536273, z: 0.08253392, w: 0.84482193} + inSlope: {x: -0.123326465, y: -0.14844893, z: 0.28014562, w: -0.13235082} + outSlope: {x: -0.123326465, y: -0.14844893, z: 0.28014562, w: -0.13235082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.06683384, y: -0.54455996, z: 0.10553674, w: 0.82936704} + inSlope: {x: -0.07748193, y: -0.21947324, z: 0.1869034, w: -0.1694277} + outSlope: {x: -0.07748193, y: -0.21947324, z: 0.1869034, w: -0.1694277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.069132134, y: -0.5546154, z: 0.10744547, w: 0.82223964} + inSlope: {x: 0.015570918, y: -0.11521338, z: -0.3895999, w: -0.038217682} + outSlope: {x: 0.015570918, y: -0.11521338, z: -0.3895999, w: -0.038217682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.06475846, y: -0.55991626, z: 0.05360862, w: 0.82427317} + inSlope: {x: 0.13283119, y: -0.04615896, z: -0.9334159, w: 0.02971562} + outSlope: {x: 0.13283119, y: -0.04615896, z: -0.9334159, w: 0.02971562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.05142763, y: -0.5607677, z: -0.016965572, w: 0.8262003} + inSlope: {x: 0.26779243, y: -0.057505667, z: -0.83322597, w: -0.026085332} + outSlope: {x: 0.26779243, y: -0.057505667, z: -0.83322597, w: -0.026085332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.029065559, y: -0.56758094, z: -0.057448503, w: 0.8207964} + inSlope: {x: 0.3390092, y: -0.26591927, z: -0.5154755, w: -0.20993276} + outSlope: {x: 0.3390092, y: -0.26591927, z: -0.5154755, w: -0.20993276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.0062425504, y: -0.59621096, z: -0.08567108, w: 0.79821926} + inSlope: {x: 0.5469534, y: -0.27472225, z: -0.68871003, w: -0.2947901} + outSlope: {x: 0.5469534, y: -0.27472225, z: -0.68871003, w: -0.2947901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.04383554, y: -0.6041975, z: -0.14924374, w: 0.78150505} + inSlope: {x: 0.7990465, y: 0.013275031, z: -1.0309446, w: -0.24140728} + outSlope: {x: 0.7990465, y: 0.013275031, z: -1.0309446, w: -0.24140728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.10025892, y: -0.5944416, z: -0.22308125, w: 0.7660431} + inSlope: {x: 0.2489679, y: 0.107141584, z: -0.2903881, w: -0.00004258752} + outSlope: {x: 0.2489679, y: 0.107141584, z: -0.2903881, w: -0.00004258752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.07701936, y: -0.58991706, z: -0.18794827, w: 0.7814994} + inSlope: {x: -0.5920794, y: 0.17838092, z: 0.9971947, w: 0.37434283} + outSlope: {x: -0.5920794, y: 0.17838092, z: 0.9971947, w: 0.37434283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.021343164, y: -0.57066596, z: -0.09016939, w: 0.8159377} + inSlope: {x: -0.6387402, y: 0.3404354, z: 1.2653828, w: 0.4274509} + outSlope: {x: -0.6387402, y: 0.3404354, z: 1.2653828, w: 0.4274509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.008115586, y: -0.5445419, z: -0.019290844, w: 0.8384725} + inSlope: {x: -0.44203937, y: 0.39200112, z: 1.0635587, w: 0.33814275} + outSlope: {x: -0.44203937, y: 0.39200112, z: 1.0635587, w: 0.33814275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone27 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.07480619, y: -0.2965468, z: 0.12852122, w: 0.9433697} + inSlope: {x: -0.081969194, y: 0.021467127, z: 0.26067328, w: -0.0379695} + outSlope: {x: -0.081969194, y: 0.021467127, z: 0.26067328, w: -0.0379695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.08026885, y: -0.29511616, z: 0.14589323, w: 0.9408393} + inSlope: {x: -0.10910694, y: 0.030490836, z: 0.3479136, w: -0.056146156} + outSlope: {x: -0.10910694, y: 0.030490836, z: 0.3479136, w: -0.056146156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.08934859, y: -0.2924828, z: 0.17489314, w: 0.9358862} + inSlope: {x: -0.13814433, y: 0.045103133, z: 0.43888193, w: -0.08130263} + outSlope: {x: -0.13814433, y: 0.045103133, z: 0.43888193, w: -0.08130263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.098681524, y: -0.28910455, z: 0.20438994, w: 0.9300028} + inSlope: {x: -0.119774334, y: 0.021987429, z: 0.4037891, w: -0.09330669} + outSlope: {x: -0.119774334, y: 0.021987429, z: 0.4037891, w: -0.09330669} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.1053128, y: -0.28955218, z: 0.22871247, w: 0.92344975} + inSlope: {x: -0.013760794, y: -0.26773652, z: 0.3156911, w: -0.1683938} + outSlope: {x: -0.013760794, y: -0.26773652, z: 0.3156911, w: -0.1683938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.10051564, y: -0.32479, z: 0.24646705, w: 0.9075583} + inSlope: {x: 0.08173027, y: -0.37394676, z: 0.08196297, w: -0.14072005} + outSlope: {x: 0.08173027, y: -0.37394676, z: 0.08196297, w: -0.14072005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.09441932, y: -0.33939394, z: 0.23963696, w: 0.9046938} + inSlope: {x: 0.34563193, y: -0.1368616, z: -0.97762764, w: 0.17228745} + outSlope: {x: 0.34563193, y: -0.1368616, z: -0.97762764, w: 0.17228745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.054447826, y: -0.3430317, z: 0.11616322, w: 0.9305218} + inSlope: {x: 0.6959978, y: 0.03273731, z: -2.1671052, w: 0.27179357} + outSlope: {x: 0.6959978, y: 0.03273731, z: -2.1671052, w: 0.27179357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.0016527283, y: -0.33503053, z: -0.049207307, w: 0.94092} + inSlope: {x: 0.62716335, y: 0.15855688, z: -1.910224, w: 0.042182475} + outSlope: {x: 0.62716335, y: 0.15855688, z: -1.910224, w: 0.042182475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.029144095, y: -0.32189834, z: -0.13844235, w: 0.9361441} + inSlope: {x: 0.31618467, y: 0.17729299, z: -0.848566, w: -0.041120894} + outSlope: {x: 0.31618467, y: 0.17729299, z: -0.848566, w: -0.041120894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.040490158, y: -0.3113999, z: -0.16230899, w: 0.93543917} + inSlope: {x: 0.22028756, y: 0.035997584, z: -0.59306115, w: -0.11165818} + outSlope: {x: 0.22028756, y: 0.035997584, z: -0.59306115, w: -0.11165818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.05850529, y: -0.31710038, z: -0.21748896, w: 0.92126167} + inSlope: {x: 0.2806736, y: -0.18542793, z: -0.8693246, w: -0.2927193} + outSlope: {x: 0.2806736, y: -0.18542793, z: -0.8693246, w: -0.2927193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.07789993, y: -0.3361148, z: -0.27817753, w: 0.8964239} + inSlope: {x: 0.054577306, y: -0.11898759, z: -0.3420537, w: -0.13621871} + outSlope: {x: 0.054577306, y: -0.11898759, z: -0.3420537, w: -0.13621871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.06577965, y: -0.3329597, z: -0.2630798, w: 0.9031057} + inSlope: {x: -0.3518114, y: 0.08636062, z: 0.6934555, w: 0.22874977} + outSlope: {x: -0.3518114, y: 0.08636062, z: 0.6934555, w: 0.22874977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.03100848, y: -0.32460415, z: -0.18574978, w: 0.92691296} + inSlope: {x: -0.736583, y: 0.15607786, z: 1.89865, w: 0.3475212} + outSlope: {x: -0.736583, y: 0.15607786, z: 1.89865, w: 0.3475212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.03239632, y: -0.31215677, z: -0.010016929, w: 0.9494253} + inSlope: {x: -0.95141226, y: 0.1867776, z: 2.636936, w: 0.33780557} + outSlope: {x: -0.95141226, y: 0.1867776, z: 2.636936, w: 0.33780557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone27/Bone28 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.10053541, y: 0.87104243, z: 0.029055309, w: -0.4799308} + inSlope: {x: 0.3998049, y: -0.11815148, z: -0.17987911, w: -0.12615716} + outSlope: {x: 0.3998049, y: -0.11815148, z: -0.17987911, w: -0.12615716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.12717955, y: 0.8631685, z: 0.01706765, w: -0.48833826} + inSlope: {x: -1.8668941, y: -12.927667, z: -0.25118598, w: 7.367314} + outSlope: {x: -1.8668941, y: -12.927667, z: -0.25118598, w: 7.367314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.14829499, y: -0.8520315, z: -0.0044242027, w: 0.5020272} + inSlope: {x: -1.7958808, y: -12.802337, z: 0.23136882, w: 7.5920663} + outSlope: {x: -1.7958808, y: -12.802337, z: 0.23136882, w: 7.5920663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.112185776, y: -0.84320074, z: 0.04790582, w: 0.5235761} + inSlope: {x: 0.40989295, y: 0.105638966, z: 0.6320353, w: 0.22255033} + outSlope: {x: 0.40989295, y: 0.105638966, z: 0.6320353, w: 0.22255033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.0936621, y: -0.83795136, z: 0.079817094, w: 0.53169} + inSlope: {x: -0.24462572, y: 0.094201095, z: 0.48248124, w: 0.016734023} + outSlope: {x: -0.24462572, y: 0.094201095, z: 0.48248124, w: 0.016734023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.14479089, y: -0.8306451, z: 0.11221367, w: 0.5258065} + inSlope: {x: -0.50342435, y: 0.07643539, z: 0.3165264, w: -0.061263863} + outSlope: {x: -0.50342435, y: 0.07643539, z: 0.3165264, w: -0.061263863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.16076137, y: -0.8277636, z: 0.122005545, w: 0.5235244} + inSlope: {x: 0.23773026, y: -0.038710937, z: -0.1525634, w: 0.026477039} + outSlope: {x: 0.23773026, y: -0.038710937, z: -0.1525634, w: 0.026477039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.11310483, y: -0.8358047, z: 0.091879144, w: 0.5293355} + inSlope: {x: 0.8546549, y: -0.10753147, z: -0.5422185, w: 0.08596418} + outSlope: {x: 0.8546549, y: -0.10753147, z: -0.5422185, w: 0.08596418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.046848044, y: -0.84209603, z: 0.04973554, w: 0.5349822} + inSlope: {x: 0.8601649, y: -0.049270093, z: -0.4723399, w: 0.065892324} + outSlope: {x: 0.8601649, y: -0.049270093, z: -0.4723399, w: 0.065892324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.0015428561, y: -0.8423717, z: 0.02892298, w: 0.538118} + inSlope: {x: 0.7099867, y: 0.017125309, z: -0.10491793, w: 0.034533713} + outSlope: {x: 0.7099867, y: 0.017125309, z: -0.10491793, w: 0.034533713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.04778303, y: -0.8398135, z: 0.03575149, w: 0.53958505} + inSlope: {x: 0.88276, y: 0.04474672, z: -0.33393705, w: -0.025180623} + outSlope: {x: 0.88276, y: 0.04474672, z: -0.33393705, w: -0.025180623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.1192022, y: -0.8364076, z: -0.015586069, w: 0.5347618} + inSlope: {x: 1.073883, y: 0.12964487, z: -0.98206216, w: -0.092940465} + outSlope: {x: 1.073883, y: 0.12964487, z: -0.98206216, w: -0.092940465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.1909163, y: -0.82253367, z: -0.09514334, w: 0.5271974} + inSlope: {x: 0.27596992, y: 0.06547159, z: -0.65643483, w: -0.042192392} + outSlope: {x: 0.27596992, y: 0.06547159, z: -0.65643483, w: -0.042192392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.155985, y: -0.8276812, z: -0.103079416, w: 0.52913815} + inSlope: {x: -1.0164698, y: -0.2033053, z: 0.15077646, w: -0.061066188} + outSlope: {x: -1.0164698, y: -0.2033053, z: 0.15077646, w: -0.061066188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.05543535, y: -0.84963137, z: -0.07504699, w: 0.51905817} + inSlope: {x: -0.7870156, y: 12.709067, z: 1.0984551, w: -7.6844654} + outSlope: {x: -0.7870156, y: 12.709067, z: 1.0984551, w: -7.6844654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.051087026, y: 0.86625504, z: 0.0433289, w: -0.49509078} + inSlope: {x: -0.06524818, y: 25.747505, z: 1.7762736, w: -15.217677} + outSlope: {x: -0.06524818, y: 25.747505, z: 1.7762736, w: -15.217677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.022755237, y: 0.9821474, z: 0.07568317, w: -0.17070659} + inSlope: {x: 0.63337237, y: -0.23053415, z: -0.24237385, w: -1.03866} + outSlope: {x: 0.63337237, y: -0.23053415, z: -0.24237385, w: -1.03866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.06496498, y: 0.96678394, z: 0.059530683, w: -0.23992586} + inSlope: {x: 0.50834715, y: -0.2879154, z: -0.4436841, w: -1.1015981} + outSlope: {x: 0.50834715, y: -0.2879154, z: -0.4436841, w: -1.1015981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.09051066, y: 0.9437724, z: 0.016546402, w: -0.3175339} + inSlope: {x: -0.20768175, y: -0.21477942, z: -0.8573961, w: -0.7494361} + outSlope: {x: -0.20768175, y: -0.21477942, z: -0.8573961, w: -0.7494361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.03728396, y: 0.9381569, z: -0.054748006, w: -0.33981502} + inSlope: {x: -0.5883679, y: -0.060684733, z: -0.78475213, w: -0.17952754} + outSlope: {x: -0.5883679, y: -0.060684733, z: -0.78475213, w: -0.17952754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.012089605, y: 0.93568397, z: -0.088049866, w: -0.34146237} + inSlope: {x: 0.15404843, y: -0.03142839, z: -0.37466162, w: 0.022977754} + outSlope: {x: 0.15404843, y: -0.03142839, z: -0.37466162, w: 0.022977754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.057816412, y: 0.93396795, z: -0.104685046, w: -0.3367524} + inSlope: {x: 0.45791847, y: -0.020587048, z: -0.16245605, w: 0.04830372} + outSlope: {x: 0.45791847, y: -0.020587048, z: -0.16245605, w: 0.04830372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.0731236, y: 0.93294, z: -0.10970294, w: -0.33502418} + inSlope: {x: -0.13317251, y: 0.007372894, z: 0.05038768, w: -0.014017756} + outSlope: {x: -0.13317251, y: 0.007372894, z: 0.05038768, w: -0.014017756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.040066414, y: 0.93495065, z: -0.097969085, w: -0.33862078} + inSlope: {x: -0.594769, y: 0.021373209, z: 0.2155648, w: -0.060454644} + outSlope: {x: -0.594769, y: 0.021373209, z: 0.2155648, w: -0.060454644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.0061506354, y: 0.93578875, z: -0.08097122, w: -0.34308192} + inSlope: {x: -0.59516907, y: -0.0016358439, z: 0.21911404, w: -0.058495287} + outSlope: {x: -0.59516907, y: -0.0016358439, z: 0.21911404, w: -0.058495287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.039261118, y: 0.9347326, z: -0.068764314, w: -0.34641737} + inSlope: {x: -0.44225043, y: -0.020770844, z: 0.16323917, w: -0.04363099} + outSlope: {x: -0.44225043, y: -0.020770844, z: 0.16323917, w: -0.04363099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.06509629, y: 0.9330203, z: -0.059213772, w: -0.3488973} + inSlope: {x: -0.5213235, y: -0.0087144775, z: 0.24611914, w: 0.051170662} + outSlope: {x: -0.5213235, y: -0.0087144775, z: 0.24611914, w: 0.051170662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.10874612, y: 0.9335711, z: -0.035960138, w: -0.33959705} + inSlope: {x: -0.6422671, y: 0.034869116, z: 0.4687358, w: 0.26826584} + outSlope: {x: -0.6422671, y: 0.034869116, z: 0.4687358, w: 0.26826584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.15070131, y: 0.93766785, z: 0.0032620034, w: -0.31314132} + inSlope: {x: -0.14819744, y: 0.12880453, z: 0.45358244, w: 0.43933424} + outSlope: {x: -0.14819744, y: 0.12880453, z: 0.45358244, w: 0.43933424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.12849869, y: 0.9507389, z: 0.024495907, w: -0.28104007} + inSlope: {x: 0.6243741, y: 0.22952566, z: 0.3127728, w: 0.57556343} + outSlope: {x: 0.6243741, y: 0.22952566, z: 0.3127728, w: 0.57556343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.06748114, y: 0.96826035, z: 0.04495017, w: -0.2364269} + inSlope: {x: 0.92360926, y: 0.21387437, z: 0.30853403, w: 0.67039156} + outSlope: {x: 0.92360926, y: 0.21387437, z: 0.30853403, w: 0.67039156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.005394787, y: 0.9792453, z: 0.06561908, w: -0.19168647} + inSlope: {x: 0.9316285, y: 0.16483332, z: 0.31014463, w: 0.6713467} + outSlope: {x: 0.9316285, y: 0.16483332, z: 0.31014463, w: 0.6713467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.06273549, y: -0.79277766, z: -0.11134656, w: 0.5959612} + inSlope: {x: -0.53529614, y: -0.15995345, z: 0.52959305, w: -0.091078326} + outSlope: {x: -0.53529614, y: -0.15995345, z: 0.52959305, w: -0.091078326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.02706183, y: -0.8034374, z: -0.076052964, w: 0.5898915} + inSlope: {x: -0.68024504, y: -0.20933083, z: 0.77881134, w: -0.18984699} + outSlope: {x: -0.68024504, y: -0.20933083, z: 0.77881134, w: -0.18984699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.02793147, y: -0.8206785, z: -0.007542105, w: 0.5706573} + inSlope: {x: -0.77325046, y: -0.26175582, z: 1.2344763, w: -0.43025243} + outSlope: {x: -0.77325046, y: -0.26175582, z: 1.2344763, w: -0.43025243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.07600144, y: -0.83832574, z: 0.088485144, w: 0.532545} + inSlope: {x: -0.6912849, y: -0.13006827, z: 1.121802, w: -0.4326736} + outSlope: {x: -0.6912849, y: -0.13006827, z: 1.121802, w: -0.4326736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.12006989, y: -0.8380147, z: 0.1419781, w: 0.5129881} + inSlope: {x: -0.44734323, y: 0.020102292, z: 0.4725632, w: -0.1672566} + outSlope: {x: -0.44734323, y: 0.020102292, z: 0.4725632, w: -0.1672566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.1356259, y: -0.8356464, z: 0.15147106, w: 0.51025206} + inSlope: {x: -0.11914348, y: 0.017775984, z: 0.07293554, w: -0.021671496} + outSlope: {x: -0.11914348, y: 0.017775984, z: 0.07293554, w: -0.021671496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.13595001, y: -0.83564544, z: 0.15169936, w: 0.5100996} + inSlope: {x: 0.08077611, y: -0.013545518, z: -0.048385873, w: 0.012448103} + outSlope: {x: 0.08077611, y: -0.013545518, z: -0.048385873, w: 0.012448103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.124859594, y: -0.8374518, z: 0.14502192, w: 0.5119112} + inSlope: {x: 0.30552852, y: -0.04274731, z: -0.18582985, w: 0.04939978} + outSlope: {x: 0.30552852, y: -0.04274731, z: -0.18582985, w: 0.04939978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.09522741, y: -0.84134305, z: 0.12693089, w: 0.5166839} + inSlope: {x: 0.6730882, y: 0.0028468668, z: -0.530782, w: 0.21738806} + outSlope: {x: 0.6730882, y: 0.0028468668, z: -0.530782, w: 0.21738806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.03514657, y: -0.8370724, z: 0.07427628, w: 0.5408859} + inSlope: {x: 1.0007423, y: 0.37677294, z: -1.3792529, w: 0.68365794} + outSlope: {x: 1.0007423, y: 0.37677294, z: -1.3792529, w: 0.68365794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.03815723, y: -0.7911246, z: -0.056903824, w: 0.6078057} + inSlope: {x: 0.779396, y: 0.45483157, z: -1.5843035, w: 0.52813923} + outSlope: {x: 0.779396, y: 0.45483157, z: -1.5843035, w: 0.52813923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.068735816, y: -0.7764498, z: -0.13688882, w: 0.61127937} + inSlope: {x: 0.27811685, y: 0.09948106, z: -0.8620671, w: -0.060128942} + outSlope: {x: 0.27811685, y: 0.09948106, z: -0.8620671, w: -0.060128942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.07522624, y: -0.7778652, z: -0.17180507, w: 0.5997914} + inSlope: {x: 0.040145244, y: -0.028889215, z: -0.22296421, w: -0.09786991} + outSlope: {x: 0.040145244, y: -0.028889215, z: -0.22296421, w: -0.09786991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.0740866, y: -0.7803003, z: -0.16660674, w: 0.5982347} + inSlope: {x: -0.041145798, y: -0.059442867, z: 0.19900084, w: -0.01995292} + outSlope: {x: -0.041145798, y: -0.059442867, z: 0.19900084, w: -0.01995292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.06974209, y: -0.78578806, z: -0.14528109, w: 0.59713197} + inSlope: {x: -0.06832676, y: -0.07845224, z: 0.33325553, w: -0.014656803} + outSlope: {x: -0.06832676, y: -0.07845224, z: 0.33325553, w: -0.014656803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.06497962, y: -0.7907569, z: -0.122188546, w: 0.5962812} + inSlope: {x: -0.071462624, y: -0.074558996, z: 0.34651214, w: -0.012766517} + outSlope: {x: -0.071462624, y: -0.074558996, z: 0.34651214, w: -0.012766517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.6338039, y: -0.042109005, z: 0.7722979, w: 0.008684187} + inSlope: {x: -0.11608097, y: 0.006006773, z: 0.09456376, w: 0.0051476983} + outSlope: {x: -0.11608097, y: 0.006006773, z: 0.09456376, w: 0.0051476983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.62606794, y: -0.041708697, z: 0.7785999, w: 0.0090272445} + inSlope: {x: -0.12576851, y: 0.006455643, z: 0.101250194, w: 0.005415036} + outSlope: {x: -0.12576851, y: 0.006455643, z: 0.101250194, w: 0.005415036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.61704075, y: -0.04124856, z: 0.7857931, w: 0.009405934} + inSlope: {x: -0.13954477, y: 0.0071518403, z: 0.10981663, w: 0.0058200043} + outSlope: {x: -0.13954477, y: 0.0071518403, z: 0.10981663, w: 0.0058200043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.6074686, y: -0.04075546, z: 0.7932369, w: 0.009802968} + inSlope: {x: -0.1438808, y: 0.0074083637, z: 0.11050131, w: 0.005871433} + outSlope: {x: -0.1438808, y: 0.0074083637, z: 0.11050131, w: 0.005871433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.5978635, y: -0.04026113, z: 0.8005214, w: 0.0101885125} + inSlope: {x: -0.1427396, y: 0.0071447166, z: 0.10693272, w: 0.005369815} + outSlope: {x: -0.1427396, y: 0.0071447166, z: 0.10693272, w: 0.005369815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.58844346, y: -0.03980317, z: 0.8074895, w: 0.010518688} + inSlope: {x: -0.13973129, y: 0.0062787505, z: 0.102121785, w: 0.0041514672} + outSlope: {x: -0.13973129, y: 0.0062787505, z: 0.102121785, w: 0.0041514672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.5792393, y: -0.039424263, z: 0.81413275, w: 0.010741844} + inSlope: {x: -0.14239788, y: 0.0046834946, z: 0.10145141, w: 0.0018735139} + outSlope: {x: -0.14239788, y: 0.0046834946, z: 0.10145141, w: 0.0018735139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.56946385, y: -0.039178926, z: 0.82101154, w: 0.0107684005} + inSlope: {x: -0.121153906, y: 0.0027426153, z: 0.084545225, w: -0.00005515864} + outSlope: {x: -0.121153906, y: 0.0027426153, z: 0.084545225, w: -0.00005515864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.5630912, y: -0.03905871, z: 0.8254014, w: 0.010734492} + inSlope: {x: -0.037190463, y: 0.0009268663, z: 0.025672974, w: 0.00009857872} + outSlope: {x: -0.037190463, y: 0.0009268663, z: 0.025672974, w: 0.00009857872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.5645069, y: -0.03905539, z: 0.8244334, w: 0.01078154} + inSlope: {x: 0.06926863, y: -0.001222825, z: -0.047892287, w: 0.00048359213} + outSlope: {x: 0.06926863, y: -0.001222825, z: -0.047892287, w: 0.00048359213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.57232374, y: -0.039221697, z: 0.81901807, w: 0.010798948} + inSlope: {x: 0.14854635, y: -0.0035902723, z: -0.10454823, w: -0.00021907635} + outSlope: {x: 0.14854635, y: -0.0035902723, z: -0.10454823, w: -0.00021907635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.584306, y: -0.03953392, z: 0.8104986, w: 0.01075234} + inSlope: {x: 0.19651386, y: -0.005506699, z: -0.14236352, w: -0.0012613476} + outSlope: {x: 0.19651386, y: -0.005506699, z: -0.14236352, w: -0.0012613476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.5985162, y: -0.03995566, z: 0.80004305, w: 0.010630828} + inSlope: {x: 0.21598873, y: -0.0068770144, z: -0.16201234, w: -0.0024781984} + outSlope: {x: 0.21598873, y: -0.0068770144, z: -0.16201234, w: -0.0024781984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.6130942, y: -0.04045053, z: 0.78890467, w: 0.010422031} + inSlope: {x: 0.20841897, y: -0.007702588, z: -0.16206458, w: -0.0038866713} + outSlope: {x: 0.20841897, y: -0.007702588, z: -0.16206458, w: -0.0038866713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.6262955, y: -0.040982306, z: 0.77844214, w: 0.01011279} + inSlope: {x: 0.14899448, y: -0.008316785, z: -0.119210884, w: -0.006924649} + outSlope: {x: 0.14899448, y: -0.008316785, z: -0.119210884, w: -0.006924649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.63295305, y: -0.041559037, z: 0.77301556, w: 0.009499075} + inSlope: {x: 0.099898845, y: -0.008654058, z: -0.08142791, w: -0.009209027} + outSlope: {x: 0.099898845, y: -0.008654058, z: -0.08142791, w: -0.009209027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.000000018339065, y: 0.6731305, z: 0.000000009215374, w: 0.7395237} + inSlope: {x: -0.00000044951943, y: -0.12259659, z: 0.00000009945608, w: 0.110364035} + outSlope: {x: -0.00000044951943, y: -0.12259659, z: 0.00000009945608, w: 0.110364035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000011618194, y: 0.6649603, z: 0.000000015843412, w: 0.7468787} + inSlope: {x: -0.00000016882743, y: -0.1324769, z: -0.000000046548084, w: 0.11775256} + outSlope: {x: -0.00000016882743, y: -0.1324769, z: -0.000000046548084, w: 0.11775256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.000000004163215, y: 0.65547323, z: 0.000000003011175, w: 0.75521845} + inSlope: {x: -0.00000016004165, y: -0.14793772, z: -0.000000019960154, w: 0.12829024} + outSlope: {x: -0.00000016004165, y: -0.14793772, z: -0.000000019960154, w: 0.12829024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.00000003294947, y: 0.64524233, z: 0.000000013183008, w: 0.76397794} + inSlope: {x: 0.00000030662204, y: -0.15441582, z: 0.00000006442056, w: 0.13041621} + outSlope: {x: 0.00000030662204, y: -0.15441582, z: 0.00000006442056, w: 0.13041621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000036705103, y: 0.6348918, z: 0.000000011597519, w: 0.77260107} + inSlope: {x: 0.00000012477153, y: -0.15108827, z: -0.000000041655568, w: 0.12426822} + outSlope: {x: 0.00000012477153, y: -0.15108827, z: -0.000000041655568, w: 0.12426822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000016319209, y: 0.6251044, z: 0.000000007630916, w: 0.7805411} + inSlope: {x: -0.00000040070321, y: -0.13708836, z: -0.000000044822208, w: 0.10998883} + outSlope: {x: -0.00000040070321, y: -0.13708836, z: -0.000000044822208, w: 0.10998883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000016702906, y: 0.6166199, z: 0.000000005623359, w: 0.787261} + inSlope: {x: -0.00000025301978, y: -0.11166265, z: -0.00000004417943, w: 0.087705106} + outSlope: {x: -0.00000025301978, y: -0.11166265, z: -0.00000004417943, w: 0.087705106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000050043145, y: 0.6102214, z: 0.0000000017424276, w: 0.79223096} + inSlope: {x: 0.00000018087292, y: -0.07434338, z: -0.00000005976447, w: 0.05748192} + outSlope: {x: 0.00000018087292, y: -0.07434338, z: -0.00000005976447, w: 0.05748192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.00000000740488, y: 0.606711, z: -0.0000000023423932, w: 0.79492253} + inSlope: {x: 0.00000037532152, y: -0.02437254, z: 0.000000023602801, w: 0.018693618} + outSlope: {x: 0.00000037532152, y: -0.02437254, z: 0.000000023602801, w: 0.018693618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -1.8119856e-11, y: 0.6069729, z: 0.0000000048883386, w: 0.79472256} + inSlope: {x: 0.00000019086158, y: 0.036675755, z: 0.000000059059996, w: -0.028171906} + outSlope: {x: 0.00000019086158, y: 0.036675755, z: 0.000000059059996, w: -0.028171906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.00000003284402, y: 0.6115993, z: 0.000000005529457, w: 0.7911676} + inSlope: {x: 0.00000012933766, y: 0.09489465, z: 0.000000029384289, w: -0.07368646} + outSlope: {x: 0.00000012933766, y: 0.09489465, z: 0.000000029384289, w: -0.07368646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000017220751, y: 0.619621, z: 0.000000008804846, w: 0.7849012} + inSlope: {x: -0.00000030618935, y: 0.13732675, z: 0.000000068088156, w: -0.10874253} + outSlope: {x: -0.00000030618935, y: 0.13732675, z: 0.000000068088156, w: -0.10874253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000007966639, y: 0.629903, z: 0.000000014604634, w: 0.7766738} + inSlope: {x: -0.00000022934869, y: 0.16306995, z: -0.0000000029646614, w: -0.13247961} + outSlope: {x: -0.00000022934869, y: 0.16306995, z: -0.0000000029646614, w: -0.13247961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.00000001334814, y: 0.6413559, z: 0.000000008409693, w: 0.76724356} + inSlope: {x: 0.000000024366543, y: 0.17308077, z: -0.00000008924329, w: -0.14474118} + outSlope: {x: 0.000000024366543, y: 0.17308077, z: -0.00000008924329, w: -0.14474118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.000000004718926, y: 0.6529722, z: 0.0000000027097737, w: 0.75738186} + inSlope: {x: 0.00000013383473, y: 0.16869119, z: -0.00000009412446, w: -0.14531857} + outSlope: {x: 0.00000013383473, y: 0.16869119, z: -0.00000009412446, w: -0.14531857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0000000044901145, y: 0.66384, z: -0.000000004135751, w: 0.7478747} + inSlope: {x: 0.00000013818503, y: 0.16307494, z: -0.00000010271961, w: -0.14265871} + outSlope: {x: 0.00000013818503, y: 0.16307494, z: -0.00000010271961, w: -0.14265871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.000000018784691, y: -0.6788867, z: -0.000000008321522, w: 0.734243} + inSlope: {x: 0.00000045758327, y: 0.009934874, z: -0.00000010563138, w: 0.009178221} + outSlope: {x: 0.00000045758327, y: 0.009934874, z: -0.00000010563138, w: 0.009178221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.000000011709967, y: -0.6782246, z: -0.000000015361099, w: 0.73485464} + inSlope: {x: 0.00000017297016, y: 0.010909757, z: 0.000000024708928, w: 0.010067689} + outSlope: {x: 0.00000017297016, y: 0.010909757, z: 0.000000024708928, w: 0.010067689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.0000000042697597, y: -0.6774326, z: -0.0000000050281717, w: 0.73558486} + inSlope: {x: 0.0000001783326, y: 0.0125710815, z: 0.000000019022018, w: 0.011576074} + outSlope: {x: 0.0000001783326, y: 0.0125710815, z: 0.000000019022018, w: 0.011576074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.000000035479164, y: -0.6765491, z: -0.000000012825735, w: 0.73639756} + inSlope: {x: -0.0000003450441, y: 0.013570564, z: -0.000000057491874, w: 0.012466888} + outSlope: {x: -0.0000003450441, y: 0.013570564, z: -0.000000057491874, w: 0.012466888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.000000041719666, y: -0.67562383, z: -0.00000001269102, w: 0.7372465} + inSlope: {x: -0.00000013113697, y: 0.013726639, z: 0.0000000126495845, w: 0.0125800315} + outSlope: {x: -0.00000013113697, y: 0.013726639, z: 0.0000000126495845, w: 0.0125800315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.000000018000486, y: -0.6747195, z: -0.0000000111397265, w: 0.7380743} + inSlope: {x: 0.000000454467, y: 0.012848346, z: 0.000000032250018, w: 0.011746906} + outSlope: {x: 0.000000454467, y: 0.012848346, z: 0.000000032250018, w: 0.011746906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000018854287, y: -0.67391133, z: -0.000000008392552, w: 0.7388122} + inSlope: {x: 0.0000003072428, y: 0.010746976, z: 0.00000004280531, w: 0.009804737} + outSlope: {x: 0.0000003072428, y: 0.010746976, z: 0.00000004280531, w: 0.009804737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000058951574, y: -0.6732871, z: -0.0000000054343876, w: 0.73938113} + inSlope: {x: -0.00000020586893, y: 0.0072937408, z: 0.00000008860776, w: 0.0066444147} + outSlope: {x: -0.00000020586893, y: 0.0072937408, z: 0.00000008860776, w: 0.0066444147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.00000000858511, y: -0.6729392, z: 0.0000000034175995, w: 0.7396978} + inSlope: {x: -0.0000004462087, y: 0.002413508, z: -0.000000012032622, w: 0.0021970659} + outSlope: {x: -0.0000004462087, y: 0.002413508, z: -0.000000012032622, w: 0.0021970659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -5.2169774e-10, y: -0.6729654, z: -0.000000007038156, w: 0.739674} + inSlope: {x: -0.00000022864555, y: -0.0036276411, z: -0.000000049683337, w: -0.0033025309} + outSlope: {x: -0.00000022864555, y: -0.0036276411, z: -0.000000049683337, w: -0.0033025309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.000000039060314, y: -0.6734227, z: -0.0000000032044725, w: 0.73925763} + inSlope: {x: -0.00000015104992, y: -0.009261843, z: -0.000000015610874, w: -0.008440794} + outSlope: {x: -0.00000015104992, y: -0.009261843, z: -0.000000015610874, w: -0.008440794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000020654502, y: -0.6741999, z: -0.000000009118863, w: 0.73854893} + inSlope: {x: 0.00000035191016, y: -0.0130844675, z: -0.00000011159333, w: -0.011947252} + outSlope: {x: 0.00000035191016, y: -0.0130844675, z: -0.00000011159333, w: -0.011947252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000000007844272, y: -0.67516667, z: -0.000000018078266, w: 0.73766524} + inSlope: {x: 0.00000026134623, y: -0.015047204, z: -0.000000014949169, w: -0.013773593} + outSlope: {x: 0.00000026134623, y: -0.015047204, z: -0.000000014949169, w: -0.013773593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.0000000141792045, y: -0.67620546, z: -0.000000011111366, w: 0.7367131} + inSlope: {x: -0.000000022369417, y: -0.015399586, z: 0.00000010172528, w: -0.014134473} + outSlope: {x: -0.000000022369417, y: -0.015399586, z: 0.00000010172528, w: -0.014134473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.0000000048627475, y: -0.6772192, z: -0.0000000045197353, w: 0.7357813} + inSlope: {x: -0.00000014009996, y: -0.014457801, z: 0.00000011379519, w: -0.013305828} + outSlope: {x: -0.00000014009996, y: -0.014457801, z: 0.00000011379519, w: -0.013305828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.0000000044941153, y: -0.6781325, z: 0.0000000040559045, w: 0.73493963} + inSlope: {x: -0.00000014040316, y: -0.013703837, z: 0.00000012868063, w: -0.012629676} + outSlope: {x: -0.00000014040316, y: -0.013703837, z: 0.00000012868063, w: -0.012629676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.043273374, y: 0.74154794, z: 0.040900458, w: 0.66825235} + inSlope: {x: -0.0102762515, y: 0.09559588, z: 0.0042781984, w: -0.10670688} + outSlope: {x: -0.0102762515, y: 0.09559588, z: 0.0042781984, w: -0.10670688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.042588536, y: 0.7479187, z: 0.04118557, w: 0.6611411} + inSlope: {x: -0.011012164, y: 0.10157396, z: 0.0044796867, w: -0.11462891} + outSlope: {x: -0.011012164, y: 0.10157396, z: 0.0044796867, w: -0.11462891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.04180561, y: 0.7550863, z: 0.041497536, w: 0.65297395} + inSlope: {x: -0.012100298, y: 0.10976654, z: 0.0047021373, w: -0.12653321} + outSlope: {x: -0.012100298, y: 0.10976654, z: 0.0047021373, w: -0.12653321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.04097574, y: 0.76254904, z: 0.041812297, w: 0.644276} + inSlope: {x: -0.012411017, y: 0.110613555, z: 0.004588886, w: -0.1304104} + outSlope: {x: -0.012411017, y: 0.110613555, z: 0.004588886, w: -0.1304104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0401514, y: 0.7698295, z: 0.04210917, w: 0.6355921} + inSlope: {x: -0.011930928, y: 0.10447763, z: 0.004192058, w: -0.12595639} + outSlope: {x: -0.011930928, y: 0.10447763, z: 0.004192058, w: -0.12595639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.039385516, y: 0.7764744, z: 0.04237104, w: 0.62748784} + inSlope: {x: -0.010646528, y: 0.09171154, z: 0.003563134, w: -0.11287636} + outSlope: {x: -0.010646528, y: 0.09171154, z: 0.003563134, w: -0.11287636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.03873237, y: 0.78205335, z: 0.042584084, w: 0.6205473} + inSlope: {x: -0.008547142, y: 0.07261274, z: 0.0027420004, w: -0.0909495} + outSlope: {x: -0.008547142, y: 0.07261274, z: 0.0027420004, w: -0.0909495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.038246304, y: 0.78615266, z: 0.042736508, w: 0.61536556} + inSlope: {x: -0.005628668, y: 0.047340892, z: 0.0017493407, w: -0.060062677} + outSlope: {x: -0.005628668, y: 0.047340892, z: 0.0017493407, w: -0.060062677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.037982147, y: 0.7883632, z: 0.042817246, w: 0.6125418} + inSlope: {x: -0.0018343633, y: 0.015356207, z: 0.00056103326, w: -0.019610366} + outSlope: {x: -0.0018343633, y: 0.015356207, z: 0.00056103326, w: -0.019610366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.03800181, y: 0.7881994, z: 0.042811286, w: 0.6127518} + inSlope: {x: 0.0027648914, y: -0.023150807, z: -0.00084765704, w: 0.02952959} + outSlope: {x: 0.0027648914, y: -0.023150807, z: -0.00084765704, w: 0.02952959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.038350668, y: 0.78527755, z: 0.042704266, w: 0.61647767} + inSlope: {x: 0.0072067054, y: -0.060776845, z: -0.002259254, w: 0.076839626} + outSlope: {x: 0.0072067054, y: -0.060776845, z: -0.002259254, w: 0.076839626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.03896236, y: 0.78009874, z: 0.04251016, w: 0.6229934} + inSlope: {x: 0.010568773, y: -0.09027741, z: -0.0034466689, w: 0.11231963} + outSlope: {x: 0.010568773, y: -0.09027741, z: -0.0034466689, w: 0.11231963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.039759334, y: 0.77324486, z: 0.042244874, w: 0.63144827} + inSlope: {x: 0.012770005, y: -0.11092527, z: -0.0043809414, w: 0.13510999} + outSlope: {x: 0.012770005, y: -0.11092527, z: -0.0043809414, w: 0.13510999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.04066442, y: 0.765314, z: 0.041926242, w: 0.64100164} + inSlope: {x: 0.013820151, y: -0.12236446, z: -0.0050144186, w: 0.14547099} + outSlope: {x: 0.013820151, y: -0.12236446, z: -0.0050144186, w: 0.14547099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.041601364, y: 0.7569354, z: 0.041576523, w: 0.6508375} + inSlope: {x: 0.013737398, y: -0.12406385, z: -0.0052729836, w: 0.14382449} + outSlope: {x: 0.013737398, y: -0.12406385, z: -0.0052729836, w: 0.14382449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.04249542, y: 0.74877805, z: 0.04122343, w: 0.6601714} + inSlope: {x: 0.01341562, y: -0.12240437, z: -0.005298308, w: 0.14005873} + outSlope: {x: 0.01341562, y: -0.12240437, z: -0.005298308, w: 0.14005873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.17570785, y: 0.029049966, z: 0.00518732, w: 0.98399997} + inSlope: {x: -0.000116046984, y: 0.021478446, z: 0.003835357, w: -0.0006493265} + outSlope: {x: -0.000116046984, y: 0.021478446, z: 0.003835357, w: -0.0006493265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.17570011, y: 0.030481352, z: 0.005442919, w: 0.9839567} + inSlope: {x: -0.00023958442, y: 0.04149229, z: 0.007409124, w: -0.0013415833} + outSlope: {x: -0.00023958442, y: 0.04149229, z: 0.007409124, w: -0.0013415833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.17567591, y: 0.034580298, z: 0.0061748507, w: 0.98382115} + inSlope: {x: -0.00050029875, y: 0.077329114, z: 0.013808251, w: -0.0028012258} + outSlope: {x: -0.00050029875, y: 0.077329114, z: 0.013808251, w: -0.0028012258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.17563343, y: 0.040788222, z: 0.0072833626, w: 0.98358333} + inSlope: {x: -0.00077185774, y: 0.10262762, z: 0.018325754, w: -0.004322135} + outSlope: {x: -0.00077185774, y: 0.10262762, z: 0.018325754, w: -0.004322135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.17557304, y: 0.048259094, z: 0.008617412, w: 0.9832451} + inSlope: {x: -0.0010011569, y: 0.11394529, z: 0.020346662, w: -0.005606926} + outSlope: {x: -0.0010011569, y: 0.11394529, z: 0.020346662, w: -0.005606926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.17549999, y: 0.0559755, z: 0.009995282, w: 0.982836} + inSlope: {x: -0.0011080361, y: 0.10975237, z: 0.019597838, w: -0.006205718} + outSlope: {x: -0.0011080361, y: 0.10975237, z: 0.019597838, w: -0.006205718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.17542535, y: 0.06288752, z: 0.011229524, w: 0.98241794} + inSlope: {x: -0.0010217275, y: 0.09063789, z: 0.016184658, w: -0.005721405} + outSlope: {x: -0.0010217275, y: 0.09063789, z: 0.016184658, w: -0.005721405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.17536381, y: 0.06805624, z: 0.012152466, w: 0.9820734} + inSlope: {x: -0.00071953575, y: 0.059216306, z: 0.010573974, w: -0.004029669} + outSlope: {x: -0.00071953575, y: 0.059216306, z: 0.010573974, w: -0.004029669} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.17532945, y: 0.07078021, z: 0.012638885, w: 0.98188084} + inSlope: {x: -0.0002389136, y: 0.018960034, z: 0.0033856945, w: -0.0013384527} + outSlope: {x: -0.0002389136, y: 0.018960034, z: 0.0033856945, w: -0.0013384527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.17533197, y: 0.07058334, z: 0.012603731, w: 0.981895} + inSlope: {x: 0.0003592089, y: -0.028688751, z: -0.00512278, w: 0.0020119278} + outSlope: {x: 0.0003592089, y: -0.028688751, z: -0.00512278, w: 0.0020119278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.17537732, y: 0.06695641, z: 0.011956091, w: 0.982149} + inSlope: {x: 0.00090668665, y: -0.07613451, z: -0.013594912, w: 0.005077892} + outSlope: {x: 0.00090668665, y: -0.07613451, z: -0.013594912, w: 0.005077892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.17545281, y: 0.060435697, z: 0.010791723, w: 0.98257184} + inSlope: {x: 0.001203177, y: -0.111185044, z: -0.019853735, w: 0.006737881} + outSlope: {x: 0.001203177, y: -0.111185044, z: -0.019853735, w: 0.006737881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.17553769, y: 0.052137032, z: 0.009309872, w: 0.98304707} + inSlope: {x: 0.0012006056, y: -0.1271944, z: -0.022712518, w: 0.0067226766} + outSlope: {x: 0.0012006056, y: -0.1271944, z: -0.022712518, w: 0.0067226766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.17561284, y: 0.0434825, z: 0.007764469, w: 0.9834679} + inSlope: {x: 0.000970859, y: -0.121390164, z: -0.021676064, w: 0.0054374365} + outSlope: {x: 0.000970859, y: -0.121390164, z: -0.021676064, w: 0.0054374365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.17566709, y: 0.035957452, z: 0.0064207613, w: 0.9837718} + inSlope: {x: 0.0006392646, y: -0.09474477, z: -0.016918108, w: 0.0035802394} + outSlope: {x: 0.0006392646, y: -0.09474477, z: -0.016918108, w: 0.0035802394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.17569804, y: 0.030854376, z: 0.005509527, w: 0.9839451} + inSlope: {x: 0.0004644118, y: -0.07657353, z: -0.013673407, w: 0.0025999905} + outSlope: {x: 0.0004644118, y: -0.07657353, z: -0.013673407, w: 0.0025999905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.00000001408841, y: 0.43171427, z: 0.000000019684444, w: 0.90201044} + inSlope: {x: 0.000000026457586, y: 0.029675383, z: -0.0000006317905, w: -0.014243146} + outSlope: {x: 0.000000026457586, y: 0.029675383, z: -0.0000006317905, w: -0.014243146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000012325201, y: 0.43369192, z: -0.000000022419881, w: 0.90106124} + inSlope: {x: 0.00000014223797, y: 0.057245806, z: -0.00000020364465, w: -0.027697433} + outSlope: {x: 0.00000014223797, y: 0.057245806, z: -0.00000020364465, w: -0.027697433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.0000000048698823, y: 0.43934432, z: -0.000000007458472, w: 0.89831877} + inSlope: {x: -0.000000058344753, y: 0.1063985, z: 0.00000012944683, w: -0.05225019} + outSlope: {x: -0.000000058344753, y: 0.1063985, z: 0.00000012944683, w: -0.05225019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000020101728, y: 0.44787332, z: -0.00000000516646, w: 0.89409703} + inSlope: {x: 0.000000011705808, y: 0.14061785, z: 0.00000018297604, w: -0.07060978} + outSlope: {x: 0.000000011705808, y: 0.14061785, z: 0.00000018297604, w: -0.07060978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000006430086, y: 0.45808667, z: 0.000000016929617, w: 0.8889075} + inSlope: {x: 0.00000010478022, y: 0.15532969, z: 0.000000059644336, w: -0.0800845} + outSlope: {x: 0.00000010478022, y: 0.15532969, z: 0.000000059644336, w: -0.0800845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.0000000061360246, y: 0.46857655, z: 0.0000000027832763, w: 0.8834229} + inSlope: {x: -0.00000009738715, y: 0.14881158, z: -0.00000018623919, w: -0.07881355} + outSlope: {x: -0.00000009738715, y: 0.14881158, z: -0.00000018623919, w: -0.07881355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0000000065502292, y: 0.47792113, z: -0.000000007893408, w: 0.87840277} + inSlope: {x: -0.00000017125123, y: 0.12229246, z: -0.0000001561297, w: -0.06632519} + outSlope: {x: -0.00000017125123, y: 0.12229246, z: -0.0000001561297, w: -0.06632519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000028961374, y: 0.4848764, z: -0.00000001802659, w: 0.8745827} + inSlope: {x: 0.000000022728528, y: 0.07960038, z: 0.00000013284739, w: -0.0439364} + outSlope: {x: 0.000000022728528, y: 0.07960038, z: 0.00000013284739, w: -0.0439364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.0000000035208394, y: 0.48853073, z: 0.000000009813258, w: 0.8725467} + inSlope: {x: 0.00000031418367, y: 0.025437534, z: -0.000000021223585, w: -0.014167564} + outSlope: {x: 0.00000031418367, y: 0.025437534, z: -0.000000021223585, w: -0.014167564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.00000001291482, y: 0.48826686, z: -0.000000020855367, w: 0.8726944} + inSlope: {x: 0.0000000810997, y: -0.03850344, z: 0.0000000899952, w: 0.021409433} + outSlope: {x: 0.0000000810997, y: -0.03850344, z: 0.0000000899952, w: 0.021409433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000007288582, y: 0.48339877, z: 0.00000002180836, w: 0.87540025} + inSlope: {x: -0.00000003586631, y: -0.10244754, z: 0.00000026619443, w: 0.05627539} + outSlope: {x: -0.00000003586631, y: -0.10244754, z: 0.00000026619443, w: 0.05627539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000008134352, y: 0.47461206, z: 0.0000000146245585, w: 0.8801951} + inSlope: {x: -0.00000012776918, y: -0.15030077, z: -0.0000001716043, w: 0.080779895} + outSlope: {x: -0.00000012776918, y: -0.15030077, z: -0.0000001716043, w: 0.080779895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000009741214, y: 0.46336582, z: -0.0000000010640356, w: 0.88616705} + inSlope: {x: -0.000000117491226, y: -0.17292948, z: -0.00000016317885, w: 0.090363264} + outSlope: {x: -0.000000117491226, y: -0.17292948, z: -0.00000016317885, w: 0.090363264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.00000000752554, y: 0.45156303, z: -0.0000000071248456, w: 0.8922392} + inSlope: {x: 0.000000103299186, y: -0.16600594, z: -0.000000017492065, w: 0.08419731} + outSlope: {x: 0.000000103299186, y: -0.16600594, z: -0.000000017492065, w: 0.08419731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000004027096, y: 0.4412396, z: -0.0000000033954788, w: 0.89738935} + inSlope: {x: 0.000000070409904, y: -0.13021702, z: 0.00000011827007, w: 0.0643276} + outSlope: {x: 0.000000070409904, y: -0.13021702, z: 0.00000011827007, w: 0.0643276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0000000018590995, y: 0.43420696, z: 0.00000000863886, w: 0.90081316} + inSlope: {x: -0.000000032531585, y: -0.10552724, z: 0.00000018057968, w: 0.051375527} + outSlope: {x: -0.000000032531585, y: -0.10552724, z: 0.00000018057968, w: 0.051375527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe0/Bip01 L Toe01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.05502054, y: 0.02946473, z: 0.0016243564, w: 0.9980491} + inSlope: {x: -0.000036334557, y: 0.021785138, z: 0.0012009654, w: -0.00065916474} + outSlope: {x: -0.000036334557, y: 0.021785138, z: 0.0012009654, w: -0.00065916474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.05501812, y: 0.030916553, z: 0.0017043921, w: 0.99800515} + inSlope: {x: -0.000074988915, y: 0.042084657, z: 0.0023200745, w: -0.0013608127} + outSlope: {x: -0.000074988915, y: 0.042084657, z: 0.0023200745, w: -0.0013608127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.055010546, y: 0.035074014, z: 0.0019335892, w: 0.9978677} + inSlope: {x: -0.00015660189, y: 0.0784332, z: 0.004323855, w: -0.002841026} + outSlope: {x: -0.00015660189, y: 0.0784332, z: 0.004323855, w: -0.002841026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.054997247, y: 0.04137058, z: 0.0022807005, w: 0.9976265} + inSlope: {x: -0.00024165274, y: 0.10409291, z: 0.0057384567, w: -0.0043838476} + outSlope: {x: -0.00024165274, y: 0.10409291, z: 0.0057384567, w: -0.0043838476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.054978337, y: 0.048948113, z: 0.0026984436, w: 0.9972834} + inSlope: {x: -0.00031351135, y: 0.11557211, z: 0.0063712825, w: -0.005686973} + outSlope: {x: -0.00031351135, y: 0.11557211, z: 0.0063712825, w: -0.005686973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.05495546, y: 0.05677469, z: 0.0031299014, w: 0.9968685} + inSlope: {x: -0.00034702293, y: 0.11131938, z: 0.006136805, w: -0.0062942626} + outSlope: {x: -0.00034702293, y: 0.11131938, z: 0.006136805, w: -0.0062942626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.054932084, y: 0.0637854, z: 0.003516392, w: 0.99644446} + inSlope: {x: -0.00031993963, y: 0.09193204, z: 0.005068017, w: -0.0058032414} + outSlope: {x: -0.00031993963, y: 0.09193204, z: 0.005068017, w: -0.0058032414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.054912817, y: 0.06902792, z: 0.003805396, w: 0.996095} + inSlope: {x: -0.00022530212, y: 0.06006167, z: 0.0033110674, w: -0.004087357} + outSlope: {x: -0.00022530212, y: 0.06006167, z: 0.0033110674, w: -0.004087357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.054902054, y: 0.07179076, z: 0.00395771, w: 0.9958997} + inSlope: {x: -0.00007479326, y: 0.0192307, z: 0.0010601947, w: -0.001357682} + outSlope: {x: -0.00007479326, y: 0.0192307, z: 0.0010601947, w: -0.001357682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.054902848, y: 0.0715911, z: 0.003946705, w: 0.99591404} + inSlope: {x: 0.00011249735, y: -0.029098382, z: -0.0016041178, w: 0.0020405483} + outSlope: {x: 0.00011249735, y: -0.029098382, z: -0.0016041178, w: 0.0020405483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.05491705, y: 0.06791236, z: 0.0037439042, w: 0.99617165} + inSlope: {x: 0.00028391255, y: -0.07722156, z: -0.0042570704, w: 0.0051503377} + outSlope: {x: 0.00028391255, y: -0.07722156, z: -0.0042570704, w: 0.0051503377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.05494069, y: 0.061298568, z: 0.003379298, w: 0.9966005} + inSlope: {x: 0.00037676145, y: -0.11277245, z: -0.0062169377, w: 0.0068344753} + outSlope: {x: 0.00037676145, y: -0.11277245, z: -0.0062169377, w: 0.0068344753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.054967266, y: 0.05288141, z: 0.0029152753, w: 0.9970826} + inSlope: {x: 0.000375895, y: -0.12901044, z: -0.0071121305, w: 0.0068192706} + outSlope: {x: 0.000375895, y: -0.12901044, z: -0.0071121305, w: 0.0068192706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.05499079, y: 0.04410332, z: 0.0024313526, w: 0.9975094} + inSlope: {x: 0.00030400834, y: -0.12312335, z: -0.006787562, w: 0.0055148015} + outSlope: {x: 0.00030400834, y: -0.12312335, z: -0.006787562, w: 0.0055148015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.055007786, y: 0.03647082, z: 0.00201059, w: 0.99781764} + inSlope: {x: 0.00020017545, y: -0.0960975, z: -0.005297651, w: 0.0036307727} + outSlope: {x: 0.00020017545, y: -0.0960975, z: -0.005297651, w: 0.0036307727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.05501747, y: 0.031294897, z: 0.0017252514, w: 0.99799335} + inSlope: {x: 0.0001453383, y: -0.07766661, z: -0.004281609, w: 0.0026366606} + outSlope: {x: 0.0001453383, y: -0.07766661, z: -0.004281609, w: 0.0026366606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.000000004728071, y: 0.43171427, z: 0.000000013057832, w: 0.90201044} + inSlope: {x: -0.000000058033848, y: 0.029675383, z: -0.00000034457568, w: -0.014243146} + outSlope: {x: -0.000000058033848, y: 0.029675383, z: -0.00000034457568, w: -0.014243146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000008595612, y: 0.43369192, z: -0.000000009905677, w: 0.90106124} + inSlope: {x: 0.0000000312873, y: 0.05724603, z: -0.00000013272141, w: -0.027697433} + outSlope: {x: 0.0000000312873, y: 0.05724603, z: -0.00000013272141, w: -0.027697433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -5.5791777e-10, y: 0.43934435, z: -0.000000004632036, w: 0.89831877} + inSlope: {x: -0.000000046271182, y: 0.106398724, z: -0.00000007752601, w: -0.05225019} + outSlope: {x: -0.000000046271182, y: 0.106398724, z: -0.00000007752601, w: -0.05225019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000014762902, y: 0.44787335, z: -0.000000020238792, w: 0.89409703} + inSlope: {x: -0.000000022519231, y: 0.14061762, z: 0.00000020414367, w: -0.07060978} + outSlope: {x: -0.000000022519231, y: 0.14061762, z: 0.00000020414367, w: -0.07060978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.000000003559416, y: 0.45808667, z: 0.000000022577392, w: 0.8889075} + inSlope: {x: 0.00000008879495, y: 0.15532947, z: 0.00000008776314, w: -0.0800845} + outSlope: {x: 0.00000008879495, y: 0.15532947, z: 0.00000008776314, w: -0.0800845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.0000000029278058, y: 0.46857655, z: -0.0000000085412175, w: 0.8834229} + inSlope: {x: 0.000000016116722, y: 0.14881158, z: -0.0000002460576, w: -0.07881355} + outSlope: {x: 0.000000016116722, y: 0.14881158, z: -0.0000002460576, w: -0.07881355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0000000014112868, y: 0.47792113, z: -0.000000010218568, w: 0.87840277} + inSlope: {x: -0.00000003140915, y: 0.122292235, z: -0.00000019355689, w: -0.06632519} + outSlope: {x: -0.00000003140915, y: 0.122292235, z: -0.00000019355689, w: -0.06632519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000007114198, y: 0.48487636, z: -0.000000034339593, w: 0.8745827} + inSlope: {x: 0.000000007819633, y: 0.07960038, z: 0.000000111653506, w: -0.043935955} + outSlope: {x: 0.000000007819633, y: 0.07960038, z: 0.000000111653506, w: -0.043935955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -3.6904102e-10, y: 0.48853073, z: 0.000000004663255, w: 0.87254673} + inSlope: {x: 0.000000056129387, y: 0.025437757, z: 0.00000023833366, w: -0.014167565} + outSlope: {x: 0.000000056129387, y: 0.025437757, z: 0.00000023833366, w: -0.014167565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 3.6704928e-10, y: 0.48826686, z: -0.000000002573105, w: 0.8726944} + inSlope: {x: 0.000000007163913, y: -0.03850344, z: 0.00000013041867, w: 0.021408986} + outSlope: {x: 0.000000007163913, y: -0.03850344, z: 0.00000013041867, w: 0.021408986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 5.8580596e-10, y: 0.48339877, z: 0.000000022046214, w: 0.87540025} + inSlope: {x: -0.000000019885716, y: -0.10244776, z: 0.00000012021437, w: 0.05627539} + outSlope: {x: -0.000000019885716, y: -0.10244776, z: 0.00000012021437, w: 0.05627539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.0000000022834334, y: 0.47461203, z: 0.00000001344976, w: 0.8801951} + inSlope: {x: -0.000000053753297, y: -0.15030032, z: -0.00000020360613, w: 0.080779895} + outSlope: {x: -0.000000053753297, y: -0.15030032, z: -0.00000020360613, w: 0.080779895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0000000065787393, y: 0.46336588, z: -0.0000000050915703, w: 0.88616705} + inSlope: {x: -0.000000056939736, y: -0.17292926, z: -0.00000013732361, w: 0.090363264} + outSlope: {x: -0.000000056939736, y: -0.17292926, z: -0.00000013732361, w: 0.090363264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000009872686, y: 0.45156303, z: -0.0000000048535065, w: 0.8922392} + inSlope: {x: 0.000000050095622, y: -0.16600616, z: 0.000000008767784, w: 0.08419731} + outSlope: {x: 0.000000050095622, y: -0.16600616, z: 0.000000008767784, w: 0.08419731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 9.829389e-11, y: 0.44123963, z: -0.0000000039229495, w: 0.89738935} + inSlope: {x: 0.00000011119309, y: -0.13021702, z: 0.00000006572761, w: 0.0643276} + outSlope: {x: 0.00000011119309, y: -0.13021702, z: 0.00000006572761, w: 0.0643276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0000000049477653, y: 0.43420696, z: 0.000000003907042, w: 0.90081316} + inSlope: {x: 0.0000000727681, y: -0.105527684, z: 0.000000117491886, w: 0.051375527} + outSlope: {x: 0.0000000727681, y: -0.105527684, z: 0.000000117491886, w: 0.051375527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe1/Bip01 L Toe11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.082273334, y: 0.029409328, z: -0.002428876, w: 0.99617285} + inSlope: {x: 0.000054334138, y: 0.021744275, z: -0.0017958389, w: -0.0006582704} + outSlope: {x: 0.000054334138, y: 0.021744275, z: -0.0017958389, w: -0.0006582704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.08226971, y: 0.03085843, z: -0.0025485558, w: 0.996129} + inSlope: {x: 0.0001121899, y: 0.042005602, z: -0.0034692173, w: -0.0013585767} + outSlope: {x: 0.0001121899, y: 0.042005602, z: -0.0034692173, w: -0.0013585767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.08225838, y: 0.035008077, z: -0.0028912732, w: 0.99599177} + inSlope: {x: 0.00023421805, y: 0.078285836, z: -0.006465568, w: -0.0028356598} + outSlope: {x: 0.00023421805, y: 0.078285836, z: -0.006465568, w: -0.0028356598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.082238495, y: 0.041292816, z: -0.003410324, w: 0.995751} + inSlope: {x: 0.00036138907, y: 0.10389723, z: -0.008580813, w: -0.004375351} + outSlope: {x: 0.00036138907, y: 0.10389723, z: -0.008580813, w: -0.004375351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.08221021, y: 0.048856094, z: -0.004034973, w: 0.9954086} + inSlope: {x: 0.0004688276, y: 0.11535474, z: -0.009527128, w: -0.0056762407} + outSlope: {x: 0.0004688276, y: 0.11535474, z: -0.009527128, w: -0.0056762407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.08217601, y: 0.056667954, z: -0.004680154, w: 0.99499446} + inSlope: {x: 0.00051891326, y: 0.111110106, z: -0.009176504, w: -0.006282635} + outSlope: {x: 0.00051891326, y: 0.111110106, z: -0.009176504, w: -0.006282635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.08214105, y: 0.06366549, z: -0.0052580703, w: 0.9945712} + inSlope: {x: 0.0004783303, y: 0.09175931, z: -0.0075783273, w: -0.005792062} + outSlope: {x: 0.0004783303, y: 0.09175931, z: -0.0075783273, w: -0.005792062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.08211225, y: 0.068898164, z: -0.005690237, w: 0.99422246} + inSlope: {x: 0.00033690507, y: 0.059948646, z: -0.004951151, w: -0.0040793074} + outSlope: {x: 0.00033690507, y: 0.059948646, z: -0.004951151, w: -0.0040793074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.082096145, y: 0.07165579, z: -0.0059179883, w: 0.9940275} + inSlope: {x: 0.00011191038, y: 0.019194476, z: -0.0015852307, w: -0.0013549989} + outSlope: {x: 0.00011191038, y: 0.019194476, z: -0.0015852307, w: -0.0013549989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.08209734, y: 0.071456514, z: -0.0059015257, w: 0.99404186} + inSlope: {x: -0.0001682569, y: -0.0290436, z: 0.002398716, w: 0.0020369706} + outSlope: {x: -0.0001682569, y: -0.0290436, z: 0.002398716, w: 0.0020369706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.08211857, y: 0.06778469, z: -0.0055982736, w: 0.994299} + inSlope: {x: -0.00042455518, y: -0.07707641, z: 0.006365662, w: 0.0051404997} + outSlope: {x: -0.00042455518, y: -0.07707641, z: 0.006365662, w: 0.0051404997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.082153924, y: 0.061183326, z: -0.0050530736, w: 0.994727} + inSlope: {x: -0.0005634093, y: -0.11256051, z: 0.009296275, w: 0.0068210596} + outSlope: {x: -0.0005634093, y: -0.11256051, z: 0.009296275, w: 0.0068210596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.082193665, y: 0.052781984, z: -0.004359213, w: 0.99520814} + inSlope: {x: -0.0005621236, y: -0.12876795, z: 0.010634899, w: 0.006805855} + outSlope: {x: -0.0005621236, y: -0.12876795, z: 0.010634899, w: 0.006805855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.08222885, y: 0.0440204, z: -0.0036355937, w: 0.99563414} + inSlope: {x: -0.0004545731, y: -0.12289173, z: 0.0101496, w: 0.005504516} + outSlope: {x: -0.0004545731, y: -0.12289173, z: 0.0101496, w: 0.005504516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.08225425, y: 0.036402266, z: -0.003006416, w: 0.9959418} + inSlope: {x: -0.00029928493, y: -0.09591681, z: 0.007921705, w: 0.0036245116} + outSlope: {x: -0.00029928493, y: -0.09591681, z: 0.007921705, w: 0.0036245116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.08226874, y: 0.03123606, z: -0.0025797435, w: 0.99611723} + inSlope: {x: -0.00021733667, y: -0.077520825, z: 0.006402376, w: 0.0026321886} + outSlope: {x: -0.00021733667, y: -0.077520825, z: 0.006402376, w: 0.0026321886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.0000000056015317, y: 0.43171427, z: -0.0000000026972404, w: 0.90201044} + inSlope: {x: -0.00000018178278, y: 0.029674936, z: -0.000000014985805, w: -0.014243146} + outSlope: {x: -0.00000018178278, y: 0.029674936, z: -0.000000014985805, w: -0.014243146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.0000000065129933, y: 0.4336919, z: -0.0000000036959373, w: 0.90106124} + inSlope: {x: -0.000000059813075, y: 0.057245806, z: -0.000000020174626, w: -0.027697433} + outSlope: {x: -0.000000059813075, y: 0.057245806, z: -0.000000020174626, w: -0.027697433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.0000000023706963, y: 0.43934432, z: -0.0000000053862306, w: 0.89831877} + inSlope: {x: 0.000000018948645, y: 0.10639895, z: -0.00000018663692, w: -0.05225019} + outSlope: {x: 0.000000018948645, y: 0.10639895, z: -0.00000018663692, w: -0.05225019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000003987409, y: 0.44787335, z: -0.000000028571982, w: 0.89409703} + inSlope: {x: -0.000000008253705, y: 0.14061807, z: 0.00000014771685, w: -0.07060978} + outSlope: {x: -0.000000008253705, y: 0.14061807, z: 0.00000014771685, w: -0.07060978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.0000000034707979, y: 0.4580867, z: 0.000000014302302, w: 0.8889075} + inSlope: {x: 0.000000019487452, y: 0.15532947, z: 0.00000008768146, w: -0.0800845} + outSlope: {x: 0.000000019487452, y: 0.15532947, z: 0.00000008768146, w: -0.0800845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.0000000013900104, y: 0.46857655, z: -0.000000016885298, w: 0.8834229} + inSlope: {x: -0.00000003526433, y: 0.14881134, z: -0.00000017202139, w: -0.07881355} + outSlope: {x: -0.00000003526433, y: 0.14881134, z: -0.00000017202139, w: -0.07881355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000008171032, y: 0.47792113, z: -0.000000008625686, w: 0.87840277} + inSlope: {x: 0.00000011171683, y: 0.12229246, z: -0.00000018199056, w: -0.06632519} + outSlope: {x: 0.00000011171683, y: 0.12229246, z: -0.00000018199056, w: -0.06632519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.0000000135002525, y: 0.4848764, z: -0.000000041142048, w: 0.8745827} + inSlope: {x: 0.00000007619598, y: 0.07960038, z: 0.000000079330334, w: -0.0439364} + outSlope: {x: 0.00000007619598, y: 0.07960038, z: 0.000000079330334, w: -0.0439364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.000000001984808, y: 0.48853073, z: 0.0000000019479176, w: 0.8725467} + inSlope: {x: -0.00000016814846, y: 0.025437534, z: 0.00000040252996, w: -0.014167564} + outSlope: {x: -0.00000016814846, y: 0.025437534, z: 0.00000040252996, w: -0.014167564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.000000008911532, y: 0.48826686, z: 0.000000012509452, w: 0.8726944} + inSlope: {x: 0.000000005017199, y: -0.03850344, z: 0.00000013807458, w: 0.021409433} + outSlope: {x: 0.000000005017199, y: -0.03850344, z: 0.00000013807458, w: 0.021409433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.0000000026535383, y: 0.48339877, z: 0.000000020351283, w: 0.87540025} + inSlope: {x: 0.000000074953476, y: -0.10244776, z: -0.000000025105575, w: 0.05627539} + outSlope: {x: 0.000000074953476, y: -0.10244776, z: -0.000000025105575, w: 0.05627539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0000000010786988, y: 0.47461203, z: 0.000000009163236, w: 0.8801951} + inSlope: {x: -0.0000000717276, y: -0.15030032, z: -0.00000017468237, w: 0.080779895} + outSlope: {x: -0.0000000717276, y: -0.15030032, z: -0.00000017468237, w: 0.080779895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0000000069067227, y: 0.46336588, z: -0.0000000029313785, w: 0.88616705} + inSlope: {x: -0.000000032336132, y: -0.17292903, z: -0.00000016049114, w: 0.090363264} + outSlope: {x: -0.000000032336132, y: -0.17292903, z: -0.00000016049114, w: 0.090363264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.0000000032312406, y: 0.45156306, z: -0.000000012227938, w: 0.8922392} + inSlope: {x: 0.00000002153152, y: -0.16600639, z: 0.000000015348817, w: 0.08419731} + outSlope: {x: 0.00000002153152, y: -0.16600639, z: 0.000000015348817, w: 0.08419731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.000000004036878, y: 0.4412396, z: -8.855999e-10, w: 0.89738935} + inSlope: {x: 0.00000009183445, y: -0.13021746, z: 0.000000061080144, w: 0.0643276} + outSlope: {x: 0.00000009183445, y: -0.13021746, z: 0.000000061080144, w: 0.0643276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.000000009008973, y: 0.43420693, z: -0.000000004086821, w: 0.90081316} + inSlope: {x: 0.00000019575778, y: -0.105527684, z: -0.0000000480355, w: 0.051375527} + outSlope: {x: 0.00000019575778, y: -0.105527684, z: -0.0000000480355, w: 0.051375527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe2/Bip01 L Toe21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.3255449, y: 0.02790053, z: -0.009610821, w: 0.945066} + inSlope: {x: 0.00021510058, y: 0.020628776, z: -0.0071057957, w: -0.0006233892} + outSlope: {x: 0.00021510058, y: 0.020628776, z: -0.0071057957, w: -0.0006233892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.32553056, y: 0.02927529, z: -0.010084371, w: 0.94502443} + inSlope: {x: 0.00044406406, y: 0.0398506, z: -0.013727283, w: -0.0012883671} + outSlope: {x: 0.00044406406, y: 0.0398506, z: -0.013727283, w: -0.0012883671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.3254857, y: 0.033212047, z: -0.011440472, w: 0.94489425} + inSlope: {x: 0.0009268103, y: 0.07426954, z: -0.025583446, w: -0.0026903213} + outSlope: {x: 0.0009268103, y: 0.07426954, z: -0.025583446, w: -0.0026903213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.32540703, y: 0.039174363, z: -0.01349428, w: 0.94466585} + inSlope: {x: 0.0014299045, y: 0.09856689, z: -0.033953235, w: -0.004150859} + outSlope: {x: 0.0014299045, y: 0.09856689, z: -0.033953235, w: -0.004150859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.32529512, y: 0.046349607, z: -0.015965953, w: 0.944341} + inSlope: {x: 0.0018549631, y: 0.109436594, z: -0.037697505, w: -0.005385117} + outSlope: {x: 0.0018549631, y: 0.109436594, z: -0.037697505, w: -0.005385117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.3251598, y: 0.053760696, z: -0.018518819, w: 0.9439481} + inSlope: {x: 0.0020530699, y: 0.10540981, z: -0.036310125, w: -0.0059606554} + outSlope: {x: 0.0020530699, y: 0.10540981, z: -0.036310125, w: -0.0059606554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.32502148, y: 0.06039923, z: -0.020805575, w: 0.94354653} + inSlope: {x: 0.0018927502, y: 0.08705173, z: -0.029986467, w: -0.0054951245} + outSlope: {x: 0.0018927502, y: 0.08705173, z: -0.029986467, w: -0.0054951245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.3249075, y: 0.06536345, z: -0.022515588, w: 0.94321567} + inSlope: {x: 0.00133331, y: 0.05687315, z: -0.019591056, w: -0.0038700202} + outSlope: {x: 0.00133331, y: 0.05687315, z: -0.019591056, w: -0.0038700202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.32484376, y: 0.06797961, z: -0.023416784, w: 0.9430307} + inSlope: {x: 0.000442946, y: 0.018209867, z: -0.006272656, w: -0.0012856838} + outSlope: {x: 0.000442946, y: 0.018209867, z: -0.006272656, w: -0.0012856838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.32484847, y: 0.06779057, z: -0.023351643, w: 0.9430443} + inSlope: {x: -0.0006658725, y: -0.027553603, z: 0.0094912965, w: 0.001932327} + outSlope: {x: -0.0006658725, y: -0.027553603, z: 0.0094912965, w: 0.001932327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.32493252, y: 0.06430711, z: -0.02215173, w: 0.94328827} + inSlope: {x: -0.0016798857, y: -0.07312218, z: 0.025187986, w: 0.004877102} + outSlope: {x: -0.0016798857, y: -0.07312218, z: 0.025187986, w: 0.004877102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.32507238, y: 0.058044422, z: -0.019994443, w: 0.94369435} + inSlope: {x: -0.0022294887, y: -0.1067856, z: 0.036784284, w: 0.006471353} + outSlope: {x: -0.0022294887, y: -0.1067856, z: 0.036784284, w: 0.006471353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.32522967, y: 0.050074115, z: -0.01724891, w: 0.9441508} + inSlope: {x: -0.002224346, y: -0.12216171, z: 0.042081006, w: 0.006457043} + outSlope: {x: -0.002224346, y: -0.12216171, z: 0.042081006, w: 0.006457043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.32536885, y: 0.041762013, z: -0.014385647, w: 0.944555} + inSlope: {x: -0.0017986158, y: -0.116587155, z: 0.040160574, w: 0.005221889} + outSlope: {x: -0.0017986158, y: -0.116587155, z: 0.040160574, w: 0.005221889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.3254694, y: 0.034534708, z: -0.011896078, w: 0.9448468} + inSlope: {x: -0.0011843947, y: -0.09099598, z: 0.031345144, w: 0.0034380315} + outSlope: {x: -0.0011843947, y: -0.09099598, z: 0.031345144, w: 0.0034380315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.3255267, y: 0.029633548, z: -0.010207787, w: 0.9450132} + inSlope: {x: -0.00085995556, y: -0.0735437, z: 0.025333418, w: 0.0024971357} + outSlope: {x: -0.00085995556, y: -0.0735437, z: 0.025333418, w: 0.0024971357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.000000011100271, y: 0.43171427, z: -0.000000007423167, w: 0.90201044} + inSlope: {x: -0.00000025729068, y: 0.02967583, z: 0.0000002244418, w: -0.014243146} + outSlope: {x: -0.00000025729068, y: 0.02967583, z: 0.0000002244418, w: -0.014243146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.0000000060463163, y: 0.43369195, z: 0.000000007534275, w: 0.90106124} + inSlope: {x: -0.00000018719146, y: 0.057245806, z: 0.00000006730937, w: -0.027697433} + outSlope: {x: -0.00000018719146, y: 0.057245806, z: 0.00000006730937, w: -0.027697433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.0000000138496805, y: 0.43934432, z: 0.0000000015482081, w: 0.89831877} + inSlope: {x: 0.0000001848317, y: 0.10639828, z: -0.0000003383495, w: -0.05225019} + outSlope: {x: 0.0000001848317, y: 0.10639828, z: -0.0000003383495, w: -0.05225019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.00000001858912, y: 0.44787332, z: -0.000000037562895, w: 0.89409703} + inSlope: {x: 0.00000012134159, y: 0.14061807, z: -0.00000007255231, w: -0.07060978} + outSlope: {x: 0.00000012134159, y: 0.14061807, z: -0.00000007255231, w: -0.07060978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0000000023234337, y: 0.4580867, z: -0.000000008121993, w: 0.8889075} + inSlope: {x: -0.000000064834055, y: 0.15532969, z: 0.00000014176155, w: -0.0800845} + outSlope: {x: -0.000000064834055, y: 0.15532969, z: 0.00000014176155, w: -0.0800845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.000000009947667, y: 0.46857655, z: -0.000000018668107, w: 0.8834229} + inSlope: {x: -0.00000003033043, y: 0.14881134, z: -0.00000008683524, w: -0.07881355} + outSlope: {x: -0.00000003033043, y: 0.14881134, z: -0.00000008683524, w: -0.07881355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000001719184, y: 0.47792113, z: -0.00000001969589, w: 0.87840277} + inSlope: {x: 0.00000008204968, y: 0.12229246, z: -0.00000012422525, w: -0.06632519} + outSlope: {x: 0.00000008204968, y: 0.12229246, z: -0.00000012422525, w: -0.06632519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.00000002088372, y: 0.4848764, z: -0.000000035225565, w: 0.8745827} + inSlope: {x: 0.00000011566627, y: 0.07960038, z: 0.000000027215556, w: -0.043935955} + outSlope: {x: 0.00000011566627, y: 0.07960038, z: 0.000000027215556, w: -0.043935955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.000000013697481, y: 0.48853073, z: -0.000000016068443, w: 0.87254673} + inSlope: {x: -0.00000023200644, y: 0.025437534, z: 0.00000047042803, w: -0.014167565} + outSlope: {x: -0.00000023200644, y: 0.025437534, z: 0.00000047042803, w: -0.014167565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.000000010039414, y: 0.48826686, z: 0.000000027475757, w: 0.8726944} + inSlope: {x: -0.0000000983577, y: -0.03850344, z: 0.00000008896836, w: 0.021408986} + outSlope: {x: -0.0000000983577, y: -0.03850344, z: 0.00000008896836, w: 0.021408986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 5.8782246e-10, y: 0.48339877, z: -0.000000004210263, w: 0.87540025} + inSlope: {x: 0.00000005040081, y: -0.10244754, z: -0.00000036506742, w: 0.05627539} + outSlope: {x: 0.00000005040081, y: -0.10244754, z: -0.00000036506742, w: 0.05627539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000003321703, y: 0.47461206, z: -0.000000021182533, w: 0.8801951} + inSlope: {x: -0.00000008667759, y: -0.15030032, z: 0.000000114889346, w: 0.080779895} + outSlope: {x: -0.00000008667759, y: -0.15030032, z: 0.000000114889346, w: 0.080779895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000010965059, y: 0.46336588, z: 0.000000011102825, w: 0.88616705} + inSlope: {x: 0.00000009937453, y: -0.17292926, z: 0.000000071341844, w: 0.090363264} + outSlope: {x: 0.00000009937453, y: -0.17292926, z: 0.000000071341844, w: 0.090363264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.000000009923515, y: 0.45156306, z: -0.000000011673708, w: 0.8922392} + inSlope: {x: 0.00000006695375, y: -0.16600639, z: 0.000000021175211, w: 0.08419731} + outSlope: {x: 0.00000006695375, y: -0.16600639, z: 0.000000021175211, w: 0.08419731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.0000000020410769, y: 0.4412396, z: 0.000000013925178, w: 0.89738935} + inSlope: {x: -0.000000025457233, y: -0.13021746, z: 0.000000093472124, w: 0.0643276} + outSlope: {x: -0.000000025457233, y: -0.13021746, z: 0.000000093472124, w: 0.0643276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0000000065304206, y: 0.43420693, z: 7.848075e-10, w: 0.90081316} + inSlope: {x: 0.00000012861847, y: -0.105527684, z: -0.00000019717609, w: 0.051375527} + outSlope: {x: 0.00000012861847, y: -0.105527684, z: -0.00000019717609, w: 0.051375527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe3/Bip01 L Toe31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.6280148, y: -0.030616893, z: 0.77440023, w: 0.070457146} + inSlope: {x: -0.14599739, y: 0.0013997189, z: 0.11696015, w: -0.00011235763} + outSlope: {x: -0.14599739, y: 0.0013997189, z: 0.11696015, w: -0.00011235763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.6182851, y: -0.030523611, z: 0.7821948, w: 0.07044966} + inSlope: {x: -0.15781492, y: 0.0014653305, z: 0.12455707, w: 0.00006316618} + outSlope: {x: -0.15781492, y: 0.0014653305, z: 0.12455707, w: 0.00006316618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.6069803, y: -0.030421585, z: 0.7910019, w: 0.070465565} + inSlope: {x: -0.1747126, y: 0.0016843716, z: 0.13399017, w: 0.00051041646} + outSlope: {x: -0.1747126, y: 0.0016843716, z: 0.13399017, w: 0.00051041646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.5949984, y: -0.030299108, z: 0.8000538, w: 0.07051769} + inSlope: {x: -0.17988086, y: 0.0018867275, z: 0.13378091, w: 0.0010120012} + outSlope: {x: -0.17988086, y: 0.0018867275, z: 0.13378091, w: 0.0010120012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.5830048, y: -0.030170111, z: 0.808833, w: 0.07060045} + inSlope: {x: -0.17728984, y: 0.0016522862, z: 0.12782073, w: 0.0012816038} + outSlope: {x: -0.17728984, y: 0.0016522862, z: 0.12782073, w: 0.0012816038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.5713682, y: -0.030078882, z: 0.81709045, w: 0.07068851} + inSlope: {x: -0.1706123, y: 0.0005974101, z: 0.119334295, w: 0.001066} + outSlope: {x: -0.1706123, y: 0.0005974101, z: 0.119334295, w: 0.001066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.5602646, y: -0.030090485, z: 0.82473856, w: 0.07074253} + inSlope: {x: -0.16753198, y: -0.0019824407, z: 0.11373271, w: -0.0000017887796} + outSlope: {x: -0.16753198, y: -0.0019824407, z: 0.11373271, w: -0.0000017887796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.5490386, y: -0.030343113, z: 0.8322494, w: 0.07068827} + inSlope: {x: -0.1380668, y: -0.0035716437, z: 0.09151922, w: -0.00088477414} + outSlope: {x: -0.1380668, y: -0.0035716437, z: 0.09151922, w: -0.00088477414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.54186225, y: -0.030566534, z: 0.8369368, w: 0.070624605} + inSlope: {x: -0.042675752, y: -0.00094641634, z: 0.02792594, w: -0.00018156067} + outSlope: {x: -0.042675752, y: -0.00094641634, z: 0.02792594, w: -0.00018156067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.5433505, y: -0.030469257, z: 0.83597153, w: 0.07066407} + inSlope: {x: 0.0777139, y: 0.002572081, z: -0.050973903, w: 0.0007687833} + outSlope: {x: 0.0777139, y: 0.002572081, z: -0.050973903, w: 0.0007687833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.5522204, y: -0.030223712, z: 0.8301427, w: 0.07072707} + inSlope: {x: 0.17010514, y: 0.0040603993, z: -0.113834225, w: 0.000934804} + outSlope: {x: 0.17010514, y: 0.0040603993, z: -0.113834225, w: 0.000934804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.5660231, y: -0.029928064, z: 0.82079905, w: 0.07078867} + inSlope: {x: 0.22781122, y: 0.0043663103, z: -0.15762225, w: 0.00089142646} + outSlope: {x: 0.22781122, y: 0.0043663103, z: -0.15762225, w: 0.00089142646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.5825844, y: -0.029641746, z: 0.8091339, w: 0.07084589} + inSlope: {x: 0.25347972, y: 0.0037693335, z: -0.18265663, w: 0.0007849942} + outSlope: {x: 0.25347972, y: 0.0037693335, z: -0.18265663, w: 0.0007849942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.59980834, y: -0.029425666, z: 0.79645354, w: 0.070893295} + inSlope: {x: 0.2486535, y: 0.0022373695, z: -0.18697019, w: 0.0005397077} + outSlope: {x: 0.2486535, y: 0.0022373695, z: -0.18697019, w: 0.0005397077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.61572635, y: -0.029343536, z: 0.7842134, w: 0.07091782} + inSlope: {x: 0.18854794, y: -0.0027107836, z: -0.14678401, w: -0.0010094865} + outSlope: {x: 0.18854794, y: -0.0027107836, z: -0.14678401, w: -0.0010094865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.6249391, y: -0.029786974, z: 0.7768893, w: 0.070758745} + inSlope: {x: 0.13824043, y: -0.006653951, z: -0.1099008, w: -0.002387014} + outSlope: {x: 0.13824043, y: -0.006653951, z: -0.1099008, w: -0.002387014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.0000000120587185, y: 0.7074257, z: -0.00000000118086, w: 0.7067877} + inSlope: {x: -0.00000054564293, y: -0.15016614, z: 0.00000020858133, w: 0.14820385} + outSlope: {x: -0.00000054564293, y: -0.15016614, z: 0.00000020858133, w: 0.14820385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000024304487, y: 0.6974182, z: 0.000000012719596, w: 0.71666443} + inSlope: {x: -0.00000012721861, y: -0.16220593, z: -0.0000000037273438, w: 0.15753186} + outSlope: {x: -0.00000012721861, y: -0.16220593, z: -0.0000000037273438, w: 0.15753186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.000000004897701, y: 0.685806, z: -0.0000000016776663, w: 0.72778445} + inSlope: {x: -0.00000013022412, y: -0.18097599, z: 0.00000004721405, w: 0.17037077} + outSlope: {x: -0.00000013022412, y: -0.18097599, z: 0.00000004721405, w: 0.17037077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000041661508, y: 0.6732967, z: 0.000000019012557, w: 0.73937243} + inSlope: {x: 0.00000027834247, y: -0.18866822, z: 0.00000008622798, w: 0.17182285} + outSlope: {x: 0.00000027834247, y: -0.18866822, z: 0.00000008622798, w: 0.17182285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000032201356, y: 0.6606592, z: 0.0000000098153, w: 0.750686} + inSlope: {x: 0.00000017382453, y: -0.18432154, z: -0.00000009976937, w: 0.16240945} + outSlope: {x: 0.00000017382453, y: -0.18432154, z: -0.00000009976937, w: 0.16240945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000018493182, y: 0.64872926, z: 0.000000005714726, w: 0.7610193} + inSlope: {x: -0.00000041510305, y: -0.16696319, z: -0.000000048680853, w: 0.14265817} + outSlope: {x: -0.00000041510305, y: -0.16696319, z: -0.000000048680853, w: 0.14265817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000023125946, y: 0.6384054, z: 0.0000000033268368, w: 0.7697003} + inSlope: {x: -0.0000002593214, y: -0.13577224, z: -0.000000084175916, w: 0.113006026} + outSlope: {x: -0.0000002593214, y: -0.13577224, z: -0.000000084175916, w: 0.113006026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000053057033, y: 0.63063276, z: -0.0000000055047256, w: 0.7760814} + inSlope: {x: 0.00000013661548, y: -0.090272, z: -0.000000003632998, w: 0.073697634} + outSlope: {x: 0.00000013661548, y: -0.090272, z: -0.000000003632998, w: 0.073697634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.0000000049170477, y: 0.6263734, z: 0.0000000028426101, w: 0.77952313} + inSlope: {x: 0.000000316634, y: -0.029574754, z: 0.000000079438, w: 0.023907904} + outSlope: {x: 0.000000316634, y: -0.029574754, z: 0.000000079438, w: 0.023907904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.000000010854229, y: 0.62669086, z: 0.000000005083228, w: 0.77926797} + inSlope: {x: 0.00000026365922, y: 0.04451105, z: 0.00000005911602, w: -0.036046553} + outSlope: {x: 0.00000026365922, y: 0.04451105, z: 0.00000005911602, w: -0.036046553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000030224975, y: 0.6323061, z: 0.000000010721932, w: 0.77471864} + inSlope: {x: 0.00000019502147, y: 0.11527598, z: -0.000000013731199, w: -0.09460755} + outSlope: {x: 0.00000019502147, y: 0.11527598, z: -0.000000013731199, w: -0.09460755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000015139355, y: 0.6420555, z: 0.000000003253055, w: 0.7666581} + inSlope: {x: -0.0000003699346, y: 0.16708443, z: 0.000000011622301, w: -0.14046875} + outSlope: {x: -0.0000003699346, y: 0.16708443, z: 0.000000011622301, w: -0.14046875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000019082012, y: 0.65457606, z: 0.000000012271011, w: 0.75599617} + inSlope: {x: -0.00000024375464, y: 0.19877084, z: 0.00000004525461, w: -0.17248562} + outSlope: {x: -0.00000024375464, y: 0.19877084, z: 0.00000004525461, w: -0.17248562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000017349636, y: 0.6685488, z: 0.000000009284841, w: 0.74366826} + inSlope: {x: 0.000000071121306, y: 0.21135569, z: -0.000000114138196, w: -0.19012558} + outSlope: {x: 0.000000071121306, y: 0.21135569, z: -0.000000114138196, w: -0.19012558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.000000009602554, y: 0.68274677, z: -0.000000002941985, w: 0.73065513} + inSlope: {x: 0.00000016305952, y: 0.20630518, z: -0.000000056391766, w: -0.19260447} + outSlope: {x: 0.00000016305952, y: 0.20630518, z: -0.000000056391766, w: -0.19260447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.0000000043838635, y: 0.69604635, z: 0.000000001768618, w: 0.71799684} + inSlope: {x: 0.00000020987133, y: 0.19956514, z: 0.00000007068433, w: -0.1899424} + outSlope: {x: 0.00000020987133, y: 0.19956514, z: 0.00000007068433, w: -0.1899424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.000000008229836, y: -0.57809967, z: -0.000000005930555, w: 0.8159662} + inSlope: {x: 0.00000044277328, y: 0.01668125, z: 0.00000003974329, w: 0.0118005695} + outSlope: {x: 0.00000044277328, y: 0.01668125, z: 0.00000003974329, w: 0.0118005695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.00000002127784, y: -0.576988, z: -0.0000000032819487, w: 0.8167526} + inSlope: {x: 0.00000009790571, y: 0.01816146, z: 0.00000003722797, w: 0.012826432} + outSlope: {x: 0.00000009790571, y: 0.01816146, z: 0.00000003722797, w: 0.012826432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.00000000481959, y: -0.575679, z: -9.685976e-10, w: 0.81767577} + inSlope: {x: 0.000000083955825, y: 0.020572282, z: -0.000000005163928, w: 0.014481496} + outSlope: {x: 0.000000083955825, y: 0.020572282, z: -0.000000005163928, w: 0.014481496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.000000032467955, y: -0.574246, z: -0.000000003970227, w: 0.8186828} + inSlope: {x: -0.00000022006648, y: 0.021805204, z: -0.00000012464912, w: 0.015294052} + outSlope: {x: -0.00000022006648, y: 0.021805204, z: -0.00000012464912, w: 0.015294052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.000000024512117, y: -0.5727727, z: -0.000000017582543, w: 0.81971425} + inSlope: {x: -0.00000012992143, y: 0.021669261, z: -0.0000000031497223, w: 0.015142456} + outSlope: {x: -0.00000012992143, y: 0.021669261, z: -0.0000000031497223, w: 0.015142456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.000000015151283, y: -0.5713578, z: -0.0000000043900394, w: 0.82070106} + inSlope: {x: 0.0000003357826, y: 0.01995516, z: 0.00000012842499, w: 0.013895675} + outSlope: {x: 0.0000003357826, y: 0.01995516, z: 0.00000012842499, w: 0.013895675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.000000020242906, y: -0.57011294, z: -4.6532683e-10, w: 0.82156634} + inSlope: {x: 0.00000022972861, y: 0.01646391, z: 0.00000011033636, w: 0.011429394} + outSlope: {x: 0.00000022972861, y: 0.01646391, z: 0.00000011033636, w: 0.011429394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.000000045770836, y: -0.5691634, z: 0.000000010316226, w: 0.82222444} + inSlope: {x: -0.000000118739706, y: 0.011065826, z: 0.000000015189933, w: 0.0076644644} + outSlope: {x: -0.000000118739706, y: 0.011065826, z: 0.000000015189933, w: 0.0076644644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.000000004416591, y: -0.568638, z: 0.0000000015592744, w: 0.8225879} + inSlope: {x: -0.00000026493805, y: 0.0036428452, z: -0.00000013124028, w: 0.0025199403} + outSlope: {x: -0.00000026493805, y: 0.0036428452, z: -0.00000013124028, w: 0.0025199403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.0000000104583595, y: -0.56867784, z: -0.0000000071762285, w: 0.8225603} + inSlope: {x: -0.00000021898899, y: -0.005480367, z: -0.00000013456103, w: -0.0037922086} + outSlope: {x: -0.00000021898899, y: -0.005480367, z: -0.00000013456103, w: -0.0037922086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.000000024771527, y: -0.5693685, z: -0.000000016375788, w: 0.82208246} + inSlope: {x: -0.0000001797654, y: -0.014083046, z: -0.00000007874166, w: -0.0097600175} + outSlope: {x: -0.0000001797654, y: -0.014083046, z: -0.00000007874166, w: -0.0097600175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000013501808, y: -0.5705549, z: -0.00000001767137, w: 0.82125944} + inSlope: {x: 0.0000003017213, y: -0.020147905, z: 0.000000045669587, w: -0.014003452} + outSlope: {x: 0.0000003017213, y: -0.020147905, z: 0.000000045669587, w: -0.014003452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000000015443598, y: -0.5720539, z: -0.000000010288689, w: 0.820216} + inSlope: {x: 0.00000019786145, y: -0.02356313, z: 0.00000006515894, w: -0.016437083} + outSlope: {x: 0.00000019786145, y: -0.02356313, z: 0.00000006515894, w: -0.016437083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.000000012870282, y: -0.57369554, z: -0.000000008986618, w: 0.8190686} + inSlope: {x: -0.000000076044216, y: -0.024581382, z: 0.00000007735265, w: -0.017217431} + outSlope: {x: -0.000000076044216, y: -0.024581382, z: 0.00000007735265, w: -0.017217431} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000005307988, y: -0.57533026, z: 2.1318981e-11, w: 0.81792116} + inSlope: {x: -0.00000012713123, y: -0.023542112, z: 0.00000007196913, w: -0.016556934} + outSlope: {x: -0.00000012713123, y: -0.023542112, z: 0.00000007196913, w: -0.016556934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.0000000040744927, y: -0.57683337, z: 6.058427e-10, w: 0.8168618} + inSlope: {x: -0.00000014078756, y: -0.022554716, z: 0.000000008770993, w: -0.015895987} + outSlope: {x: -0.00000014078756, y: -0.022554716, z: 0.000000008770993, w: -0.015895987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.023338843, y: 0.61364865, z: 0.03989353, w: 0.78822535} + inSlope: {x: 0.013184134, y: 0.08039037, z: -0.006457601, w: -0.06310005} + outSlope: {x: 0.013184134, y: 0.08039037, z: -0.006457601, w: -0.06310005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.024217471, y: 0.6190061, z: 0.039463177, w: 0.7840202} + inSlope: {x: 0.014001142, y: 0.08566591, z: -0.00671619, w: -0.067796916} + outSlope: {x: 0.014001142, y: 0.08566591, z: -0.00671619, w: -0.067796916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.025204996, y: 0.6250667, z: 0.038998358, w: 0.779189} + inSlope: {x: 0.015118622, y: 0.093113475, z: -0.006956975, w: -0.07486974} + outSlope: {x: 0.015118622, y: 0.093113475, z: -0.006956975, w: -0.07486974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.026232569, y: 0.6314168, z: 0.03853591, w: 0.7740411} + inSlope: {x: 0.015229823, y: 0.094421536, z: -0.0066962903, w: -0.07719829} + outSlope: {x: 0.015229823, y: 0.094421536, z: -0.0066962903, w: -0.07719829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.027234914, y: 0.63765174, z: 0.038105838, w: 0.76889956} + inSlope: {x: 0.014385174, y: 0.08975375, z: -0.006036652, w: -0.07459608} + outSlope: {x: 0.014385174, y: 0.08975375, z: -0.006036652, w: -0.07459608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.028149907, y: 0.6433797, z: 0.037731312, w: 0.7640985} + inSlope: {x: 0.0126323365, y: 0.07926567, z: -0.005069844, w: -0.066880174} + outSlope: {x: 0.0126323365, y: 0.07926567, z: -0.005069844, w: -0.066880174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.028918624, y: 0.6482167, z: 0.0374301, w: 0.7599854} + inSlope: {x: 0.010007763, y: 0.063085265, z: -0.0038626415, w: -0.053907048} + outSlope: {x: 0.010007763, y: 0.063085265, z: -0.0038626415, w: -0.053907048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.029483799, y: 0.65178806, z: 0.037216477, w: 0.7569135} + inSlope: {x: 0.006528563, y: 0.041286774, z: -0.0024466843, w: -0.035607852} + outSlope: {x: 0.006528563, y: 0.041286774, z: -0.0024466843, w: -0.035607852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.029788788, y: 0.65371966, z: 0.037103992, w: 0.75523937} + inSlope: {x: 0.0021177728, y: 0.013418514, z: -0.00078208704, w: -0.011627501} + outSlope: {x: 0.0021177728, y: 0.013418514, z: -0.00078208704, w: -0.011627501} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.029766068, y: 0.65357655, z: 0.037112236, w: 0.7553637} + inSlope: {x: -0.0031953857, y: -0.020223025, z: 0.0011813199, w: 0.017509002} + outSlope: {x: -0.0031953857, y: -0.020223025, z: 0.0011813199, w: 0.017509002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.029362889, y: 0.6510242, z: 0.037261445, w: 0.75757307} + inSlope: {x: -0.0083826445, y: -0.052952737, z: 0.0031650183, w: 0.045554798} + outSlope: {x: -0.0083826445, y: -0.052952737, z: 0.0031650183, w: 0.045554798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.02864878, y: 0.6465187, z: 0.037534088, w: 0.7614355} + inSlope: {x: -0.012442673, y: -0.078275606, z: 0.0048727444, w: 0.06656402} + outSlope: {x: -0.012442673, y: -0.078275606, z: 0.0048727444, w: 0.06656402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.027704459, y: 0.6405912, z: 0.037910912, w: 0.7664451} + inSlope: {x: -0.015278389, y: -0.09557442, z: 0.0062699476, w: 0.08003173} + outSlope: {x: -0.015278389, y: -0.09557442, z: 0.0062699476, w: 0.08003173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.02661239, y: 0.63378, z: 0.038369782, w: 0.7721026} + inSlope: {x: -0.01684967, y: -0.10469939, z: 0.0072803805, w: 0.08612874} + outSlope: {x: -0.01684967, y: -0.10469939, z: 0.0072803805, w: 0.08612874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.025458638, y: 0.62663627, z: 0.038881283, w: 0.77792484} + inSlope: {x: -0.017088968, y: -0.105410025, z: 0.0077732485, w: 0.0851141} + outSlope: {x: -0.017088968, y: -0.105410025, z: 0.0077732485, w: 0.0851141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.024334675, y: 0.61973035, z: 0.039405845, w: 0.7834471} + inSlope: {x: -0.016865477, y: -0.10362577, z: 0.007871243, w: 0.082863405} + outSlope: {x: -0.016865477, y: -0.10362577, z: 0.007871243, w: 0.082863405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.17024997, y: -0.24507533, z: 0.04376183, w: 0.9534348} + inSlope: {x: -0.0012914978, y: 0.028256882, z: -0.005045696, w: 0.0072329245} + outSlope: {x: -0.0012914978, y: 0.028256882, z: -0.005045696, w: 0.0072329245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.17033604, y: -0.24319221, z: 0.04342557, w: 0.95391685} + inSlope: {x: -0.0024677305, y: 0.054629497, z: -0.009754876, w: 0.013820097} + outSlope: {x: -0.0024677305, y: 0.054629497, z: -0.009754876, w: 0.013820097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.17057888, y: -0.237794, z: 0.042461645, w: 0.95527685} + inSlope: {x: -0.0045039183, y: 0.10196088, z: -0.018206624, w: 0.025223553} + outSlope: {x: -0.0045039183, y: 0.10196088, z: -0.018206624, w: 0.025223553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.17093635, y: -0.22960228, z: 0.040998887, w: 0.9572788} + inSlope: {x: -0.0057858024, y: 0.13561139, z: -0.024215609, w: 0.032401033} + outSlope: {x: -0.0057858024, y: 0.13561139, z: -0.024215609, w: 0.032401033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.17135005, y: -0.21971893, z: 0.03923405, w: 0.95959544} + inSlope: {x: -0.0061671487, y: 0.15095344, z: -0.02695499, w: 0.03453639} + outSlope: {x: -0.0061671487, y: 0.15095344, z: -0.02695499, w: 0.03453639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.17175834, y: -0.20948234, z: 0.037406173, w: 0.961882} + inSlope: {x: -0.0056841774, y: 0.14577869, z: -0.026030771, w: 0.031832647} + outSlope: {x: -0.0056841774, y: 0.14577869, z: -0.026030771, w: 0.031832647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.17210767, y: -0.20028871, z: 0.03576452, w: 0.9638383} + inSlope: {x: -0.004504477, y: 0.12066546, z: -0.021546498, w: 0.025226235} + outSlope: {x: -0.004504477, y: 0.12066546, z: -0.021546498, w: 0.025226235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.17235872, y: -0.19339935, z: 0.03453433, w: 0.9652443} + inSlope: {x: -0.0028500818, y: 0.078967825, z: -0.0141009055, w: 0.015961261} + outSlope: {x: -0.0028500818, y: 0.078967825, z: -0.0141009055, w: 0.015961261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.17248754, y: -0.18976343, z: 0.03388507, w: 0.9659657} + inSlope: {x: -0.00089718367, y: 0.025306951, z: -0.0045190947, w: 0.0050246757} + outSlope: {x: -0.00089718367, y: 0.025306951, z: -0.0045190947, w: 0.0050246757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.1724783, y: -0.1900263, z: 0.033932, w: 0.965914} + inSlope: {x: 0.001361707, y: -0.038285207, z: 0.0068362886, w: -0.0076264534} + outSlope: {x: 0.001361707, y: -0.038285207, z: 0.0068362886, w: -0.0076264534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.17230605, y: -0.1948663, z: 0.03479625, w: 0.9649492} + inSlope: {x: 0.0036971797, y: -0.10148272, z: 0.018121239, w: -0.0207051} + outSlope: {x: 0.0036971797, y: -0.10148272, z: 0.018121239, w: -0.0207051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.17198552, y: -0.2035525, z: 0.036347304, w: 0.9631543} + inSlope: {x: 0.005615087, y: -0.14789173, z: 0.026408378, w: -0.03144449} + outSlope: {x: 0.005615087, y: -0.14789173, z: 0.026408378, w: -0.03144449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.17155764, y: -0.21457815, z: 0.03831611, w: 0.9607581} + inSlope: {x: 0.0067365393, y: -0.16872552, z: 0.030128561, w: -0.037726678} + outSlope: {x: 0.0067365393, y: -0.16872552, z: 0.030128561, w: -0.037726678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.17108764, y: -0.2260412, z: 0.04036301, w: 0.9581259} + inSlope: {x: 0.0067402255, y: -0.1605599, z: 0.028670385, w: -0.037747234} + outSlope: {x: 0.0067402255, y: -0.1605599, z: 0.028670385, w: -0.037747234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.17065926, y: -0.2359785, z: 0.042137463, w: 0.9557269} + inSlope: {x: 0.005471537, y: -0.124996126, z: 0.022319898, w: -0.030640878} + outSlope: {x: 0.005471537, y: -0.124996126, z: 0.022319898, w: -0.030640878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.17035836, y: -0.2427014, z: 0.043337934, w: 0.9540419} + inSlope: {x: 0.004515102, y: -0.10087954, z: 0.018013509, w: -0.025284393} + outSlope: {x: 0.004515102, y: -0.10087954, z: 0.018013509, w: -0.025284393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.0000000036581027, y: 0.29412162, z: 0.0000000035561085, w: 0.955768} + inSlope: {x: -0.000000036905124, y: 0.02579105, z: 0.00000010638763, w: -0.007961852} + outSlope: {x: -0.000000036905124, y: 0.02579105, z: 0.00000010638763, w: -0.007961852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.0000000061175656, y: 0.2958404, z: 0.000000010646084, w: 0.9552374} + inSlope: {x: -0.0000000829131, y: 0.04978593, z: -0.00000012054838, w: -0.015510492} + outSlope: {x: -0.0000000829131, y: 0.04978593, z: -0.00000012054838, w: -0.015510492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.000000014709237, y: 0.30075738, z: -0.0000000125112765, w: 0.95370066} + inSlope: {x: -0.00000006896816, y: 0.09265778, z: -0.000000094452815, w: -0.02935563} + outSlope: {x: -0.00000006896816, y: 0.09265778, z: -0.000000094452815, w: -0.02935563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.00000001531004, y: 0.30819038, z: -0.0000000019431305, w: 0.9513247} + inSlope: {x: 0.000000070168255, y: 0.12271263, z: 0.00000023259128, w: -0.039861575} + outSlope: {x: 0.000000070168255, y: 0.12271263, z: 0.00000023259128, w: -0.039861575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.000000005356812, y: 0.31711322, z: 0.000000018489821, w: 0.9483877} + inSlope: {x: 0.000000010207373, y: 0.13589573, z: -0.00000003908417, w: -0.045463145} + outSlope: {x: 0.000000010207373, y: 0.13589573, z: -0.00000003908417, w: -0.045463145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000013949542, y: 0.32630333, z: -0.0000000071524906, w: 0.9452651} + inSlope: {x: -0.00000007724389, y: 0.13054435, z: -0.00000022916652, w: -0.044990003} + outSlope: {x: -0.00000007724389, y: 0.13054435, z: -0.00000022916652, w: -0.044990003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000015652319, y: 0.33451292, z: -0.0000000120548, w: 0.94239116} + inSlope: {x: 0.000000017315225, y: 0.107545555, z: -0.00000017886154, w: -0.038041934} + outSlope: {x: 0.000000017315225, y: 0.107545555, z: -0.00000017886154, w: -0.038041934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000011641669, y: 0.34063762, z: -0.000000030992187, w: 0.94019467} + inSlope: {x: 0.00000011286231, y: 0.070133045, z: 0.000000019412155, w: -0.025287502} + outSlope: {x: 0.00000011286231, y: 0.070133045, z: 0.000000019412155, w: -0.025287502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -6.093791e-10, y: 0.34386066, z: -0.000000009467437, w: 0.9390207} + inSlope: {x: 0.0000000030436667, y: 0.022434624, z: 0.00000017657169, w: -0.0081684515} + outSlope: {x: 0.0000000030436667, y: 0.022434624, z: 0.00000017657169, w: -0.0081684515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.000000011235982, y: 0.34362784, z: -0.000000007457696, w: 0.9391059} + inSlope: {x: 0.00000002837858, y: -0.033951, z: 0.00000008068216, w: 0.012339883} + outSlope: {x: 0.00000002837858, y: -0.033951, z: 0.00000008068216, w: 0.012339883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000003173091, y: 0.33933547, z: 0.0000000012863453, w: 0.9406654} + inSlope: {x: 0.0000000050065623, y: -0.0902161, z: -0.00000004723288, w: 0.032358985} + outSlope: {x: 0.0000000050065623, y: -0.0902161, z: -0.00000004723288, w: 0.032358985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.000000010568678, y: 0.33160332, z: -0.000000013753165, w: 0.9434189} + inSlope: {x: -0.000000090704276, y: -0.13205053, z: -0.00000008382686, w: 0.046248868} + outSlope: {x: -0.000000090704276, y: -0.13205053, z: -0.00000008382686, w: 0.046248868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000008916499, y: 0.32173502, z: -0.000000009886584, w: 0.94682974} + inSlope: {x: -0.000000035902367, y: -0.15149656, z: -0.000000025335574, w: 0.05144124} + outSlope: {x: -0.000000035902367, y: -0.15149656, z: -0.000000025335574, w: 0.05144124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000015353955, y: 0.311411, z: -0.00000001713004, w: 0.9502753} + inSlope: {x: 0.000000009668813, y: -0.14500658, z: -0.000000027196709, w: 0.047633804} + outSlope: {x: 0.000000009668813, y: -0.14500658, z: -0.000000027196709, w: 0.047633804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.000000007627784, y: 0.3024077, z: -0.000000013511518, w: 0.95317864} + inSlope: {x: 0.00000007355238, y: -0.113462426, z: 0.000000039686203, w: 0.03618788} + outSlope: {x: 0.00000007355238, y: -0.113462426, z: 0.000000039686203, w: 0.03618788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.000000005550472, y: 0.29628807, z: -0.000000011840435, w: 0.9550986} + inSlope: {x: 0.000000031170824, y: -0.09182742, z: 0.000000025075211, w: 0.028810076} + outSlope: {x: 0.000000031170824, y: -0.09182742, z: 0.000000025075211, w: 0.028810076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe0/Bip01 R Toe01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.053311497, y: -0.24857445, z: 0.013703408, w: 0.9670475} + inSlope: {x: -0.00040431976, y: 0.028660027, z: -0.0015798825, w: 0.007336674} + outSlope: {x: -0.00040431976, y: 0.028660027, z: -0.0015798825, w: 0.007336674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.053338442, y: -0.24666446, z: 0.01359812, w: 0.96753645} + inSlope: {x: -0.000772724, y: 0.0554094, z: -0.0030545755, w: 0.01401731} + outSlope: {x: -0.000772724, y: 0.0554094, z: -0.0030545755, w: 0.01401731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.05341449, y: -0.24118917, z: 0.013296276, w: 0.9689158} + inSlope: {x: -0.0014103393, y: 0.10341672, z: -0.0057011414, w: 0.025583096} + outSlope: {x: -0.0014103393, y: 0.10341672, z: -0.0057011414, w: 0.025583096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.05352642, y: -0.23288049, z: 0.012838239, w: 0.9709463} + inSlope: {x: -0.0018117806, y: 0.13754764, z: -0.0075828186, w: 0.032863878} + outSlope: {x: -0.0018117806, y: 0.13754764, z: -0.0075828186, w: 0.032863878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.053655975, y: -0.22285603, z: 0.012285595, w: 0.9732961} + inSlope: {x: -0.0019311539, y: 0.15310869, z: -0.008440609, w: 0.035030093} + outSlope: {x: -0.0019311539, y: 0.15310869, z: -0.008440609, w: 0.035030093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.053783815, y: -0.21247329, z: 0.011713226, w: 0.9756153} + inSlope: {x: -0.0017798342, y: 0.14786005, z: -0.00815114, w: 0.032286994} + outSlope: {x: -0.0017798342, y: 0.14786005, z: -0.00815114, w: 0.032286994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0538932, y: -0.2031484, z: 0.011199164, w: 0.9775995} + inSlope: {x: -0.0014104791, y: 0.12238827, z: -0.0067469617, w: 0.025586227} + outSlope: {x: -0.0014104791, y: 0.12238827, z: -0.0067469617, w: 0.025586227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.053971812, y: -0.19616067, z: 0.010813952, w: 0.9790256} + inSlope: {x: -0.0008925161, y: 0.080095425, z: -0.0044155205, w: 0.016188884} + outSlope: {x: -0.0008925161, y: 0.080095425, z: -0.0044155205, w: 0.016188884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.05401216, y: -0.19247282, z: 0.010610638, w: 0.97975725} + inSlope: {x: -0.00028100575, y: 0.025668286, z: -0.0014151395, w: 0.005096227} + outSlope: {x: -0.00028100575, y: 0.025668286, z: -0.0014151395, w: 0.005096227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.054009266, y: -0.19273946, z: 0.010625334, w: 0.97970486} + inSlope: {x: 0.00042639987, y: -0.038831793, z: 0.0021406636, w: -0.007735122} + outSlope: {x: 0.00042639987, y: -0.038831793, z: 0.0021406636, w: -0.007735122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.053955328, y: -0.19764854, z: 0.010895958, w: 0.97872627} + inSlope: {x: 0.0011577024, y: -0.102931626, z: 0.005674394, w: -0.021000696} + outSlope: {x: 0.0011577024, y: -0.102931626, z: 0.005674394, w: -0.021000696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.05385496, y: -0.20645878, z: 0.01138165, w: 0.97690576} + inSlope: {x: 0.0017583134, y: -0.15000337, z: 0.008269453, w: -0.03189392} + outSlope: {x: 0.0017583134, y: -0.15000337, z: 0.008269453, w: -0.03189392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.05372097, y: -0.21764185, z: 0.011998158, w: 0.97447526} + inSlope: {x: 0.0021095285, y: -0.17113465, z: 0.009434381, w: -0.0382651} + outSlope: {x: 0.0021095285, y: -0.17113465, z: 0.009434381, w: -0.0382651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.05357379, y: -0.22926858, z: 0.012639118, w: 0.9718056} + inSlope: {x: 0.0021106177, y: -0.1628522, z: 0.008977742, w: -0.038285207} + outSlope: {x: 0.0021106177, y: -0.1628522, z: 0.008977742, w: -0.038285207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.053439654, y: -0.23934773, z: 0.013194763, w: 0.9693724} + inSlope: {x: 0.0017132582, y: -0.12678066, z: 0.006989183, w: -0.031078681} + outSlope: {x: 0.0017132582, y: -0.12678066, z: 0.006989183, w: -0.031078681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.053345438, y: -0.24616663, z: 0.013570677, w: 0.9676632} + inSlope: {x: 0.0014137505, y: -0.10232018, z: 0.0056407196, w: -0.025646621} + outSlope: {x: 0.0014137505, y: -0.10232018, z: 0.0056407196, w: -0.025646621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.0000000018164423, y: 0.29412165, z: 0.000000009202809, w: 0.955768} + inSlope: {x: -0.00000015171153, y: 0.025790157, z: -0.000000080839506, w: -0.007961852} + outSlope: {x: -0.00000015171153, y: 0.025790157, z: -0.000000080839506, w: -0.007961852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.000000008294048, y: 0.29584038, z: 0.0000000038154333, w: 0.9552374} + inSlope: {x: -0.00000005281208, y: 0.049785707, z: -0.000000070856956, w: -0.015510045} + outSlope: {x: -0.00000005281208, y: 0.049785707, z: -0.000000070856956, w: -0.015510045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.000000005222653, y: 0.30075738, z: -2.414126e-10, w: 0.9537007} + inSlope: {x: -0.00000002801919, y: 0.092658006, z: -0.000000059059797, w: -0.02935563} + outSlope: {x: -0.00000002801919, y: 0.092658006, z: -0.000000059059797, w: -0.02935563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000012028607, y: 0.30819038, z: -0.000000004056397, w: 0.9513247} + inSlope: {x: 0.00000008749554, y: 0.12271263, z: 0.00000012596782, w: -0.03986202} + outSlope: {x: 0.00000008749554, y: 0.12271263, z: 0.00000012596782, w: -0.03986202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0000000064392496, y: 0.31711322, z: 0.000000016548293, w: 0.9483877} + inSlope: {x: 0.000000030526557, y: 0.13589573, z: 0.000000008704703, w: -0.045463145} + outSlope: {x: 0.000000030526557, y: 0.13589573, z: 0.000000008704703, w: -0.045463145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000007959852, y: 0.32630333, z: -0.0000000028961848, w: 0.9452651} + inSlope: {x: -0.00000012282882, y: 0.13054435, z: -0.00000015604331, w: -0.044990003} + outSlope: {x: -0.00000012282882, y: 0.13054435, z: -0.00000015604331, w: -0.044990003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000009932076, y: 0.33451292, z: -0.000000004250049, w: 0.94239116} + inSlope: {x: -0.000000073889716, y: 0.10754578, z: -0.00000012984606, w: -0.038041934} + outSlope: {x: -0.000000073889716, y: 0.10754578, z: -0.00000012984606, w: -0.038041934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000017808299, y: 0.34063765, z: -0.000000020202815, w: 0.94019467} + inSlope: {x: 0.000000085246626, y: 0.070133045, z: 0.00000003083194, w: -0.025287502} + outSlope: {x: 0.000000085246626, y: 0.070133045, z: 0.00000003083194, w: -0.025287502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0000000014300867, y: 0.34386066, z: -1.4058944e-10, w: 0.9390207} + inSlope: {x: 0.00000008604658, y: 0.022434847, z: 0.00000015900713, w: -0.0081684515} + outSlope: {x: 0.00000008604658, y: 0.022434847, z: 0.00000015900713, w: -0.0081684515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.000000006339506, y: 0.3436279, z: 9.905714e-10, w: 0.9391059} + inSlope: {x: 0.000000043322025, y: -0.033951, z: 0.00000010379264, w: 0.012339883} + outSlope: {x: 0.000000043322025, y: -0.033951, z: 0.00000010379264, w: 0.012339883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000007204303, y: 0.33933547, z: 0.00000001369349, w: 0.9406654} + inSlope: {x: 0.000000039890928, y: -0.09021677, z: 0.00000002864072, w: 0.032358985} + outSlope: {x: 0.000000039890928, y: -0.09021677, z: 0.00000002864072, w: 0.032358985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.0000000010226133, y: 0.3316033, z: 0.0000000048079714, w: 0.9434189} + inSlope: {x: -0.00000013556684, y: -0.13205053, z: -0.00000010458356, w: 0.046248868} + outSlope: {x: -0.00000013556684, y: -0.13205053, z: -0.00000010458356, w: 0.046248868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000010864816, y: 0.32173502, z: -2.4600494e-10, w: 0.94682974} + inSlope: {x: -0.000000051496404, y: -0.15149611, z: -0.000000057385243, w: 0.05144124} + outSlope: {x: -0.000000051496404, y: -0.15149611, z: -0.000000057385243, w: 0.05144124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.000000007886341, y: 0.31141102, z: -0.0000000028406595, w: 0.9502753} + inSlope: {x: 0.000000057147165, y: -0.1450068, z: -0.000000007304192, w: 0.04763425} + outSlope: {x: 0.000000057147165, y: -0.1450068, z: -0.000000007304192, w: 0.04763425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.0000000032479124, y: 0.30240768, z: -0.0000000012195497, w: 0.9531787} + inSlope: {x: 0.000000059017406, y: -0.113462426, z: 0.000000007732988, w: 0.03618788} + outSlope: {x: 0.000000059017406, y: -0.113462426, z: 0.000000007732988, w: 0.03618788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -2.0164568e-11, y: 0.2962881, z: -0.0000000018099617, w: 0.9550986} + inSlope: {x: 0.00000004843354, y: -0.09182653, z: -0.00000000885935, w: 0.028809182} + outSlope: {x: 0.00000004843354, y: -0.09182653, z: -0.00000000885935, w: 0.028809182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe1/Bip01 R Toe11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.079717726, y: -0.24810714, z: -0.020491054, w: 0.9652296} + inSlope: {x: 0.0006050542, y: 0.028606365, z: 0.0023626965, w: 0.0073223636} + outSlope: {x: 0.0006050542, y: 0.028606365, z: 0.0023626965, w: 0.0073223636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.07975805, y: -0.24620073, z: -0.020333597, w: 0.96571755} + inSlope: {x: 0.0011555504, y: 0.055305317, z: 0.0045676576, w: 0.013990925} + outSlope: {x: 0.0011555504, y: 0.055305317, z: 0.0045676576, w: 0.013990925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.079871744, y: -0.24073572, z: -0.01988225, w: 0.96709436} + inSlope: {x: 0.002108857, y: 0.10322219, z: 0.008525076, w: 0.025535246} + outSlope: {x: 0.002108857, y: 0.10322219, z: 0.008525076, w: 0.025535246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.08003913, y: -0.23244268, z: -0.019197326, w: 0.96912104} + inSlope: {x: 0.0027091042, y: 0.13728915, z: 0.011338631, w: 0.032802165} + outSlope: {x: 0.0027091042, y: 0.13728915, z: 0.011338631, w: 0.032802165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.08023283, y: -0.22243704, z: -0.018370973, w: 0.9714664} + inSlope: {x: 0.0028876474, y: 0.15282091, z: 0.01262141, w: 0.03496391} + outSlope: {x: 0.0028876474, y: 0.15282091, z: 0.01262141, w: 0.03496391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.08042401, y: -0.21207383, z: -0.017515073, w: 0.9737812} + inSlope: {x: 0.00266159, y: 0.14758201, z: 0.012188733, w: 0.03222618} + outSlope: {x: 0.00266159, y: 0.14758201, z: 0.012188733, w: 0.03222618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.08058758, y: -0.20276646, z: -0.016746389, w: 0.9757617} + inSlope: {x: 0.002109304, y: 0.12215819, z: 0.010088943, w: 0.025538377} + outSlope: {x: 0.002109304, y: 0.12215819, z: 0.010088943, w: 0.025538377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.08070515, y: -0.19579189, z: -0.01617036, w: 0.97718513} + inSlope: {x: 0.0013344281, y: 0.079944834, z: 0.006602573, w: 0.016158475} + outSlope: {x: 0.0013344281, y: 0.079944834, z: 0.006602573, w: 0.016158475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.08076544, y: -0.19211096, z: -0.01586636, w: 0.9779154} + inSlope: {x: 0.0004199714, y: 0.025620101, z: 0.002115956, w: 0.005086836} + outSlope: {x: 0.0004199714, y: 0.025620101, z: 0.002115956, w: 0.005086836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.08076113, y: -0.19237709, z: -0.015888333, w: 0.97786313} + inSlope: {x: -0.00063758745, y: -0.03875879, z: -0.0032011014, w: -0.0077203643} + outSlope: {x: -0.00063758745, y: -0.03875879, z: -0.0032011014, w: -0.0077203643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.08068046, y: -0.19727695, z: -0.01629302, w: 0.9768864} + inSlope: {x: -0.0017312013, y: -0.1027381, z: -0.008485123, w: -0.020961342} + outSlope: {x: -0.0017312013, y: -0.1027381, z: -0.008485123, w: -0.020961342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.08053038, y: -0.20607062, z: -0.01701928, w: 0.9750693} + inSlope: {x: -0.002629113, y: -0.14972141, z: -0.012365378, w: -0.031833995} + outSlope: {x: -0.002629113, y: -0.14972141, z: -0.012365378, w: -0.031833995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.08033004, y: -0.21723267, z: -0.017941149, w: 0.9726434} + inSlope: {x: -0.003154343, y: -0.17081301, z: -0.014107354, w: -0.038193546} + outSlope: {x: -0.003154343, y: -0.17081301, z: -0.014107354, w: -0.038193546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.080109954, y: -0.22883755, z: -0.018899588, w: 0.96997863} + inSlope: {x: -0.0031560743, y: -0.1625461, z: -0.013424566, w: -0.038213655} + outSlope: {x: -0.0031560743, y: -0.1625461, z: -0.013424566, w: -0.038213655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.07990938, y: -0.23889776, z: -0.019730452, w: 0.96755004} + inSlope: {x: -0.0025619776, y: -0.12654231, z: -0.010451034, w: -0.031020097} + outSlope: {x: -0.0025619776, y: -0.12654231, z: -0.010451034, w: -0.031020097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.07976848, y: -0.24570383, z: -0.020292562, w: 0.9658441} + inSlope: {x: -0.0021142252, y: -0.102127664, z: -0.008434652, w: -0.025598325} + outSlope: {x: -0.0021142252, y: -0.102127664, z: -0.008434652, w: -0.025598325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.0000000037732564, y: 0.29412165, z: 0.0000000028420977, w: 0.955768} + inSlope: {x: -0.00000012722646, y: 0.025790157, z: -0.00000018858037, w: -0.007961852} + outSlope: {x: -0.00000012722646, y: 0.025790157, z: -0.00000018858037, w: -0.007961852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.0000000047054787, y: 0.29584038, z: -0.000000009725437, w: 0.9552374} + inSlope: {x: -0.000000036012352, y: 0.049785707, z: 0.000000020113632, w: -0.015510492} + outSlope: {x: -0.000000036012352, y: 0.049785707, z: 0.000000020113632, w: -0.015510492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.0000000010266746, y: 0.30075738, z: 0.000000005522963, w: 0.95370066} + inSlope: {x: -0.000000012758557, y: 0.09265778, z: 0.00000004548273, w: -0.02935563} + outSlope: {x: -0.000000012758557, y: 0.09265778, z: 0.00000004548273, w: -0.02935563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.0000000064060126, y: 0.30819035, z: -0.000000003663237, w: 0.9513247} + inSlope: {x: 0.00000012139314, y: 0.1227124, z: -0.000000011185691, w: -0.039861575} + outSlope: {x: 0.00000012139314, y: 0.1227124, z: -0.000000011185691, w: -0.039861575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000015153292, y: 0.3171132, z: 0.000000004032066, w: 0.9483877} + inSlope: {x: 0.00000006608663, y: 0.13589595, z: 0.0000000043016506, w: -0.045463145} + outSlope: {x: 0.00000006608663, y: 0.13589595, z: 0.0000000043016506, w: -0.045463145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.0000000024023883, y: 0.32630333, z: -0.0000000030898888, w: 0.9452651} + inSlope: {x: -0.00000014216273, y: 0.13054457, z: -0.000000016608201, w: -0.044990003} + outSlope: {x: -0.00000014216273, y: 0.13054457, z: -0.000000016608201, w: -0.044990003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.0000000037949706, y: 0.33451292, z: 0.0000000018184323, w: 0.94239116} + inSlope: {x: -0.00000012940747, y: 0.10754578, z: -0.000000007601727, w: -0.038041934} + outSlope: {x: -0.00000012940747, y: 0.10754578, z: -0.000000007601727, w: -0.038041934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000014845785, y: 0.34063765, z: -0.0000000041030903, w: 0.94019467} + inSlope: {x: 0.0000000442855, y: 0.070133045, z: 0.0000000114355885, w: -0.025287502} + outSlope: {x: 0.0000000442855, y: 0.070133045, z: 0.0000000114355885, w: -0.025287502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.0000000021076558, y: 0.34386066, z: 0.0000000033426335, w: 0.9390207} + inSlope: {x: 0.000000072785184, y: 0.022434624, z: 0.00000001860041, w: -0.008168899} + outSlope: {x: 0.000000072785184, y: 0.022434624, z: 0.00000001860041, w: -0.008168899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.0000000051445492, y: 0.34362787, z: -0.0000000016239166, w: 0.93910587} + inSlope: {x: 0.00000006408294, y: -0.033951223, z: 0.00000009256712, w: 0.012339883} + outSlope: {x: 0.00000006408294, y: -0.033951223, z: 0.00000009256712, w: 0.012339883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000010649005, y: 0.33933544, z: 0.000000015680516, w: 0.9406654} + inSlope: {x: 0.00000008994745, y: -0.09021655, z: 0.00000010731806, w: 0.032359432} + outSlope: {x: 0.00000008994745, y: -0.09021655, z: 0.00000010731806, w: 0.032359432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.0000000068441652, y: 0.3316033, z: 0.000000012680053, w: 0.9434189} + inSlope: {x: -0.00000013444229, y: -0.1320503, z: -0.000000042058026, w: 0.046248868} + outSlope: {x: -0.00000013444229, y: -0.1320503, z: -0.000000042058026, w: 0.046248868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.000000007270224, y: 0.32173502, z: 0.000000010074783, w: 0.94682974} + inSlope: {x: -0.000000054279976, y: -0.15149611, z: -0.00000005879712, w: 0.05144124} + outSlope: {x: -0.000000054279976, y: -0.15149611, z: -0.00000005879712, w: 0.05144124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -3.9056938e-10, y: 0.31141102, z: 0.000000004843236, w: 0.9502753} + inSlope: {x: 0.000000051922925, y: -0.14500658, z: -0.000000073138594, w: 0.047633804} + outSlope: {x: 0.000000051922925, y: -0.14500658, z: -0.000000073138594, w: 0.047633804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -3.4963724e-10, y: 0.3024077, z: 3.2644887e-10, w: 0.95317864} + inSlope: {x: 0.000000011605581, y: -0.113462426, z: -0.000000028301928, w: 0.03618788} + outSlope: {x: 0.000000011605581, y: -0.113462426, z: -0.000000028301928, w: 0.03618788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.000000001156288, y: 0.2962881, z: 0.0000000010709912, w: 0.9550986} + inSlope: {x: 0.00000002259696, y: -0.091826975, z: 0.000000011172131, w: 0.028810076} + outSlope: {x: 0.00000002259696, y: -0.091826975, z: 0.000000011172131, w: 0.028810076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe2/Bip01 R Toe21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.31543276, y: -0.2353785, z: -0.081080355, w: 0.91571015} + inSlope: {x: 0.002392938, y: 0.027138447, z: 0.009348714, w: 0.0069476143} + outSlope: {x: 0.002392938, y: 0.027138447, z: 0.009348714, w: 0.0069476143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.31559223, y: -0.23356992, z: -0.08045733, w: 0.91617316} + inSlope: {x: 0.0045723394, y: 0.052467983, z: 0.018073587, w: 0.013273625} + outSlope: {x: 0.0045723394, y: 0.052467983, z: 0.018073587, w: 0.013273625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.31604218, y: -0.22838527, z: -0.0786714, w: 0.91747934} + inSlope: {x: 0.008344871, y: 0.09792663, z: 0.033732545, w: 0.024225414} + outSlope: {x: 0.008344871, y: 0.09792663, z: 0.033732545, w: 0.024225414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.31670448, y: -0.2205177, z: -0.07596126, w: 0.91940206} + inSlope: {x: 0.0107197, y: 0.13024585, z: 0.044865627, w: 0.031118926} + outSlope: {x: 0.0107197, y: 0.13024585, z: 0.044865627, w: 0.031118926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.31747097, y: -0.21102536, z: -0.072691455, w: 0.92162704} + inSlope: {x: 0.011426046, y: 0.14498094, z: 0.049941182, w: 0.033170212} + outSlope: {x: 0.011426046, y: 0.14498094, z: 0.049941182, w: 0.033170212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.3182274, y: -0.20119381, z: -0.06930482, w: 0.9238232} + inSlope: {x: 0.010531208, y: 0.14001057, z: 0.048229087, w: 0.030573346} + outSlope: {x: 0.010531208, y: 0.14001057, z: 0.048229087, w: 0.030573346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.31887463, y: -0.19236395, z: -0.06626321, w: 0.92570204} + inSlope: {x: 0.008345766, y: 0.11589098, z: 0.03992071, w: 0.024227649} + outSlope: {x: 0.008345766, y: 0.11589098, z: 0.03992071, w: 0.024227649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.31933978, y: -0.18574719, z: -0.063983954, w: 0.9270524} + inSlope: {x: 0.005280695, y: 0.075843275, z: 0.026125489, w: 0.015329376} + outSlope: {x: 0.005280695, y: 0.075843275, z: 0.026125489, w: 0.015329376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.31957847, y: -0.18225512, z: -0.06278105, w: 0.9277452} + inSlope: {x: 0.0016622214, y: 0.024305684, z: 0.008372652, w: 0.0048261215} + outSlope: {x: 0.0016622214, y: 0.024305684, z: 0.008372652, w: 0.0048261215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.31956133, y: -0.18250759, z: -0.062868, w: 0.92769563} + inSlope: {x: -0.0025232947, y: -0.036770336, z: -0.012666168, w: -0.0073245973} + outSlope: {x: -0.0025232947, y: -0.036770336, z: -0.012666168, w: -0.0073245973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.31924215, y: -0.18715608, z: -0.06446927, w: 0.92676896} + inSlope: {x: -0.0068499004, y: -0.09746724, z: -0.033574406, w: -0.01988584} + outSlope: {x: -0.0068499004, y: -0.09746724, z: -0.033574406, w: -0.01988584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.31864834, y: -0.19549859, z: -0.06734299, w: 0.92504513} + inSlope: {x: -0.010402866, y: -0.1420402, z: -0.04892823, w: -0.030200396} + outSlope: {x: -0.010402866, y: -0.1420402, z: -0.04892823, w: -0.030200396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.3178556, y: -0.206088, z: -0.070990704, w: 0.9227437} + inSlope: {x: -0.012481425, y: -0.1620498, z: -0.05582106, w: -0.03623394} + outSlope: {x: -0.012481425, y: -0.1620498, z: -0.05582106, w: -0.03623394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.31698474, y: -0.2170975, z: -0.07478314, w: 0.92021567} + inSlope: {x: -0.012488574, y: -0.15420683, z: -0.05311937, w: -0.036253154} + outSlope: {x: -0.012488574, y: -0.15420683, z: -0.05311937, w: -0.036253154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.31619105, y: -0.22664158, z: -0.07807076, w: 0.91791165} + inSlope: {x: -0.01013723, y: -0.12005027, z: -0.041353423, w: -0.02942898} + outSlope: {x: -0.01013723, y: -0.12005027, z: -0.041353423, w: -0.02942898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.3156336, y: -0.23309849, z: -0.08029496, w: 0.9162932} + inSlope: {x: -0.008364779, y: -0.096888326, z: -0.03337493, w: -0.024285361} + outSlope: {x: -0.008364779, y: -0.096888326, z: -0.03337493, w: -0.024285361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.000000008921942, y: 0.29412165, z: 0.0000000014567803, w: 0.955768} + inSlope: {x: -0.0000002583929, y: 0.025790604, z: -0.0000004279232, w: -0.007961852} + outSlope: {x: -0.0000002583929, y: 0.025790604, z: -0.0000004279232, w: -0.007961852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.0000000082981, y: 0.2958404, z: -0.000000027061246, w: 0.9552374} + inSlope: {x: -0.00000006305969, y: 0.049785484, z: 0.00000009593835, w: -0.015510492} + outSlope: {x: -0.00000006305969, y: 0.049785484, z: 0.00000009593835, w: -0.015510492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 5.1698895e-10, y: 0.30075735, z: 0.0000000142440015, w: 0.95370066} + inSlope: {x: 0.000000033146485, y: 0.09265778, z: 0.00000017669761, w: -0.02935563} + outSlope: {x: 0.000000033146485, y: 0.09265778, z: 0.00000017669761, w: -0.02935563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.000000003880145, y: 0.30819038, z: -0.0000000035099734, w: 0.9513247} + inSlope: {x: 0.00000010644073, y: 0.12271263, z: -0.00000028356112, w: -0.039861575} + outSlope: {x: 0.00000010644073, y: 0.12271263, z: -0.00000028356112, w: -0.039861575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.000000014704014, y: 0.3171132, z: -0.00000002355065, w: 0.9483877} + inSlope: {x: -9.385133e-10, y: 0.13589573, z: 0.00000012409971, w: -0.045463145} + outSlope: {x: -9.385133e-10, y: 0.13589573, z: 0.00000012409971, w: -0.045463145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.000000004005238, y: 0.32630333, z: 0.000000013030744, w: 0.9452651} + inSlope: {x: -0.00000013935409, y: 0.13054457, z: 0.00000014051045, w: -0.044990003} + outSlope: {x: -0.00000013935409, y: 0.13054457, z: 0.00000014051045, w: -0.044990003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.000000003869894, y: 0.33451292, z: -0.0000000048226223, w: 0.94239116} + inSlope: {x: -0.000000072985145, y: 0.10754578, z: 0.00000010973744, w: -0.038041934} + outSlope: {x: -0.000000072985145, y: 0.10754578, z: 0.00000010973744, w: -0.038041934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.000000013733119, y: 0.34063765, z: 0.000000027657185, w: 0.94019467} + inSlope: {x: 0.00000014526447, y: 0.070133045, z: 0.0000001090345, w: -0.025287502} + outSlope: {x: 0.00000014526447, y: 0.070133045, z: 0.0000001090345, w: -0.025287502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.000000015491791, y: 0.34386066, z: 0.000000009710125, w: 0.9390207} + inSlope: {x: 0.000000113485754, y: 0.022434624, z: -0.0000002488213, w: -0.0081684515} + outSlope: {x: 0.000000113485754, y: 0.022434624, z: -0.0000002488213, w: -0.0081684515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.0000000013929286, y: 0.34362787, z: -0.0000000055071374, w: 0.9391059} + inSlope: {x: 0.000000019922794, y: -0.033951, z: -0.000000025688792, w: 0.012339883} + outSlope: {x: 0.000000019922794, y: -0.033951, z: -0.000000025688792, w: 0.012339883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.000000018147228, y: 0.33933547, z: 0.000000006286189, w: 0.9406654} + inSlope: {x: 0.00000015726941, y: -0.09021655, z: 0.00000028557798, w: 0.032358985} + outSlope: {x: 0.00000015726941, y: -0.09021655, z: 0.00000028557798, w: 0.032358985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.000000022354701, y: 0.3316033, z: 0.00000003255634, w: 0.9434189} + inSlope: {x: -0.000000053570073, y: -0.13205053, z: 0.00000009422155, w: 0.046248868} + outSlope: {x: -0.000000053570073, y: -0.13205053, z: 0.00000009422155, w: 0.046248868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.00000001100711, y: 0.32173502, z: 0.000000018844592, w: 0.94682974} + inSlope: {x: -0.00000017550607, y: -0.15149611, z: -0.0000000610469, w: 0.05144124} + outSlope: {x: -0.00000017550607, y: -0.15149611, z: -0.0000000610469, w: 0.05144124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.0000000010377499, y: 0.31141102, z: 0.00000002441967, w: 0.9502753} + inSlope: {x: 0.00000009742749, y: -0.14500658, z: -0.000000083378914, w: 0.047633804} + outSlope: {x: 0.00000009742749, y: -0.14500658, z: -0.000000083378914, w: 0.047633804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.000000023992806, y: 0.3024077, z: 0.000000007731369, w: 0.95317864} + inSlope: {x: 0.00000006620756, y: -0.113462426, z: -0.0000001014005, w: 0.03618788} + outSlope: {x: 0.00000006620756, y: -0.113462426, z: -0.0000001014005, w: 0.03618788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.000000007786791, y: 0.2962881, z: 0.000000010904423, w: 0.9550986} + inSlope: {x: -0.00000024317723, y: -0.091826975, z: 0.000000047612836, w: 0.028810076} + outSlope: {x: -0.00000024317723, y: -0.091826975, z: 0.000000047612836, w: 0.028810076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe3/Bip01 R Toe31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.05341593, y: 0.990407, z: 0.07114521, w: 0.10573123} + inSlope: {x: 0.2574641, y: 0.004328843, z: 0.037584465, w: -0.23459859} + outSlope: {x: 0.2574641, y: 0.004328843, z: 0.037584465, w: -0.23459859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.070574075, y: 0.9906955, z: 0.07364994, w: 0.090096906} + inSlope: {x: 0.22905865, y: 0.0010249703, z: 0.0454022, w: -0.22103879} + outSlope: {x: 0.22905865, y: 0.0010249703, z: 0.0454022, w: -0.22103879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.08394618, y: 0.9905436, z: 0.07719667, w: 0.07626991} + inSlope: {x: 0.16838227, y: -0.0052299383, z: 0.07878861, w: -0.1915038} + outSlope: {x: 0.16838227, y: -0.0052299383, z: 0.07878861, w: -0.1915038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.093017034, y: 0.9899984, z: 0.08415134, w: 0.06457218} + inSlope: {x: 0.109386176, y: -0.007951565, z: 0.10274349, w: -0.16449848} + outSlope: {x: 0.109386176, y: -0.007951565, z: 0.10274349, w: -0.16449848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.0985258, y: 0.9894838, z: 0.090890914, w: 0.05434461} + inSlope: {x: 0.02886546, y: -0.0006868909, z: 0.060596153, w: -0.13289738} + outSlope: {x: 0.02886546, y: -0.0006868909, z: 0.060596153, w: -0.13289738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.09686439, y: 0.98990685, z: 0.09222794, w: 0.04685886} + inSlope: {x: -0.06902457, y: 0.012547828, z: -0.012986017, w: -0.10014868} + outSlope: {x: -0.06902457, y: 0.012547828, z: -0.012986017, w: -0.10014868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.08932581, y: 0.9911562, z: 0.08916006, w: 0.04099622} + inSlope: {x: -0.14173782, y: 0.020488657, z: -0.06293333, w: -0.055090435} + outSlope: {x: -0.14173782, y: 0.020488657, z: -0.06293333, w: -0.055090435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.077972755, y: 0.9926377, z: 0.08383983, w: 0.039516088} + inSlope: {x: -0.18623595, y: 0.022253733, z: -0.0922903, w: -0.0025604395} + outSlope: {x: -0.18623595, y: 0.022253733, z: -0.0922903, w: -0.0025604395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.06450321, y: 0.9941223, z: 0.07685908, w: 0.04065495} + inSlope: {x: -0.2303293, y: 0.022073077, z: -0.12424945, w: 0.04403381} + outSlope: {x: -0.2303293, y: 0.022073077, z: -0.12424945, w: 0.04403381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.04727315, y: 0.9955797, z: 0.06727915, w: 0.045385163} + inSlope: {x: -0.31302992, y: 0.01695762, z: -0.17931217, w: 0.16340975} + outSlope: {x: -0.31302992, y: 0.01695762, z: -0.17931217, w: 0.16340975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.022780793, y: 0.99638253, z: 0.05295933, w: 0.06243514} + inSlope: {x: -0.2514618, y: 0.0044567394, z: -0.17575964, w: 0.21719319} + outSlope: {x: -0.2514618, y: 0.0044567394, z: -0.17575964, w: 0.21719319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.013756874, y: 0.99617374, z: 0.043852895, w: 0.07433392} + inSlope: {x: -0.07709755, y: -0.0057858047, z: -0.12321348, w: 0.17113312} + outSlope: {x: -0.07709755, y: -0.0057858047, z: -0.12321348, w: 0.17113312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.012504788, y: 0.99561137, z: 0.036536735, w: 0.08524474} + inSlope: {x: 0.018687192, y: -0.009170172, z: -0.07065593, w: 0.13894671} + outSlope: {x: 0.018687192, y: -0.009170172, z: -0.07065593, w: 0.13894671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.016247611, y: 0.9949515, z: 0.034435473, w: 0.09285353} + inSlope: {x: 0.09692013, y: -0.009444745, z: 0.03818185, w: 0.06760098} + outSlope: {x: 0.09692013, y: -0.009444745, z: 0.03818185, w: 0.06760098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.025422862, y: 0.9943525, z: 0.04162583, w: 0.094254985} + inSlope: {x: 0.17482877, y: -0.015474724, z: 0.16167912, w: 0.0335851} + outSlope: {x: 0.17482877, y: -0.015474724, z: 0.16167912, w: 0.0335851} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.039549783, y: 0.9928889, z: 0.055984985, w: 0.097329944} + inSlope: {x: 0.21197964, y: -0.021961736, z: 0.21546438, w: 0.046140887} + outSlope: {x: 0.21197964, y: -0.021961736, z: 0.21546438, w: 0.046140887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.03348068, y: -0.11499623, z: -0.031519916, w: 0.99230105} + inSlope: {x: -0.32129306, y: 1.0735321, z: 0.9626851, w: 0.09225713} + outSlope: {x: -0.32129306, y: 1.0735321, z: 0.9626851, w: 0.09225713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.012068794, y: -0.04345299, z: 0.032636166, w: 0.9984493} + inSlope: {x: -0.3023557, y: 0.9470171, z: 0.8220233, w: 0.034229614} + outSlope: {x: -0.3023557, y: 0.9470171, z: 0.8220233, w: 0.034229614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.0068190205, y: 0.011227633, z: 0.07804406, w: 0.99686337} + inSlope: {x: -0.27001977, y: 0.6028835, z: 0.4621364, w: -0.029042147} + outSlope: {x: -0.27001977, y: 0.6028835, z: 0.4621364, w: -0.029042147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.023920996, y: 0.0369028, z: 0.094232365, w: 0.9945784} + inSlope: {x: -0.23254314, y: 0.29999346, z: 0.14371252, w: -0.027282886} + outSlope: {x: -0.23254314, y: 0.29999346, z: 0.14371252, w: -0.027282886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.037813704, y: 0.051212482, z: 0.09719889, w: 0.99322695} + inSlope: {x: -0.13698913, y: 0.20314765, z: -0.01996679, w: -0.013001288} + outSlope: {x: -0.13698913, y: 0.20314765, z: -0.01996679, w: -0.013001288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.04217969, y: 0.06397948, z: 0.09157108, w: 0.99284554} + inSlope: {x: 0.010173015, y: 0.20525864, z: -0.13841535, w: -0.0007700701} + outSlope: {x: 0.010173015, y: 0.20525864, z: -0.13841535, w: -0.0007700701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.036457784, y: 0.07857053, z: 0.078750096, w: 0.9931243} + inSlope: {x: 0.11840032, y: 0.20149003, z: -0.23194805, w: 0.0061587607} + outSlope: {x: 0.11840032, y: 0.20149003, z: -0.23194805, w: 0.0061587607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.026398612, y: 0.09083523, z: 0.060655706, w: 0.9936664} + inSlope: {x: 0.13891207, y: 0.13355589, z: -0.29031926, w: 0.009400921} + outSlope: {x: 0.13891207, y: 0.13355589, z: -0.29031926, w: 0.009400921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.017942784, y: 0.09637163, z: 0.040054675, w: 0.9943773} + inSlope: {x: 0.051492326, y: -0.044352423, z: -0.33229992, w: 0.017969623} + outSlope: {x: 0.051492326, y: -0.044352423, z: -0.33229992, w: 0.017969623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.019535417, y: 0.08492369, z: 0.01636488, w: 0.9960615} + inSlope: {x: -0.111429915, y: -0.39097205, z: -0.4072023, w: 0.030033588} + outSlope: {x: -0.111429915, y: -0.39097205, z: -0.4072023, w: 0.030033588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.032794803, y: 0.04426063, z: -0.014219574, w: 0.99838036} + inSlope: {x: -0.07899382, y: -0.5362065, z: -0.35147607, w: 0.021990338} + outSlope: {x: -0.07899382, y: -0.5362065, z: -0.35147607, w: 0.021990338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.030064167, y: 0.013455002, z: -0.030481879, w: 0.9989925} + inSlope: {x: 0.104948476, y: -0.42930132, z: -0.18978679, w: 0.0043333136} + outSlope: {x: 0.104948476, y: -0.42930132, z: -0.18978679, w: 0.0043333136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.018806675, y: -0.012959101, z: -0.039515443, w: 0.99895793} + inSlope: {x: 0.18412036, y: -0.39039806, z: -0.10021071, w: -0.005359625} + outSlope: {x: 0.18412036, y: -0.39039806, z: -0.10021071, w: -0.005359625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.0055235545, y: -0.038579475, z: -0.04383853, w: 0.99827814} + inSlope: {x: 0.1930754, y: -0.38570547, z: -0.02684544, w: -0.014905436} + outSlope: {x: 0.1930754, y: -0.38570547, z: -0.02684544, w: -0.014905436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.006927527, y: -0.06436815, z: -0.04309356, w: 0.99697125} + inSlope: {x: 0.19290575, y: -0.38377973, z: 0.04786303, w: -0.024170868} + outSlope: {x: 0.19290575, y: -0.38377973, z: 0.04786303, w: -0.024170868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.020188024, y: -0.08973183, z: -0.037459075, w: 0.9950565} + inSlope: {x: 0.19897862, y: -0.38059127, z: 0.08454748, w: -0.02873137} + outSlope: {x: 0.19897862, y: -0.38059127, z: 0.08454748, w: -0.02873137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.005500603, y: 0.012708393, z: -0.120133415, w: 0.9926612} + inSlope: {x: -0.31181777, y: -0.8741835, z: 0.555386, w: 0.037360422} + outSlope: {x: -0.31181777, y: -0.8741835, z: 0.555386, w: 0.037360422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.02628103, y: -0.045549694, z: -0.083120905, w: 0.995151} + inSlope: {x: -0.31460842, y: -0.68432736, z: 0.63082975, w: 0.018537557} + outSlope: {x: -0.31460842, y: -0.68432736, z: 0.63082975, w: 0.018537557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.04743342, y: -0.078502685, z: -0.036052804, w: 0.99513197} + inSlope: {x: -0.34393528, y: -0.18025732, z: 0.9100313, w: -0.006883216} + outSlope: {x: -0.34393528, y: -0.18025732, z: 0.9100313, w: -0.006883216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.07212271, y: -0.06957543, z: 0.038173303, w: 0.99423355} + inSlope: {x: -0.35701767, y: 0.26360846, z: 1.1144071, w: -0.052390635} + outSlope: {x: -0.35701767, y: 0.26360846, z: 1.1144071, w: -0.052390635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.09501878, y: -0.04336744, z: 0.11248175, w: 0.98814905} + inSlope: {x: -0.2700119, y: 0.42496908, z: 0.8441489, w: -0.08752895} + outSlope: {x: -0.2700119, y: 0.42496908, z: 0.8441489, w: -0.08752895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.10811143, y: -0.012933128, z: 0.15068628, w: 0.9825672} + inSlope: {x: -0.15204044, y: 0.49129942, z: 0.3436334, w: -0.05820416} + outSlope: {x: -0.15204044, y: 0.49129942, z: 0.3436334, w: -0.05820416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.1152836, y: 0.022115763, z: 0.15828317, w: 0.98039126} + inSlope: {x: -0.07269844, y: 0.5514118, z: -0.0048948787, w: -0.021002932} + outSlope: {x: -0.07269844, y: 0.5514118, z: -0.0048948787, w: -0.021002932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.1178011, y: 0.060562216, z: 0.15003386, w: 0.9797678} + inSlope: {x: 0.009979144, y: 0.56803596, z: -0.18164489, w: -0.0064999703} + outSlope: {x: 0.009979144, y: 0.56803596, z: -0.18164489, w: -0.0064999703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.11395352, y: 0.09782687, z: 0.1340725, w: 0.9795249} + inSlope: {x: 0.175752, y: 0.52919483, z: -0.276536, w: 0.004414709} + outSlope: {x: 0.175752, y: 0.52919483, z: -0.276536, w: 0.004414709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.09437588, y: 0.13109632, z: 0.11317557, w: 0.9803562} + inSlope: {x: 0.48379314, y: 0.43702227, z: -0.46833473, w: 0.032824967} + outSlope: {x: 0.48379314, y: 0.43702227, z: -0.46833473, w: 0.032824967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.0494708, y: 0.15607569, z: 0.07165016, w: 0.9839} + inSlope: {x: 0.4128965, y: 0.1853396, z: -0.6869389, w: 0.04810694} + outSlope: {x: 0.4128965, y: 0.1853396, z: -0.6869389, w: 0.04810694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.03934265, y: 0.15579945, z: 0.0216164, w: 0.9867682} + inSlope: {x: 0.002427332, y: -0.10821544, z: -0.809324, w: 0.031000866} + outSlope: {x: 0.002427332, y: -0.10821544, z: -0.809324, w: 0.031000866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.049147263, y: 0.14165212, z: -0.036221158, w: 0.988032} + inSlope: {x: -0.12335254, y: -0.2761882, z: -0.7932055, w: 0.007389896} + outSlope: {x: -0.12335254, y: -0.2761882, z: -0.7932055, w: 0.007389896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.05578378, y: 0.11898751, z: -0.08410654, w: 0.98775315} + inSlope: {x: 0.029388916, y: -0.39543483, z: -0.53355074, w: 0.008782897} + outSlope: {x: 0.029388916, y: -0.39543483, z: -0.53355074, w: 0.008782897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.04523014, y: 0.08894629, z: -0.10733587, w: 0.9892026} + inSlope: {x: 0.22621506, y: -0.50940573, z: -0.22644418, w: 0.030375697} + outSlope: {x: 0.22621506, y: -0.50940573, z: -0.22644418, w: 0.030375697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.025632547, y: 0.051091015, z: -0.11428832, w: 0.9918018} + inSlope: {x: 0.29406905, y: -0.5680323, z: -0.10432406, w: 0.039001647} + outSlope: {x: 0.29406905, y: -0.5680323, z: -0.10432406, w: 0.039001647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.1328354, y: -0.078159526, z: -0.08569829, w: 0.98432803} + inSlope: {x: -0.28669038, y: 0.048791047, z: -1.2858332, w: -0.1287795} + outSlope: {x: -0.28669038, y: 0.048791047, z: -1.2858332, w: -0.1287795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.11372954, y: -0.07490795, z: -0.1713899, w: 0.9757458} + inSlope: {x: -0.3119675, y: 0.043603193, z: -0.9028338, w: -0.095563225} + outSlope: {x: -0.3119675, y: 0.043603193, z: -0.9028338, w: -0.095563225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.091254584, y: -0.07234784, z: -0.20603316, w: 0.9715908} + inSlope: {x: -0.3968289, y: -0.0045617744, z: 0.15677217, w: 0.060752697} + outSlope: {x: -0.3968289, y: -0.0045617744, z: 0.15677217, w: 0.060752697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.060837895, y: -0.07551597, z: -0.1504944, w: 0.98384327} + inSlope: {x: -0.4588713, y: -0.032435067, z: 1.0650082, w: 0.17217882} + outSlope: {x: -0.4588713, y: -0.032435067, z: 1.0650082, w: 0.17217882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.030093586, y: -0.076670974, z: -0.064082764, w: 0.9945398} + inSlope: {x: -0.38034308, y: 0.08466858, z: 1.1930339, w: 0.10506658} + outSlope: {x: -0.38034308, y: 0.08466858, z: 1.1930339, w: 0.10506658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.010143601, y: -0.06423086, z: 0.008519966, w: 0.99784714} + inSlope: {x: -0.22754171, y: 0.2793351, z: 1.0241553, w: 0.015411224} + outSlope: {x: -0.22754171, y: 0.2793351, z: 1.0241553, w: 0.015411224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.00023447645, y: -0.03943959, z: 0.072422504, w: 0.9965939} + inSlope: {x: -0.119347736, y: 0.41706157, z: 0.9304779, w: -0.05044666} + outSlope: {x: -0.119347736, y: 0.41706157, z: 0.9304779, w: -0.05044666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.005763752, y: -0.008642494, z: 0.13253942, w: 0.9911233} + inSlope: {x: -0.06845159, y: 0.4689695, z: 0.8297893, w: -0.10353847} + outSlope: {x: -0.06845159, y: 0.4689695, z: 0.8297893, w: -0.10353847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.009358099, y: 0.023067366, z: 0.1830216, w: 0.9827937} + inSlope: {x: -0.05982317, y: 0.46514782, z: 0.6132695, w: -0.119337454} + outSlope: {x: -0.05982317, y: 0.46514782, z: 0.6132695, w: -0.119337454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.013737325, y: 0.05335506, z: 0.21427949, w: 0.97521734} + inSlope: {x: -0.03439802, y: 0.44604594, z: 0.18104954, w: -0.060555987} + outSlope: {x: -0.03439802, y: 0.44604594, z: 0.18104954, w: -0.060555987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.013942861, y: 0.08251891, z: 0.2071529, w: 0.97472245} + inSlope: {x: 0.10146672, y: 0.29841897, z: -0.32142937, w: 0.041759904} + outSlope: {x: 0.10146672, y: 0.29841897, z: -0.32142937, w: 0.041759904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.00021325542, y: 0.09313006, z: 0.17143753, w: 0.98078334} + inSlope: {x: 0.26384494, y: 0.09779701, z: -0.6750103, w: 0.10167864} + outSlope: {x: 0.26384494, y: 0.09779701, z: -0.6750103, w: 0.10167864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.021223892, y: 0.09555386, z: 0.117183685, w: 0.98827475} + inSlope: {x: 0.3487371, y: -0.08385262, z: -0.8354045, w: 0.09725812} + outSlope: {x: 0.3487371, y: -0.08385262, z: -0.8354045, w: 0.09725812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.046268415, y: 0.0819537, z: 0.060090054, w: 0.99374646} + inSlope: {x: 0.3923928, y: -0.3986723, z: -0.80239725, w: 0.06049914} + outSlope: {x: 0.3923928, y: -0.3986723, z: -0.80239725, w: 0.06049914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.07352427, y: 0.04241652, z: 0.010235558, w: 0.9963384} + inSlope: {x: 0.42902446, y: -0.7452215, z: -0.7352565, w: 0.000101495534} + outSlope: {x: 0.42902446, y: -0.7452215, z: -0.7352565, w: 0.000101495534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.10345124, y: -0.017373666, z: -0.037909128, w: 0.99376} + inSlope: {x: 0.44906518, y: -0.8971737, z: -0.7224287, w: -0.0386904} + outSlope: {x: 0.44906518, y: -0.8971737, z: -0.7224287, w: -0.0386904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.13152876, y: -0.10384021, z: -0.11796817, w: 0.9787752} + inSlope: {x: -0.10684976, y: -0.5172173, z: -1.3871818, w: -0.2854863} + outSlope: {x: -0.10684976, y: -0.5172173, z: -1.3871818, w: -0.2854863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.12440799, y: -0.13830905, z: -0.21041393, w: 0.9597496} + inSlope: {x: -0.17397334, y: -0.42064136, z: -1.0425856, w: -0.23891231} + outSlope: {x: -0.17397334, y: -0.42064136, z: -1.0425856, w: -0.23891231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.1083406, y: -0.1599057, z: -0.25692996, w: 0.9469316} + inSlope: {x: -0.3580738, y: -0.21304241, z: -0.14065315, w: -0.02860792} + outSlope: {x: -0.3580738, y: -0.21304241, z: -0.14065315, w: -0.02860792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.07668185, y: -0.16670457, z: -0.229161, w: 0.95593655} + inSlope: {x: -0.5066299, y: -0.01781286, z: 0.64271647, w: 0.17990814} + outSlope: {x: -0.5066299, y: -0.01781286, z: 0.64271647, w: 0.17990814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.040814064, y: -0.1622799, z: -0.17126504, w: 0.9709108} + inSlope: {x: -0.49132475, y: 0.21246606, z: 0.9225669, w: 0.21508807} + outSlope: {x: -0.49132475, y: 0.21246606, z: 0.9225669, w: 0.21508807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.011195286, y: -0.13838588, z: -0.106196016, w: 0.9846047} + inSlope: {x: -0.41642892, y: 0.48604715, z: 1.06599, w: 0.17847845} + outSlope: {x: -0.41642892, y: 0.48604715, z: 1.06599, w: 0.17847845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.01468997, y: -0.09749675, z: -0.029183784, w: 0.9946994} + inSlope: {x: -0.36765575, y: 0.6923057, z: 1.1982772, w: 0.09138417} + outSlope: {x: -0.36765575, y: 0.6923057, z: 1.1982772, w: 0.09138417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.03780799, y: -0.046111386, z: 0.053517267, w: 0.9967849} + inSlope: {x: -0.31133917, y: 0.80360436, z: 1.1702642, w: -0.033085674} + outSlope: {x: -0.31133917, y: 0.80360436, z: 1.1702642, w: -0.033085674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.05618705, y: 0.009612274, z: 0.12679578, w: 0.99028957} + inSlope: {x: -0.21549173, y: 0.8722083, z: 0.88570166, w: -0.12280099} + outSlope: {x: -0.21549173, y: 0.8722083, z: 0.88570166, w: -0.12280099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.06652996, y: 0.07014151, z: 0.17156865, w: 0.9804173} + inSlope: {x: -0.022918388, y: 0.9757117, z: 0.3232552, w: -0.12433531} + outSlope: {x: -0.022918388, y: 0.9757117, z: 0.3232552, w: -0.12433531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.059241734, y: 0.1396607, z: 0.16988106, w: 0.97371745} + inSlope: {x: 0.23298593, y: 0.7622292, z: -0.14327997, w: -0.058458142} + outSlope: {x: 0.23298593, y: 0.7622292, z: -0.14327997, w: -0.058458142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.035476252, y: 0.17173581, z: 0.15247147, w: 0.9726257} + inSlope: {x: 0.43184778, y: 0.3621371, z: -0.32720092, w: 0.0023509106} + outSlope: {x: 0.43184778, y: 0.3621371, z: -0.32720092, w: 0.0023509106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0016826048, y: 0.18792841, z: 0.12626986, w: 0.9740308} + inSlope: {x: 0.52374494, y: 0.014345542, z: -0.49058175, w: 0.05794567} + outSlope: {x: 0.52374494, y: 0.014345542, z: -0.49058175, w: 0.05794567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.034331463, y: 0.17364785, z: 0.08708393, w: 0.980349} + inSlope: {x: 0.52207226, y: -0.59370184, z: -0.7287183, w: 0.12966983} + outSlope: {x: 0.52207226, y: -0.59370184, z: -0.7287183, w: 0.12966983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.06790219, y: 0.1087964, z: 0.02914209, w: 0.99131393} + inSlope: {x: 0.49742952, y: -1.2758007, z: -0.9864495, w: 0.10186554} + outSlope: {x: 0.49742952, y: -1.2758007, z: -0.9864495, w: 0.10186554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.10063171, y: 0.0036018621, z: -0.044395678, w: 0.9939262} + inSlope: {x: 0.49111837, y: -1.5784826, z: -1.1034611, w: 0.039198413} + outSlope: {x: 0.49111837, y: -1.5784826, z: -1.1034611, w: 0.039198413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3/Bip01 Tail4 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 1.00300435e-10, y: -0.23516996, z: 0.034150127} + inSlope: {x: 0, y: 0.2972178, z: 0} + outSlope: {x: 0, y: 0.2972178, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 1.00300435e-10, y: -0.21536252, z: 0.034150127} + inSlope: {x: 0, y: 0.31774363, z: 0} + outSlope: {x: 0, y: 0.31774363, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 1.00300435e-10, y: -0.19281927, z: 0.034150127} + inSlope: {x: 1.6659289e-15, y: 0.34753534, z: 0} + outSlope: {x: 1.6659289e-15, y: 0.34753534, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 1.0030066e-10, y: -0.16904101, z: 0.034150127} + inSlope: {x: -3.3318602e-15, y: 0.35480747, z: 0} + outSlope: {x: -3.3318602e-15, y: 0.35480747, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 1.0029999e-10, y: -0.1455285, z: 0.034150127} + inSlope: {x: -1.6659298e-15, y: 0.33955973, z: 0} + outSlope: {x: -1.6659298e-15, y: 0.33955973, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 1.00300435e-10, y: -0.12378255, z: 0.034150127} + inSlope: {x: 3.3318594e-15, y: 0.30179203, z: 0} + outSlope: {x: 3.3318594e-15, y: 0.30179203, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 1.00300435e-10, y: -0.10530393, z: 0.034150127} + inSlope: {x: 1.6659289e-15, y: 0.2415047, z: 0} + outSlope: {x: 1.6659289e-15, y: 0.2415047, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 1.0030066e-10, y: -0.091593415, z: 0.034150127} + inSlope: {x: -3.3318577e-15, y: 0.15869766, z: 0} + outSlope: {x: -3.3318577e-15, y: 0.15869766, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 1.0029999e-10, y: -0.08415179, z: 0.034150127} + inSlope: {x: -1.6659258e-15, y: 0.0516799, z: 0} + outSlope: {x: -1.6659258e-15, y: 0.0516799, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 1.00300435e-10, y: -0.08470522, z: 0.034150127} + inSlope: {x: 2.9646153e-21, y: -0.07786739, z: 0} + outSlope: {x: 2.9646153e-21, y: -0.07786739, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 1.0029999e-10, y: -0.0945304, z: 0.034150127} + inSlope: {x: 0, y: -0.20329866, z: 0} + outSlope: {x: 0, y: -0.20329866, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 1.00300435e-10, y: -0.111802034, z: 0.034150127} + inSlope: {x: 3.3318579e-15, y: -0.29902518, z: 0} + outSlope: {x: 3.3318579e-15, y: -0.29902518, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.00300435e-10, y: -0.13438618, z: 0.034150127} + inSlope: {x: 0, y: -0.36273143, z: 0} + outSlope: {x: 0, y: -0.36273143, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 1.00300435e-10, y: -0.16014895, z: 0.034150127} + inSlope: {x: 0, y: -0.39441752, z: 0} + outSlope: {x: 0, y: -0.39441752, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 1.00300435e-10, y: -0.18695642, z: 0.034150127} + inSlope: {x: 0, y: -0.3940842, z: 0} + outSlope: {x: 0, y: -0.3940842, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 1.00300435e-10, y: -0.21267474, z: 0.034150127} + inSlope: {x: 0, y: -0.38591278, z: 0} + outSlope: {x: 0, y: -0.38591278, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.000000011669713, y: 0.0000000015435776, z: 0.000000003127082} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.2925627, y: -0.024564661, z: -0.00026947446} + inSlope: {x: -0.00041052458, y: -0.004858992, z: -0.00000006332345} + outSlope: {x: -0.00041052458, y: -0.004858992, z: -0.00000006332345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.29253533, y: -0.024888478, z: -0.00026947868} + inSlope: {x: -0.00044272252, y: -0.0051944433, z: 0.00000010546624} + outSlope: {x: -0.00044272252, y: -0.0051944433, z: 0.00000010546624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.29250368, y: -0.025257006, z: -0.0002694604} + inSlope: {x: -0.0004907958, y: -0.0056809196, z: 0.0000001430236} + outSlope: {x: -0.0004907958, y: -0.0056809196, z: 0.0000001430236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.29246992, y: -0.025645664, z: -0.00026945962} + inSlope: {x: -0.0005077893, y: -0.005799344, z: 0.000000023800881} + outSlope: {x: -0.0005077893, y: -0.005799344, z: 0.000000023800881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.292436, y: -0.026029976, z: -0.00026945723} + inSlope: {x: -0.0004950444, y: -0.0055493778, z: 0.00000016682455} + outSlope: {x: -0.0004950444, y: -0.0055493778, z: 0.00000016682455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.29240394, y: -0.026385317, z: -0.00026943738} + inSlope: {x: -0.00045323162, y: -0.004931186, z: 0.0000014070903} + outSlope: {x: -0.00045323162, y: -0.004931186, z: 0.0000014070903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.2923756, y: -0.026687233, z: -0.0002692697} + inSlope: {x: -0.00038548157, y: -0.0039453027, z: 0.000004653835} + outSlope: {x: -0.00038548157, y: -0.0039453027, z: 0.000004653835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.29235256, y: -0.02691117, z: -0.0002688171} + inSlope: {x: -0.0002723414, y: -0.0025921762, z: 0.0000064694705} + outSlope: {x: -0.0002723414, y: -0.0025921762, z: 0.0000064694705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.2923393, y: -0.027032733, z: -0.0002684074} + inSlope: {x: -0.00008787368, y: -0.000844275, z: 0.00000200757} + outSlope: {x: -0.00008787368, y: -0.000844275, z: 0.00000200757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.29234084, y: -0.0270237, z: -0.0002685495} + inSlope: {x: 0.00014064265, y: 0.0012715274, z: -0.0000043339437} + outSlope: {x: 0.00014064265, y: 0.0012715274, z: -0.0000043339437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.29235804, y: -0.026863256, z: -0.00026898505} + inSlope: {x: 0.00034501049, y: 0.003320544, z: -0.000007390499} + outSlope: {x: 0.00034501049, y: 0.003320544, z: -0.000007390499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.29238683, y: -0.026581118, z: -0.00026953456} + inSlope: {x: 0.0004896781, y: 0.0048852516, z: -0.0000084183075} + outSlope: {x: 0.0004896781, y: 0.0048852516, z: -0.0000084183075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2924233, y: -0.026212122, z: -0.0002701071} + inSlope: {x: 0.00057464506, y: 0.005926977, z: -0.0000075433522} + outSlope: {x: 0.00057464506, y: 0.005926977, z: -0.0000075433522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.29246342, y: -0.025791137, z: -0.00027053998} + inSlope: {x: 0.00060102926, y: 0.00644572, z: -0.000004930929} + outSlope: {x: 0.00060102926, y: 0.00644572, z: -0.000004930929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.29250342, y: -0.025353, z: -0.0002707643} + inSlope: {x: 0.00055295613, y: 0.006441796, z: 0.0000010815229} + outSlope: {x: 0.00055295613, y: 0.006441796, z: 0.0000010815229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.29253712, y: -0.024932537, z: -0.00027039583} + inSlope: {x: 0.0005057773, y: 0.0063091917, z: 0.0000055292317} + outSlope: {x: 0.0005057773, y: 0.0063091917, z: 0.0000055292317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.34381655, y: 0.0000068317045, z: -0.00032094552} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.40425658, y: 0.0000041883372, z: -0.0005493881} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.6958925, y: 0.13749614, z: -0.0034591171} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.24108738, y: 0.00000469806, z: -0.00019893548} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.24991055, y: 0.000011056552, z: -0.00025864405} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.3251146, y: -0.0000048839393, z: -0.00018150093} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2290164, y: 0.000002808289, z: -0.00010986737} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.13857462, y: -0.00000001888689, z: -0.00000006939727} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.025040636, y: 0.0000014600521, z: 0.15059184} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Bip01 Ponytail1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.07097391, y: 0.017094266, z: 0.45657074} + inSlope: {x: -0.2127522, y: 0.02128361, z: -0.018969545} + outSlope: {x: -0.2127522, y: 0.02128361, z: -0.018969545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.056795496, y: 0.018512666, z: 0.45530656} + inSlope: {x: -0.19437271, y: 0.019444492, z: -0.017330352} + outSlope: {x: -0.19437271, y: 0.019444492, z: -0.017330352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.0450668, y: 0.019685939, z: 0.45426086} + inSlope: {x: -0.087996505, y: 0.008802909, z: -0.007845802} + outSlope: {x: -0.087996505, y: 0.008802909, z: -0.007845802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.045066815, y: 0.019685969, z: 0.45426083} + inSlope: {x: 0.07599027, y: -0.005734418, z: 0.062606126} + outSlope: {x: 0.07599027, y: -0.005734418, z: 0.062606126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.055195216, y: 0.018921623, z: 0.46260536} + inSlope: {x: 0.62244916, y: -0.037411064, z: 0.39218473} + outSlope: {x: 0.62244916, y: -0.037411064, z: 0.39218473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.12803039, y: 0.014699609, z: 0.50653344} + inSlope: {x: 0.6647149, y: -0.032939084, z: 0.30676836} + outSlope: {x: 0.6647149, y: -0.032939084, z: 0.30676836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.14379221, y: 0.014531314, z: 0.5034932} + inSlope: {x: 0.11067178, y: -0.0003274022, z: -0.07289336} + outSlope: {x: 0.11067178, y: -0.0003274022, z: -0.07289336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.14278136, y: 0.014655971, z: 0.4968178} + inSlope: {x: -0.12641504, y: 0.007420129, z: -0.13100605} + outSlope: {x: -0.12641504, y: 0.007420129, z: -0.13100605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.12694289, y: 0.015520312, z: 0.48603195} + inSlope: {x: -0.1444109, y: 0.007881194, z: -0.09597151} + outSlope: {x: -0.1444109, y: 0.007881194, z: -0.09597151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.12353345, y: 0.015706422, z: 0.48402616} + inSlope: {x: -0.025579821, y: 0.0013960163, z: -0.015048105} + outSlope: {x: -0.025579821, y: 0.0013960163, z: -0.015048105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.123533465, y: 0.01570638, z: 0.48402625} + inSlope: {x: -0.1680894, y: 0.005950103, z: -0.19293196} + outSlope: {x: -0.1680894, y: 0.005950103, z: -0.19293196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.101129524, y: 0.016499486, z: 0.45831108} + inSlope: {x: -0.21839195, y: 0.007731252, z: -0.2506704} + outSlope: {x: -0.21839195, y: 0.007731252, z: -0.2506704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.09442493, y: 0.016736846, z: 0.45061547} + inSlope: {x: -0.050302148, y: 0.0017807577, z: -0.057736874} + outSlope: {x: -0.050302148, y: 0.0017807577, z: -0.057736874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.09442497, y: 0.016736835, z: 0.45061558} + inSlope: {x: -0.071834065, y: 0.0010948018, z: 0.018241059} + outSlope: {x: -0.071834065, y: 0.0010948018, z: 0.018241059} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.084850475, y: 0.016882768, z: 0.45304674} + inSlope: {x: -0.17548393, y: 0.0026745873, z: 0.044564284} + outSlope: {x: -0.17548393, y: 0.0026745873, z: 0.044564284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.071035475, y: 0.01709332, z: 0.45655537} + inSlope: {x: -0.20729916, y: 0.0031594033, z: 0.052648243} + outSlope: {x: -0.20729916, y: 0.0031594033, z: 0.052648243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.038856775, y: -0.011916466, z: 0.20676869} + inSlope: {x: 0.6608345, y: 0.59957105, z: -0.19693017} + outSlope: {x: 0.6608345, y: 0.59957105, z: -0.19693017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.0051831226, y: 0.028040664, z: 0.1936447} + inSlope: {x: 0.014636695, y: 0.013279825, z: -0.0043632016} + outSlope: {x: 0.014636695, y: 0.013279825, z: -0.0043632016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.03690593, y: -0.010146466, z: 0.20618714} + inSlope: {x: -0.027591646, y: -0.025033742, z: 0.00077420473} + outSlope: {x: -0.027591646, y: -0.025033742, z: 0.00077420473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.0015055479, y: 0.024704024, z: 0.1937479} + inSlope: {x: 0.03640315, y: 0.024250269, z: 0.10618249} + outSlope: {x: 0.03640315, y: 0.024250269, z: 0.10618249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.032053895, y: -0.0069142347, z: 0.22033975} + inSlope: {x: 0.007290125, y: -0.05888459, z: 0.48599356} + outSlope: {x: 0.007290125, y: -0.05888459, z: 0.48599356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.0024772137, y: 0.01685555, z: 0.25852388} + inSlope: {x: 0.14563482, y: -0.055178314, z: -0.007478416} + outSlope: {x: 0.14563482, y: -0.055178314, z: -0.007478416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.012642865, y: -0.014268728, z: 0.21934296} + inSlope: {x: -0.1493355, y: -0.3973801, z: -0.544696} + outSlope: {x: -0.1493355, y: -0.3973801, z: -0.544696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.017427083, y: -0.03610956, z: 0.18592367} + inSlope: {x: -0.027603487, y: -0.2107645, z: -0.40936342} + outSlope: {x: -0.027603487, y: -0.2107645, z: -0.40936342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.016322017, y: -0.042360634, z: 0.16478065} + inSlope: {x: 0.010075598, y: -0.050477378, z: -0.18230753} + outSlope: {x: 0.010075598, y: -0.050477378, z: -0.18230753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.01608415, y: -0.042837474, z: 0.16162467} + inSlope: {x: 0.0017845727, y: -0.0035781732, z: -0.023678517} + outSlope: {x: 0.0017845727, y: -0.0035781732, z: -0.023678517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.016084159, y: -0.042837553, z: 0.16162464} + inSlope: {x: -0.1315016, y: 0.13897416, z: 0.2606856} + outSlope: {x: -0.1315016, y: 0.13897416, z: 0.2606856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.03361144, y: -0.024314199, z: 0.19637035} + inSlope: {x: 0.1114755, y: 0.50060326, z: 0.25456563} + outSlope: {x: 0.1114755, y: 0.50060326, z: 0.25456563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0012260897, y: 0.02388569, z: 0.19555461} + inSlope: {x: -0.0089508, y: 0.12060079, z: 0.06895379} + outSlope: {x: -0.0089508, y: 0.12060079, z: 0.06895379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.034804482, y: -0.008239875, z: 0.20556091} + inSlope: {x: 0.03800389, y: 0.02202496, z: -0.011326097} + outSlope: {x: 0.03800389, y: 0.02202496, z: -0.011326097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.0038392877, y: 0.026821302, z: 0.194045} + inSlope: {x: -0.026960284, y: -0.024460763, z: 0.008035943} + outSlope: {x: -0.026960284, y: -0.024460763, z: 0.008035943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.038397864, y: -0.01150011, z: 0.20663197} + inSlope: {x: -0.633784, y: -0.57502687, z: 0.18887205} + outSlope: {x: -0.633784, y: -0.57502687, z: 0.18887205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01/Dummy02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.00664909, y: -0.010386093, z: -0.063943304} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01/Dummy02/Bone22 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0009270724, y: -0.004881775, z: -0.032211296} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Neck1/Bip01 Neck2/Bip01 Neck3/Bip01 Neck4/Bip01 Head/Dummy01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.37605363, y: 0.3004839, z: -0.107788555} + inSlope: {x: 0.013434172, y: 0.0016148195, z: -0.041690607} + outSlope: {x: 0.013434172, y: 0.0016148195, z: -0.041690607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.37515834, y: 0.30059153, z: -0.11056694} + inSlope: {x: 0.01193249, y: 0.0015280636, z: -0.036396656} + outSlope: {x: 0.01193249, y: 0.0015280636, z: -0.036396656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.3744632, y: 0.30068758, z: -0.11263971} + inSlope: {x: 0.009672144, y: 0.0013223537, z: -0.028624466} + outSlope: {x: 0.009672144, y: 0.0013223537, z: -0.028624466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.37386918, y: 0.30076778, z: -0.11438217} + inSlope: {x: 0.008922648, y: 0.0011322964, z: -0.026148077} + outSlope: {x: 0.008922648, y: 0.0011322964, z: -0.026148077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.37327394, y: 0.3008385, z: -0.116124876} + inSlope: {x: 0.008934277, y: 0.0010529197, z: -0.025952213} + outSlope: {x: 0.008934277, y: 0.0010529197, z: -0.025952213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.37267837, y: 0.30090812, z: -0.11784123} + inSlope: {x: 0.009454362, y: 0.0011582337, z: -0.026874937} + outSlope: {x: 0.009454362, y: 0.0011582337, z: -0.026874937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.3720138, y: 0.30099288, z: -0.11970692} + inSlope: {x: 0.013851622, y: 0.0017149905, z: -0.038419645} + outSlope: {x: 0.013851622, y: 0.0017149905, z: -0.038419645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.37083215, y: 0.3011367, z: -0.12296202} + inSlope: {x: 0.014387362, y: 0.0017977215, z: -0.03915472} + outSlope: {x: 0.014387362, y: 0.0017977215, z: -0.03915472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.37009618, y: 0.3012325, z: -0.12492569} + inSlope: {x: 0.0003286833, y: 0.00032891112, z: -0.00018529315} + outSlope: {x: 0.0003286833, y: 0.00032891112, z: -0.00018529315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.37078834, y: 0.30118054, z: -0.12298672} + inSlope: {x: -0.012750858, y: -0.0014209605, z: 0.03503462} + outSlope: {x: -0.012750858, y: -0.0014209605, z: 0.03503462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.37179568, y: 0.3010431, z: -0.120256074} + inSlope: {x: -0.015191417, y: -0.0024459297, z: 0.0407772} + outSlope: {x: -0.015191417, y: -0.0024459297, z: 0.0407772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.37281314, y: 0.30085453, z: -0.1175517} + inSlope: {x: -0.014762564, y: -0.0030299672, z: 0.03896004} + outSlope: {x: -0.014762564, y: -0.0030299672, z: 0.03896004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.37376332, y: 0.30063924, z: -0.11506326} + inSlope: {x: -0.013172341, y: -0.003195429, z: 0.03431341} + outSlope: {x: -0.013172341, y: -0.003195429, z: 0.03431341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.37456882, y: 0.30042863, z: -0.11297821} + inSlope: {x: -0.010419406, y: -0.002839461, z: 0.026872862} + outSlope: {x: -0.010419406, y: -0.002839461, z: 0.026872862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.37515208, y: 0.30026078, z: -0.11148149} + inSlope: {x: -0.007352102, y: -0.0009918769, z: 0.022016842} + outSlope: {x: -0.007352102, y: -0.0009918769, z: 0.022016842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.37554875, y: 0.30029643, z: -0.11004368} + inSlope: {x: -0.0059521627, y: 0.000534845, z: 0.0215748} + outSlope: {x: -0.0059521627, y: 0.000534845, z: 0.0215748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.024695558, y: -0.000000032445943, z: 0.000000015797811} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.6616447, y: -0.000000020696485, z: 0.0000000030623513} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.4096031, y: 0.000000019365805, z: -0.00000008161438} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.25843304, y: -0.11104724, z: -0.036381334} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.1348141, y: -0.000000027674139, z: -0.000000039348247} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger0/Bip01 + L Finger01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2839271, y: -0.031752322, z: -0.065590724} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2718664, y: -0.0000000089289, z: -0.00000007174467} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger1/Bip01 + L Finger11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.30067524, y: 0.038219325, z: -0.096829906} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.23748939, y: -0.00000006017917, z: -0.000000049331277} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger2/Bip01 + L Finger21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2704271, y: 0.1173016, z: -0.02751306} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.24117123, y: 0.00000006931692, z: -0.00000012437808} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger3/Bip01 + L Finger31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.43186387, y: -0.5113812, z: -0.13875814} + inSlope: {x: 0.0089886105, y: 0.0016143722, z: -0.033584088} + outSlope: {x: 0.0089886105, y: 0.0016143722, z: -0.033584088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.43126485, y: -0.5112736, z: -0.14099628} + inSlope: {x: 0.0072403024, y: 0.0015276163, z: -0.02773165} + outSlope: {x: 0.0072403024, y: 0.0015276163, z: -0.02773165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.43089885, y: -0.5111776, z: -0.14245437} + inSlope: {x: 0.004794595, y: 0.0013160931, z: -0.019228352} + outSlope: {x: 0.004794595, y: 0.0013160931, z: -0.019228352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.4306258, y: -0.5110982, z: -0.14355914} + inSlope: {x: 0.004226435, y: 0.001119775, z: -0.016640106} + outSlope: {x: 0.004226435, y: 0.001119775, z: -0.016640106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.43033552, y: -0.51102835, z: -0.14467226} + inSlope: {x: 0.0043867556, y: 0.0010482242, z: -0.016728766} + outSlope: {x: 0.0043867556, y: 0.0010482242, z: -0.016728766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.4300411, y: -0.5109585, z: -0.14578885} + inSlope: {x: 0.0047646333, y: 0.0011899846, z: -0.018189412} + outSlope: {x: 0.0047646333, y: 0.0011899846, z: -0.018189412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.42970046, y: -0.51086974, z: -0.14709665} + inSlope: {x: 0.008213172, y: 0.001837969, z: -0.030181263} + outSlope: {x: 0.008213172, y: 0.001837969, z: -0.030181263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.4289464, y: -0.5107135, z: -0.14981158} + inSlope: {x: 0.009020135, y: 0.0019636306, z: -0.03260416} + outSlope: {x: 0.009020135, y: 0.0019636306, z: -0.03260416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.4284982, y: -0.510608, z: -0.15144232} + inSlope: {x: -0.000999036, y: 0.00036491026, z: 0.0016180733} + outSlope: {x: -0.000999036, y: 0.00036491026, z: 0.0016180733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.42907956, y: -0.5106649, z: -0.14959592} + inSlope: {x: -0.00888598, y: -0.0015580257, z: 0.030811705} + outSlope: {x: -0.00888598, y: -0.0015580257, z: 0.030811705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.42968258, y: -0.5108157, z: -0.14733556} + inSlope: {x: -0.007758823, y: -0.0026760113, z: 0.031830512} + outSlope: {x: -0.007758823, y: -0.0026760113, z: 0.031830512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.4301137, y: -0.51102155, z: -0.14535336} + inSlope: {x: -0.0052686227, y: -0.0032922467, z: 0.027089817} + outSlope: {x: -0.0052686227, y: -0.0032922467, z: 0.027089817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.4303848, y: -0.5112545, z: -0.14372487} + inSlope: {x: -0.0030060424, y: -0.003440268, z: 0.021176342} + outSlope: {x: -0.0030060424, y: -0.003440268, z: 0.021176342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.43051437, y: -0.5114801, z: -0.14253086} + inSlope: {x: -0.0010667823, y: -0.003016326, z: 0.014006464} + outSlope: {x: -0.0010667823, y: -0.003016326, z: 0.014006464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.430527, y: -0.5116565, z: -0.14185801} + inSlope: {x: -0.002960653, y: -0.00093329436, z: 0.012352522} + outSlope: {x: -0.002960653, y: -0.00093329436, z: 0.012352522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.43090898, y: -0.5116045, z: -0.14088444} + inSlope: {x: -0.005731696, y: 0.0007808021, z: 0.014608736} + outSlope: {x: -0.005731696, y: 0.0007808021, z: 0.014608736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.024695527, y: -0.000000034071245, z: 3.7378095e-10} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.6616445, y: -0.0000000015319301, z: -0.000000078366334} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.40960315, y: -0.000000018411798, z: 0.00000005149881} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.258433, y: 0.1110472, z: -0.036381405} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.13481416, y: -0.0000001003942, z: 0.00000008367693} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger0/Bip01 + R Finger01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.28392714, y: 0.031752277, z: -0.065590695} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.27186638, y: -0.000000010411251, z: 0.000000024011031} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger1/Bip01 + R Finger11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.30067524, y: -0.03821939, z: -0.096829906} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.23748915, y: -0.00000004525843, z: 0.0000000331824} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger2/Bip01 + R Finger21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.27042705, y: -0.117301665, z: -0.027513094} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.24117157, y: 0.00000005457613, z: 0.0000001171622} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger3/Bip01 + R Finger31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.6608181, y: -0.14296061, z: 0.010631456} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.22636715, y: -0.000000008629358, z: -0.000000021421673} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2903268, y: 0.000000040191026, z: -0.00000007150817} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2881477, y: -0.00000004005232, z: -0.0000000356489} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.25110298, y: -0.00000016476733, z: -0.000000018986398} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.16552581, y: 0.00000004882026, z: 0.000000015854317} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: 0.57589656, y: -0.14731205, z: -0.0009937123} + inSlope: {x: -0.0904925, y: -0.4686934, z: -0.52137417} + outSlope: {x: -0.0904925, y: -0.4686934, z: -0.52137417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.5698659, y: -0.17854711, z: -0.03573958} + inSlope: {x: -0.002004791, y: -0.010381684, z: -0.0115480125} + outSlope: {x: -0.002004791, y: -0.010381684, z: -0.0115480125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: 0.57562935, y: -0.14869577, z: -0.0025328873} + inSlope: {x: 0.0037783422, y: 0.010739714, z: 0.0210533} + outSlope: {x: 0.0037783422, y: 0.010739714, z: 0.0210533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.5703695, y: -0.17711566, z: -0.032933474} + inSlope: {x: -0.085220516, y: 0.10830346, z: 0.01651536} + outSlope: {x: -0.085220516, y: 0.10830346, z: 0.01651536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: 0.5642707, y: -0.13426048, z: -0.00033164205} + inSlope: {x: -0.62999123, y: 0.61668897, z: 0.24899542} + outSlope: {x: -0.62999123, y: 0.61668897, z: 0.24899542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: 0.48640066, y: -0.09491984, z: 0.00025405394} + inSlope: {x: -0.6783595, y: 0.33396384, z: 0.0035916169} + outSlope: {x: -0.6783595, y: 0.33396384, z: 0.0035916169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: 0.47385505, y: -0.08974787, z: 0.0001470691} + inSlope: {x: -0.08915938, y: -0.07097473, z: -0.006359415} + outSlope: {x: -0.08915938, y: -0.07097473, z: -0.006359415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: 0.474517, y: -0.10437976, z: -0.0005935656} + inSlope: {x: 0.02415118, y: -0.27286285, z: -0.014208041} + outSlope: {x: 0.02415118, y: -0.27286285, z: -0.014208041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: 0.47707406, y: -0.1261166, z: -0.0017466606} + inSlope: {x: -0.0020170882, y: 0.010403246, z: -0.0026917635} + outSlope: {x: -0.0020170882, y: 0.010403246, z: -0.0026917635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: 0.47424814, y: -0.102993175, z: -0.00095234014} + inSlope: {x: 0.24525054, y: 0.27692217, z: 0.02149367} + outSlope: {x: 0.24525054, y: 0.27692217, z: 0.02149367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: 0.50976247, y: -0.089206845, z: 0.001118139} + inSlope: {x: 0.58299506, y: 0.08489354, z: -0.09593367} + outSlope: {x: 0.58299506, y: 0.08489354, z: -0.09593367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.5519531, y: -0.091678075, z: -0.013738931} + inSlope: {x: 0.637738, y: -0.34066516, z: -0.16898492} + outSlope: {x: 0.637738, y: -0.34066516, z: -0.16898492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.5947638, y: -0.13461262, z: -0.021405136} + inSlope: {x: 0.20954573, y: -0.4045145, z: 0.081657365} + outSlope: {x: 0.20954573, y: -0.4045145, z: 0.081657365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: 0.5798825, y: -0.14559406, z: -0.0028551621} + inSlope: {x: -0.18690088, y: -0.32381392, z: -0.09959206} + outSlope: {x: -0.18690088, y: -0.32381392, z: -0.09959206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.5698526, y: -0.1777724, z: -0.034679342} + inSlope: {x: -0.05489444, y: -0.14231595, z: -0.1300081} + outSlope: {x: -0.05489444, y: -0.14231595, z: -0.1300081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: 0.57256585, y: -0.16456276, z: -0.020183405} + inSlope: {x: 0.040713508, y: 0.19821551, z: 0.21751685} + outSlope: {x: 0.040713508, y: 0.19821551, z: 0.21751685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0010947176, y: -0.0015218402, z: -0.059866924} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.05522648, y: 0.026486441, z: 0.20751362} + inSlope: {x: 1.2122288, y: -1.1997223, z: -0.2185773} + outSlope: {x: 1.2122288, y: -1.1997223, z: -0.2185773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: 0.025559912, y: -0.053466488, z: 0.192947} + inSlope: {x: 0.02684927, y: -0.026572466, z: -0.0048402473} + outSlope: {x: 0.02684927, y: -0.026572466, z: -0.0048402473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.051647875, y: 0.02294473, z: 0.20686848} + inSlope: {x: -0.048529267, y: 0.050093293, z: 0.009127013} + outSlope: {x: -0.048529267, y: 0.050093293, z: 0.009127013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: 0.019091655, y: -0.046789773, z: 0.1941635} + inSlope: {x: -0.041284084, y: -0.041231632, z: -0.035886317} + outSlope: {x: -0.041284084, y: -0.041231632, z: -0.035886317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.05715042, y: 0.017449107, z: 0.20208535} + inSlope: {x: -0.5843493, y: 0.14156556, z: -0.3027352} + outSlope: {x: -0.5843493, y: 0.14156556, z: -0.3027352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.058793742, y: -0.027921103, z: 0.15381323} + inSlope: {x: -0.008433057, y: -0.10865654, z: -0.6036838} + outSlope: {x: -0.008433057, y: -0.10865654, z: -0.6036838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.058274426, y: 0.0029667593, z: 0.12162291} + inSlope: {x: -0.019189252, y: 0.52475935, z: -0.2536253} + outSlope: {x: -0.019189252, y: 0.52475935, z: -0.2536253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.061351396, y: 0.04202185, z: 0.12000859} + inSlope: {x: -0.057308745, y: 0.163011, z: 0.112987295} + outSlope: {x: -0.057308745, y: 0.163011, z: 0.112987295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.065912865, y: 0.024693804, z: 0.13668251} + inSlope: {x: -0.014963219, y: -0.23121862, z: 0.05721108} + outSlope: {x: -0.014963219, y: -0.23121862, z: 0.05721108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.06334578, y: 0.01120371, z: 0.12763402} + inSlope: {x: 0.20412189, y: -0.07494362, z: -0.31785694} + outSlope: {x: 0.20412189, y: -0.07494362, z: -0.31785694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.038706325, y: 0.014704899, z: 0.09431671} + inSlope: {x: 0.54272544, y: 0.2697745, z: -0.26787952} + outSlope: {x: 0.54272544, y: 0.2697745, z: -0.26787952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: 0.008991793, y: 0.047160808, z: 0.091929495} + inSlope: {x: 0.3843297, y: 0.30337676, z: 0.6247728} + outSlope: {x: 0.3843297, y: 0.30337676, z: 0.6247728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.012519347, y: 0.055140693, z: 0.17758995} + inSlope: {x: -0.45426002, y: -0.6076638, z: 1.0115883} + outSlope: {x: -0.45426002, y: -0.6076638, z: 1.0115883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.0515546, y: -0.033832133, z: 0.22675973} + inSlope: {x: 0.07881591, y: -0.821455, z: 0.12472856} + outSlope: {x: 0.07881591, y: -0.821455, z: 0.12472856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: 0.02302439, y: -0.054347564, z: 0.1942145} + inSlope: {x: 0.3071991, y: 0.12125629, z: -0.20475486} + outSlope: {x: 0.3071991, y: 0.12125629, z: -0.20475486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.010609306, y: -0.017670427, z: 0.19946882} + inSlope: {x: -0.50468594, y: 0.5503539, z: 0.078843124} + outSlope: {x: -0.50468594, y: 0.5503539, z: 0.078843124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03/Dummy04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.0005366846, y: -0.0040153977, z: -0.04569423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone07/Dummy03/Dummy04/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.16552581, y: 0.000000014744956, z: -0.000000008934608} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2726205, y: -0.00000004980749, z: -0.0000007809143} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone01/Bone03/Bone04/Bone05/Bone06/Bone02/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.34400192, y: -0.2944663, z: -0.21442436} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.2095879, y: 0.000000023554604, z: -0.0000001542709} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.8111242, y: 0.000000052305744, z: -0.00000042675086} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.8746696, y: 0.008395939, z: -0.02814115} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.8450714, y: 0.0045643467, z: -0.09183446} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.8725685, y: 0.011406664, z: 0.010466051} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.934268, y: 0.00000012991298, z: -0.0000031214201} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone19/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.2923385, y: -0.06202186, z: -0.04011876} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.3270338, y: 0.3117938, z: -0.21903692} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.2056264, y: -0.00000005539939, z: 0.000000026283205} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.7744404, y: -0.07678158, z: -0.0069296267} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.8831192, y: -0.07142403, z: 0.059806067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone27 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.9188834, y: -0.0000000055908824, z: -0.0000007338493} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone27/Bone28 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.916456, y: -0.07491565, z: 0.1120291} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.8623077, y: -0.03242704, z: 0.08036857} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone14/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 1.3386703, y: 0.01132332, z: -0.009935623} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone12/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.29573384, y: 0.44940227, z: -0.04108429} + inSlope: {x: -0.007068357, y: -0.000096146825, z: -0.0008322849} + outSlope: {x: -0.007068357, y: -0.000096146825, z: -0.0008322849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.2962049, y: 0.44939587, z: -0.041139755} + inSlope: {x: -0.0074840225, y: -0.00010687947, z: -0.0014121563} + outSlope: {x: -0.0074840225, y: -0.00010687947, z: -0.0014121563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.29673135, y: 0.44938803, z: -0.04127251} + inSlope: {x: -0.00819752, y: -0.0001272268, z: -0.0014618506} + outSlope: {x: -0.00819752, y: -0.0001272268, z: -0.0014618506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.2972975, y: 0.4493789, z: -0.0413346} + inSlope: {x: -0.008462038, y: -0.00014064266, z: -0.0008282601} + outSlope: {x: -0.008462038, y: -0.00014064266, z: -0.0008282601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.29785922, y: 0.44936928, z: -0.041382905} + inSlope: {x: -0.0078048874, y: -0.00014444385, z: -0.0028858865} + outSlope: {x: -0.0078048874, y: -0.00014444385, z: -0.0028858865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.2983378, y: 0.44935966, z: -0.041719247} + inSlope: {x: -0.0057849083, y: -0.00013773591, z: -0.010647811} + outSlope: {x: -0.0057849083, y: -0.00013773591, z: -0.010647811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.29863027, y: 0.44935092, z: -0.042802107} + inSlope: {x: -0.0014482391, y: -0.00011582335, z: -0.029829236} + outSlope: {x: -0.0014482391, y: -0.00011582335, z: -0.029829236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.29853082, y: 0.44934422, z: -0.04569506} + inSlope: {x: 0.0021286453, y: -0.00007803542, z: -0.039032776} + outSlope: {x: 0.0021286453, y: -0.00007803542, z: -0.039032776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.29834655, y: 0.44934052, z: -0.04800462} + inSlope: {x: 0.0004583734, y: -0.000025713674, z: -0.010933952} + outSlope: {x: 0.0004583734, y: -0.000025713674, z: -0.010933952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.29846972, y: 0.4493408, z: -0.0471524} + inSlope: {x: -0.00218544, y: 0.000038905913, z: 0.026117025} + outSlope: {x: -0.00218544, y: 0.000038905913, z: 0.026117025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.29863784, y: 0.4493457, z: -0.044523593} + inSlope: {x: -0.0018487016, y: 0.000099947945, z: 0.045531966} + outSlope: {x: -0.0018487016, y: 0.000099947945, z: 0.045531966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.29871613, y: 0.4493541, z: -0.041083638} + inSlope: {x: -0.00006439554, y: 0.00014041911, z: 0.052759208} + outSlope: {x: -0.00006439554, y: 0.00014041911, z: 0.052759208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.29864642, y: 0.44936442, z: -0.037491545} + inSlope: {x: 0.0023746027, y: 0.00015964847, z: 0.050110642} + outSlope: {x: 0.0023746027, y: 0.00015964847, z: 0.050110642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.29839963, y: 0.4493754, z: -0.034404606} + inSlope: {x: 0.0050611226, y: 0.00016076639, z: 0.037637055} + outSlope: {x: 0.0050611226, y: 0.00016076639, z: 0.037637055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.29797184, y: 0.44938585, z: -0.03247506} + inSlope: {x: 0.010092513, y: 0.00014712702, z: -0.005035594} + outSlope: {x: 0.010092513, y: 0.00014712702, z: -0.005035594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.29705444, y: 0.449395, z: -0.035075776} + inSlope: {x: 0.013765997, y: 0.00013728881, z: -0.039024677} + outSlope: {x: 0.013765997, y: 0.00013728881, z: -0.039024677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.5061228, y: -0.000000030194748, z: 0.00000003219067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.46279556, y: -0.000000014407745, z: -0.00000005419534} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.41769058, y: -0.000000034867867, z: -0.0000000101533875} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2200776, y: -0.18897514, z: 0.27465603} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.10354905, y: -0.000000007860373, z: -0.0000000139941285} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe0/Bip01 L Toe01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.22320169, y: -0.064969234, z: 0.3209296} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.09228642, y: -0.000000007989421, z: -0.00000012139786} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe1/Bip01 L Toe11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.2218391, y: 0.040712975, z: 0.29652378} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.08111291, y: -0.000000039022353, z: 0.00000009636788} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe2/Bip01 L Toe21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.21534836, y: 0.1583549, z: 0.1875478} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.08600744, y: -0.00000002802232, z: -0.00000006686808} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe3/Bip01 L Toe31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06661906 + value: {x: -0.2812514, y: -0.40782166, z: -0.059636854} + inSlope: {x: 0.0069279377, y: 0.000095252435, z: 0.0016372352} + outSlope: {x: 0.0069279377, y: 0.000095252435, z: 0.0016372352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13326192 + value: {x: -0.2807897, y: -0.4078153, z: -0.059527744} + inSlope: {x: 0.0075119724, y: 0.000106655876, z: 0.0012556663} + outSlope: {x: 0.0075119724, y: 0.000106655876, z: 0.0012556663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1999048 + value: {x: -0.28025016, y: -0.40780744, z: -0.05946949} + inSlope: {x: 0.008199533, y: 0.00012700321, z: 0.0014504751} + outSlope: {x: 0.008199533, y: 0.00012700321, z: 0.0014504751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26654768 + value: {x: -0.27969682, y: -0.40779838, z: -0.059334416} + inSlope: {x: 0.008238217, y: 0.00014064266, z: 0.0021050004} + outSlope: {x: 0.008238217, y: 0.00014064266, z: 0.0021050004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33319053 + value: {x: -0.27915213, y: -0.4077887, z: -0.059188925} + inSlope: {x: 0.0083014965, y: 0.00014466746, z: 0.000056486344} + outSlope: {x: 0.0083014965, y: 0.00014466746, z: 0.000056486344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39983338 + value: {x: -0.27859035, y: -0.4077791, z: -0.059326887} + inSlope: {x: 0.009000013, y: 0.0001372887, z: -0.0074716965} + outSlope: {x: 0.009000013, y: 0.0001372887, z: -0.0074716965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46647626 + value: {x: -0.27795255, y: -0.4077704, z: -0.060184795} + inSlope: {x: 0.011601564, y: 0.00011559975, z: -0.025735646} + outSlope: {x: 0.011601564, y: 0.00011559975, z: -0.025735646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53311914 + value: {x: -0.27704403, y: -0.4077637, z: -0.06275708} + inSlope: {x: 0.0117943045, y: 0.00007848261, z: -0.03487102} + outSlope: {x: 0.0117943045, y: 0.00007848261, z: -0.03487102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599762 + value: {x: -0.27638054, y: -0.40775993, z: -0.064832605} + inSlope: {x: 0.0034981766, y: 0.000025937272, z: -0.009685163} + outSlope: {x: 0.0034981766, y: 0.000025937272, z: -0.009685163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66640484 + value: {x: -0.27657777, y: -0.40776023, z: -0.06404798} + inSlope: {x: -0.007315431, y: -0.000038905913, z: 0.023541212} + outSlope: {x: -0.007315431, y: -0.000038905913, z: 0.023541212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7330477 + value: {x: -0.27735558, y: -0.40776512, z: -0.061694898} + inSlope: {x: -0.014000092, y: -0.00009950075, z: 0.04059583} + outSlope: {x: -0.014000092, y: -0.00009950075, z: 0.04059583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7996906 + value: {x: -0.27844378, y: -0.4077735, z: -0.05863713} + inSlope: {x: -0.01720827, y: -0.00014041911, z: 0.046804585} + outSlope: {x: -0.01720827, y: -0.00014041911, z: 0.046804585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8663334 + value: {x: -0.2796492, y: -0.40778384, z: -0.055456515} + inSlope: {x: -0.017703764, y: -0.00015987206, z: 0.044196524} + outSlope: {x: -0.017703764, y: -0.00015987206, z: 0.044196524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9329763 + value: {x: -0.28080344, y: -0.4077948, z: -0.052746367} + inSlope: {x: -0.015833812, y: -0.00016076639, z: 0.032596476} + outSlope: {x: -0.015833812, y: -0.00016076639, z: 0.032596476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9996192 + value: {x: -0.28175962, y: -0.40780526, z: -0.05111187} + inSlope: {x: -0.008164876, y: -0.00014712702, z: -0.0075722765} + outSlope: {x: -0.008164876, y: -0.00014712702, z: -0.0075722765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066262 + value: {x: -0.2818917, y: -0.4078144, z: -0.05375564} + inSlope: {x: -0.0019819674, y: -0.00013728881, z: -0.03967076} + outSlope: {x: -0.0019819674, y: -0.00013728881, z: -0.03967076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.5061228, y: -0.000000008184494, z: 0.00000001710369} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.46279556, y: -0.00000002357065, z: -0.0000000907876} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.41769063, y: -0.0000000117770815, z: 0.000000039580307} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.22007771, y: 0.18897508, z: 0.27465597} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.10354899, y: -0.000000026051334, z: 0.000000078503696} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe0/Bip01 R Toe01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.22320175, y: 0.06496921, z: 0.32092962} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.092286244, y: -0.000000026715846, z: -0.000000029723228} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe1/Bip01 R Toe11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.22183917, y: -0.040712997, z: 0.2965238} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.08111279, y: -0.00000001244015, z: 0.000000008538743} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe2/Bip01 R Toe21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.21534841, y: -0.15835491, z: 0.18754777} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.8663334 + value: {x: 0.086007535, y: -0.000000020618891, z: -0.0000000060117458} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe3/Bip01 R Toe31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.000000014901161 + value: {x: -0.68967026, y: 0.053743377, z: -0.23420568} + inSlope: {x: 0.00043630588, y: -0.00025738025, z: 0.0010375676} + outSlope: {x: 0.00043630588, y: -0.00025738025, z: 0.0010375676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.0666667 + value: {x: -0.6896412, y: 0.05372622, z: -0.2341365} + inSlope: {x: 0.00021815294, y: -0.00012869012, z: 0.0005187838} + outSlope: {x: 0.00021815294, y: -0.00012869012, z: 0.0005187838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333338 + value: {x: -0.6896412, y: 0.05372622, z: -0.2341365} + inSlope: {x: -0.00020474188, y: -0.000074012176, z: 0.00087093527} + outSlope: {x: -0.00020474188, y: -0.000074012176, z: 0.00087093527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20000008 + value: {x: -0.6896685, y: 0.05371635, z: -0.23402038} + inSlope: {x: 0.0013209875, y: -0.00009661537, z: -0.0033747763} + outSlope: {x: 0.0013209875, y: -0.00009661537, z: -0.0033747763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666677 + value: {x: -0.68946505, y: 0.053713337, z: -0.23458648} + inSlope: {x: 0.0075683, y: -0.0000017881284, z: -0.021622963} + outSlope: {x: 0.0075683, y: -0.0000017881284, z: -0.021622963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333343 + value: {x: -0.68865937, y: 0.053716112, z: -0.23690344} + inSlope: {x: 0.023227029, y: 0.00006741843, z: -0.06627983} + outSlope: {x: 0.023227029, y: 0.00006741843, z: -0.06627983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.40000013 + value: {x: -0.6863681, y: 0.053722326, z: -0.24342379} + inSlope: {x: 0.031310305, y: 0.00011242922, z: -0.0880826} + outSlope: {x: 0.031310305, y: 0.00011242922, z: -0.0880826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666682 + value: {x: -0.68448466, y: 0.053731102, z: -0.2486478} + inSlope: {x: 0.008787358, y: 0.00015724447, z: -0.024547003} + outSlope: {x: 0.008787358, y: 0.00015724447, z: -0.024547003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5333335 + value: {x: -0.68519646, y: 0.05374329, z: -0.24669673} + inSlope: {x: -0.021378981, y: 0.00023005519, z: 0.059180893} + outSlope: {x: -0.021378981, y: 0.00023005519, z: 0.059180893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6000002 + value: {x: -0.6873352, y: 0.053761777, z: -0.240757} + inSlope: {x: -0.036255408, y: 0.0002274568, z: 0.102740526} + outSlope: {x: -0.036255408, y: 0.0002274568, z: 0.102740526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66666687 + value: {x: -0.6900305, y: 0.05377362, z: -0.23299798} + inSlope: {x: -0.040536676, y: 0.00016386622, z: 0.11895978} + outSlope: {x: -0.040536676, y: 0.00016386622, z: 0.11895978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7333335 + value: {x: -0.6927401, y: 0.053783625, z: -0.2248957} + inSlope: {x: -0.03710477, y: 0.000101253376, z: 0.11287123} + outSlope: {x: -0.03710477, y: 0.000101253376, z: 0.11287123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.80000025 + value: {x: -0.6949778, y: 0.05378712, z: -0.21794848} + inSlope: {x: -0.02680017, y: -0.000037690654, z: 0.08417964} + outSlope: {x: -0.02680017, y: -0.000037690654, z: 0.08417964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666669 + value: {x: -0.69631344, y: 0.0537786, z: -0.21367174} + inSlope: {x: 0.004724711, y: -0.00019415285, z: -0.015144981} + outSlope: {x: 0.004724711, y: -0.00019415285, z: -0.015144981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9333336 + value: {x: -0.69434786, y: 0.053761233, z: -0.21996781} + inSlope: {x: 0.049823824, y: -0.00026433732, z: -0.15400407} + outSlope: {x: 0.049823824, y: -0.00026433732, z: -0.15400407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0000002 + value: {x: -0.68967026, y: 0.053743355, z: -0.23420562} + inSlope: {x: 0.07016391, y: -0.00026816505, z: -0.21356711} + outSlope: {x: 0.07016391, y: -0.00026816505, z: -0.21356711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666664 + value: {x: 0.85695755, y: 0.000010740255, z: -0.0003989742} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1333333 + value: {x: 0.85695755, y: 0.000010740255, z: -0.0003989742} + inSlope: {x: -0.00032320622, y: -0.00012687425, z: -0.00001065113} + outSlope: {x: -0.00032320622, y: -0.00012687425, z: -0.00001065113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.19999996 + value: {x: 0.85691446, y: -0.00000617631, z: -0.00040039435} + inSlope: {x: -0.0004649163, y: -0.00024531822, z: -0.00000025800546} + outSlope: {x: -0.0004649163, y: -0.00024531822, z: -0.00000025800546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666662 + value: {x: 0.85689557, y: -0.000021968839, z: -0.0003990086} + inSlope: {x: -0.00021815306, y: -0.00020915577, z: 0.00002375921} + outSlope: {x: -0.00021815306, y: -0.00020915577, z: 0.00002375921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333325 + value: {x: 0.8568854, y: -0.000034063738, z: -0.00039722645} + inSlope: {x: -0.00015243892, y: -0.00012247266, z: 0.000024035551} + outSlope: {x: -0.00015243892, y: -0.00012247266, z: 0.000024035551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39999992 + value: {x: 0.85687524, y: -0.00003829852, z: -0.00039580386} + inSlope: {x: -0.00016853215, y: 0.0000002840061, z: 0.000020213703} + outSlope: {x: -0.00016853215, y: 0.0000002840061, z: 0.000020213703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666658 + value: {x: 0.8568629, y: -0.00003402587, z: -0.0003945313} + inSlope: {x: -0.0001730025, y: 0.00009576774, z: 0.000017634959} + outSlope: {x: -0.0001730025, y: 0.00009576774, z: 0.000017634959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333324 + value: {x: 0.8568522, y: -0.000025529489, z: -0.00039345253} + inSlope: {x: -0.000120252385, y: 0.00012492185, z: 0.000012347375} + outSlope: {x: -0.000120252385, y: 0.00012492185, z: 0.000012347375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5999999 + value: {x: 0.85684687, y: -0.000017369626, z: -0.00039288498} + inSlope: {x: 0.000027269129, y: 0.0000660913, z: -0.0000076342985} + outSlope: {x: 0.000027269129, y: 0.0000660913, z: -0.0000076342985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66666657 + value: {x: 0.8568558, y: -0.000016717317, z: -0.00039447044} + inSlope: {x: 0.00030308985, y: -0.000062308696, z: -0.00003903634} + outSlope: {x: 0.00030308985, y: -0.000062308696, z: -0.00003903634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7333332 + value: {x: 0.8568873, y: -0.000025677444, z: -0.00039808982} + inSlope: {x: 0.00041887187, y: -0.00005255318, z: -0.00003861266} + outSlope: {x: 0.00041887187, y: -0.00005255318, z: -0.00003861266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.79999983 + value: {x: 0.85691166, y: -0.000023724398, z: -0.0003996188} + inSlope: {x: 0.00034198168, y: 0.00007640351, z: -0.000015678308} + outSlope: {x: 0.00034198168, y: 0.00007640351, z: -0.000015678308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666665 + value: {x: 0.8569329, y: -0.00001549031, z: -0.00040018026} + inSlope: {x: 0.00015914442, y: 0.000061755665, z: -0.0000042110337} + outSlope: {x: 0.00015914442, y: 0.000061755665, z: -0.0000042110337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333316 + value: {x: 0.8569329, y: -0.00001549031, z: -0.00040018026} + inSlope: {x: -0.00010460616, y: 0.00008747735, z: -0.00000320586} + outSlope: {x: -0.00010460616, y: 0.00008747735, z: -0.00000320586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9999998 + value: {x: 0.85691893, y: -0.000003826664, z: -0.0004006077} + inSlope: {x: -0.00010460616, y: 0.00008747735, z: -0.00000320586} + outSlope: {x: -0.00010460616, y: 0.00008747735, z: -0.00000320586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666664 + value: {x: 0.85691893, y: -0.000003826664, z: -0.0004006077} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00008337945 + value: {x: 0.50303787, y: -0.0000036905208, z: -0.00047808833} + inSlope: {x: 0.0006027431, y: -0.0014389284, z: 0.00016673714} + outSlope: {x: 0.0006027431, y: -0.0014389284, z: 0.00016673714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06683343 + value: {x: 0.5030781, y: -0.00009973906, z: -0.00046695862} + inSlope: {x: 0.00030137156, y: -0.0007194642, z: 0.00008336857} + outSlope: {x: 0.00030137156, y: -0.0007194642, z: 0.00008336857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13358349 + value: {x: 0.5030781, y: -0.00009973906, z: -0.00046695862} + inSlope: {x: -0.0002308283, y: -0.000088422494, z: 0.000013912275} + outSlope: {x: -0.0002308283, y: -0.000088422494, z: 0.000013912275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20033354 + value: {x: 0.5030473, y: -0.00011154347, z: -0.00046510133} + inSlope: {x: -0.0005054113, y: -0.0001454743, z: 0.00004081793} + outSlope: {x: -0.0005054113, y: -0.0001454743, z: 0.00004081793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2670836 + value: {x: 0.50301063, y: -0.00011915989, z: -0.00046150942} + inSlope: {x: -0.0005522913, y: -0.0000585628, z: 0.000063206935} + outSlope: {x: -0.0005522913, y: -0.0000585628, z: 0.000063206935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33383363 + value: {x: 0.50297356, y: -0.00011936161, z: -0.0004566632} + inSlope: {x: -0.0005451477, y: 0.00012302125, z: 0.00006177224} + outSlope: {x: -0.0005451477, y: 0.00012302125, z: 0.00006177224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.40058368 + value: {x: 0.50293785, y: -0.00010273654, z: -0.00045326282} + inSlope: {x: -0.0004978212, y: 0.00046520308, z: 0.000030708114} + outSlope: {x: -0.0004978212, y: 0.00046520308, z: 0.000030708114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46733373 + value: {x: 0.5029071, y: -0.000057256955, z: -0.00045256366} + inSlope: {x: -0.00025270565, y: 0.00046704785, z: -0.0000015423925} + outSlope: {x: -0.00025270565, y: 0.00046704785, z: -0.0000015423925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5340838 + value: {x: 0.5029041, y: -0.000040385607, z: -0.00045346873} + inSlope: {x: 0.00005759546, y: 0.00011741077, z: -0.00003130349} + outSlope: {x: 0.00005759546, y: 0.00011741077, z: -0.00003130349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.60083383 + value: {x: 0.5029148, y: -0.000041582607, z: -0.00045674268} + inSlope: {x: 0.00021877344, y: -0.000020743413, z: -0.00006168961} + outSlope: {x: 0.00021877344, y: -0.000020743413, z: -0.00006168961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6675839 + value: {x: 0.5029333, y: -0.000043154854, z: -0.0004617043} + inSlope: {x: 0.00035226988, y: 0.000059684095, z: -0.00008993273} + outSlope: {x: 0.00035226988, y: 0.000059684095, z: -0.00008993273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73433393 + value: {x: 0.5029618, y: -0.000033614775, z: -0.0004687487} + inSlope: {x: 0.00021341573, y: 0.00007146122, z: -0.00005276706} + outSlope: {x: 0.00021341573, y: 0.00007146122, z: -0.00005276706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.801084 + value: {x: 0.5029618, y: -0.000033614775, z: -0.0004687487} + inSlope: {x: 0.00088804157, y: -0.000488461, z: 0.000013349383} + outSlope: {x: 0.00088804157, y: -0.000488461, z: 0.000013349383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.86783403 + value: {x: 0.50308037, y: -0.00009882437, z: -0.00046696656} + inSlope: {x: 0.00088804157, y: -0.000488461, z: 0.000013349383} + outSlope: {x: 0.00088804157, y: -0.000488461, z: 0.000013349383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9345841 + value: {x: 0.50308037, y: -0.00009882437, z: -0.00046696656} + inSlope: {x: -0.00013394305, y: -0.000057077417, z: 0.000006003674} + outSlope: {x: -0.00013394305, y: -0.000057077417, z: 0.000006003674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0013341 + value: {x: 0.5030625, y: -0.000106444204, z: -0.00046616507} + inSlope: {x: -0.0002678861, y: -0.000114154835, z: 0.000012007348} + outSlope: {x: -0.0002678861, y: -0.000114154835, z: 0.000012007348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06653341 + value: {x: 0.60076773, y: 0.000052842723, z: -0.00053488143} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13313344 + value: {x: 0.60076773, y: 0.000052842723, z: -0.00053488143} + inSlope: {x: -0.00004340575, y: -0.00019210471, z: -0.000020918033} + outSlope: {x: -0.00004340575, y: -0.00019210471, z: -0.000020918033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1997335 + value: {x: 0.60076195, y: 0.000027254355, z: -0.0005376677} + inSlope: {x: -0.00016064607, y: -0.000309096, z: -0.00004183127} + outSlope: {x: -0.00016064607, y: -0.000309096, z: -0.00004183127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26633352 + value: {x: 0.60074633, y: 0.000011671105, z: -0.00054045336} + inSlope: {x: -0.0003208446, y: -0.00018152647, z: -0.000043357253} + outSlope: {x: -0.0003208446, y: -0.00018152647, z: -0.000043357253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33293357 + value: {x: 0.6007192, y: 0.000003075016, z: -0.0005434429} + inSlope: {x: -0.00044792943, y: -0.00012504942, z: -0.000034354292} + outSlope: {x: -0.00044792943, y: -0.00012504942, z: -0.000034354292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39953363 + value: {x: 0.60068667, y: -0.000004985491, z: -0.00054502935} + inSlope: {x: -0.00048999285, y: -0.00013341653, z: -0.000006651922} + outSlope: {x: -0.00048999285, y: -0.00013341653, z: -0.000006651922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46613365 + value: {x: 0.60065395, y: -0.000014696075, z: -0.00054432894} + inSlope: {x: -0.00047701597, y: -0.00016670108, z: 0.000025332123} + outSlope: {x: -0.00047701597, y: -0.00016670108, z: 0.000025332123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5327337 + value: {x: 0.60062313, y: -0.000027190083, z: -0.0005416551} + inSlope: {x: -0.00046224907, y: -0.00014148848, z: 0.000053293203} + outSlope: {x: -0.00046224907, y: -0.00014148848, z: 0.000053293203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5993337 + value: {x: 0.6005924, y: -0.000033542347, z: -0.0005372303} + inSlope: {x: -0.00034545612, y: 0.00007124651, z: 0.000045672008} + outSlope: {x: -0.00034545612, y: 0.00007124651, z: 0.000045672008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6659338 + value: {x: 0.6005771, y: -0.00001770003, z: -0.0005355716} + inSlope: {x: -0.00015885606, y: 0.00033131224, z: 0.000020206604} + outSlope: {x: -0.00015885606, y: 0.00033131224, z: 0.000020206604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7325338 + value: {x: 0.6005712, y: 0.000010588474, z: -0.00053453876} + inSlope: {x: 0.000056382753, y: 0.00046733313, z: 0.0000009080736} + outSlope: {x: 0.000056382753, y: 0.00046733313, z: 0.0000009080736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.79913384 + value: {x: 0.6005846, y: 0.000044548768, z: -0.00053545064} + inSlope: {x: 0.0004385322, y: 0.00051586446, z: -0.000019602678} + outSlope: {x: 0.0004385322, y: 0.00051586446, z: -0.000019602678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8657339 + value: {x: 0.6006296, y: 0.00007930168, z: -0.00053714984} + inSlope: {x: 0.0008645352, y: 0.0005020284, z: 0.000017962226} + outSlope: {x: 0.0008645352, y: 0.0005020284, z: 0.000017962226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93233395 + value: {x: 0.6006998, y: 0.000111419, z: -0.0005330581} + inSlope: {x: 0.0005266865, y: 0.00024112094, z: 0.00003071895} + outSlope: {x: 0.0005266865, y: 0.00024112094, z: 0.00003071895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.998934 + value: {x: 0.6006998, y: 0.000111419, z: -0.0005330581} + inSlope: {x: 0.00050520734, y: -0.00045447572, z: -0.000014876159} + outSlope: {x: 0.00050520734, y: -0.00045447572, z: -0.000014876159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.065534 + value: {x: 0.6007671, y: 0.000050882813, z: -0.0005350396} + inSlope: {x: 0.0010104147, y: -0.00090895145, z: -0.000029752318} + outSlope: {x: 0.0010104147, y: -0.00090895145, z: -0.000029752318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.000000014901161 + value: {x: 0.68464416, y: 0.00014105317, z: -0.00057149} + inSlope: {x: 0.001082718, y: -0.0014768826, z: 0.00010089626} + outSlope: {x: 0.001082718, y: -0.0014768826, z: 0.00010089626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.0666667 + value: {x: 0.68471634, y: 0.0000425943, z: -0.00056476356} + inSlope: {x: 0.000541359, y: -0.0007384413, z: 0.00005044813} + outSlope: {x: 0.000541359, y: -0.0007384413, z: 0.00005044813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333338 + value: {x: 0.68471634, y: 0.0000425943, z: -0.00056476356} + inSlope: {x: -0.00011041756, y: -0.00021099938, z: -0.00005150241} + outSlope: {x: -0.00011041756, y: -0.00021099938, z: -0.00005150241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20000008 + value: {x: 0.6847016, y: 0.0000144610385, z: -0.00057163055} + inSlope: {x: -0.00035896886, y: -0.00035108603, z: -0.00013047607} + outSlope: {x: -0.00035896886, y: -0.00035108603, z: -0.00013047607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666677 + value: {x: 0.6846685, y: -0.0000042171864, z: -0.00058216037} + inSlope: {x: -0.000616908, y: -0.00026876043, z: -0.00016611969} + outSlope: {x: -0.000616908, y: -0.00026876043, z: -0.00016611969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333343 + value: {x: 0.68461937, y: -0.000021373693, z: -0.00059377984} + inSlope: {x: -0.0008109211, y: -0.00028755364, z: -0.00014237229} + outSlope: {x: -0.0008109211, y: -0.00028755364, z: -0.00014237229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.40000013 + value: {x: 0.68456036, y: -0.00004255768, z: -0.00060114334} + inSlope: {x: -0.0008998808, y: -0.00035594957, z: -0.000058579004} + outSlope: {x: -0.0008998808, y: -0.00035594957, z: -0.000058579004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666682 + value: {x: 0.6844994, y: -0.00006883365, z: -0.0006015904} + inSlope: {x: -0.0009562074, y: -0.0003823571, z: 0.000052411346} + outSlope: {x: -0.0009562074, y: -0.0003823571, z: 0.000052411346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5333335 + value: {x: 0.68443286, y: -0.000093538634, z: -0.00059415516} + inSlope: {x: -0.001122057, y: -0.0002228558, z: 0.00018005627} + outSlope: {x: -0.001122057, y: -0.0002228558, z: 0.00018005627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6000002 + value: {x: 0.6843498, y: -0.00009854776, z: -0.00057758286} + inSlope: {x: -0.0009450312, y: 0.00014986258, z: 0.00019499441} + outSlope: {x: -0.0009450312, y: 0.00014986258, z: 0.00019499441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66666687 + value: {x: 0.68430686, y: -0.00007355696, z: -0.0005681559} + inSlope: {x: -0.0005167723, y: 0.00050828303, z: 0.000112429276} + outSlope: {x: -0.0005167723, y: 0.00050828303, z: 0.000112429276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7333335 + value: {x: 0.6842809, y: -0.000030776693, z: -0.0005625923} + inSlope: {x: -0.00010773548, y: 0.00071907917, z: 0.000004702193} + outSlope: {x: -0.00010773548, y: 0.00071907917, z: 0.000004702193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.80000025 + value: {x: 0.6842925, y: 0.000022320306, z: -0.00056752894} + inSlope: {x: 0.0006647408, y: 0.00081386534, z: -0.00017156794} + outSlope: {x: 0.0006647408, y: 0.00081386534, z: -0.00017156794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666669 + value: {x: 0.6843695, y: 0.000077738725, z: -0.000585468} + inSlope: {x: 0.0015811624, y: 0.00074191263, z: -0.00019248867} + outSlope: {x: 0.0015811624, y: 0.00074191263, z: -0.00019248867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9333336 + value: {x: 0.6845033, y: 0.00012124199, z: -0.0005931941} + inSlope: {x: 0.0020594897, y: 0.00047485234, z: 0.00010529593} + outSlope: {x: 0.0020594897, y: 0.00047485234, z: 0.00010529593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0000002 + value: {x: 0.6846441, y: 0.00014105237, z: -0.00057142857} + inSlope: {x: 0.0021117928, y: 0.00029715573, z: 0.00032648302} + outSlope: {x: 0.0021117928, y: 0.00029715573, z: 0.00032648302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3/Bip01 Tail4 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 15 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 2018908708 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2116945202 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2538693071 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1614018717 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1340948032 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1988792091 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1653460170 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 48554523 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3885673468 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3497741423 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2252325412 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 833408543 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3248292310 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1476469227 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2011074679 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2018908708 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3548896427 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2116945202 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3473806278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2293061301 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2956762170 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2947878881 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 839841671 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4239023479 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2747482890 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3738779216 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2538693071 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1614018717 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1340948032 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 5356599 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2212324761 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3349554328 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 469950906 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4249839413 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1795543340 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185000085 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4060905622 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3400363572 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2232135680 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1021634964 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1988792091 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 429469044 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2440470649 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1776516067 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 189021340 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 992939382 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2084768778 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3446049494 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3846856112 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 214762615 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2454547750 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4202988503 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4007013596 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 603984736 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3084423924 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 415518178 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1653460170 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 48554523 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3633612091 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3758990574 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2012702766 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2295629853 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1639394600 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2411285508 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2249130031 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3501197205 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4009638292 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1858358311 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 982230050 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3798344747 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3192670078 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1666753959 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1346512466 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3105981287 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1640760174 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3885673468 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1101621778 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2935383880 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2920843787 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2087194590 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 204240115 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 191840072 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2899091034 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2456186610 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2526848992 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3848363620 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 914115913 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3497741423 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2169235899 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3593375843 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2741294783 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 447320722 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1889590795 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1840161284 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3493868706 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4104647614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3926920472 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2208351016 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1257301937 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2252325412 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 833408543 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3248292310 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1476469227 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2011074679 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3548896427 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3473806278 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2293061301 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2956762170 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2947878881 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 839841671 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4239023479 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3844585085 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2747482890 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3738779216 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3880839207 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1523115996 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 5356599 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2212324761 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3349554328 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 469950906 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4249839413 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1795543340 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185000085 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4060905622 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3400363572 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2232135680 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1021634964 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 429469044 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2440470649 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1776516067 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 189021340 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 992939382 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2084768778 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3446049494 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3846856112 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 214762615 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2454547750 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4202988503 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4007013596 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 603984736 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3084423924 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 415518178 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3602081926 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1414267273 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1918148974 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 55332554 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 606532870 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3633612091 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3758990574 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2012702766 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2295629853 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1639394600 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2411285508 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2249130031 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3501197205 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4009638292 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1858358311 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 982230050 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3798344747 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3192670078 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1666753959 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1346512466 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3105981287 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1640760174 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1101621778 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2935383880 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2920843787 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2087194590 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 204240115 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 191840072 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2899091034 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2456186610 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2526848992 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3848363620 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 914115913 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2169235899 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3593375843 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2741294783 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 447320722 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1889590795 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1840161284 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3493868706 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4104647614 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3926920472 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2208351016 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1257301937 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3844585085 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3880839207 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1523115996 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3602081926 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1414267273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1918148974 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 55332554 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 606532870 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.0666664 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim.meta new file mode 100644 index 0000000000..b82ac5821f --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/双头龙/tcks_双头龙/前进.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c364b5a7192bf27498680ac5e70b94c2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰.meta new file mode 100644 index 0000000000..84402383e0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0dd58a005017db84c98ce9c8f2285cda +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰.meta new file mode 100644 index 0000000000..ca603efe71 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a4e1aa45dd23f743a7ef78f3702e9a5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller new file mode 100644 index 0000000000..7188cc8396 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1107 &-2578372782002645222 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 8685885188865628297} + m_Position: {x: 380, y: 210, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 8685885188865628297} +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "tcks_\u706B\u51E4\u51F0" + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -2578372782002645222} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &8685885188865628297 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 1f768e98f6054bb4f85ebfd11057f03f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller.meta new file mode 100644 index 0000000000..154b571ba0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/tcks_火凤凰.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ffa6242ab1b79ff4a8ef34e7c6932e88 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim new file mode 100644 index 0000000000..1c8f88043c --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim @@ -0,0 +1,81943 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.5, y: 0.5, z: 0.5, w: -0.49999997} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.5, y: 0.5, z: 0.5, w: -0.49999997} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.5, y: 0.5, z: 0.5, w: -0.49999997} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.000000027413932, y: 0.94735193, z: 0.0000000554062, w: 0.32019427} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.000000027413932, y: 0.94735193, z: 0.0000000554062, w: 0.32019427} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.000000027413932, y: 0.94735193, z: 0.0000000554062, w: 0.32019427} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone18" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.0000000053511373, y: 0.4801814, z: 0.0000000029293257, w: 0.8771692} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.0000000053511373, y: 0.4801814, z: 0.0000000029293257, w: 0.8771692} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.0000000053511373, y: 0.4801814, z: 0.0000000029293257, w: 0.8771692} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.000000027645513, y: 0.9486833, z: 0.000000055291018, w: 0.31622773} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.000000027645513, y: 0.9486833, z: 0.000000055291018, w: 0.31622773} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.000000027645513, y: 0.9486833, z: 0.000000055291018, w: 0.31622773} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone15" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.0000000021857882, y: 0.40572563, z: 9.702734e-10, w: 0.9139949} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.0000000021857882, y: 0.40572563, z: 9.702734e-10, w: 0.9139949} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.0000000021857882, y: 0.40572563, z: 9.702734e-10, w: 0.9139949} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.000000018532967, y: 0.997961, z: 0.00000008641608, w: 0.06382729} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.000000018532967, y: 0.997961, z: 0.00000008641608, w: 0.06382729} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.000000018532967, y: 0.997961, z: 0.00000008641608, w: 0.06382729} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -2.3084363e-15, y: 0.014904579, z: -1.4977172e-16, w: 0.9998889} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -2.3084363e-15, y: 0.014904579, z: -1.4977172e-16, w: 0.9998889} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -2.3084363e-15, y: 0.014904579, z: -1.4977172e-16, w: 0.9998889} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.000000059893814, y: -0.12597273, z: -0.000000007605573, w: 0.9920337} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0000026878695, y: -0.073760554, z: 0.00000033678305, w: -0.00983474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.00000005985547, y: -0.13087463, z: -0.000000007901525, w: 0.99139893} + inSlope: {x: 0.0000026862708, y: -0.05073832, z: 0.00000035149125, w: -0.0062584714} + outSlope: {x: 0.000002685854, y: -0.050738502, z: 0.0000003514392, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.00000005984055, y: -0.13273318, z: -0.000000008013734, w: 0.9911518} + inSlope: {x: 0.0000026846817, y: -0.014305129, z: 0.0000003586468, w: -0.0017881411} + outSlope: {x: 0.0000026847788, y: -0.013634527, z: 0.0000003586988, w: -0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.00000005984055, y: -0.13273318, z: -0.000000008013734, w: 0.9911518} + inSlope: {x: 0.0000026853115, y: 0, z: 0.00000035961807, w: 0} + outSlope: {x: 0.0000026846817, y: 0, z: 0.0000003595261, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.00000005984055, y: -0.13273318, z: -0.000000008013734, w: 0.9911518} + inSlope: {x: 0.000002684575, y: 0.0051409057, z: 0.0000003598325, w: 0.00089407054} + outSlope: {x: 0.0000026846817, y: 0.0055879406, z: 0.00000035985914, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.00000005984643, y: -0.1320048, z: -0.000000007969756, w: 0.9912491} + inSlope: {x: 0.0000026859607, y: 0.020563623, z: 0.0000003589532, w: 0.0026822116} + outSlope: {x: 0.0000026848852, y: 0.021010581, z: 0.0000003588187, w: 0.002682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.0000000598626, y: -0.12997681, z: -0.00000000784732, w: 0.991517} + inSlope: {x: 0.0000026860578, y: 0.038221378, z: 0.0000003544622, w: 0.0044703367} + outSlope: {x: 0.0000026853213, y: 0.038445033, z: 0.0000003543702, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.00000005988678, y: -0.12688453, z: -0.000000007660623, w: 0.9919175} + inSlope: {x: 0.0000026862804, y: 0.052750163, z: 0.00000034686954, w: 0.0062584938} + outSlope: {x: 0.000002686387, y: 0.052750163, z: 0.0000003468562, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.0000000599166, y: -0.122963294, z: -0.0000000074238815, w: 0.9924112} + inSlope: {x: 0.0000026901173, y: 0.06314373, z: 0.00000033719058, w: 0.0071525644} + outSlope: {x: 0.0000026865905, y: 0.063255265, z: 0.00000033674308, w: 0.008046606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.000000059949734, y: -0.11844852, z: -0.0000000071513, w: 0.9929602} + inSlope: {x: 0.0000026875498, y: 0.0704078, z: 0.00000032491923, w: 0.008940673} + outSlope: {x: 0.0000026903306, y: 0.07040805, z: 0.00000032522684, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.00000005998411, y: -0.11357614, z: -0.0000000068571335, w: 0.9935293} + inSlope: {x: 0.000002692249, y: 0.07409609, z: 0.00000031231713, w: 0.008940705} + outSlope: {x: 0.0000026895846, y: 0.07398433, z: 0.00000031197075, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.000000060017804, y: -0.108582556, z: -0.0000000065556467, w: 0.99408746} + inSlope: {x: 0.000002691503, y: 0.07398433, z: 0.00000029852816, w: 0.0080466345} + outSlope: {x: 0.000002693528, y: 0.07409609, z: 0.00000029872135, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.00000006004922, y: -0.10370478, z: -0.0000000062611494, w: 0.9946081} + inSlope: {x: 0.0000026953398, y: 0.07051981, z: 0.000000285352, w: 0.0071525644} + outSlope: {x: 0.0000026923556, y: 0.07051981, z: 0.00000028501896, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.00000006007708, y: -0.099180214, z: -0.000000005987981, w: 0.9950695} + inSlope: {x: 0.0000026940609, y: 0.06347901, z: 0.000000272409, w: 0.0062584938} + outSlope: {x: 0.0000026961732, y: 0.06336679, z: 0.00000027258693, w: 0.006258449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.00000006010028, y: -0.09524672, z: -0.000000005750498, w: 0.9954537} + inSlope: {x: 0.0000026981982, y: 0.05286154, z: 0.0000002613893, w: 0.005364385} + outSlope: {x: 0.0000026949135, y: 0.05286192, z: 0.00000026106474, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.000000060117905, y: -0.092142366, z: -0.000000005563072, w: 0.99574584} + inSlope: {x: 0.0000026954465, y: 0.038445033, z: 0.00000025177218, w: 0.0035762822} + outSlope: {x: 0.0000026956595, y: 0.03866855, z: 0.0000002518055, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.00000006012918, y: -0.09010526, z: -0.000000005440084, w: 0.9959322} + inSlope: {x: 0.0000026978978, y: 0.020675382, z: 0.00000024535063, w: 0.0017881411} + outSlope: {x: 0.0000026964058, y: 0.02078714, z: 0.00000024521742, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.000000060133154, y: -0.08937338, z: -0.0000000053958975, w: 0.9959982} + inSlope: {x: 0.0000026977912, y: 0, z: 0.00000024208657, w: 0} + outSlope: {x: 0.0000026967255, y: 0, z: 0.00000024197334, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.00000006012918, y: -0.09010526, z: -0.000000005440084, w: 0.9959322} + inSlope: {x: 0.0000026976847, y: -0.02078714, z: 0.00000024279936, w: -0.0026822116} + outSlope: {x: 0.0000027013957, y: -0.020675233, z: 0.00000024315065, w: -0.0017881283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.000000060117905, y: -0.092142366, z: -0.000000005563072, w: 0.99574584} + inSlope: {x: 0.0000026964929, y: -0.038668275, z: 0.00000024716076, w: -0.0035762566} + outSlope: {x: 0.000002700882, y: -0.03855679, z: 0.00000024759552, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.00000006010028, y: -0.09524672, z: -0.000000005750498, w: 0.9954537} + inSlope: {x: 0.0000026953398, y: -0.052750163, z: 0.00000025466986, w: -0.0044703525} + outSlope: {x: 0.0000026954465, y: -0.052750163, z: 0.00000025470982, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.00000006007716, y: -0.09916688, z: -0.0000000059871774, w: 0.9950708} + inSlope: {x: 0.0000026957662, y: -0.06336725, z: 0.0000002647818, w: -0.0062584938} + outSlope: {x: 0.0000026945938, y: -0.06347901, z: 0.0000002646752, w: -0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.00000006004922, y: -0.10370478, z: -0.0000000062611494, w: 0.9946081} + inSlope: {x: 0.000002692782, y: -0.07051981, z: 0.0000002764458, w: -0.0080466345} + outSlope: {x: 0.000002698111, y: -0.07063157, z: 0.00000027702532, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.00000006001788, y: -0.10856702, z: -0.0000000065547066, w: 0.9940891} + inSlope: {x: 0.0000026923556, y: -0.07398433, z: 0.00000028950203, w: -0.0080466345} + outSlope: {x: 0.0000026967255, y: -0.07409609, z: 0.00000029000162, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.00000005998411, y: -0.11357614, z: -0.0000000068571335, w: 0.9935293} + inSlope: {x: 0.0000026919292, y: -0.07398433, z: 0.00000030319777, w: -0.0080466345} + outSlope: {x: 0.0000026906935, y: -0.073985524, z: 0.0000003030694, w: -0.008940849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.000000059949855, y: -0.11843374, z: -0.0000000071504087, w: 0.99296194} + inSlope: {x: 0.0000026884554, y: -0.07286792, z: 0.0000003161858, w: -0.008940849} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.0000000014649072, y: 0.16154978, z: 2.3980465e-10, w: 0.98686457} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000006574057, y: 0.07331352, z: -0.000000010650619, w: -0.011622875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.0000000014637058, y: 0.16642569, z: 2.4704477e-10, w: 0.986054} + inSlope: {x: 0.00000006569228, y: 0.05029129, z: -0.000000011011163, w: -0.008046606} + outSlope: {x: 0.00000006568252, y: 0.050514985, z: -0.000000011008704, w: -0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.0000000014632395, y: 0.16827413, z: 2.4978702e-10, w: 0.98574024} + inSlope: {x: 0.00000006566087, y: 0.013858093, z: -0.000000011187728, w: -0.0026822116} + outSlope: {x: 0.00000006565231, y: 0.013634527, z: -0.000000011186439, w: -0.002682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.0000000014632395, y: 0.16827413, z: 2.4978702e-10, w: 0.98574024} + inSlope: {x: 0.00000006565398, y: 0, z: -0.000000011207672, w: 0} + outSlope: {x: 0.00000006564922, y: 0, z: -0.00000001120688, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.0000000014632395, y: 0.16827413, z: 2.4978702e-10, w: 0.98574024} + inSlope: {x: 0.00000006565254, y: -0.005364423, z: -0.000000011215622, w: 0.00089407054} + outSlope: {x: 0.00000006564755, y: -0.0055879406, z: -0.0000000112152065, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.0000000014634217, y: 0.16754971, z: 2.4871208e-10, w: 0.9858636} + inSlope: {x: 0.000000065655875, y: -0.020563623, z: -0.00000001118981, w: 0.0035762822} + outSlope: {x: 0.00000006565231, y: -0.020787066, z: -0.000000011189353, w: 0.0035762694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.0000000014639286, y: 0.16553268, z: 2.4571922e-10, w: 0.9862043} + inSlope: {x: 0.000000065683956, y: -0.038221378, z: -0.000000011083605, w: 0.0071525387} + outSlope: {x: 0.00000006567253, y: -0.038221516, z: -0.000000011081147, w: 0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.0000000014646852, y: 0.16245681, z: 2.4115218e-10, w: 0.9867157} + inSlope: {x: 0.00000006569751, y: -0.052303124, z: -0.00000001089671, w: 0.008940705} + outSlope: {x: 0.00000006570084, y: -0.052079607, z: -0.0000000108962945, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.0000000014656268, y: 0.15855584, z: 2.3536303e-10, w: 0.98735} + inSlope: {x: 0.00000006577245, y: -0.06303197, z: -0.000000010658567, w: 0.009834776} + outSlope: {x: 0.000000065710594, y: -0.06280823, z: -0.000000010647705, w: 0.010728808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.0000000014666818, y: 0.15406375, z: 2.2869316e-10, w: 0.9880609} + inSlope: {x: 0.00000006576222, y: -0.069960766, z: -0.000000010360644, w: 0.010728808} + outSlope: {x: 0.00000006581575, y: -0.06996102, z: -0.000000010368591, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.0000000014677886, y: 0.14921497, z: 2.2149745e-10, w: 0.98880476} + inSlope: {x: 0.00000006586904, y: -0.0735373, z: -0.000000010051969, w: 0.010728846} + outSlope: {x: 0.00000006580576, y: -0.073760815, z: -0.000000010042394, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.0000000014688805, y: 0.14424467, z: 2.1411992e-10, w: 0.98954207} + inSlope: {x: 0.00000006582574, y: -0.0735373, z: -0.000000009707453, w: 0.010728846} + outSlope: {x: 0.00000006591567, y: -0.073760815, z: -0.000000009719942, w: 0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.0000000014699169, y: 0.13938874, z: 2.0690838e-10, w: 0.9902377} + inSlope: {x: 0.00000006597562, y: -0.07018454, z: -0.000000009393537, w: 0.009834776} + outSlope: {x: 0.00000006590401, y: -0.07018454, z: -0.00000000938292, w: 0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.0000000014708413, y: 0.1348837, z: 2.0022231e-10, w: 0.9908614} + inSlope: {x: 0.00000006593732, y: -0.06325549, z: -0.0000000090717105, w: 0.0080466345} + outSlope: {x: 0.00000006600513, y: -0.063031524, z: -0.00000000908018, w: 0.008940641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.0000000014716189, y: 0.13096656, z: 1.9440936e-10, w: 0.9913868} + inSlope: {x: 0.00000006602677, y: -0.05252627, z: -0.000000008801863, w: 0.006258449} + outSlope: {x: 0.00000006598395, y: -0.052750163, z: -0.000000008796514, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.0000000014722208, y: 0.12787469, z: 1.8981795e-10, w: 0.99179035} + inSlope: {x: 0.000000066002265, y: -0.038221516, z: -0.000000008567738, w: 0.005364423} + outSlope: {x: 0.00000006601726, y: -0.038445033, z: -0.000000008569612, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.0000000014726045, y: 0.12584561, z: 1.8680653e-10, w: 0.9920498} + inSlope: {x: 0.00000006605056, y: -0.02078714, z: -0.000000008410155, w: 0.0026822116} + outSlope: {x: 0.000000066035575, y: -0.020563623, z: -0.0000000084078655, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.0000000014727397, y: 0.1251166, z: 1.8572592e-10, w: 0.992142} + inSlope: {x: 0.000000066077206, y: 0, z: -0.000000008332718, w: 0} + outSlope: {x: 0.000000066045565, y: 0, z: -0.00000000832897, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.0000000014726045, y: 0.12584561, z: 1.8680653e-10, w: 0.9920498} + inSlope: {x: 0.0000000660489, y: 0.020563623, z: -0.000000008347289, w: -0.0026822116} + outSlope: {x: 0.00000006616, y: 0.020786991, z: -0.0000000083613845, w: -0.0026821925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.0000000014722208, y: 0.12787469, z: 1.8981795e-10, w: 0.99179035} + inSlope: {x: 0.00000006604343, y: 0.038444757, z: -0.000000008456933, w: -0.0044703204} + outSlope: {x: 0.000000066148814, y: 0.038445033, z: -0.00000000847094, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.0000000014716196, y: 0.13096657, z: 1.9440881e-10, w: 0.9913868} + inSlope: {x: 0.00000006602058, y: 0.05252664, z: -0.000000008642053, w: -0.0071525644} + outSlope: {x: 0.0000000660056, y: 0.052303124, z: -0.000000008641013, w: -0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.000000001470841, y: 0.13487042, z: 2.002029e-10, w: 0.99086326} + inSlope: {x: 0.000000065992275, y: 0.06303197, z: -0.000000008886858, w: -0.0080466345} + outSlope: {x: 0.00000006597396, y: 0.06325549, z: -0.0000000088847765, w: -0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.0000000014699169, y: 0.13938874, z: 2.0690838e-10, w: 0.9902377} + inSlope: {x: 0.00000006593732, y: 0.07018454, z: -0.000000009174961, w: -0.009834776} + outSlope: {x: 0.00000006605222, y: 0.07018454, z: -0.000000009191822, w: -0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.000000001468885, y: 0.14422919, z: 2.1409616e-10, w: 0.98954433} + inSlope: {x: 0.00000006589235, y: 0.073760815, z: -0.000000009491791, w: -0.010728846} + outSlope: {x: 0.00000006600726, y: 0.073760815, z: -0.000000009509278, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.0000000014677886, y: 0.14921497, z: 2.2149745e-10, w: 0.98880476} + inSlope: {x: 0.00000006584073, y: 0.073760815, z: -0.000000009823193, w: -0.011622917} + outSlope: {x: 0.000000065840126, y: 0.07353848, z: -0.000000009824601, w: -0.010729019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.0000000014666853, y: 0.15404901, z: 2.2867232e-10, w: 0.9880632} + inSlope: {x: 0.000000065815144, y: 0.07242088, z: -0.000000010150804, w: -0.010729019} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.000000142684, y: -0.95519686, z: -0.00000008997282, w: 0.2959713} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000000701517, y: 0.022351684, z: 0.0000022579213, w: 0.06973725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.00000014223757, y: -0.9537223, z: -0.00000009067696, w: 0.30068886} + inSlope: {x: -0.0000006885141, y: 0.015199144, z: 0.0000022645293, w: 0.0491737} + outSlope: {x: -0.0000006885166, y: 0.016093269, z: 0.0000022646439, w: 0.049620915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.0000001420673, y: -0.9531568, z: -0.0000000909435, w: 0.3024766} + inSlope: {x: -0.00000068105584, y: 0.0035762822, z: 0.0000022714653, w: 0.013858093} + outSlope: {x: -0.0000006808403, y: 0.0044703367, z: 0.0000022711374, w: 0.01341101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.0000001420673, y: -0.9531568, z: -0.0000000909435, w: 0.3024766} + inSlope: {x: -0.00000067998764, y: 0, z: 0.0000022733755, w: 0} + outSlope: {x: -0.0000006795637, y: 0, z: 0.0000022731706, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.0000001420673, y: -0.9531568, z: -0.0000000909435, w: 0.3024766} + inSlope: {x: -0.0000006791374, y: -0.0017881411, z: 0.0000022742363, w: -0.004917388} + outSlope: {x: -0.00000067935053, y: -0.00089407054, z: 0.0000022739166, w: -0.004917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.0000001421341, y: -0.95337886, z: -0.00000009083906, w: 0.30177593} + inSlope: {x: -0.00000067977686, y: -0.005364423, z: 0.0000022760482, w: -0.018775482} + outSlope: {x: -0.00000067934815, y: -0.0062584714, z: 0.0000022754007, w: -0.018775415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.0000001423196, y: -0.95399415, z: -0.00000009054813, w: 0.29982513} + inSlope: {x: -0.0000006827587, y: -0.010728808, z: 0.000002276786, w: -0.035762694} + outSlope: {x: -0.00000068212165, y: -0.0125169875, z: 0.0000022767942, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.00000014260124, y: -0.9549244, z: -0.00000009010392, w: 0.2968491} + inSlope: {x: -0.00000068830343, y: -0.016093269, z: 0.0000022764746, w: -0.05096202} + outSlope: {x: -0.00000068809027, y: -0.016093269, z: 0.0000022767942, w: -0.051409055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.00000014295624, y: -0.95609015, z: -0.000000089539625, w: 0.29307267} + inSlope: {x: -0.00000069682994, y: -0.01788141, z: 0.000002276368, w: -0.059902724} + outSlope: {x: -0.0000006957616, y: -0.018775415, z: 0.0000022746544, w: -0.061690647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.00000014336202, y: -0.9574132, z: -0.00000008888853, w: 0.2887213} + inSlope: {x: -0.0000007059934, y: -0.020563548, z: 0.0000022725228, w: -0.06660802} + outSlope: {x: -0.00000070642227, y: -0.020563623, z: 0.0000022744496, w: -0.0683964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.00000014379631, y: -0.95881796, z: -0.00000008818422, w: 0.2840214} + inSlope: {x: -0.0000007172936, y: -0.021457693, z: 0.0000022716783, w: -0.07018454} + outSlope: {x: -0.0000007164409, y: -0.021457693, z: 0.0000022693337, w: -0.071972676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.00000014423763, y: -0.960233, z: -0.00000008746055, w: 0.27919996} + inSlope: {x: -0.00000072773855, y: -0.020563623, z: 0.000002266136, w: -0.07241971} + outSlope: {x: -0.00000072880437, y: -0.020563623, z: 0.0000022676284, w: -0.07018454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.00000014466488, y: -0.961591, z: -0.00000008675197, w: 0.27448624} + inSlope: {x: -0.000000740102, y: -0.019669551, z: 0.0000022635782, w: -0.06884343} + outSlope: {x: -0.0000007390362, y: -0.019669551, z: 0.0000022616596, w: -0.06884343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.00000014505795, y: -0.9628295, z: -0.000000086093124, w: 0.27011004} + inSlope: {x: -0.00000075054703, y: -0.01788141, z: 0.0000022571833, w: -0.061690867} + outSlope: {x: -0.00000075096796, y: -0.016987218, z: 0.0000022592988, w: -0.06213746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.00000014539708, y: -0.9638895, z: -0.00000008551914, w: 0.2663026} + inSlope: {x: -0.0000007611997, y: -0.014305026, z: 0.0000022547158, w: -0.051408686} + outSlope: {x: -0.00000076013936, y: -0.014305129, z: 0.0000022528134, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.00000014566304, y: -0.9647152, z: -0.00000008506536, w: 0.26329574} + inSlope: {x: -0.00000076887903, y: -0.009834776, z: 0.0000022481238, w: -0.036209855} + outSlope: {x: -0.0000007684527, y: -0.009834776, z: 0.0000022479107, w: -0.036209855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.00000014583672, y: -0.9652517, z: -0.000000084767244, w: 0.26132196} + inSlope: {x: -0.0000007748476, y: -0.005364423, z: 0.0000022439672, w: -0.018775482} + outSlope: {x: -0.00000077442127, y: -0.005364423, z: 0.0000022440738, w: -0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.00000014589898, y: -0.9654435, z: -0.000000084660044, w: 0.2606125} + inSlope: {x: -0.0000007782582, y: 0, z: 0.0000022407696, w: 0} + outSlope: {x: -0.00000077804503, y: 0, z: 0.0000022403433, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.00000014583672, y: -0.9652517, z: -0.000000084767244, w: 0.26132196} + inSlope: {x: -0.00000077847136, y: 0.005364423, z: 0.000002237892, w: 0.020563623} + outSlope: {x: -0.00000077931844, y: 0.005364385, z: 0.0000022421393, w: 0.018775348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.00000014566304, y: -0.9647152, z: -0.00000008506536, w: 0.26329574} + inSlope: {x: -0.00000077526835, y: 0.009834706, z: 0.0000022370234, w: 0.0362096} + outSlope: {x: -0.00000077612657, y: 0.009834776, z: 0.0000022410895, w: 0.036209855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.00000014539708, y: -0.9638895, z: -0.00000008551915, w: 0.2663026} + inSlope: {x: -0.0000007695185, y: 0.014305129, z: 0.0000022377853, w: 0.05006795} + outSlope: {x: -0.0000007690922, y: 0.013411058, z: 0.000002237359, w: 0.05006795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.0000001450591, y: -0.9628331, z: -0.00000008609118, w: 0.27009708} + inSlope: {x: -0.0000007616315, y: 0.01698734, z: 0.0000022383183, w: 0.0621379} + outSlope: {x: -0.00000076141833, y: 0.01788141, z: 0.000002238638, w: 0.061690867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.00000014466488, y: -0.961591, z: -0.00000008675197, w: 0.27448624} + inSlope: {x: -0.00000075225233, y: 0.019669551, z: 0.0000022414092, w: 0.06884343} + outSlope: {x: -0.0000007528918, y: 0.019669551, z: 0.0000022450329, w: 0.06884343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.00000014423898, y: -0.9602374, z: -0.000000087458304, w: 0.27918485} + inSlope: {x: -0.0000007411678, y: 0.020563623, z: 0.0000022446065, w: 0.07018454} + outSlope: {x: -0.0000007424468, y: 0.021457693, z: 0.0000022482304, w: 0.07241971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.00000014379631, y: -0.95881796, z: -0.00000008818422, w: 0.2840214} + inSlope: {x: -0.0000007302965, y: 0.021457693, z: 0.0000022474844, w: 0.071972676} + outSlope: {x: -0.0000007296688, y: 0.021458037, z: 0.0000022482666, w: 0.07018567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.00000014336334, y: -0.9574175, z: -0.000000088886395, w: 0.28870702} + inSlope: {x: -0.0000007187973, y: 0.021458037, z: 0.0000022521035, w: 0.07018567} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: {x: -0.00000008514355, y: 0.113562375, z: 0.000000009732056, w: 0.99353087} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000021182009, y: -0.2768266, z: 0.00000021805245, w: 0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666851 + value: {x: -0.000000085309615, y: 0.09509124, z: 0.000000008149118, w: 0.99546856} + inSlope: {x: -0.0000021216115, y: -0.265986, z: 0.00000017969643, w: 0.025033975} + outSlope: {x: -0.0000021218173, y: -0.26587328, z: 0.00000017966914, w: 0.025033886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333535 + value: {x: -0.00000008543611, y: 0.07810928, z: 0.0000000066938006, w: 0.9969448} + inSlope: {x: -0.0000021250146, y: -0.22072287, z: 0.00000014750162, w: 0.016987279} + outSlope: {x: -0.0000021244894, y: -0.2206119, z: 0.00000014738225, w: 0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000196 + value: {x: -0.00000008551293, y: 0.06567497, z: 0.0000000056282037, w: 0.99784106} + inSlope: {x: -0.0000021251287, y: -0.12964022, z: 0.00000012873048, w: 0.0080466345} + outSlope: {x: -0.0000021255476, y: -0.12930448, z: 0.00000012875, w: 0.008940673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666688 + value: {x: -0.00000008553914, y: 0.060850646, z: 0.000000005214778, w: 0.9981469} + inSlope: {x: -0.000002125441, y: -0.03615385, z: 0.00000012647183, w: 0.002682202} + outSlope: {x: -0.000002125555, y: -0.036153976, z: 0.00000012646562, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333354 + value: {x: -0.000000085539135, y: 0.060850624, z: 0.000000005214777, w: 0.9981469} + inSlope: {x: -0.0000021261947, y: 0.00011175882, z: 0.00000012962977, w: 0} + outSlope: {x: -0.000002125441, y: 0, z: 0.00000012957601, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000224 + value: {x: -0.000000085539135, y: 0.06085068, z: 0.000000005214776, w: 0.9981469} + inSlope: {x: -0.0000021257606, y: 0, z: 0.00000012959599, w: 0} + outSlope: {x: -0.0000021254484, y: 0, z: 0.00000012957648, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666884 + value: {x: -0.00000008553914, y: 0.06085068, z: 0.0000000052147735, w: 0.9981469} + inSlope: {x: -0.0000021251287, y: 0, z: 0.00000012955648, w: 0} + outSlope: {x: -0.0000021254484, y: 0, z: 0.00000012957648, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333545 + value: {x: -0.000000085539135, y: 0.06085068, z: 0.0000000052147726, w: 0.9981469} + inSlope: {x: -0.0000021271537, y: 0, z: 0.0000001296764, w: 0} + outSlope: {x: -0.0000021244816, y: 0, z: 0.00000012951605, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000023 + value: {x: -0.000000085539135, y: 0.060850672, z: 0.0000000052147744, w: 0.9981469} + inSlope: {x: -0.0000021250146, y: 0, z: 0.00000012954936, w: 0} + outSlope: {x: -0.0000021264077, y: -0.00005587941, z: 0.0000001296231, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666689 + value: {x: -0.000000085539135, y: 0.060850665, z: 0.000000005214773, w: 0.9981469} + inSlope: {x: -0.0000021267274, y: 0.036153976, z: 0.00000013275394, w: -0.0017881411} + outSlope: {x: -0.0000021242686, y: 0.03615385, z: 0.00000013262023, w: -0.002682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333573 + value: {x: -0.00000008551292, y: 0.065675, z: 0.000000005628206, w: 0.99784106} + inSlope: {x: -0.0000021235226, y: 0.12885745, z: 0.00000015084561, w: -0.008940673} + outSlope: {x: -0.0000021251287, y: 0.12930495, z: 0.00000015101269, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.80000234 + value: {x: -0.00000008543645, y: 0.07806173, z: 0.0000000066897305, w: 0.99694854} + inSlope: {x: -0.0000021221445, y: 0.22083542, z: 0.00000018516539, w: -0.01698734} + outSlope: {x: -0.0000021203325, y: 0.2206119, z: 0.00000018508545, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666894 + value: {x: -0.000000085309615, y: 0.09509125, z: 0.00000000814912, w: 0.99546856} + inSlope: {x: -0.0000021163892, y: 0.26565072, z: 0.00000022508684, w: -0.025033975} + outSlope: {x: -0.0000021185056, y: 0.26609585, z: 0.00000022541829, w: -0.025033796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.933336 + value: {x: -0.000000085144116, y: 0.11350551, z: 0.000000009727186, w: 0.99353737} + inSlope: {x: -0.0000021139226, y: 0.26553705, z: 0.0000002645201, w: -0.03039818} + outSlope: {x: -0.0000021120193, y: 0.2653154, z: 0.00000026436211, w: -0.030398399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000026 + value: {x: -0.00000008496532, y: 0.13048105, z: 0.000000011181951, w: 0.9914508} + inSlope: {x: -0.0000021067967, y: 0.21949431, z: 0.00000029637653, w: -0.029504327} + outSlope: {x: -0.000002107756, y: 0.21949431, z: 0.00000029656306, w: -0.028610257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666692 + value: {x: -0.00000008481967, y: 0.14280224, z: 0.0000000122378605, w: 0.9897512} + inSlope: {x: -0.0000021050914, y: 0.12852263, z: 0.00000031496168, w: -0.018775482} + outSlope: {x: -0.0000021050914, y: 0.1280756, z: 0.00000031493505, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333358 + value: {x: -0.000000084759165, y: 0.14761336, z: 0.000000012650161, w: 0.98904514} + inSlope: {x: -0.0000021038124, y: 0.035986338, z: 0.0000003171333, w: -0.005364423} + outSlope: {x: -0.000002104665, y: 0.035986338, z: 0.00000031727984, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2000024 + value: {x: -0.000000084759165, y: 0.14761336, z: 0.000000012650161, w: 0.98904514} + inSlope: {x: -0.000002105198, y: 0, z: 0.0000003142023, w: 0} + outSlope: {x: -0.0000021088067, y: 0, z: 0.00000031473294, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666695 + value: {x: -0.00000008475916, y: 0.14761336, z: 0.000000012650159, w: 0.98904514} + inSlope: {x: -0.0000021045435, y: 0, z: 0.00000031410679, w: 0} + outSlope: {x: -0.0000021087153, y: 0.00022351764, z: 0.00000031473522, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333361 + value: {x: -0.00000008475916, y: 0.14761336, z: 0.000000012650159, w: 0.98904514} + inSlope: {x: -0.0000021067967, y: -0.16741471, z: 0.00000029980046, w: 0.025033975} + outSlope: {x: -0.0000021073297, y: -0.16786174, z: 0.00000029977383, w: 0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000027 + value: {x: -0.00000008502364, y: 0.12520066, z: 0.000000010729436, w: 0.9921314} + inSlope: {x: -0.0000021168155, y: -0.4807864, z: 0.00000022533996, w: 0.059902724} + outSlope: {x: -0.0000021167089, y: -0.48123345, z: 0.00000022515344, w: 0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666693 + value: {x: -0.00000008539927, y: 0.08341587, z: 0.000000007148565, w: 0.9965148} + inSlope: {x: -0.0000021245958, y: -0.4832451, z: 0.00000013621784, w: 0.040233172} + outSlope: {x: -0.0000021284175, y: -0.48346516, z: 0.00000013636341, w: 0.04112695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333364 + value: {x: -0.000000085539135, y: 0.06085065, z: 0.0000000052147717, w: 0.9981469} + inSlope: {x: -0.0000021256465, y: -0.16948102, z: 0.00000011502728, w: 0.01072877} + outSlope: {x: -0.000002129179, y: -0.16920285, z: 0.000000115227934, w: 0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.600003 + value: {x: -0.000000085539135, y: 0.06085066, z: 0.000000005214772, w: 0.9981469} + inSlope: {x: -0.0000021245958, y: 0.00022351764, z: 0.00000012954317, w: 0} + outSlope: {x: -0.0000021245842, y: 0, z: 0.0000001295223, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.000000085539135, y: 0.060850643, z: 0.0000000052147744, w: 0.9981469} + inSlope: {x: -0.0000021242645, y: 0, z: 0.00000012950233, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.7069958, y: -0.010781974, z: -0.012525201, w: 0.7070248} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00089406734, y: 0.11622875, z: 0.11578172, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.7070903, y: -0.0030791163, z: -0.0048054755, w: 0.70710015} + inSlope: {x: -0.00089406734, y: 0.11667579, z: 0.11265248, w: 0} + outSlope: {x: -0.00089407054, y: 0.11891138, z: 0.115782134, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.70710075, y: 0.0046522915, z: 0.0028918087, w: 0.70709157} + inSlope: {x: 0.00089407054, y: 0.05766755, z: 0.05766755, w: -0.00089407054} + outSlope: {x: 0, y: 0.056773275, z: 0.059008442, w: -0.00089406734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.70710075, y: 0.0046522915, z: 0.0028918087, w: 0.70709157} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.70710075, y: 0.0046522915, z: 0.0028918087, w: 0.70709157} + inSlope: {x: 0, y: -0.03486875, z: -0.035315786, w: 0} + outSlope: {x: 0, y: -0.037998, z: -0.03576282, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.7071042, y: -0.00008943677, z: -0.0018667579, w: 0.70710695} + inSlope: {x: 0, y: -0.07331378, z: -0.07018454, w: 0} + outSlope: {x: 0, y: -0.07331352, z: -0.068843186, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.70707583, y: -0.0048439205, z: -0.0066044033, w: 0.7070904} + inSlope: {x: 0, y: -0.06973725, z: -0.072866485, w: 0} + outSlope: {x: 0.0017881411, y: -0.071972676, z: -0.071078606, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.7070157, y: -0.009599328, z: -0.011342645, w: 0.7070418} + inSlope: {x: 0.00089407054, y: -0.07018454, z: -0.07152564, w: -0.00089407054} + outSlope: {x: 0.00089407054, y: -0.07063157, z: -0.071078606, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.7069236, y: -0.0143434405, z: -0.016086578, w: 0.70696145} + inSlope: {x: 0.0017881411, y: -0.071078606, z: -0.07241971, w: -0.00089407054} + outSlope: {x: 0.00089406734, y: -0.07063132, z: -0.07107835, w: -0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.7068, y: -0.019098312, z: -0.020824015, w: 0.706849} + inSlope: {x: 0.0017881347, y: -0.07018428, z: -0.07331352, w: -0.0017881347} + outSlope: {x: 0.0017881411, y: -0.07063157, z: -0.071972676, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.70664364, y: -0.023826003, z: -0.025585353, w: 0.7067054} + inSlope: {x: 0.0026822116, y: -0.07063157, z: -0.071078606, w: -0.0026822116} + outSlope: {x: 0.0026822116, y: -0.07152564, z: -0.07152564, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.706457, y: -0.028595507, z: -0.030302912, w: 0.7065284} + inSlope: {x: 0.0035762822, y: -0.07152564, z: -0.072866745, w: -0.0026822116} + outSlope: {x: 0.0017881411, y: -0.0697375, z: -0.072866745, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.70623696, y: -0.033317596, z: -0.035059005, w: 0.7063216} + inSlope: {x: 0.0035762822, y: -0.07018454, z: -0.07018454, w: -0.0026822116} + outSlope: {x: 0.0035762822, y: -0.071078606, z: -0.071972676, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.70598555, y: -0.03806156, z: -0.039802402, w: 0.7060818} + inSlope: {x: 0.0035762822, y: -0.07018454, z: -0.07152564, w: -0.0035762822} + outSlope: {x: 0.0035762566, y: -0.070631064, z: -0.070631064, w: -0.0035762566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.7057018, y: -0.04279381, z: -0.044550925, w: 0.70581084} + inSlope: {x: 0.005364385, y: -0.069737, z: -0.07152513, w: -0.0044703204} + outSlope: {x: 0.0044703525, y: -0.071078606, z: -0.07063157, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.70538765, y: -0.047536224, z: -0.049275637, w: 0.7055073} + inSlope: {x: 0.0044703525, y: -0.0697375, z: -0.07063157, w: -0.0044703525} + outSlope: {x: 0.0062584938, y: -0.07063157, z: -0.07063157, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.70504045, y: -0.05226031, z: -0.054015756, w: 0.705173} + inSlope: {x: 0.005364423, y: -0.07152564, z: -0.07241971, w: -0.005364423} + outSlope: {x: 0.005364423, y: -0.071078606, z: -0.07152564, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.7046622, y: -0.05699116, z: -0.058745712, w: 0.70480657} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.70504045, y: -0.05226031, z: -0.054015756, w: 0.705173} + inSlope: {x: -0.005364423, y: 0.071078606, z: 0.07018454, w: 0.005364423} + outSlope: {x: -0.005364385, y: 0.07197216, z: 0.0710781, w: 0.006258449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.70538765, y: -0.047536224, z: -0.049275637, w: 0.7055073} + inSlope: {x: -0.006258449, y: 0.0710781, z: 0.07018404, w: 0.005364385} + outSlope: {x: -0.0044703525, y: 0.071972676, z: 0.07152564, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.7057018, y: -0.04279381, z: -0.044550925, w: 0.70581084} + inSlope: {x: -0.0044703525, y: 0.071078606, z: 0.07063157, w: 0.005364423} + outSlope: {x: -0.0035762822, y: 0.07152564, z: 0.07152564, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.70598483, y: -0.038074583, z: -0.039815426, w: 0.7060811} + inSlope: {x: -0.0044703525, y: 0.07063157, z: 0.071972676, w: 0.0044703525} + outSlope: {x: -0.0035762822, y: 0.07018454, z: 0.07063157, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.70623696, y: -0.033317596, z: -0.035059005, w: 0.7063216} + inSlope: {x: -0.0035762822, y: 0.07152564, z: 0.071078606, w: 0.0035762822} + outSlope: {x: -0.0035762822, y: 0.071078606, z: 0.0697375, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.7064557, y: -0.028590977, z: -0.030332953, w: 0.70652866} + inSlope: {x: -0.0017881411, y: 0.07241971, z: 0.07063157, w: 0.0026822116} + outSlope: {x: -0.0026822116, y: 0.07241971, z: 0.07152564, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.70664364, y: -0.023826003, z: -0.025585353, w: 0.7067054} + inSlope: {x: -0.0026822116, y: 0.07063157, z: 0.07152564, w: 0.0017881411} + outSlope: {x: -0.0026822546, y: 0.07063271, z: 0.07197384, w: 0.0026822546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.70679945, y: -0.01911524, z: -0.020840913, w: 0.7068485} + inSlope: {x: -0.0026822546, y: 0.07018567, z: 0.07107975, w: 0.0017881698} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.00032573412, y: -0.0037216034, z: 0.08715506, w: 0.99618775} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0012179922, y: 0.00010477351, z: 0.3259993, w: -0.028610155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.00040684248, y: -0.0037136183, z: 0.10886604, w: 0.99404943} + inSlope: {x: -0.0012144997, y: 0.00013620556, z: 0.32521698, w: -0.035762694} + outSlope: {x: -0.0012158137, y: 0.0001327136, z: 0.32544166, w: -0.03576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.0004877571, y: -0.0037038648, z: 0.1305252, w: 0.991438} + inSlope: {x: -0.000607252, y: 0.00008032665, z: 0.16249731, w: -0.021457693} + outSlope: {x: -0.0006055036, y: 0.00008032636, z: 0.1620497, w: -0.021457616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.0004877571, y: -0.0037038648, z: 0.1305252, w: 0.991438} + inSlope: {x: 0.00000087311264, y: 0, z: -0.00022351684, w: 0} + outSlope: {x: -0.00000087311577, y: 0, z: 0.00022351764, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.0004877571, y: -0.0037038648, z: 0.1305252, w: 0.991438} + inSlope: {x: 0.00037238386, y: -0.000048894482, z: -0.099688865, w: 0.013411058} + outSlope: {x: 0.00037325697, y: -0.000048894482, z: -0.09991238, w: 0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.0004379886, y: -0.0037100755, z: 0.11720318, w: 0.99310094} + inSlope: {x: 0.00074738706, y: -0.00008381911, z: -0.20016004, w: 0.023245834} + outSlope: {x: 0.00074694783, y: -0.000087311266, z: -0.19993581, w: 0.02324575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.000388141, y: -0.0037156183, z: 0.10386006, w: 0.9945849} + inSlope: {x: 0.0007482575, y: -0.00007683391, z: -0.20027108, w: 0.020563548} + outSlope: {x: 0.00074869674, y: -0.00008032665, z: -0.20038356, w: 0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.0003382235, y: -0.0037204903, z: 0.09049819, w: 0.9958896} + inSlope: {x: 0.0007491333, y: -0.00006984926, z: -0.20060708, w: 0.018775482} + outSlope: {x: 0.0007491333, y: -0.00006984926, z: -0.20049532, w: 0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.00028824498, y: -0.0037246924, z: 0.07712001, w: 0.9970148} + inSlope: {x: 0.00075044297, y: -0.00006286433, z: -0.20094235, w: 0.016093269} + outSlope: {x: 0.0007495672, y: -0.000059371658, z: -0.20071812, w: 0.015199144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.0002382145, y: -0.0037282228, z: 0.063727915, w: 0.9979603} + inSlope: {x: 0.00075065857, y: -0.000052386757, z: -0.20094164, w: 0.01341101} + outSlope: {x: 0.0007510978, y: -0.000048894482, z: -0.20105411, w: 0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.00018814114, y: -0.0037310806, z: 0.05032435, w: 0.99872595} + inSlope: {x: 0.00075175264, y: -0.000041909556, z: -0.20122175, w: 0.010728846} + outSlope: {x: 0.0007508795, y: -0.00004540202, z: -0.20105411, w: 0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.00013803369, y: -0.0037332668, z: 0.036911704, w: 0.99931157} + inSlope: {x: 0.0007513161, y: -0.00003492463, z: -0.20110999, w: 0.0080466345} + outSlope: {x: 0.0007524075, y: -0.000027939705, z: -0.20138939, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.00008790158, y: -0.0037347798, z: 0.023492418, w: 0.99971706} + inSlope: {x: 0.00075262575, y: -0.000024447241, z: -0.20141733, w: 0.005364423} + outSlope: {x: 0.0007519709, y: -0.000020954778, z: -0.20124969, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.000037753493, y: -0.00373562, z: 0.0100689, w: 0.99994236} + inSlope: {x: 0.00075213466, y: -0.000013969852, z: -0.20127763, w: 0.0026822116} + outSlope: {x: 0.00075272954, y: -0.000010477314, z: -0.20144382, w: 0.0017881283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.000012401309, y: -0.003735786, z: -0.003356447, w: 0.99998736} + inSlope: {x: 0.0007529205, y: 0.000006984876, z: -0.20148574, w: -0.00089406414} + outSlope: {x: 0.0007521756, y: 0.000003492463, z: -0.20129159, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.00006255391, y: -0.0037352801, z: -0.016781185, w: 0.99985224} + inSlope: {x: 0.00075208006, y: 0.000013969852, z: -0.20127763, w: -0.0026822116} + outSlope: {x: 0.0007519709, y: 0.000020954778, z: -0.20124969, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.000112695234, y: -0.0037340987, z: -0.030202892, w: 0.9995368} + inSlope: {x: 0.00075175264, y: 0.000031432166, z: -0.20122175, w: -0.0062584938} + outSlope: {x: 0.0007525166, y: 0.000027939705, z: -0.20138939, w: -0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.00016281621, y: -0.0037322463, z: -0.04361914, w: 0.99904126} + inSlope: {x: 0.0000017462315, y: 0.000003492463, z: -0.00044703527, w: 0} + outSlope: {x: -0.0000015279526, y: 0.000003492463, z: 0.00039115586, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.00011269522, y: -0.0037340987, z: -0.030202886, w: 0.9995368} + inSlope: {x: -0.00075229834, y: -0.000017462315, z: 0.20136145, w: 0.0062584938} + outSlope: {x: -0.0007528387, y: -0.000020954629, z: 0.20155558, w: 0.006258449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.0000625539, y: -0.0037352801, z: -0.016781185, w: 0.99985224} + inSlope: {x: -0.000751529, y: -0.000010477314, z: 0.2012203, w: 0.0035762566} + outSlope: {x: -0.00075317145, y: -0.000003492463, z: 0.20164084, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.000012401295, y: -0.003735786, z: -0.0033564367, w: 0.99998736} + inSlope: {x: -0.0007503884, y: 0.000003492463, z: 0.20091441, w: 0} + outSlope: {x: -0.000750593, y: 0, z: 0.20096679, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.000037596867, y: -0.003735621, z: 0.010026947, w: 0.9999428} + inSlope: {x: -0.00075175264, y: 0.000003492463, z: 0.20129159, w: -0.0017881411} + outSlope: {x: -0.0007518618, y: 0.000003492463, z: 0.20129159, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.000087901586, y: -0.0037347798, z: 0.023492418, w: 0.99971706} + inSlope: {x: -0.0007516435, y: 0.000013969852, z: 0.20124969, w: -0.0044703525} + outSlope: {x: -0.0007529532, y: 0.000017462315, z: 0.20158496, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.0001378771, y: -0.0037332727, z: 0.03686979, w: 0.9993131} + inSlope: {x: -0.00075153436, y: 0.000020954778, z: 0.20116587, w: -0.0071525644} + outSlope: {x: -0.0007530623, y: 0.000027939705, z: 0.20155703, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.00018814117, y: -0.0037310806, z: 0.050324354, w: 0.99872595} + inSlope: {x: -0.0007508795, y: 0.00003492463, z: 0.20105411, w: -0.009834776} + outSlope: {x: -0.0007513282, y: 0.00003143267, z: 0.20105734, w: -0.010729019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.00023805798, y: -0.0037282323, z: 0.063686036, w: 0.997963} + inSlope: {x: -0.0007476174, y: 0.00004191023, z: 0.20016326, w: -0.012517189} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.000274092, y: 0.0024818662, z: -0.10977011, w: 0.9939539} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0004225865, y: 0.000045401855, z: 0.169314, w: 0.018775415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.0002458739, y: 0.0024848203, z: -0.09846915, w: 0.995137} + inSlope: {x: 0.00042389618, y: 0.000045401855, z: 0.16964927, w: 0.016987279} + outSlope: {x: 0.00042346114, y: 0.000041909556, z: 0.16964988, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.00021762405, y: 0.0024874536, z: -0.08715547, w: 0.9961916} + inSlope: {x: 0.00021282196, y: 0.000020954778, z: 0.08516022, w: 0.0080466345} + outSlope: {x: 0.00021107498, y: 0.000017462253, z: 0.08460112, w: 0.0071525387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.00021762405, y: 0.0024874536, z: -0.08715547, w: 0.9961916} + inSlope: {x: -0.00000021827816, y: 0, z: -0.00011175842, w: 0} + outSlope: {x: -0.0000013096736, y: 0, z: -0.00044703527, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.00021762405, y: 0.0024874536, z: -0.08715547, w: 0.9961916} + inSlope: {x: 0.0008803189, y: 0.000076834185, z: 0.3524873, w: 0.03129247} + outSlope: {x: 0.00088315655, y: 0.000076834185, z: 0.35371664, w: 0.030398399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.00009984448, y: 0.0024949585, z: -0.039986346, w: 0.9991971} + inSlope: {x: 0.0017691507, y: 0.000073341726, z: 0.708495, w: 0.028610257} + outSlope: {x: 0.0017683805, y: 0.00006984901, z: 0.7082131, w: 0.028610155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.000018158167, y: 0.002496889, z: 0.007272122, w: 0.99997044} + inSlope: {x: 0.0017693901, y: -0.000013969802, z: 0.7086252, w: -0.005364404} + outSlope: {x: 0.0017696146, y: -0.000010477389, z: 0.70869756, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.00013612017, y: 0.0024932423, z: 0.054514334, w: 0.9985099} + inSlope: {x: 0.0017667497, y: -0.0000942965, z: 0.70754504, w: -0.038445033} + outSlope: {x: 0.0017669679, y: -0.000097788965, z: 0.7077127, w: -0.038445033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.0002537782, y: 0.0024840257, z: 0.101634786, w: 0.9948186} + inSlope: {x: 0.001761511, y: -0.00018160808, z: 0.7054216, w: -0.07241971} + outSlope: {x: 0.0017597585, y: -0.00017811498, z: 0.7047486, w: -0.07152539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.00037086927, y: 0.0024692595, z: 0.14852813, w: 0.9889051} + inSlope: {x: 0.0017484081, y: -0.00026193378, z: 0.7002782, w: -0.105499946} + outSlope: {x: 0.0017514701, y: -0.0002654272, z: 0.7013983, w: -0.105500326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.00048713182, y: 0.0024489772, z: 0.19508971, w: 0.9807822} + inSlope: {x: 0.0008124342, y: -0.00016414576, z: 0.32544166, w: -0.065267146} + outSlope: {x: 0.0008089417, y: -0.0001606533, z: 0.32387704, w: -0.064373076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.0004794969, y: 0.0024504839, z: 0.19203202, w: 0.9813855} + inSlope: {x: -0.000115687835, y: 0.000024447241, z: -0.04626815, w: 0.009834776} + outSlope: {x: -0.00011437816, y: 0.000020954778, z: -0.045821115, w: 0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.00047185714, y: 0.002451966, z: 0.18897244, w: 0.98197925} + inSlope: {x: -0.00011481472, y: 0.000020954778, z: -0.046044633, w: 0.008940705} + outSlope: {x: -0.00011437816, y: 0.000020954778, z: -0.045821115, w: 0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.0004642131, y: 0.0024534245, z: 0.18591101, w: 0.98256344} + inSlope: {x: -0.00011437816, y: 0.000020954778, z: -0.045821115, w: 0.008940705} + outSlope: {x: -0.00011437735, y: 0.000020954629, z: -0.045820788, w: 0.008940641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.00045656424, y: 0.0024548597, z: 0.18284781, w: 0.9831381} + inSlope: {x: -0.00011394079, y: 0.000020954629, z: -0.04559727, w: 0.008046577} + outSlope: {x: -0.00011481472, y: 0.000020954778, z: -0.046044633, w: 0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.00044891116, y: 0.0024562709, z: 0.17978284, w: 0.9837032} + inSlope: {x: -0.00011481472, y: 0.000020954778, z: -0.046044633, w: 0.008940705} + outSlope: {x: -0.00011437816, y: 0.000020954778, z: -0.045821115, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.00044125362, y: 0.0024576578, z: 0.1767161, w: 0.9842587} + inSlope: {x: -0.00011481472, y: 0.000020954778, z: -0.046044633, w: 0.0080466345} + outSlope: {x: -0.000113941605, y: 0.000017462315, z: -0.045597598, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.00043359175, y: 0.0024590208, z: 0.17364764, w: 0.9848047} + inSlope: {x: -0.0009997175, y: 0.00017811562, z: -0.40032008, w: 0.07063157} + outSlope: {x: -0.00100321, y: 0.00017811562, z: -0.4018847, w: 0.07152564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.00030715577, y: 0.0024779914, z: 0.12301173, w: 0.9924021} + inSlope: {x: -0.0019020827, y: 0.00023748749, z: -0.76185983, w: 0.094771475} + outSlope: {x: -0.001905125, y: 0.00023399334, z: -0.76286024, w: 0.0947708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.00017991444, y: 0.0024904653, z: 0.07205332, w: 0.99739766} + inSlope: {x: -0.0019105818, y: 0.00013969751, z: -0.7652071, w: 0.055431977} + outSlope: {x: -0.0019147429, y: 0.00013620606, z: -0.7667772, w: 0.05543237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.000052201398, y: 0.0024964092, z: 0.020905998, w: 0.99977833} + inSlope: {x: -0.001912942, y: 0.000041909556, z: -0.76610667, w: 0.016093269} + outSlope: {x: -0.0019126146, y: 0.000038417093, z: -0.7659949, w: 0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.00007524896, y: 0.0024958216, z: -0.030136174, w: 0.9995427} + inSlope: {x: -0.0019149611, y: -0.000059371872, z: -0.76691693, w: -0.023245834} + outSlope: {x: -0.0019152885, y: -0.00005587941, z: -0.76705664, w: -0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.00020329979, y: 0.0024886653, z: -0.081418805, w: 0.99667686} + inSlope: {x: -0.0019099407, y: -0.00015716083, z: -0.7648773, w: -0.06258494} + outSlope: {x: -0.0019143063, y: -0.00015716083, z: -0.76666546, w: -0.06258494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.0003300224, y: 0.0024750498, z: -0.13216946, w: 0.991224} + inSlope: {x: -0.0008312062, y: -0.00011175882, z: -0.33281776, w: -0.044703525} + outSlope: {x: -0.0008290234, y: -0.00011175882, z: -0.3319237, w: -0.044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.00031434128, y: 0.00247709, z: -0.1258894, w: 0.9920411} + inSlope: {x: 0.00023923372, y: 0.000027939705, z: 0.09588906, w: 0.011622917} + outSlope: {x: 0.0002374913, y: 0.00003143267, z: 0.09499652, w: 0.012517189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.00029830125, y: 0.0024790731, z: -0.11946556, w: 0.9928352} + inSlope: {x: 0.00024098382, y: 0.00003143267, z: 0.09644941, w: 0.011623104} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.698784, y: -0.109232366, z: -0.10913235, w: 0.6984693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.035762694, y: 0.22977531, z: 0.22888124, w: 0.035762694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.7009994, y: -0.09396258, z: -0.09386936, w: 0.70068496} + inSlope: {x: 0.030398289, y: 0.23022233, z: 0.22932827, w: 0.030398289} + outSlope: {x: 0.030398399, y: 0.2293291, z: 0.22977613, w: 0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.7028812, y: -0.07864809, z: -0.078561574, w: 0.7025671} + inSlope: {x: 0.0125169875, y: 0.11757027, z: 0.11265288, w: 0.0125169875} + outSlope: {x: 0.012516943, y: 0.11354655, z: 0.11444062, w: 0.012516943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.7028812, y: -0.07864809, z: -0.078561574, w: 0.7025671} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.7028812, y: -0.07864809, z: -0.078561574, w: 0.7025671} + inSlope: {x: 0.016093269, y: 0.15422717, z: 0.15109792, w: 0.01698734} + outSlope: {x: 0.01698734, y: 0.15243903, z: 0.15512124, w: 0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.7048698, y: -0.058171928, z: -0.058093965, w: 0.7045563} + inSlope: {x: 0.025033975, y: 0.30711323, z: 0.30756027, w: 0.024139903} + outSlope: {x: 0.02682202, y: 0.30711213, z: 0.30711213, w: 0.025927952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.706262, y: -0.03764662, z: -0.03757772, w: 0.70594937} + inSlope: {x: 0.016093211, y: 0.3080062, z: 0.30711213, w: 0.015199144} + outSlope: {x: 0.01788141, y: 0.30711323, z: 0.30890137, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.7070567, y: -0.017088383, z: -0.01702863, w: 0.70674527} + inSlope: {x: 0.009834776, y: 0.31024247, z: 0.30845433, w: 0.005364423} + outSlope: {x: 0.0071525644, y: 0.30621916, z: 0.3093484, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.707253, y: 0.0034814477, z: 0.0035323799, w: 0.70694315} + inSlope: {x: 0.0071525644, y: 0.3004077, z: 0.31381875, w: -0.010728846} + outSlope: {x: 0.008046606, y: 0.3080062, z: 0.30845323, w: -0.010728808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.706851, y: 0.024050653, z: 0.024092853, w: 0.70654273} + inSlope: {x: -0.010728808, y: 0.30711213, z: 0.30890027, w: -0.010728808} + outSlope: {x: -0.008940705, y: 0.30890137, z: 0.3080073, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.7058511, y: 0.044599414, z: 0.044632047, w: 0.70554465} + inSlope: {x: -0.016093269, y: 0.2865496, z: 0.28610256, w: -0.01788141} + outSlope: {x: -0.018775482, y: 0.28431442, z: 0.2865496, w: -0.018775482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.7045184, y: 0.0621832, z: 0.062208086, w: 0.70421386} + inSlope: {x: -0.024139903, y: 0.26151562, z: 0.2624097, w: -0.024139903} + outSlope: {x: -0.022351762, y: 0.26419783, z: 0.2637508, w: -0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.7027478, y: 0.0797281, z: 0.07974535, w: 0.70244545} + inSlope: {x: -0.029504327, y: 0.26330376, z: 0.2637508, w: -0.029504327} + outSlope: {x: -0.030398399, y: 0.2624097, z: 0.26196265, w: -0.030398399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.7005405, y: 0.09722337, z: 0.09723276, w: 0.7002404} + inSlope: {x: -0.03486875, y: 0.2624097, z: 0.26151562, w: -0.03486875} + outSlope: {x: -0.037550695, y: 0.2619608, z: 0.26330188, w: -0.037550695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.69789743, y: 0.114658475, z: 0.114659905, w: 0.6975999} + inSlope: {x: -0.043809142, y: 0.2619608, z: 0.25972563, w: -0.043809142} + outSlope: {x: -0.042915385, y: 0.26151562, z: 0.26062155, w: -0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.6948209, y: 0.13202202, z: 0.13201556, w: 0.6945258} + inSlope: {x: -0.048279807, y: 0.26062155, z: 0.25928044, w: -0.04917388} + outSlope: {x: -0.05006795, y: 0.25838637, z: 0.2601745, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.6913122, y: 0.1493035, z: 0.14928928, w: 0.69102} + inSlope: {x: -0.05543237, y: 0.2588334, z: 0.25793934, w: -0.05543237} + outSlope: {x: -0.05632644, y: 0.25838637, z: 0.2588334, w: -0.05632644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.6873738, y: 0.16649222, z: 0.16647035, w: 0.68708456} + inSlope: {x: 0.059902724, y: -0.2458694, z: -0.24497533, w: 0.059008654} + outSlope: {x: 0.059902724, y: -0.2458694, z: -0.2472105, w: 0.059902724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.6976577, y: 0.11610803, z: 0.116108984, w: 0.6973603} + inSlope: {x: 0.12695801, y: -0.760854, z: -0.75995994, w: 0.12695801} + outSlope: {x: 0.1269571, y: -0.7612956, z: -0.7612956, w: 0.12516898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.7042537, y: 0.065110296, z: 0.06513393, w: 0.7039496} + inSlope: {x: 0.07152513, y: -0.76666, z: -0.767107, w: 0.069737} + outSlope: {x: 0.06258494, y: -0.76800656, z: -0.76800656, w: 0.078678206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.70712686, y: 0.013767123, z: 0.0138147175, w: 0.70681775} + inSlope: {x: 1.9168872, y: -0.48279807, z: -0.48503327, w: -1.8981117} + outSlope: {x: 1.9061583, y: -0.5006795, z: -0.5011265, w: -1.8882769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.7062706, y: -0.037485898, z: -0.037417233, w: 0.705958} + inSlope: {x: -0.028610257, y: -0.7773943, z: -0.76130104, w: -0.05185609} + outSlope: {x: -0.040233172, y: -0.7697947, z: -0.76890063, w: -0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.70166385, y: -0.08886215, z: -0.088771135, w: 0.70134944} + inSlope: {x: -0.094771475, y: -0.7648773, z: -0.76398325, w: -0.09745368} + outSlope: {x: -0.09834776, y: -0.7657714, z: -0.7657714, w: -0.096559614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.6933882, y: -0.13945109, z: -0.13933834, w: 0.69307363} + inSlope: {x: -0.06258494, y: -0.31471282, z: -0.31381875, w: -0.06347901} + outSlope: {x: -0.06258494, y: -0.3120306, z: -0.3120306, w: -0.06258494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.6950424, y: -0.13095418, z: -0.1308451, w: 0.6947277} + inSlope: {x: 0.024139903, y: 0.12919319, z: 0.12919319, w: 0.024139903} + outSlope: {x: 0.025034377, y: 0.1274071, z: 0.12785414, w: 0.025034377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.69661546, y: -0.122306645, z: -0.122201264, w: 0.6963008} + inSlope: {x: 0.023246208, y: 0.13098344, z: 0.13053639, w: 0.022352124} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.6795968, y: 0.16069704, z: -0.19237602, w: 0.6894318} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.005364404, y: 0.048279636, z: -0.05073832, w: -0.01966948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.67921895, y: 0.16393206, z: -0.19583163, w: 0.6880683} + inSlope: {x: 0.0044703367, y: 0.032633457, z: -0.036880277, w: -0.01341101} + outSlope: {x: 0.0044703525, y: 0.033527646, z: -0.035986338, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.6790701, y: 0.16515997, z: -0.19713926, w: 0.6875479} + inSlope: {x: 0.00089407054, y: 0.009834776, z: -0.0102818115, w: -0.0044703525} + outSlope: {x: 0.00089406734, y: 0.0084936395, z: -0.009611224, w: -0.0044703367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.6790701, y: 0.16515997, z: -0.19713926, w: 0.6875479} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.6790701, y: 0.16515997, z: -0.19713926, w: 0.6875479} + inSlope: {x: -0.00089407054, y: -0.0031292469, z: 0.0031292469, w: 0.0017881411} + outSlope: {x: 0, y: -0.0031292469, z: 0.0040233172, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.67912877, y: 0.16467848, z: -0.19662689, w: 0.6877521} + inSlope: {x: -0.0017881411, y: -0.0125169875, z: 0.014975681, w: 0.0062584938} + outSlope: {x: -0.00089406734, y: -0.012963976, z: 0.0143050775, w: 0.0044703367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.6792898, y: 0.16333902, z: -0.19519912, w: 0.688319} + inSlope: {x: -0.0035762694, y: -0.025927952, z: 0.026598504, w: 0.00983474} + outSlope: {x: -0.0026822116, y: -0.025928045, z: 0.026375081, w: 0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.6795281, y: 0.16129848, z: -0.19301929, w: 0.68917906} + inSlope: {x: -0.0035762822, y: -0.03486875, z: 0.038221516, w: 0.013411058} + outSlope: {x: -0.0044703525, y: -0.035315786, z: 0.036433373, w: 0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.6798183, y: 0.15871385, z: -0.19024992, w: 0.6902623} + inSlope: {x: -0.0044703525, y: -0.042021316, z: 0.044703525, w: 0.01698734} + outSlope: {x: -0.0044703367, y: -0.04157413, z: 0.046267983, w: 0.017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.68013537, y: 0.1557424, z: -0.18705386, w: 0.6914991} + inSlope: {x: -0.005364404, y: -0.04604447, z: 0.051408872, w: 0.01966948} + outSlope: {x: -0.005364423, y: -0.046491668, z: 0.049620915, w: 0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.6804576, y: 0.1525408, z: -0.18359604, w: 0.6928214} + inSlope: {x: -0.0071525644, y: -0.049620915, z: 0.052750163, w: 0.021457693} + outSlope: {x: -0.0026822116, y: -0.047385737, z: 0.052303124, w: 0.018775482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.6807659, y: 0.14926547, z: -0.18004292, w: 0.69416285} + inSlope: {x: -0.0044703525, y: -0.047832772, z: 0.052303124, w: 0.019669551} + outSlope: {x: -0.0044703525, y: -0.04917388, z: 0.052750163, w: 0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.68104607, y: 0.14607155, z: -0.17656317, w: 0.6954602} + inSlope: {x: -0.0044703525, y: -0.046491668, z: 0.050514985, w: 0.01788141} + outSlope: {x: -0.0026822116, y: -0.046491668, z: 0.04917388, w: 0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.68128717, y: 0.1431137, z: -0.17332733, w: 0.6966519} + inSlope: {x: -0.0017881411, y: -0.041127246, z: 0.046044633, w: 0.01698734} + outSlope: {x: -0.0044703204, y: -0.041573983, z: 0.04559727, w: 0.016987218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.6814824, y: 0.14054605, z: -0.17050806, w: 0.6976787} + inSlope: {x: -0.0017881283, y: -0.033527404, z: 0.037997726, w: 0.014305026} + outSlope: {x: -0.0026822116, y: -0.036209855, z: 0.037103925, w: 0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.6816269, y: 0.13852212, z: -0.16827902, w: 0.6984831} + inSlope: {x: -0.0035762822, y: -0.025033975, z: 0.02816322, w: 0.010728846} + outSlope: {x: 0, y: -0.02458694, z: 0.027269151, w: 0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.68171704, y: 0.13719544, z: -0.16681442, w: 0.699008} + inSlope: {x: 0, y: -0.0125169875, z: 0.014305129, w: 0.0044703525} + outSlope: {x: -0.0017881411, y: -0.012069952, z: 0.015646234, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.6817486, y: 0.13671899, z: -0.16628784, w: 0.699196} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.68171704, y: 0.13719544, z: -0.16681442, w: 0.699008} + inSlope: {x: 0.0017881411, y: 0.012964022, z: -0.014752164, w: -0.005364423} + outSlope: {x: -0.00089406414, y: 0.01296393, z: -0.013857994, w: -0.0035762566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.6816269, y: 0.13852212, z: -0.16827902, w: 0.6984831} + inSlope: {x: 0, y: 0.024586763, z: -0.027268955, w: -0.008940641} + outSlope: {x: 0.0035762822, y: 0.025033975, z: -0.02816322, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.6814824, y: 0.14054605, z: -0.17050806, w: 0.6976787} + inSlope: {x: 0.0026822116, y: 0.03486875, z: -0.038445033, w: -0.0125169875} + outSlope: {x: 0.0026822116, y: 0.033527646, z: -0.037998, w: -0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.68128794, y: 0.14310482, z: -0.17331791, w: 0.6966553} + inSlope: {x: 0.0026822116, y: 0.04157428, z: -0.045150563, w: -0.016093269} + outSlope: {x: 0.0035762822, y: 0.042021316, z: -0.046044633, w: -0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.68104607, y: 0.14607155, z: -0.17656317, w: 0.6954602} + inSlope: {x: 0.0026822116, y: 0.046491668, z: -0.04917388, w: -0.01788141} + outSlope: {x: 0.0044703525, y: 0.046491668, z: -0.050514985, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.6807668, y: 0.14925525, z: -0.18003196, w: 0.6941671} + inSlope: {x: 0.0044703525, y: 0.04917388, z: -0.052750163, w: -0.019669551} + outSlope: {x: 0.0035762822, y: 0.04872684, z: -0.052750163, w: -0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.6804576, y: 0.1525408, z: -0.18359604, w: 0.6928214} + inSlope: {x: 0.0035762822, y: 0.047385737, z: -0.052750163, w: -0.019669551} + outSlope: {x: 0.0062585943, y: 0.04917467, z: -0.05319805, w: -0.021458037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.6801364, y: 0.15573266, z: -0.18704343, w: 0.69150317} + inSlope: {x: 0.0044704247, y: 0.048280586, z: -0.051856924, w: -0.019669868} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.012504231, y: 0.037959475, z: -0.011497515, w: 0.9991349} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.13317412, y: 0.21692309, z: 0.12135567, w: -0.005364404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.003666603, y: 0.052439865, z: -0.0033648966, w: 0.9986116} + inSlope: {x: -0.09412154, y: 0.1574676, z: 0.08598413, w: -0.008046606} + outSlope: {x: -0.09404155, y: 0.15730053, z: 0.085855216, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.00000002908076, y: 0.058969922, z: 0.00000024288204, w: 0.9982598} + inSlope: {x: -0.027537005, y: 0.048950363, z: 0.025221344, w: -0.0026822116} + outSlope: {x: -0.027470425, y: 0.04889431, z: 0.025161264, w: -0.0035762694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.00000002908076, y: 0.058969922, z: 0.00000024288204, w: 0.9982598} + inSlope: {x: 0.000031727497, y: -0.00005587921, z: -0.000026859723, w: 0} + outSlope: {x: -0.000003991318, y: 0, z: 0.00001791891, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.00000002908076, y: 0.058969922, z: 0.00000024288204, w: 0.9982598} + inSlope: {x: 0.0059965327, y: 0.02453106, z: -0.016869348, w: -0.00089407054} + outSlope: {x: 0.0060106902, y: 0.02458694, z: -0.016909761, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.0007994514, y: 0.062247768, z: -0.002254022, w: 0.99805784} + inSlope: {x: 0.021733597, y: 0.08566313, z: -0.061023805, w: -0.0062584938} + outSlope: {x: 0.021759713, y: 0.08594222, z: -0.0611109, w: -0.005364404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.0028842033, y: 0.07041715, z: -0.008148046, w: 0.99748015} + inSlope: {x: 0.037641633, y: 0.1402568, z: -0.10584919, w: -0.010728808} + outSlope: {x: 0.037659228, y: 0.14059259, z: -0.10587751, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.005775577, y: 0.080971785, z: -0.016382368, w: 0.996565} + inSlope: {x: 0.046889808, y: 0.15746817, z: -0.13100927, w: -0.015199199} + outSlope: {x: 0.046896793, y: 0.15746817, z: -0.13095339, w: -0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.009073322, y: 0.091421545, z: -0.025631988, w: 0.995441} + inSlope: {x: 0.05098996, y: 0.13746335, z: -0.13592666, w: -0.01698734} + outSlope: {x: 0.050919928, y: 0.13723934, z: -0.13598205, w: -0.015199144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.012514132, y: 0.09932133, z: -0.034528065, w: 0.9943774} + inSlope: {x: 0.051841937, y: 0.08113661, z: -0.1201403, w: -0.01341101} + outSlope: {x: 0.05193991, y: 0.081360415, z: -0.120140724, w: -0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.015964549, y: 0.10227994, z: -0.04165745, w: 0.9937549} + inSlope: {x: 0.057192575, y: 0.008717188, z: -0.098906554, w: -0.0044703525} + outSlope: {x: 0.057220515, y: 0.008381912, z: -0.098794796, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.020139745, y: 0.10048418, z: -0.047708947, w: 0.99359006} + inSlope: {x: 0.07082715, y: -0.04637991, z: -0.09270394, w: -0.00089407054} + outSlope: {x: 0.07093891, y: -0.046603426, z: -0.09275982, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.025429655, y: 0.0961078, z: -0.054004636, w: 0.99357945} + inSlope: {x: 0.08323238, y: -0.080354586, z: -0.09275982, w: 0} + outSlope: {x: 0.08323238, y: -0.080354586, z: -0.0928157, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.031258725, y: 0.089792095, z: -0.0600582, w: 0.9936565} + inSlope: {x: 0.0868366, y: -0.10449449, z: -0.08566313, w: 0.0017881411} + outSlope: {x: 0.0867801, y: -0.104381986, z: -0.08577428, w: 0.00089406414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.03702723, y: 0.08220362, z: -0.06540416, w: 0.9937776} + inSlope: {x: 0.081080444, y: -0.118463494, z: -0.071748644, w: 0.0017881283} + outSlope: {x: 0.08119278, y: -0.118352585, z: -0.07186092, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.04210747, y: 0.07403108, z: -0.069608964, w: 0.99393207} + inSlope: {x: 0.0659377, y: -0.121593595, z: -0.051632572, w: 0.0026822116} + outSlope: {x: 0.0659377, y: -0.12170535, z: -0.05174433, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.045845296, y: 0.06597714, z: -0.07227422, w: 0.9941437} + inSlope: {x: 0.041015483, y: -0.11466455, z: -0.025928045, w: 0.0044703525} + outSlope: {x: 0.040736087, y: -0.11466455, z: -0.025592769, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.047565944, y: 0.05874554, z: -0.073031195, w: 0.99446106} + inSlope: {x: 0.011455279, y: -0.11226173, z: 0.013522817, w: 0.0071525644} + outSlope: {x: 0.0113993995, y: -0.11231761, z: 0.0136345755, w: 0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.047366913, y: 0.051004935, z: -0.07045448, w: 0.9950835} + inSlope: {x: -0.012405229, y: -0.12706977, z: 0.06549066, w: 0.0125169875} + outSlope: {x: -0.012461019, y: -0.1272365, z: 0.06571371, w: 0.009834706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.0458886, y: 0.041808013, z: -0.06428897, w: 0.9959986} + inSlope: {x: -0.030286422, y: -0.13936225, z: 0.10896406, w: 0.014305026} + outSlope: {x: -0.030230759, y: -0.13964264, z: 0.10930012, w: 0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.043295093, y: 0.032421444, z: -0.055931125, w: 0.9969685} + inSlope: {x: -0.044982925, y: -0.13243419, z: 0.1313166, w: 0.014305129} + outSlope: {x: -0.044982925, y: -0.13243419, z: 0.13137248, w: 0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.039849427, y: 0.024157198, z: -0.046786834, w: 0.99781734} + inSlope: {x: -0.055376492, y: -0.10622676, z: 0.13366355, w: 0.010728846} + outSlope: {x: -0.055376492, y: -0.10619882, z: 0.13377531, w: 0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.03587224, y: 0.018275226, z: -0.038116734, w: 0.998462} + inSlope: {x: -0.059902724, y: -0.059735086, z: 0.11583801, w: 0.0080466345} + outSlope: {x: -0.059958603, y: -0.059818905, z: 0.11611741, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.03185009, y: 0.01621316, z: -0.031334754, w: 0.9988698} + inSlope: {x: -0.06554654, y: 0.0040233172, z: 0.09343037, w: 0.005364423} + outSlope: {x: -0.06549066, y: 0.0040791966, z: 0.09370977, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.027141128, y: 0.018833874, z: -0.025643747, w: 0.9991251} + inSlope: {x: -0.07851057, y: 0.066133276, z: 0.08672484, w: 0.0035762822} + outSlope: {x: -0.078539774, y: 0.06613434, z: 0.08675417, w: 0.0035763397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.021391304, y: 0.02505424, z: -0.019747254, w: 0.99926203} + inSlope: {x: -0.0864189, y: 0.09312453, z: 0.088262945, w: 0.0008940849} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.68857735, y: -0.19594309, z: 0.16431612, w: 0.6785778} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.020563548, y: -0.052302938, z: 0.048279636, w: -0.0071525387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.6871974, y: -0.19939646, z: 0.16754395, w: 0.67818123} + inSlope: {x: 0.015199144, y: -0.035762694, z: 0.033527523, w: -0.0044703367} + outSlope: {x: 0.013411058, y: -0.035315786, z: 0.033527646, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.68667084, y: -0.20070346, z: 0.16876918, w: 0.67802525} + inSlope: {x: 0.0044703525, y: -0.009611258, z: 0.009834776, w: -0.00089407054} + outSlope: {x: 0.0044703367, y: -0.009611224, z: 0.00983474, w: -0.00089406734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.68667084, y: -0.20070346, z: 0.16876918, w: 0.67802525} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.68667084, y: -0.20070346, z: 0.16876918, w: 0.67802525} + inSlope: {x: -0.00089407054, y: 0.004246835, z: -0.0031292469, w: 0.0017881411} + outSlope: {x: -0.0026822116, y: 0.0035762822, z: -0.0031292469, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.6868775, y: -0.20019136, z: 0.16828883, w: 0.67808676} + inSlope: {x: -0.0062584938, y: 0.014975681, z: -0.013411058, w: 0.00089407054} + outSlope: {x: -0.005364404, y: 0.013634527, z: -0.01341101, w: 0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.6874511, y: -0.19876465, z: 0.16695231, w: 0.67825544} + inSlope: {x: -0.010728808, y: 0.026374986, z: -0.025480919, w: 0.0035762694} + outSlope: {x: -0.011622917, y: 0.025928045, z: -0.025033975, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.68832165, y: -0.19658607, z: 0.16491607, w: 0.6785056} + inSlope: {x: -0.014305129, y: 0.037550963, z: -0.034421716, w: 0.0044703525} + outSlope: {x: -0.015199199, y: 0.03665689, z: -0.035315786, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.68941814, y: -0.19381817, z: 0.16233703, w: 0.6788106} + inSlope: {x: -0.01788141, y: 0.04537408, z: -0.04157428, w: 0.005364423} + outSlope: {x: -0.018775415, y: 0.04582095, z: -0.040680062, w: 0.005364404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.6906702, y: -0.1906241, z: 0.15937209, w: 0.67914486} + inSlope: {x: -0.020563548, y: 0.0491737, z: -0.0464915, w: 0.005364404} + outSlope: {x: -0.019669551, y: 0.051409055, z: -0.046044633, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.6920091, y: -0.18716803, z: 0.15617764, w: 0.6794852} + inSlope: {x: -0.020563623, y: 0.052750163, z: -0.049620915, w: 0.005364423} + outSlope: {x: -0.020563623, y: 0.053197198, z: -0.04872684, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.69336784, y: -0.18361646, z: 0.15290916, w: 0.6798124} + inSlope: {x: -0.019669551, y: 0.052750163, z: -0.047385737, w: 0.0044703525} + outSlope: {x: -0.019669551, y: 0.053197198, z: -0.04872684, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.694682, y: -0.18013808, z: 0.14972204, w: 0.68011063} + inSlope: {x: -0.01788141, y: 0.050514985, z: -0.045597598, w: 0.0044703525} + outSlope: {x: -0.019669551, y: 0.05006795, z: -0.045597598, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.6958895, y: -0.17690381, z: 0.14677072, w: 0.6803684} + inSlope: {x: -0.016093269, y: 0.045150563, z: -0.042021316, w: 0.0026822116} + outSlope: {x: -0.016093154, y: 0.0460443, z: -0.04112695, w: 0.0035762566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.69693017, y: -0.17408535, z: 0.14420867, w: 0.680578} + inSlope: {x: -0.014305026, y: 0.037997726, z: -0.03442147, w: 0.0017881283} + outSlope: {x: -0.0125169875, y: 0.03665689, z: -0.035315786, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.69774544, y: -0.17185694, z: 0.14218909, w: 0.6807339} + inSlope: {x: -0.008940705, y: 0.029057292, z: -0.025033975, w: 0} + outSlope: {x: -0.010728846, y: 0.027269151, z: -0.025928045, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.69827765, y: -0.17039284, z: 0.14086506, w: 0.6808316} + inSlope: {x: -0.0062584938, y: 0.015646234, z: -0.013858093, w: 0.0017881411} + outSlope: {x: -0.0044703525, y: 0.014305129, z: -0.013411058, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.6984682, y: -0.16986632, z: 0.14038971, w: 0.68086576} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.69827765, y: -0.17039284, z: 0.14086506, w: 0.6808316} + inSlope: {x: 0.0044703525, y: -0.014305129, z: 0.013411058, w: -0.00089407054} + outSlope: {x: 0.006258449, y: -0.015646122, z: 0.013857994, w: -0.0017881283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.69774544, y: -0.17185694, z: 0.14218909, w: 0.6807339} + inSlope: {x: 0.01072877, y: -0.027268955, z: 0.02592786, w: -0.0017881283} + outSlope: {x: 0.008940705, y: -0.029057292, z: 0.025033975, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.69693017, y: -0.17408535, z: 0.14420867, w: 0.680578} + inSlope: {x: 0.0125169875, y: -0.03665689, z: 0.035315786, w: -0.0035762822} + outSlope: {x: 0.014305129, y: -0.037998, z: 0.034421716, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.69589305, y: -0.17689398, z: 0.14676198, w: 0.68036926} + inSlope: {x: 0.01698734, y: -0.04425649, z: 0.040233172, w: -0.0044703525} + outSlope: {x: 0.01788141, y: -0.046044633, z: 0.042021316, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.694682, y: -0.18013808, z: 0.14972204, w: 0.68011063} + inSlope: {x: 0.019669551, y: -0.05006795, z: 0.045597598, w: -0.0035762822} + outSlope: {x: 0.01788141, y: -0.04917388, z: 0.046491668, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.6933721, y: -0.18360543, z: 0.15289906, w: 0.67981327} + inSlope: {x: 0.019669551, y: -0.053197198, z: 0.04872684, w: -0.005364423} + outSlope: {x: 0.019669551, y: -0.05185609, z: 0.04917388, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.6920091, y: -0.18716803, z: 0.15617764, w: 0.6794852} + inSlope: {x: 0.020563623, y: -0.053197198, z: 0.04917388, w: -0.005364423} + outSlope: {x: 0.020563953, y: -0.05275101, z: 0.049621712, w: -0.0053645093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.69067425, y: -0.19061355, z: 0.15936261, w: 0.6791459} + inSlope: {x: 0.020563953, y: -0.051633403, z: 0.048280586, w: -0.0053645093} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.012478428, y: -0.026610674, z: -0.011514263, w: 0.99950165} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.13286678, y: -0.21169838, z: 0.121593155, w: -0.002682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.0036602824, y: -0.04073754, z: -0.0033683449, w: 0.9991575} + inSlope: {x: 0.09397835, y: -0.15355606, z: 0.08612034, w: -0.0062584714} + outSlope: {x: 0.093835495, y: -0.15350074, z: 0.08599143, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.00000005337545, y: -0.04710819, z: 0.00000023423031, w: 0.9988898} + inSlope: {x: 0.027504275, y: -0.047776893, z: 0.025250336, w: -0.0017881411} + outSlope: {x: 0.027425177, y: -0.047664963, z: 0.025188422, w: -0.002682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.00000005337545, y: -0.04710819, z: 0.00000023423031, w: 0.9988898} + inSlope: {x: -0.000023739454, y: 0.00005587921, z: -0.000026089781, w: 0} + outSlope: {x: 0.000007807149, y: 0, z: 0.000018320936, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.00000005337545, y: -0.04710819, z: 0.00000023423031, w: 0.9988898} + inSlope: {x: -0.005968035, y: -0.02453106, z: -0.01687476, w: -0.00089407054} + outSlope: {x: -0.005981507, y: -0.02464282, z: -0.016916173, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.00079635193, y: -0.050386436, z: -0.002255062, w: 0.9987269} + inSlope: {x: -0.021645412, y: -0.08583077, z: -0.06105524, w: -0.0044703525} + outSlope: {x: -0.021674147, y: -0.08594222, z: -0.06113884, w: -0.0044703367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.0028728407, y: -0.058558315, z: -0.0081517985, w: 0.99824655} + inSlope: {x: -0.03749495, y: -0.14042445, z: -0.10584919, w: -0.008940673} + outSlope: {x: -0.037512545, y: -0.14042495, z: -0.10591942, w: -0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.005752762, y: -0.06911943, z: -0.01638987, w: 0.99745715} + inSlope: {x: -0.04668026, y: -0.15769169, z: -0.13106515, w: -0.0125169875} + outSlope: {x: -0.046687245, y: -0.15746817, z: -0.13100927, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.009037772, y: -0.07958009, z: -0.02564377, w: 0.9964576} + inSlope: {x: -0.05078041, y: -0.13768686, z: -0.13606636, w: -0.015199199} + outSlope: {x: -0.05073832, y: -0.13746285, z: -0.13598205, w: -0.016093211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.012466444, y: -0.08749249, z: -0.034544393, w: 0.995488} + inSlope: {x: -0.05171621, y: -0.081360124, z: -0.12008442, w: -0.012516943} + outSlope: {x: -0.05174433, y: -0.081360415, z: -0.12025248, w: -0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.015907144, y: -0.09046099, z: -0.04167843, w: 0.99490035} + inSlope: {x: -0.057080816, y: -0.008381912, z: -0.098906554, w: -0.0062584938} + outSlope: {x: -0.057052877, y: -0.008717188, z: -0.098850675, w: -0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.020074593, y: -0.0886606, z: -0.047735464, w: 0.99471486} + inSlope: {x: -0.07077127, y: 0.046603426, z: -0.09270394, w: -0.00089407054} + outSlope: {x: -0.07079921, y: 0.046715185, z: -0.09287158, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.025357293, y: -0.084263824, z: -0.054037858, w: 0.994654} + inSlope: {x: -0.0831765, y: 0.0805781, z: -0.092927456, w: 0} + outSlope: {x: -0.08312062, y: 0.08091338, z: -0.0928157, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.031179955, y: -0.07792257, z: -0.06009853, w: 0.9946577} + inSlope: {x: -0.08658514, y: 0.10460625, z: -0.08577489, w: 0} + outSlope: {x: -0.0867801, y: 0.10494078, z: -0.08577428, w: 0.00089406414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.036942832, y: -0.07031376, z: -0.06545149, w: 0.9946896} + inSlope: {x: -0.081192195, y: 0.11868701, z: -0.07197216, w: 0.00089406414} + outSlope: {x: -0.08096926, y: 0.1185761, z: -0.07186092, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.042017873, y: -0.062136598, z: -0.06966293, w: 0.9947465} + inSlope: {x: -0.06588182, y: 0.121537715, z: -0.05174433, w: 0.00089407054} + outSlope: {x: -0.06588182, y: 0.121593595, z: -0.05174433, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.045750517, y: -0.054103885, z: -0.07233421, w: 0.9948606} + inSlope: {x: -0.040736087, y: 0.11416163, z: -0.025816286, w: 0.0026822116} + outSlope: {x: -0.040736087, y: 0.113938116, z: -0.025816286, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.047465753, y: -0.046928898, z: -0.07309641, w: 0.99508876} + inSlope: {x: -0.0113993995, y: 0.110808864, z: 0.013522817, w: 0.0071525644} + outSlope: {x: -0.011287641, y: 0.11086474, z: 0.0136345755, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.047260076, y: -0.03931504, z: -0.0705247, w: 0.99561393} + inSlope: {x: 0.012349349, y: 0.1245552, z: 0.06560242, w: 0.009834776} + outSlope: {x: 0.012516898, y: 0.124666065, z: 0.06560195, w: 0.009834706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.04577581, y: -0.030315895, z: -0.06436393, w: 0.996415} + inSlope: {x: 0.030230543, y: 0.13617714, z: 0.10907582, w: 0.013410962} + outSlope: {x: 0.03034252, y: 0.13645752, z: 0.108964846, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.04318097, y: -0.021157838, z: -0.056008734, w: 0.9972717} + inSlope: {x: 0.044871163, y: 0.12919319, z: 0.1313166, w: 0.013411058} + outSlope: {x: 0.044927046, y: 0.12908143, z: 0.13142836, w: 0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.039740495, y: -0.013110403, z: -0.046863493, w: 0.99802434} + inSlope: {x: 0.055208854, y: 0.10340484, z: 0.13366355, w: 0.008940705} + outSlope: {x: 0.055320613, y: 0.10333499, z: 0.13371943, w: 0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.035774235, y: -0.0073915487, z: -0.038188357, w: 0.9986026} + inSlope: {x: 0.059567448, y: 0.05806569, z: 0.11600565, w: 0.0071525644} + outSlope: {x: 0.059790965, y: 0.0581076, z: 0.11622917, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.031765502, y: -0.0053909738, z: -0.031398065, w: 0.99898744} + inSlope: {x: 0.065267146, y: -0.0040093474, z: 0.09365389, w: 0.0044703525} + outSlope: {x: 0.065378904, y: -0.0041071363, z: 0.09370977, w: 0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.027072472, y: -0.007950211, z: -0.02569481, w: 0.9992715} + inSlope: {x: 0.07828705, y: -0.064526744, z: 0.08692042, w: 0.0035762822} + outSlope: {x: 0.07828831, y: -0.06459764, z: 0.0869777, w: 0.0035763397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.02134091, y: -0.014020172, z: -0.01978348, w: 0.9994781} + inSlope: {x: 0.08613949, y: -0.0908055, z: 0.08843058, w: 0.0017881698} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.036893547, y: -0.006618211, z: 0.078961916, w: 0.9961727} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.01760195, y: -0.2216309, z: 0.008158364, w: -0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.035718642, y: -0.021388665, z: 0.079500295, w: 0.995965} + inSlope: {x: -0.012181668, y: -0.15288551, z: 0.0054761623, w: -0.0035762694} + outSlope: {x: -0.01218171, y: -0.15269049, z: 0.005476182, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.03527093, y: -0.026990201, z: 0.07969995, w: 0.995829} + inSlope: {x: -0.0034086439, y: -0.042049255, z: 0.0015646234, w: -0.00089407054} + outSlope: {x: -0.0033527524, y: -0.041909404, z: 0.001341101, w: -0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.03527093, y: -0.026990201, z: 0.07969995, w: 0.995829} + inSlope: {x: 0, y: 0.000027939604, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.03527093, y: -0.026990201, z: 0.07969995, w: 0.995829} + inSlope: {x: 0.0012852264, y: 0.016456485, z: -0.00044703527, w: 0.00089407054} + outSlope: {x: 0.0013411058, y: 0.016456485, z: -0.0006705529, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.03544654, y: -0.024794832, z: 0.079621986, w: 0.9958861} + inSlope: {x: 0.0050291466, y: 0.06224966, z: -0.0022351763, w: 0.0017881411} + outSlope: {x: 0.0049732495, y: 0.062361196, z: -0.0022351684, w: 0.00089406734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.0359345, y: -0.018682795, z: 0.07940296, w: 0.9960194} + inSlope: {x: 0.009275949, y: 0.11566996, z: -0.004023303, w: 0.0017881347} + outSlope: {x: 0.009220102, y: 0.115754195, z: -0.004246835, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.03667567, y: -0.009365119, z: 0.07906335, w: 0.9961506} + inSlope: {x: 0.012572867, y: 0.158474, z: -0.0058114585, w: 0.0017881411} + outSlope: {x: 0.012572867, y: 0.15848798, z: -0.005923217, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.0376105, y: 0.0024462629, z: 0.07862295, w: 0.9961917} + inSlope: {x: 0.01508744, y: 0.19062561, z: -0.007264323, w: 0} + outSlope: {x: 0.015031507, y: 0.19046079, z: -0.007264297, w: -0.00089406734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.038679697, y: 0.01603773, z: 0.078102484, w: 0.99606556} + inSlope: {x: 0.016652005, y: 0.21175426, z: -0.008158364, w: -0.0035762694} + outSlope: {x: 0.016596183, y: 0.21197854, z: -0.008270152, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.03982487, y: 0.03069409, z: 0.077524826, w: 0.99572176} + inSlope: {x: 0.017322617, y: 0.22253974, z: -0.008940705, w: -0.0062584938} + outSlope: {x: 0.017322617, y: 0.22245592, z: -0.008940705, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.04098891, y: 0.045699574, z: 0.07691571, w: 0.9951459} + inSlope: {x: 0.017154979, y: 0.22217652, z: -0.009275981, w: -0.009834776} + outSlope: {x: 0.017210858, y: 0.22245592, z: -0.009052464, w: -0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.04211636, y: 0.060339186, z: 0.0763042, w: 0.99436563} + inSlope: {x: 0.016205028, y: 0.21155944, z: -0.008940705, w: -0.013411058} + outSlope: {x: 0.016260907, y: 0.2113918, z: -0.008940705, w: -0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.04315351, y: 0.07390036, z: 0.07572247, w: 0.9934498} + inSlope: {x: 0.014472767, y: 0.18998998, z: -0.008270152, w: -0.015199199} + outSlope: {x: 0.014472663, y: 0.18998863, z: -0.008270093, w: -0.013410962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.044048272, y: 0.08567386, z: 0.075205505, w: 0.9925038} + inSlope: {x: 0.012013987, y: 0.15802583, z: -0.007040755, w: -0.012516898} + outSlope: {x: 0.011902314, y: 0.1579152, z: -0.007040805, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.044749822, y: 0.09495408, z: 0.07479018, w: 0.9916589} + inSlope: {x: 0.008661308, y: 0.11522334, z: -0.0052526644, w: -0.011622917} + outSlope: {x: 0.008661308, y: 0.11522334, z: -0.0051409057, w: -0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.045207944, y: 0.10103792, z: 0.07451415, w: 0.99105763} + inSlope: {x: 0.0046379906, y: 0.062026143, z: -0.0029057292, w: -0.0062584938} + outSlope: {x: 0.0046938704, y: 0.061914384, z: -0.0026822116, w: -0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.04537211, y: 0.10322247, z: 0.074414305, w: 0.99083245} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.045207944, y: 0.10103792, z: 0.07451415, w: 0.99105763} + inSlope: {x: -0.0046938704, y: -0.061914384, z: 0.0026822116, w: 0.0062584938} + outSlope: {x: -0.0046379576, y: -0.06213746, z: 0.0029057085, w: 0.006258449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.044749822, y: 0.09495408, z: 0.07479018, w: 0.9916589} + inSlope: {x: -0.008661246, y: -0.11522251, z: 0.005140869, w: 0.009834706} + outSlope: {x: -0.008661308, y: -0.1153351, z: 0.0052526644, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.044048272, y: 0.085673854, z: 0.075205505, w: 0.9925038} + inSlope: {x: -0.011846434, y: -0.15746817, z: 0.007040805, w: 0.014305129} + outSlope: {x: -0.011958193, y: -0.15757993, z: 0.007040805, w: 0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.043156557, y: 0.07394029, z: 0.07572074, w: 0.9934468} + inSlope: {x: -0.014416887, y: -0.18987823, z: 0.008270152, w: 0.013411058} + outSlope: {x: -0.014528646, y: -0.18998998, z: 0.008270152, w: 0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.04211636, y: 0.06033917, z: 0.0763042, w: 0.99436563} + inSlope: {x: -0.016205028, y: -0.2113918, z: 0.008940705, w: 0.0125169875} + outSlope: {x: -0.016260907, y: -0.2116712, z: 0.008940705, w: 0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.040992517, y: 0.045746252, z: 0.0769138, w: 0.9951438} + inSlope: {x: -0.017154979, y: -0.2222324, z: 0.009275981, w: 0.010728846} + outSlope: {x: -0.017210858, y: -0.22256768, z: 0.0091642225, w: 0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.03982487, y: 0.030694086, z: 0.077524826, w: 0.99572176} + inSlope: {x: -0.017322617, y: -0.2225118, z: 0.008940705, w: 0.0080466345} + outSlope: {x: -0.017322896, y: -0.2223198, z: 0.008940849, w: 0.0062585943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.03868319, y: 0.016082242, z: 0.07810075, w: 0.9960649} + inSlope: {x: -0.017155254, y: -0.21902287, z: 0.008493806, w: 0.0044704247} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.03816382, y: 0.05468334, z: -0.03004178, w: 0.9973218} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.02961598, y: -0.2214493, z: 0.022882536, w: 0.0143050775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.03618239, y: 0.039914075, z: -0.028524343, w: 0.9981404} + inSlope: {x: -0.021737011, y: -0.16121152, z: 0.016512306, w: 0.008940673} + outSlope: {x: -0.02162533, y: -0.16104445, z: 0.016484424, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.035269536, y: 0.03319498, z: -0.027856242, w: 0.9984379} + inSlope: {x: -0.006873167, y: -0.050514985, z: 0.005001207, w: 0.0017881411} + outSlope: {x: -0.0068172636, y: -0.050347168, z: 0.005029129, w: 0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.035269536, y: 0.03319498, z: -0.027856242, w: 0.9984379} + inSlope: {x: 0, y: 0.00005587921, z: 0, w: 0} + outSlope: {x: 0, y: 0.00005587941, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.035269536, y: 0.03319498, z: -0.027856242, w: 0.9984379} + inSlope: {x: -0.0031292469, y: -0.023804627, z: 0.002654272, w: 0.00089407054} + outSlope: {x: -0.0031292469, y: -0.023860507, z: 0.0026822116, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.034853492, y: 0.03001352, z: -0.02749977, w: 0.99856305} + inSlope: {x: -0.010896484, y: -0.08348384, z: 0.009303922, w: 0.0026822116} + outSlope: {x: -0.010952325, y: -0.08356736, z: 0.009275949, w: 0.0035762694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.03380494, y: 0.022056963, z: -0.026621493, w: 0.9988303} + inSlope: {x: -0.018216621, y: -0.13726728, z: 0.015003568, w: 0.0044703367} + outSlope: {x: -0.018160807, y: -0.13735159, z: 0.014975681, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.03242411, y: 0.011707794, z: -0.025507448, w: 0.99908006} + inSlope: {x: -0.02084302, y: -0.15528888, z: 0.016596183, w: 0.0026822116} + outSlope: {x: -0.020731261, y: -0.15528888, z: 0.016540304, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.03102374, y: 0.001353326, z: -0.02442502, w: 0.99921924} + inSlope: {x: -0.018663723, y: -0.13753669, z: 0.014249249, w: 0.0017881411} + outSlope: {x: -0.018635716, y: -0.13735808, z: 0.014277138, w: 0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.029933546, y: -0.0066145067, z: -0.02361407, w: 0.99925095} + inSlope: {x: -0.011483178, y: -0.08370007, z: 0.008521579, w: 0} + outSlope: {x: -0.011455279, y: -0.08365846, z: 0.00849367, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.029494368, y: -0.009802234, z: -0.023295011, w: 0.99924535} + inSlope: {x: -0.0016763823, y: -0.012139801, z: 0.0011734676, w: 0} + outSlope: {x: -0.0016484426, y: -0.012055982, z: 0.0011734676, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.029709088, y: -0.008229653, z: -0.023457842, w: 0.9992494} + inSlope: {x: 0.005951157, y: 0.043683726, z: -0.004526232, w: 0} + outSlope: {x: 0.0059790965, y: 0.043767545, z: -0.0045821113, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.0302886, y: -0.0039752307, z: -0.023899911, w: 0.99924743} + inSlope: {x: 0.010728846, y: 0.07875504, z: -0.0081304535, w: -0.00089407054} + outSlope: {x: 0.010672967, y: 0.078706145, z: -0.008270152, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.031134618, y: 0.002265782, z: -0.024553858, w: 0.99921095} + inSlope: {x: 0.013941912, y: 0.10326864, z: -0.010840605, w: -0.00089407054} + outSlope: {x: 0.014025631, y: 0.1033587, z: -0.010896406, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.032149203, y: 0.009798156, z: -0.025351591, w: 0.9991134} + inSlope: {x: 0.015757881, y: 0.11751355, z: -0.012405139, w: -0.0035762566} + outSlope: {x: 0.015813872, y: 0.117416605, z: -0.012489048, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.033236936, y: 0.017926633, z: -0.026220992, w: 0.9989426} + inSlope: {x: 0.016149148, y: 0.1211745, z: -0.012964022, w: -0.0026822116} + outSlope: {x: 0.016205028, y: 0.12114656, z: -0.012908143, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.034306183, y: 0.025956482, z: -0.027084004, w: 0.99870706} + inSlope: {x: 0.015255079, y: 0.11449691, z: -0.012209651, w: -0.0035762822} + outSlope: {x: 0.015255079, y: 0.11438515, z: -0.012237591, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.035269536, y: 0.03319498, z: -0.02785624, w: 0.9984379} + inSlope: {x: 0.014919802, y: 0.112541124, z: -0.011790555, w: -0.0044703525} + outSlope: {x: 0.01508744, y: 0.112597, z: -0.011762615, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.03631149, y: 0.040970467, z: -0.028662954, w: 0.9980888} + inSlope: {x: 0.0170991, y: 0.12762856, z: -0.013103721, w: -0.0071525644} + outSlope: {x: 0.017154856, y: 0.12790705, z: -0.013187446, w: -0.006258449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.037549697, y: 0.050212584, z: -0.02961654, w: 0.99759287} + inSlope: {x: 0.01860771, y: 0.13992104, z: -0.014444724, w: -0.008046577} + outSlope: {x: 0.018775482, y: 0.14008968, z: -0.014500706, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.038804397, y: 0.059632413, z: -0.030599874, w: 0.99699646} + inSlope: {x: 0.017657893, y: 0.13276947, z: -0.013886033, w: -0.008940705} + outSlope: {x: 0.017546134, y: 0.13276947, z: -0.013858093, w: -0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.039900426, y: 0.0679221, z: -0.031479426, w: 0.99639535} + inSlope: {x: 0.01413749, y: 0.10684143, z: -0.0113993995, w: -0.0080466345} + outSlope: {x: 0.01408161, y: 0.10661791, z: -0.01134352, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.04068177, y: 0.073869795, z: -0.032119498, w: 0.99592} + inSlope: {x: 0.008158393, y: 0.06157911, z: -0.0066496497, w: -0.005364423} + outSlope: {x: 0.007990755, y: 0.061690867, z: -0.0066496497, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.04097749, y: 0.076128826, z: -0.03236444, w: 0.9957298} + inSlope: {x: -0.00011175882, y: -0.0007823117, z: 0.00016763822, w: 0} + outSlope: {x: -0.00005587941, y: -0.0007823117, z: 0.00011175882, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.040669892, y: 0.07375529, z: -0.032100447, w: 0.99592954} + inSlope: {x: -0.008270152, y: -0.06347901, z: 0.007040805, w: 0.005364423} + outSlope: {x: -0.008270285, y: -0.063591786, z: 0.007040919, w: 0.0062585943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.039874867, y: 0.067654744, z: -0.031429805, w: 0.99641603} + inSlope: {x: -0.011958386, y: -0.09142018, z: 0.010058455, w: 0.0071526794} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.0077433265, y: 0.015768025, z: 0.008301531, w: 0.99981123} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.027115386, y: -0.22167282, z: 0.028093271, w: 0.0035762694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.009558273, y: 0.0009931962, z: 0.010163991, w: 0.9999022} + inSlope: {x: -0.019892998, y: -0.16131279, z: 0.020284152, w: 0} + outSlope: {x: -0.01983719, y: -0.16113177, z: 0.020214375, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.010401861, y: -0.0057247956, z: 0.010993356, w: 0.99986905} + inSlope: {x: -0.006328343, y: -0.05045212, z: 0.006230554, w: 0} + outSlope: {x: -0.0063143503, y: -0.05027732, z: 0.006202592, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.010401861, y: -0.0057247956, z: 0.010993356, w: 0.99986905} + inSlope: {x: 0, y: 0.000048894308, z: 0, w: 0} + outSlope: {x: 0.000013969852, y: 0.00006984926, z: -0.000027939705, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.010401861, y: -0.0057247956, z: 0.010993356, w: 0.99986905} + inSlope: {x: -0.007376082, y: -0.0714069, z: 0.009960504, w: -0.00089407054} + outSlope: {x: -0.0073900516, y: -0.07157454, z: 0.009974474, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.011388293, y: -0.015263234, z: 0.012322485, w: 0.9997427} + inSlope: {x: -0.02655669, y: -0.25032577, z: 0.034435686, w: -0.0035762822} + outSlope: {x: -0.026584534, y: -0.25060427, z: 0.034463502, w: -0.0044703367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.013967941, y: -0.03910954, z: 0.015565835, w: 0.99901605} + inSlope: {x: -0.045723163, y: -0.41155037, z: 0.05497117, w: -0.016987279} + outSlope: {x: -0.045765236, y: -0.41132832, z: 0.055013277, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.01755841, y: -0.07009015, z: 0.01960465, w: 0.9971934} + inSlope: {x: -0.055041216, y: -0.4645814, z: 0.05945569, w: -0.03486875} + outSlope: {x: -0.055152975, y: -0.46435788, z: 0.05951157, w: -0.03486875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.021407895, y: -0.10101844, z: 0.023431111, w: 0.9943782} + inSlope: {x: -0.05180021, y: -0.41037837, z: 0.05004001, w: -0.042915385} + outSlope: {x: -0.051772088, y: -0.4095946, z: 0.049928073, w: -0.0438093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.024538955, y: -0.124753214, z: 0.026222339, w: 0.9915376} + inSlope: {x: -0.032912854, y: -0.24866247, z: 0.029057188, w: -0.033974558} + outSlope: {x: -0.03296885, y: -0.24922216, z: 0.02919699, w: -0.032186538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.025831554, y: -0.13422969, z: 0.027300423, w: 0.9902373} + inSlope: {x: -0.004135076, y: -0.029951362, z: 0.0033807042, w: -0.0035762822} + outSlope: {x: -0.004135076, y: -0.029951362, z: 0.0033807042, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.02509034, y: -0.12875192, z: 0.026671495, w: 0.99100053} + inSlope: {x: 0.020060707, y: 0.14975682, z: -0.017406436, w: 0.020563623} + outSlope: {x: 0.020116586, y: 0.15065089, z: -0.017406436, w: 0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.023159787, y: -0.11421315, z: 0.024971452, w: 0.9928723} + inSlope: {x: 0.034673173, y: 0.26486838, z: -0.031376287, w: 0.03129247} + outSlope: {x: 0.034645233, y: 0.2645331, z: -0.031320408, w: 0.032186538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.020497283, y: -0.093453474, z: 0.022466697, w: 0.99515903} + inSlope: {x: 0.04246835, y: 0.33639404, z: -0.041183125, w: 0.033080608} + outSlope: {x: 0.042468045, y: 0.33661515, z: -0.04115489, w: 0.033974435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.017542511, y: -0.06933214, z: 0.01944613, w: 0.9972498} + inSlope: {x: 0.0440606, y: 0.3654487, z: -0.046323698, w: 0.026821924} + outSlope: {x: 0.044005033, y: 0.36522782, z: -0.04629609, w: 0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.014679836, y: -0.04473541, z: 0.01625142, w: 0.99875885} + inSlope: {x: 0.04030302, y: 0.3505874, z: -0.045932874, w: 0.01698734} + outSlope: {x: 0.04031699, y: 0.35053152, z: -0.045904934, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.0122195985, y: -0.022565806, z: 0.013283988, w: 0.99958247} + inSlope: {x: 0.032368146, y: 0.2924728, z: -0.039255284, w: 0.0071525644} + outSlope: {x: 0.032326236, y: 0.29244488, z: -0.039241314, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.010401866, y: -0.0057247938, z: 0.010993362, w: 0.99986905} + inSlope: {x: 0.024070054, y: 0.21890758, z: -0.029462418, w: 0.0026822116} + outSlope: {x: 0.024111964, y: 0.21883774, z: -0.029462418, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.009027966, y: 0.006633729, z: 0.009339913, w: 0.9998936} + inSlope: {x: 0.019641612, y: 0.17158471, z: -0.022589251, w: -0.00089407054} + outSlope: {x: 0.019669412, y: 0.1718559, z: -0.022617029, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.0077933273, y: 0.01716012, z: 0.00797298, w: 0.9997906} + inSlope: {x: 0.017182795, y: 0.14279881, z: -0.018258465, w: -0.00089406414} + outSlope: {x: 0.017224828, y: 0.14291158, z: -0.018286536, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.0067436267, y: 0.025668586, z: 0.0068989466, w: 0.99962395} + inSlope: {x: 0.014011761, y: 0.1109765, z: -0.0138091985, w: -0.0026822116} + outSlope: {x: 0.014004776, y: 0.11094856, z: -0.013795229, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.005929428, y: 0.03195839, z: 0.0061269803, w: 0.9994529} + inSlope: {x: 0.010121157, y: 0.07661067, z: -0.009296937, w: -0.0017881411} + outSlope: {x: 0.010107188, y: 0.07661067, z: -0.009289952, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.0053961156, y: 0.03589348, z: 0.005657889, w: 0.99932504} + inSlope: {x: 0.0054272874, y: 0.0396185, z: -0.0046799006, w: -0.00089407054} + outSlope: {x: 0.0054412573, y: 0.03973026, z: -0.0046868855, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.0052059134, y: 0.03724098, z: 0.0055018454, w: 0.9992776} + inSlope: {x: -0.0006426132, y: -0.007655479, z: 0.0011734676, w: 0} + outSlope: {x: -0.0006426132, y: -0.007823117, z: 0.0011944224, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.0054809498, y: 0.03486339, z: 0.005817204, w: 0.9993601} + inSlope: {x: -0.0074040215, y: -0.063590765, z: 0.008395881, w: 0.0026822116} + outSlope: {x: -0.0074041407, y: -0.06370355, z: 0.008416971, w: 0.0017881698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.006194521, y: 0.028753472, z: 0.0066215047, w: 0.99954534} + inSlope: {x: -0.010666153, y: -0.091643706, z: 0.012084116, w: 0.0026822546} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.7343685, y: 0.039908618, z: 0.08349976, w: 0.6724121} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.118016884, y: -0.49576032, z: -0.44144574, w: -0.045597434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.74156725, y: 0.0069233775, z: 0.053949922, w: 0.66866994} + inSlope: {x: -0.07063132, y: -0.3598621, z: -0.32387587, w: -0.05006777} + outSlope: {x: -0.06884343, y: -0.35829875, z: -0.32343, w: -0.047385737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.7444338, y: -0.0079500675, z: 0.040343538, w: 0.66642886} + inSlope: {x: -0.021457693, y: -0.11198233, z: -0.10259459, w: -0.01698734} + outSlope: {x: -0.020563548, y: -0.10907622, z: -0.099912025, w: -0.016987279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.7444338, y: -0.0079500675, z: 0.040343538, w: 0.66642886} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.7444338, y: -0.0079500675, z: 0.040343538, w: 0.66642886} + inSlope: {x: -0.0080466345, y: -0.05565589, z: -0.048279807, w: -0.0071525644} + outSlope: {x: -0.008940705, y: -0.054314785, z: -0.046491668, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.7455121, y: -0.015197888, z: 0.03409551, w: 0.6654458} + inSlope: {x: -0.027716186, y: -0.1888724, z: -0.16249731, w: -0.028610257} + outSlope: {x: -0.028610155, y: -0.18864821, z: -0.16383784, w: -0.02682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.7479713, y: -0.033245027, z: 0.018392697, w: 0.6626428} + inSlope: {x: -0.04023303, y: -0.3093473, z: -0.27134943, w: -0.051855903} + outSlope: {x: -0.039339103, y: -0.30867785, z: -0.27067986, w: -0.052750163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.7506581, y: -0.05653289, z: -0.0021861196, w: 0.65826416} + inSlope: {x: -0.03486875, y: -0.34645233, z: -0.30867785, w: -0.07152564} + outSlope: {x: -0.03576282, y: -0.3486875, z: -0.31113654, w: -0.07063157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.7527595, y: -0.079597965, z: -0.022936761, w: 0.65306294} + inSlope: {x: -0.023245834, y: -0.3042075, z: -0.27582076, w: -0.07331378} + outSlope: {x: -0.02324575, y: -0.30487695, z: -0.27559626, w: -0.07510166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.7539721, y: -0.09717001, z: -0.03900437, w: 0.6485081} + inSlope: {x: -0.011622875, y: -0.1844014, z: -0.16897872, w: -0.05006777} + outSlope: {x: -0.011622917, y: -0.18294919, z: -0.16719119, w: -0.05096202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.754358, y: -0.1041543, z: -0.045455262, w: 0.64655215} + inSlope: {x: -0.00089407054, y: -0.025257492, z: -0.024139903, w: -0.0080466345} + outSlope: {x: -0.0026822116, y: -0.025816286, z: -0.024139903, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.75419563, y: -0.10067939, z: -0.042302877, w: 0.6475053} + inSlope: {x: 0.0035762822, y: 0.09544203, z: 0.08672484, w: 0.025928045} + outSlope: {x: 0.0044703525, y: 0.098236, z: 0.08940705, w: 0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.7536801, y: -0.09125878, z: -0.033777446, w: 0.6499978} + inSlope: {x: 0.010728846, y: 0.17546134, z: 0.158474, w: 0.043809455} + outSlope: {x: 0.009834776, y: 0.17479078, z: 0.15802696, w: 0.045597598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.7527286, y: -0.07738243, z: -0.021287322, w: 0.6534207} + inSlope: {x: 0.01698734, y: 0.22910558, z: 0.20563622, w: 0.054538302} + outSlope: {x: 0.019669412, y: 0.23044503, z: 0.20652881, w: 0.05364385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.75126904, y: -0.060552105, z: -0.006244898, w: 0.6571828} + inSlope: {x: 0.026821924, y: 0.2637489, z: 0.23491535, w: 0.05453791} + outSlope: {x: 0.025928045, y: 0.26218617, z: 0.23335241, w: 0.05543237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.7493058, y: -0.042306855, z: 0.009950504, w: 0.6607964} + inSlope: {x: 0.033080608, y: 0.2711269, z: 0.24028145, w: 0.05006795} + outSlope: {x: 0.032186538, y: 0.2713504, z: 0.24072848, w: 0.05096202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.74695086, y: -0.024231449, z: 0.025925785, w: 0.6639314} + inSlope: {x: 0.038445033, y: 0.25592768, z: 0.2257528, w: 0.041127246} + outSlope: {x: 0.037550963, y: 0.25704527, z: 0.22754095, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.74443394, y: -0.007949933, z: 0.04034339, w: 0.6664288} + inSlope: {x: 0.042915385, y: 0.2510103, z: 0.22351763, w: 0.03665689} + outSlope: {x: 0.042915385, y: 0.25190437, z: 0.22485873, w: 0.03665689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.74123466, y: 0.009436339, z: 0.05592011, w: 0.668846} + inSlope: {x: 0.057220515, y: 0.28632608, z: 0.25682175, w: 0.03665689} + outSlope: {x: 0.055431977, y: 0.2845359, z: 0.2552553, w: 0.037550695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.73686385, y: 0.030091867, z: 0.07440877, w: 0.6712596} + inSlope: {x: 0.070631064, y: 0.31336948, z: 0.27917153, w: 0.032186307} + outSlope: {x: 0.07063157, y: 0.31404227, z: 0.2802911, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.73184687, y: 0.05121188, z: 0.0931205, w: 0.6731316} + inSlope: {x: 0.07420785, y: 0.2977255, z: 0.26330376, w: 0.023245834} + outSlope: {x: 0.07420785, y: 0.2988431, z: 0.26464486, w: 0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.7269868, y: 0.06986576, z: 0.10944237, w: 0.6742635} + inSlope: {x: 0.06705529, y: 0.24072848, z: 0.20831843, w: 0.0125169875} + outSlope: {x: 0.065267146, y: 0.23983441, z: 0.2092125, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.7232479, y: 0.083286956, z: 0.12105964, w: 0.6747743} + inSlope: {x: 0.040233172, y: 0.1367928, z: 0.11801731, w: 0.005364423} + outSlope: {x: 0.039339103, y: 0.139475, z: 0.120923035, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.7217725, y: 0.08839056, z: 0.12545092, w: 0.6749026} + inSlope: {x: 0.00089407054, y: -0.0026822116, z: -0.002458694, w: 0.00089407054} + outSlope: {x: -0.0017881411, y: -0.0026822116, z: -0.0022351763, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.7232885, y: 0.08299726, z: 0.12086722, w: 0.6748009} + inSlope: {x: -0.039339103, y: -0.1432748, z: -0.122487664, w: -0.0044703525} + outSlope: {x: -0.041127905, y: -0.14573584, z: -0.12383076, w: -0.0026822546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.7270482, y: 0.06916237, z: 0.109017015, w: 0.6743387} + inSlope: {x: -0.05453918, y: -0.20563953, z: -0.17635825, w: -0.008940849} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.043841403, y: 0.08292683, z: -0.07532633, w: 0.9927371} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.016707882, y: 0.22083463, z: 0.0097229825, w: -0.018775415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.044953518, y: 0.097637974, z: -0.07466798, w: 0.99139833} + inSlope: {x: -0.0113993585, y: 0.15221496, z: 0.0068172636, w: -0.015199144} + outSlope: {x: -0.011455279, y: 0.151992, z: 0.007040805, w: -0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.045372777, y: 0.1032126, z: -0.07441393, w: 0.9908335} + inSlope: {x: -0.0031851262, y: 0.041909557, z: 0.0018998999, w: -0.0035762822} + outSlope: {x: -0.0031292357, y: 0.04168589, z: 0.0020116514, w: -0.0044703367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.045372777, y: 0.1032126, z: -0.07441393, w: 0.9908335} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.045372777, y: 0.1032126, z: -0.07441393, w: 0.9908335} + inSlope: {x: 0.001229347, y: -0.016316786, z: -0.0007823117, w: 0.0017881411} + outSlope: {x: 0.001229347, y: -0.016205028, z: -0.0006705529, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.045208625, y: 0.101028055, z: -0.074513786, w: 0.99105865} + inSlope: {x: 0.0046379906, y: -0.061914384, z: -0.0027939703, w: 0.0062584938} + outSlope: {x: 0.0046938537, y: -0.06191416, z: -0.0029057187, w: 0.0062584714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.044750497, y: 0.09494421, z: -0.074789815, w: 0.9916599} + inSlope: {x: 0.008717156, y: -0.11533468, z: -0.005029129, w: 0.00983474} + outSlope: {x: 0.008661308, y: -0.11522334, z: -0.0052526644, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.044048946, y: 0.085663974, z: -0.075205155, w: 0.9925046} + inSlope: {x: 0.012014072, y: -0.15780345, z: -0.0069290465, w: 0.0125169875} + outSlope: {x: 0.011958193, y: -0.15802696, z: -0.007040805, w: 0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.043154188, y: 0.073890455, z: -0.075722136, w: 0.9934506} + inSlope: {x: 0.014528646, y: -0.18998998, z: -0.008270152, w: 0.013411058} + outSlope: {x: 0.014472715, y: -0.19010107, z: -0.008270123, w: 0.0143050775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.042117048, y: 0.06032929, z: -0.07630386, w: 0.9943663} + inSlope: {x: 0.01620497, y: -0.2115028, z: -0.008940673, w: 0.012516943} + outSlope: {x: 0.016205028, y: -0.21150357, z: -0.008940705, w: 0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.040989596, y: 0.045689654, z: -0.07691539, w: 0.9951464} + inSlope: {x: 0.017210858, y: -0.2225118, z: -0.0091642225, w: 0.010728846} + outSlope: {x: 0.017154979, y: -0.22217652, z: -0.009052464, w: 0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.03982556, y: 0.030684168, z: -0.07752451, w: 0.995722} + inSlope: {x: 0.017322617, y: -0.2223721, z: -0.008828946, w: 0.0062584938} + outSlope: {x: 0.017266737, y: -0.22253974, z: -0.008940705, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.038680397, y: 0.016027797, z: -0.07810219, w: 0.99606574} + inSlope: {x: 0.016596183, y: -0.21197854, z: -0.008270152, w: 0.0035762822} + outSlope: {x: 0.016596183, y: -0.21178296, z: -0.008158393, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.0376112, y: 0.0024363368, z: -0.078622654, w: 0.9961917} + inSlope: {x: 0.014975681, y: -0.1904475, z: -0.007264323, w: 0.00089407054} + outSlope: {x: 0.015031453, y: -0.19061027, z: -0.007264271, w: 0.00089406414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.03667638, y: -0.009375044, z: -0.079063065, w: 0.9961505} + inSlope: {x: 0.0125727765, y: -0.15858462, z: -0.005923175, w: -0.0017881283} + outSlope: {x: 0.012572867, y: -0.15837622, z: -0.0058114585, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.03593521, y: -0.018692724, z: -0.07940268, w: 0.99601924} + inSlope: {x: 0.009220102, y: -0.115670376, z: -0.004246835, w: -0.0026822116} + outSlope: {x: 0.009220102, y: -0.115670376, z: -0.004135076, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.03544725, y: -0.024804756, z: -0.07962172, w: 0.99588585} + inSlope: {x: 0.004973267, y: -0.06230554, z: -0.0021234176, w: -0.0017881411} + outSlope: {x: 0.004917388, y: -0.0622776, z: -0.0023469352, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.03527164, y: -0.027000133, z: -0.07969967, w: 0.99582875} + inSlope: {x: 0, y: -0.000027939705, z: 0, w: 0} + outSlope: {x: 0, y: 0.000027939705, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.03544725, y: -0.024804752, z: -0.07962172, w: 0.99588585} + inSlope: {x: -0.004917388, y: 0.0622776, z: 0.0023469352, w: 0.0017881411} + outSlope: {x: -0.0050291107, y: 0.06241685, z: 0.0021234022, w: 0.0017881283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.03593521, y: -0.018692723, z: -0.07940268, w: 0.99601924} + inSlope: {x: -0.009220037, y: 0.11569749, z: 0.0041350466, w: 0.0017881283} + outSlope: {x: -0.009275981, y: 0.11586595, z: 0.004246835, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.03667638, y: -0.009375044, z: -0.079063065, w: 0.9961505} + inSlope: {x: -0.0125169875, y: 0.15809682, z: 0.0058114585, w: 0.00089407054} + outSlope: {x: -0.012572867, y: 0.15812476, z: 0.005923217, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.037608042, y: 0.0023962865, z: -0.078624174, w: 0.9961918} + inSlope: {x: -0.01503156, y: 0.19044401, z: 0.0071525644, w: 0} + outSlope: {x: -0.01508744, y: 0.19045797, z: 0.0071525644, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.038680397, y: 0.016027808, z: -0.07810219, w: 0.99606574} + inSlope: {x: -0.016596183, y: 0.21178296, z: 0.008158393, w: -0.0026822116} + outSlope: {x: -0.016596183, y: 0.2120903, z: 0.008270152, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.039821923, y: 0.03063746, z: -0.077526376, w: 0.9957235} + inSlope: {x: -0.017322617, y: 0.22242798, z: 0.008828946, w: -0.0062584938} + outSlope: {x: -0.017378496, y: 0.22281913, z: 0.008940705, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.0409896, y: 0.045689657, z: -0.07691539, w: 0.9951464} + inSlope: {x: -0.017210858, y: 0.2222324, z: 0.009052464, w: -0.009834776} + outSlope: {x: -0.017155254, y: 0.22234774, z: 0.009164371, w: -0.010729019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.042113632, y: 0.060284853, z: -0.07630574, w: 0.994369} + inSlope: {x: -0.016764091, y: 0.2187714, z: 0.009276131, w: -0.013411273} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.026634324, y: -0.030717924, z: 0.02090991, w: 0.9989544} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.029867437, y: 0.22161694, z: 0.024055999, w: 0.0035762694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.028619222, y: -0.015943917, z: 0.022524152, w: 0.9992094} + inSlope: {x: -0.021597315, y: 0.16129534, z: 0.017713709, w: 0.002682202} + outSlope: {x: -0.021597391, y: 0.16110033, z: 0.017657893, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.029507337, y: -0.00922987, z: 0.023278793, w: 0.99925077} + inSlope: {x: -0.0066496497, y: 0.050403226, z: 0.0055879406, w: -0.00089407054} + outSlope: {x: -0.006677565, y: 0.05026335, z: 0.00561586, w: 0.00089406734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.029507337, y: -0.00922987, z: 0.023278793, w: 0.99925077} + inSlope: {x: 0, y: -0.000041909407, z: 0, w: 0} + outSlope: {x: 0, y: -0.000013969852, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.029507337, y: -0.00922987, z: 0.023278793, w: 0.99925077} + inSlope: {x: -0.0032968852, y: 0.023860507, z: 0.002374875, w: 0} + outSlope: {x: -0.0033248249, y: 0.023930356, z: 0.002374875, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.029946683, y: -0.006042191, z: 0.023597624, w: 0.9992546} + inSlope: {x: -0.011455279, y: 0.083609566, z: 0.008437791, w: 0} + outSlope: {x: -0.011539057, y: 0.08372103, z: 0.00843776, w: 0.00089406734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.031037312, y: 0.0019256151, z: 0.02440797, w: 0.99921834} + inSlope: {x: -0.018747475, y: 0.13738602, z: 0.014137439, w: 0} + outSlope: {x: -0.018691663, y: 0.1374581, z: 0.01410955, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.032438267, y: 0.012280011, z: 0.02548963, w: 0.9990732} + inSlope: {x: -0.02084302, y: 0.1552749, z: 0.016344726, w: -0.0026822116} + outSlope: {x: -0.021010658, y: 0.15530284, z: 0.016428545, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.03381969, y: 0.022629065, z: 0.026602922, w: 0.9988175} + inSlope: {x: -0.018216686, y: 0.13746335, z: 0.014891862, w: -0.0044703525} + outSlope: {x: -0.018216621, y: 0.13718346, z: 0.0148359295, w: -0.0044703367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.034868713, y: 0.030585466, z: 0.02748062, w: 0.9985457} + inSlope: {x: -0.011008204, y: 0.08356736, z: 0.009220069, w: -0.002682202} + outSlope: {x: -0.011008243, y: 0.08353972, z: 0.009248042, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.03528494, y: 0.03376681, z: 0.027836869, w: 0.9984187} + inSlope: {x: -0.0015646234, y: 0.012014072, z: 0.0014249249, w: 0} + outSlope: {x: -0.001508744, y: 0.012069952, z: 0.0013690455, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.035076834, y: 0.03219624, z: 0.02766611, w: 0.9984827} + inSlope: {x: 0.0058114585, y: -0.043641817, z: -0.0046938704, w: 0.0026822116} + outSlope: {x: 0.0058114585, y: -0.043753576, z: -0.00474975, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.034512613, y: 0.02794639, z: 0.02720574, w: 0.998643} + inSlope: {x: 0.0104494495, y: -0.078650266, z: -0.00852161, w: 0.0026822116} + outSlope: {x: 0.01039357, y: -0.078678206, z: -0.008465731, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.03368099, y: 0.02170972, z: 0.02653584, w: 0.9988445} + inSlope: {x: 0.013858093, y: -0.103237204, z: -0.011036183, w: 0.005364423} + outSlope: {x: 0.013690357, y: -0.103320286, z: -0.011064043, w: 0.0017881283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.032671187, y: 0.014179122, z: 0.025735835, w: 0.99903417} + inSlope: {x: 0.015757881, y: -0.11754149, z: -0.012433079, w: 0.0026821925} + outSlope: {x: 0.015757993, y: -0.117402636, z: -0.0124331685, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.03157485, y: 0.006048652, z: 0.02488116, w: 0.99917334} + inSlope: {x: 0.016372666, y: -0.1211745, z: -0.012740505, w: 0.0017881411} + outSlope: {x: 0.016372666, y: -0.12120244, z: -0.012768445, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.030487236, y: -0.0019864, z: 0.02404121, w: 0.99924403} + inSlope: {x: 0.015478596, y: -0.11451786, z: -0.012042012, w: 0.00089407054} + outSlope: {x: 0.015506536, y: -0.114528336, z: -0.012069952, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.029507335, y: -0.009229867, z: 0.023278799, w: 0.99925077} + inSlope: {x: 0.015199199, y: -0.112597, z: -0.012069952, w: -0.0017881411} + outSlope: {x: 0.01514332, y: -0.11261097, z: -0.012042012, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.028463107, y: -0.017007412, z: 0.022437748, w: 0.99919826} + inSlope: {x: 0.01707116, y: -0.12757269, z: -0.013886033, w: -0.00089407054} + outSlope: {x: 0.017098976, y: -0.12787911, z: -0.013941812, w: -0.0017881283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.027220242, y: -0.026252981, z: 0.021432059, w: 0.9990548} + inSlope: {x: 0.018859165, y: -0.1400328, z: -0.01522703, w: -0.0026821925} + outSlope: {x: 0.01891518, y: -0.14025731, z: -0.015227139, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.025942994, y: -0.03568143, z: 0.020416722, w: 0.9988178} + inSlope: {x: 0.018049048, y: -0.13304888, z: -0.014277189, w: -0.0026822116} + outSlope: {x: 0.018021109, y: -0.13288124, z: -0.014249249, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.024807971, y: -0.043984044, z: 0.019535787, w: 0.9985331} + inSlope: {x: 0.0146683445, y: -0.10695319, z: -0.01131558, w: -0.0044703525} + outSlope: {x: 0.0146683445, y: -0.10689731, z: -0.01134352, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.023986846, y: -0.04994438, z: 0.018911783, w: 0.9982848} + inSlope: {x: 0.008465731, y: -0.061690867, z: -0.006426132, w: -0.0026822116} + outSlope: {x: 0.00852161, y: -0.061690867, z: -0.006482011, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.023673564, y: -0.052208886, z: 0.0186764, w: 0.99818087} + inSlope: {x: -0.00013969852, y: 0.0007823117, z: 0.00005587941, w: 0} + outSlope: {x: -0.00011175882, y: 0.00094994996, z: 0.00005587941, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.024005758, y: -0.049828164, z: 0.018917097, w: 0.99829006} + inSlope: {x: -0.008912765, y: 0.06370252, z: 0.0065378905, w: 0.0026822116} + outSlope: {x: -0.008857029, y: 0.06375943, z: 0.006426235, w: 0.0026822546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.02485447, y: -0.043711524, z: 0.019543186, w: 0.9985438} + inSlope: {x: -0.01274071, y: 0.09186722, z: 0.009332011, w: 0.0026822546} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.015340766, y: -0.048314415, z: -0.016632333, w: 0.9985758} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0521353, y: 0.44256333, z: 0.05713649, w: 0.02324575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.011901848, y: -0.01879625, z: -0.012787489, w: 0.9996707} + inSlope: {x: -0.037299372, y: 0.32219952, z: 0.04223071, w: 0.008046606} + outSlope: {x: -0.037257597, y: 0.32189333, z: 0.042188954, w: 0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.010418072, y: -0.0053780964, z: -0.010978008, w: 0.999871} + inSlope: {x: -0.011175881, y: 0.10070866, z: 0.013564726, w: 0.00089407054} + outSlope: {x: -0.0111339325, y: 0.10042891, z: 0.013536738, w: 0.0017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.010418072, y: -0.0053780964, z: -0.010978008, w: 0.999871} + inSlope: {x: 0, y: -0.00009080371, z: -0.000013969802, w: 0} + outSlope: {x: 0, y: -0.000048894482, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.010418072, y: -0.0053780964, z: -0.010978008, w: 0.999871} + inSlope: {x: -0.0062724636, y: 0.047707044, z: 0.0056158807, w: 0} + outSlope: {x: -0.0062724636, y: 0.047818802, z: 0.0056298506, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.009581649, y: 0.0009954757, z: -0.010226059, w: 0.9999013} + inSlope: {x: -0.02168121, y: 0.16716151, z: 0.019976888, w: 0} + outSlope: {x: -0.021709071, y: 0.16736871, z: 0.020004757, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.0075345114, y: 0.016923986, z: -0.008301831, w: 0.99979395} + inSlope: {x: -0.034812745, y: 0.27461836, z: 0.03369516, w: -0.0035762694} + outSlope: {x: -0.03482684, y: 0.27467522, z: 0.033695284, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.004969036, y: 0.037613574, z: -0.005707755, w: 0.9992637} + inSlope: {x: -0.03792815, y: 0.31007484, z: 0.03942292, w: -0.010728846} + outSlope: {x: -0.037935134, y: 0.3101866, z: 0.03943689, w: -0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.0025148706, y: 0.058274414, z: -0.0030122215, w: 0.9982928} + inSlope: {x: -0.032238927, y: 0.27397674, z: 0.03610508, w: -0.016093269} + outSlope: {x: -0.0321969, y: 0.27380812, z: 0.036066536, w: -0.015199144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.0007047688, y: 0.074141815, z: -0.0008719533, w: 0.99724704} + inSlope: {x: -0.01894218, y: 0.1666318, z: 0.022525433, w: -0.012516943} + outSlope: {x: -0.018944865, y: 0.1666324, z: 0.022520274, w: -0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.0000000022726694, y: 0.08048143, z: -0.0000000023178797, w: 0.99675614} + inSlope: {x: -0.0025462129, y: 0.024139903, z: 0.0034135957, w: -0.0017881411} + outSlope: {x: -0.0025260933, y: 0.024028145, z: 0.003387809, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.00036665358, y: 0.07735179, z: -0.00041781712, w: 0.99700373} + inSlope: {x: 0.010205413, y: -0.087060116, z: -0.011572713, w: 0.0062584938} + outSlope: {x: 0.010223749, y: -0.087171875, z: -0.011591922, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.0013642547, y: 0.068879634, z: -0.0015417731, w: 0.9976229} + inSlope: {x: 0.018541485, y: -0.15679762, z: -0.020713799, w: 0.010728846} + outSlope: {x: 0.018527515, y: -0.15702114, z: -0.020699829, w: 0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.0028471416, y: 0.05643813, z: -0.003170507, w: 0.99839693} + inSlope: {x: 0.02462885, y: -0.20591561, z: -0.026811639, w: 0.010728846} + outSlope: {x: 0.024663597, y: -0.20619354, z: -0.026849864, w: 0.011622834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.004667023, y: 0.04140391, z: -0.005104689, w: 0.9991185} + inSlope: {x: 0.02846337, y: -0.23474771, z: -0.030062906, w: 0.009834706} + outSlope: {x: 0.028435634, y: -0.23447, z: -0.030035181, w: 0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.006661199, y: 0.025161237, z: -0.0071579297, w: 0.9996356} + inSlope: {x: 0.029657995, y: -0.24218135, z: -0.030586991, w: 0.005364423} + outSlope: {x: 0.029657995, y: -0.24223724, z: -0.030566037, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.00864644, y: 0.00910183, z: -0.009163751, w: 0.99987924} + inSlope: {x: 0.028009553, y: -0.22897984, z: -0.028777895, w: 0.0017881411} + outSlope: {x: 0.028023522, y: -0.2289519, z: -0.028763926, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.010418069, y: -0.005378092, z: -0.0109780105, w: 0.999871} + inSlope: {x: 0.026850056, y: -0.22508225, z: -0.028722016, w: -0.0017881411} + outSlope: {x: 0.026836086, y: -0.22510321, z: -0.028749956, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.012247401, y: -0.020923967, z: -0.0129814735, w: 0.99962175} + inSlope: {x: 0.029727845, y: -0.2550057, z: -0.033136487, w: -0.005364423} + outSlope: {x: 0.029769542, y: -0.2555906, z: -0.033150222, w: -0.007152513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.014410074, y: -0.039398838, z: -0.015374035, w: 0.9990013} + inSlope: {x: 0.032800976, y: -0.27967444, z: -0.03613975, w: -0.013410962} + outSlope: {x: 0.03287106, y: -0.28023523, z: -0.036237795, w: -0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.016659543, y: -0.05822909, z: -0.017780084, w: 0.9980058} + inSlope: {x: 0.031823322, y: -0.2653713, z: -0.033779103, w: -0.01788141} + outSlope: {x: 0.03190714, y: -0.26542717, z: -0.033807043, w: -0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.018692134, y: -0.07479825, z: -0.019857181, w: 0.99682575} + inSlope: {x: 0.02629126, y: -0.21345934, z: -0.026654478, w: -0.01698734} + outSlope: {x: 0.026235381, y: -0.21323583, z: -0.026654478, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.020183492, y: -0.086683474, z: -0.021321578, w: 0.9958033} + inSlope: {x: 0.015450656, y: -0.123269975, z: -0.015115379, w: -0.010728846} + outSlope: {x: 0.015394777, y: -0.1229347, z: -0.01514332, w: -0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.020756675, y: -0.09119658, z: -0.021872452, w: 0.9953763} + inSlope: {x: -0.00036321615, y: 0.0016763823, z: 0.00008381911, w: 0} + outSlope: {x: -0.00039115586, y: 0.0017881411, z: 0.00008381911, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.02013321, y: -0.08645121, z: -0.021313338, w: 0.9958246} + inSlope: {x: -0.016512364, y: 0.12718153, z: 0.015115379, w: 0.010728846} + outSlope: {x: -0.016568512, y: 0.12707181, z: 0.015115623, w: 0.011623104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.018557953, y: -0.07425265, z: -0.019852065, w: 0.99686915} + inSlope: {x: -0.02372119, y: 0.18306388, z: 0.02182126, w: 0.015199443} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.65027606, y: -0.025987938, z: -0.09390099, w: 0.75342435} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.12427536, y: 0.43988112, z: 0.49486625, w: -0.029504221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.6578315, y: 0.003328681, z: -0.06076321, w: 0.7507026} + inSlope: {x: -0.07241946, y: 0.3198526, z: 0.3625443, w: -0.03755083} + outSlope: {x: -0.07420785, y: 0.31806558, z: 0.3623221, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.66070545, y: 0.016548634, z: -0.045551434, w: 0.7490792} + inSlope: {x: -0.020563623, y: 0.099688865, z: 0.113993995, w: -0.0125169875} + outSlope: {x: -0.01966948, y: 0.09924147, z: 0.11444062, w: -0.0143050775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.66070545, y: 0.016548634, z: -0.045551434, w: 0.7490792} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.66070545, y: 0.016548634, z: -0.045551434, w: 0.7490792} + inSlope: {x: -0.011622917, y: 0.047609255, z: 0.05185609, w: -0.0071525644} + outSlope: {x: -0.010728846, y: 0.048950363, z: 0.053644232, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.66215366, y: 0.023013785, z: -0.038527235, w: 0.7480231} + inSlope: {x: -0.03576282, y: 0.16897933, z: 0.18417853, w: -0.027716186} + outSlope: {x: -0.03665676, y: 0.16942576, z: 0.18507193, w: -0.028610155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.66544324, y: 0.039085567, z: -0.020874187, w: 0.74513215} + inSlope: {x: -0.052749973, y: 0.2762668, z: 0.30577102, w: -0.05453811} + outSlope: {x: -0.052750163, y: 0.27582076, z: 0.30487806, w: -0.052750163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.6690062, y: 0.05977373, z: 0.0022543967, w: 0.74084586} + inSlope: {x: -0.047385737, y: 0.30867785, z: 0.34712288, w: -0.06884343} + outSlope: {x: -0.048279807, y: 0.30890137, z: 0.34824046, w: -0.06794936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.6717558, y: 0.08021417, z: 0.025560021, w: 0.7359731} + inSlope: {x: -0.03129247, y: 0.2700093, z: 0.30957192, w: -0.0697375} + outSlope: {x: -0.030398289, y: 0.2709024, z: 0.30979434, w: -0.067949116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.67331314, y: 0.0957578, z: 0.043589905, w: 0.7318331} + inSlope: {x: -0.012516943, y: 0.16227321, z: 0.18842469, w: -0.0464915} + outSlope: {x: -0.014305129, y: 0.1622738, z: 0.18931943, w: -0.045597598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.67379946, y: 0.10192968, z: 0.050823316, w: 0.7300832} + inSlope: {x: -0.00089407054, y: 0.023022316, z: 0.02816322, w: -0.0080466345} + outSlope: {x: -0.00089407054, y: 0.023245834, z: 0.026822116, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.6735394, y: 0.09886214, z: 0.04727617, w: 0.73098284} + inSlope: {x: 0.0071525644, y: -0.08560725, z: -0.09745368, w: 0.025033975} + outSlope: {x: 0.0071525644, y: -0.08560725, z: -0.09946535, w: 0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.6727539, y: 0.09053779, z: 0.03768678, w: 0.7333381} + inSlope: {x: 0.014305129, y: -0.15422717, z: -0.17702596, w: 0.042021316} + outSlope: {x: 0.01698734, y: -0.15445068, z: -0.17724948, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.6713733, y: 0.078259096, z: 0.023642808, w: 0.7365965} + inSlope: {x: 0.024139903, y: -0.20317753, z: -0.23223482, w: 0.053644232} + outSlope: {x: 0.024139732, y: -0.20407014, z: -0.23268019, w: 0.05185572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.66934824, y: 0.06333922, z: 0.0067364573, w: 0.7402133} + inSlope: {x: 0.035762563, y: -0.23335074, z: -0.2635254, w: 0.05364385} + outSlope: {x: 0.033080608, y: -0.23312889, z: -0.26330376, w: 0.053644232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.66673094, y: 0.04713367, z: -0.01145564, w: 0.7437183} + inSlope: {x: 0.042021316, y: -0.24184607, z: -0.27067986, w: 0.048279807} + outSlope: {x: 0.041127246, y: -0.24184607, z: -0.27179745, w: 0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.66372746, y: 0.031050429, z: -0.029386193, w: 0.7467517} + inSlope: {x: 0.045597598, y: -0.22910558, z: -0.25659823, w: 0.039339103} + outSlope: {x: 0.045597598, y: -0.22865854, z: -0.25525713, w: 0.040233172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.66070545, y: 0.016548663, z: -0.045551434, w: 0.7490791} + inSlope: {x: 0.047385737, y: -0.22463521, z: -0.25145733, w: 0.03129247} + outSlope: {x: 0.048279807, y: -0.22485873, z: -0.25190437, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.6572002, y: 0.0010701269, z: -0.062995255, w: 0.7510781} + inSlope: {x: 0.060796797, y: -0.25302196, z: -0.28677312, w: 0.029504327} + outSlope: {x: 0.06079636, y: -0.25436124, z: -0.2872181, w: 0.029504117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.6525587, y: -0.017304286, z: -0.08371672, w: 0.75290054} + inSlope: {x: 0.07420732, y: -0.27827746, z: -0.31336948, w: 0.023245668} + outSlope: {x: 0.07420785, y: -0.27895, z: -0.31337172, w: 0.024139903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.64721596, y: -0.036080778, z: -0.104729235, w: 0.7542157} + inSlope: {x: 0.080466345, y: -0.26553893, z: -0.2957138, w: 0.013411058} + outSlope: {x: 0.078678206, y: -0.26464486, z: -0.29504326, w: 0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.64198226, y: -0.05265802, z: -0.12309636, w: 0.75493926} + inSlope: {x: 0.0697375, y: -0.21345934, z: -0.2358111, w: 0.0080466345} + outSlope: {x: 0.07063157, y: -0.21301231, z: -0.23558758, w: 0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.63791764, y: -0.0645819, z: -0.1361914, w: 0.7552101} + inSlope: {x: 0.042915385, y: -0.12315822, z: -0.13589872, w: 0.0026822116} + outSlope: {x: 0.043809455, y: -0.12360525, z: -0.13589872, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.6363064, y: -0.069115445, z: -0.14114666, w: 0.75525814} + inSlope: {x: 0, y: 0.0017881411, z: 0.0006705529, w: 0.0017881411} + outSlope: {x: -0.00089407054, y: 0.002458694, z: 0.0022351763, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.63802564, y: -0.06431323, z: -0.13597497, w: 0.7551806} + inSlope: {x: -0.044703525, y: 0.12829912, z: 0.13902797, w: -0.0035762822} + outSlope: {x: -0.046492416, y: 0.12807767, z: 0.13947725, w: -0.0017881698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.6422475, y: -0.052001566, z: -0.12261407, w: 0.7548376} + inSlope: {x: -0.060797773, y: 0.18507558, z: 0.19960445, w: -0.0062585943} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -8.702843e-10, y: -0.70787495, z: -8.721734e-10, w: 0.70633775} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000000039108613, y: -0.052749973, z: 0.00000003906448, w: -0.052749973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -8.659614e-10, y: -0.7113576, z: -8.7646357e-10, w: 0.70283026} + inSlope: {x: 0.000000038903778, y: -0.035762694, z: 0.000000039286803, w: -0.035762694} + outSlope: {x: 0.000000038897255, y: -0.03576282, z: 0.00000003927945, w: -0.03665689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -8.6431706e-10, y: -0.712674, z: -8.7808555e-10, w: 0.70149535} + inSlope: {x: 0.00000003880233, y: -0.009834776, z: 0.000000039396024, w: -0.009834776} + outSlope: {x: 0.000000038791367, y: -0.00983474, z: 0.000000039385057, w: -0.00983474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -8.6431706e-10, y: -0.712674, z: -8.7808555e-10, w: 0.70149535} + inSlope: {x: 0.000000038782208, y: 0, z: 0.000000039399215, w: 0} + outSlope: {x: 0.00000003877985, y: 0, z: 0.000000039396856, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -8.6431706e-10, y: -0.712674, z: -8.7808555e-10, w: 0.70149535} + inSlope: {x: 0.00000003877069, y: 0.0044703525, z: 0.000000039399353, w: 0.0044703525} + outSlope: {x: 0.000000038774022, y: 0.0044703525, z: 0.000000039402686, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -8.649622e-10, y: -0.71215844, z: -8.7745206e-10, w: 0.7020188} + inSlope: {x: 0.00000003879151, y: 0.014305129, z: 0.00000003938603, w: 0.014305129} + outSlope: {x: 0.000000038788038, y: 0.015199144, z: 0.000000039386723, w: 0.015199144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -8.6675417e-10, y: -0.71072084, z: -8.7568003e-10, w: 0.70347416} + inSlope: {x: 0.000000038856317, y: 0.027716087, z: 0.00000003932594, w: 0.027716087} + outSlope: {x: 0.00000003885479, y: 0.027716186, z: 0.00000003932358, w: 0.027716186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -8.694814e-10, y: -0.7085239, z: -8.729713e-10, w: 0.70568675} + inSlope: {x: 0.000000038968032, y: 0.037550963, z: 0.000000039217, w: 0.03665689} + outSlope: {x: 0.000000038962202, y: 0.037550963, z: 0.000000039212004, w: 0.038445033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -8.7292545e-10, y: -0.70572937, z: -8.695301e-10, w: 0.7084815} + inSlope: {x: 0.000000039121243, y: 0.044703525, z: 0.000000039078778, w: 0.044703525} + outSlope: {x: 0.000000039091127, y: 0.045597434, z: 0.00000003905116, w: 0.045597434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -8.7687024e-10, y: -0.7024999, z: -8.6555274e-10, w: 0.7116838} + inSlope: {x: 0.000000039268485, y: 0.05006777, z: 0.000000038884625, w: 0.05006777} + outSlope: {x: 0.000000039296104, y: 0.05096202, z: 0.000000038913075, w: 0.05006795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -8.8110746e-10, y: -0.69900024, z: -8.61241e-10, w: 0.71512145} + inSlope: {x: 0.000000039486785, y: 0.053644232, z: 0.000000038726558, w: 0.052750163} + outSlope: {x: 0.000000039450146, y: 0.053644232, z: 0.000000038689922, w: 0.052750163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -8.8542357e-10, y: -0.6953982, z: -8.5679835e-10, w: 0.7186246} + inSlope: {x: 0.000000039661646, y: 0.053644232, z: 0.00000003850757, w: 0.05096202} + outSlope: {x: 0.000000039679133, y: 0.053644232, z: 0.00000003852422, w: 0.052750163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -8.896185e-10, y: -0.6918646, z: -8.524471e-10, w: 0.7220273} + inSlope: {x: 0.00000003987481, y: 0.05096202, z: 0.000000038328544, w: 0.04917388} + outSlope: {x: 0.00000003983734, y: 0.05096202, z: 0.000000038291905, w: 0.048279807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -8.934815e-10, y: -0.6885736, z: -8.4839297e-10, w: 0.72516644} + inSlope: {x: 0.000000040018026, y: 0.046491668, z: 0.000000038107054, w: 0.043809455} + outSlope: {x: 0.000000040049382, y: 0.04559727, z: 0.000000038135923, w: 0.043809142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -8.968296e-10, y: -0.68570226, z: -8.4485285e-10, w: 0.72788215} + inSlope: {x: 0.00000004020759, y: 0.038444757, z: 0.000000037967727, w: 0.03665663} + outSlope: {x: 0.00000004017457, y: 0.038445033, z: 0.00000003793469, w: 0.03576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -8.9945784e-10, y: -0.68342936, z: -8.4205515e-10, w: 0.73001665} + inSlope: {x: 0.00000004029114, y: 0.028610257, z: 0.000000037786478, w: 0.026822116} + outSlope: {x: 0.000000040304464, y: 0.028610257, z: 0.000000037798134, w: 0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -9.0117924e-10, y: -0.68193454, z: -8.4021284e-10, w: 0.73141325} + inSlope: {x: 0.000000040392727, y: 0.015199199, z: 0.000000037696548, w: 0.015199199} + outSlope: {x: 0.000000040398557, y: 0.015199199, z: 0.000000037699046, w: 0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -9.0179686e-10, y: -0.68139696, z: -8.3955043e-10, w: 0.7319141} + inSlope: {x: 0.00000004044269, y: 0, z: 0.000000037651585, w: 0} + outSlope: {x: 0.000000040441023, y: 0, z: 0.00000003764992, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -9.0117924e-10, y: -0.68193454, z: -8.4021284e-10, w: 0.73141325} + inSlope: {x: 0.00000004042187, y: -0.015199199, z: 0.00000003765325, w: -0.013411058} + outSlope: {x: 0.000000040504847, y: -0.01519909, z: 0.000000037728753, w: -0.01519909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -8.9945784e-10, y: -0.68342936, z: -8.4205515e-10, w: 0.73001665} + inSlope: {x: 0.000000040369123, y: -0.028610053, z: 0.000000037727087, w: -0.026821924} + outSlope: {x: 0.000000040441854, y: -0.028610257, z: 0.000000037794802, w: -0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -8.968296e-10, y: -0.68570226, z: -8.4485285e-10, w: 0.72788215} + inSlope: {x: 0.00000004025617, y: -0.038445033, z: 0.00000003783477, w: -0.03576282} + outSlope: {x: 0.000000040263664, y: -0.038445033, z: 0.00000003783977, w: -0.03665689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -8.9349717e-10, y: -0.688564, z: -8.483793e-10, w: 0.7251756} + inSlope: {x: 0.000000040129606, y: -0.047385737, z: 0.00000003799298, w: -0.043809455} + outSlope: {x: 0.000000040123776, y: -0.045597598, z: 0.000000037990482, w: -0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -8.896185e-10, y: -0.6918646, z: -8.524471e-10, w: 0.7220273} + inSlope: {x: 0.000000039952248, y: -0.05096202, z: 0.000000038161176, w: -0.048279807} + outSlope: {x: 0.00000004002802, y: -0.05096202, z: 0.000000038235285, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -8.854369e-10, y: -0.69538695, z: -8.5678775e-10, w: 0.7186355} + inSlope: {x: 0.000000039780716, y: -0.053644232, z: 0.000000038363517, w: -0.052750163} + outSlope: {x: 0.000000039843165, y: -0.053644232, z: 0.000000038426798, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -8.8110746e-10, y: -0.69900024, z: -8.61241e-10, w: 0.71512145} + inSlope: {x: 0.00000003958504, y: -0.053644232, z: 0.000000038562522, w: -0.052750163} + outSlope: {x: 0.00000003957985, y: -0.053645093, z: 0.00000003855815, w: -0.05275101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -8.768868e-10, y: -0.70248926, z: -8.6553587e-10, w: 0.71169436} + inSlope: {x: 0.000000039399158, y: -0.051856924, z: 0.000000038762987, w: -0.05096284} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -6.415634e-10, y: -0.71684456, z: -6.5960887e-10, w: 0.697233} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000000028736105, y: 0.050961837, z: 0.000000029640379, w: 0.052749973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -6.448154e-10, y: -0.7133895, z: -6.5643013e-10, w: 0.7007677} + inSlope: {x: 0.000000028898475, y: 0.035762694, z: 0.000000029486335, w: 0.03665676} + outSlope: {x: 0.000000028897745, y: 0.03486875, z: 0.000000029483111, w: 0.03576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -6.460468e-10, y: -0.71207446, z: -6.5521893e-10, w: 0.702104} + inSlope: {x: 0.000000028970188, y: 0.009834776, z: 0.000000029399844, w: 0.009834776} + outSlope: {x: 0.000000028976745, y: 0.00983474, z: 0.000000029405568, w: 0.00983474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -6.460468e-10, y: -0.71207446, z: -6.5521893e-10, w: 0.702104} + inSlope: {x: 0.000000028986737, y: 0, z: 0.000000029398906, w: 0} + outSlope: {x: 0.000000028985175, y: 0, z: 0.000000029396514, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -6.460468e-10, y: -0.71207446, z: -6.5521893e-10, w: 0.702104} + inSlope: {x: 0.000000028986841, y: -0.0044703525, z: 0.000000029391517, w: -0.0035762822} + outSlope: {x: 0.000000028989339, y: -0.0044703525, z: 0.00000002939235, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -6.455644e-10, y: -0.7125902, z: -6.5569417e-10, w: 0.7015805} + inSlope: {x: 0.00000002897685, y: -0.015199199, z: 0.000000029403175, w: -0.015199199} + outSlope: {x: 0.000000028977578, y: -0.0143050775, z: 0.000000029405568, w: -0.015199144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -6.4422023e-10, y: -0.7140239, z: -6.5701394e-10, w: 0.70012134} + inSlope: {x: 0.000000028926785, y: -0.027716087, z: 0.0000000294497, w: -0.027716087} + outSlope: {x: 0.000000028928554, y: -0.027716186, z: 0.000000029451469, w: -0.027716186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -6.421698e-10, y: -0.71620345, z: -6.5901673e-10, w: 0.69789153} + inSlope: {x: 0.00000002884612, y: -0.03665689, z: 0.000000029531405, w: -0.038445033} + outSlope: {x: 0.00000002884612, y: -0.03665689, z: 0.000000029533904, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -6.3956035e-10, y: -0.71895605, z: -6.615517e-10, w: 0.69505554} + inSlope: {x: 0.0000000287462, y: -0.044703525, z: 0.000000029649645, w: -0.045597598} + outSlope: {x: 0.000000028723615, y: -0.044703368, z: 0.00000002962789, w: -0.045597434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -6.3654365e-10, y: -0.72210974, z: -6.644546e-10, w: 0.69177854} + inSlope: {x: 0.00000002858456, y: -0.0491737, z: 0.000000029742797, w: -0.050961837} + outSlope: {x: 0.000000028617968, y: -0.04917388, z: 0.00000002977954, w: -0.05096202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -6.332762e-10, y: -0.7254945, z: -6.67568e-10, w: 0.68822795} + inSlope: {x: 0.000000028473085, y: -0.05096202, z: 0.000000029914432, w: -0.054538302} + outSlope: {x: 0.00000002844977, y: -0.05185609, z: 0.000000029889453, w: -0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -6.299147e-10, y: -0.72894347, z: -6.707443e-10, w: 0.6845739} + inSlope: {x: 0.000000028293227, y: -0.05096202, z: 0.000000030026012, w: -0.054538302} + outSlope: {x: 0.00000002832487, y: -0.05185609, z: 0.00000003005932, w: -0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -6.26615e-10, y: -0.7322929, z: -6.7382355e-10, w: 0.6809898} + inSlope: {x: 0.000000028173323, y: -0.048279807, z: 0.000000030200038, w: -0.05185609} + outSlope: {x: 0.000000028148344, y: -0.048279807, z: 0.000000030173393, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -6.2354544e-10, y: -0.7353825, z: -6.766661e-10, w: 0.67765224} + inSlope: {x: 0.000000028005125, y: -0.042915385, z: 0.000000030304122, w: -0.047385737} + outSlope: {x: 0.00000002803157, y: -0.043809142, z: 0.000000030332217, w: -0.0473854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -6.208673e-10, y: -0.738055, z: -6.7912354e-10, w: 0.6747406} + inSlope: {x: 0.00000002790334, y: -0.035762563, z: 0.00000003044962, w: -0.038444757} + outSlope: {x: 0.000000027879391, y: -0.03486875, z: 0.000000030423195, w: -0.039339103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -6.187466e-10, y: -0.7401553, z: -6.8105754e-10, w: 0.672436} + inSlope: {x: 0.000000027773643, y: -0.025928045, z: 0.000000030517285, w: -0.028610257} + outSlope: {x: 0.000000027774476, y: -0.026822116, z: 0.000000030517285, w: -0.029504327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -6.1735084e-10, y: -0.7415292, z: -6.823202e-10, w: 0.67092055} + inSlope: {x: 0.000000027692042, y: -0.013411058, z: 0.000000030578903, w: -0.015199199} + outSlope: {x: 0.000000027700368, y: -0.014305129, z: 0.000000030585564, w: -0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -6.1684796e-10, y: -0.7420221, z: -6.827746e-10, w: 0.6703754} + inSlope: {x: 0.000000027657903, y: 0, z: 0.000000030613872, w: 0} + outSlope: {x: 0.000000027662066, y: 0, z: 0.00000003061887, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -6.1735084e-10, y: -0.7415292, z: -6.823202e-10, w: 0.67092055} + inSlope: {x: 0.000000027677054, y: 0.014305129, z: 0.000000030620534, w: 0.016093269} + outSlope: {x: 0.000000027720986, y: 0.013410962, z: 0.00000003066528, w: 0.01519909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -6.187466e-10, y: -0.7401553, z: -6.8105754e-10, w: 0.672436} + inSlope: {x: 0.000000027722653, y: 0.026821924, z: 0.000000030568692, w: 0.029504117} + outSlope: {x: 0.000000027770312, y: 0.025928045, z: 0.000000030620534, w: 0.028610257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -6.208673e-10, y: -0.738055, z: -6.7912354e-10, w: 0.6747406} + inSlope: {x: 0.000000027809447, y: 0.03486875, z: 0.00000003049147, w: 0.039339103} + outSlope: {x: 0.000000027807783, y: 0.03576282, z: 0.000000030488142, w: 0.038445033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -6.2353545e-10, y: -0.73539156, z: -6.7667455e-10, w: 0.6776424} + inSlope: {x: 0.000000027921025, y: 0.042915385, z: 0.000000030386555, w: 0.046491668} + outSlope: {x: 0.00000002791936, y: 0.042915385, z: 0.00000003038489, w: 0.047385737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -6.26615e-10, y: -0.7322929, z: -6.7382355e-10, w: 0.6809898} + inSlope: {x: 0.000000028050922, y: 0.048279807, z: 0.00000003026082, w: 0.05185609} + outSlope: {x: 0.000000028104212, y: 0.048279807, z: 0.000000030316613, w: 0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -6.299071e-10, y: -0.72895414, z: -6.707519e-10, w: 0.6845625} + inSlope: {x: 0.000000028197471, y: 0.05185609, z: 0.000000030127595, w: 0.054538302} + outSlope: {x: 0.000000028249097, y: 0.05006795, z: 0.000000030180054, w: 0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -6.332762e-10, y: -0.7254945, z: -6.67568e-10, w: 0.68822795} + inSlope: {x: 0.000000028347351, y: 0.05185609, z: 0.00000002998271, w: 0.054538302} + outSlope: {x: 0.000000028350305, y: 0.05096284, z: 0.00000002998486, w: 0.05453918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -6.3653444e-10, y: -0.72212, z: -6.644642e-10, w: 0.6917678} + inSlope: {x: 0.000000028500189, y: 0.05096284, z: 0.000000029848298, w: 0.05275101} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.04255853, y: 0.9729779, z: 0.00956234, w: 0.22674096} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0006705505, y: 0.016987279, z: -0.0031292357, w: -0.07130187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.042605273, y: 0.9740867, z: 0.009351871, w: 0.2219291} + inSlope: {x: 0.00050291285, y: 0.011622875, z: -0.0022072287, w: -0.050514802} + outSlope: {x: 0.00050291466, y: 0.011622917, z: -0.0021932668, w: -0.050514985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.042622734, y: 0.9745011, z: 0.009271968, w: 0.22010225} + inSlope: {x: 0.00016763822, y: 0.0035762822, z: -0.0006146735, w: -0.01408161} + outSlope: {x: 0.00016763763, y: 0.0035762694, z: -0.0006845203, w: -0.015646178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.042622734, y: 0.9745011, z: 0.009271968, w: 0.22010225} + inSlope: {x: -0.0239163, y: -0.5686268, z: 0.1100541, w: 2.516129} + outSlope: {x: -0.024139903, y: -0.5722051, z: 0.110739015, w: 2.5320077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.036881067, y: 0.840452, z: 0.023290636, w: 0.5401276} + inSlope: {x: -0.05934393, y: -1.3768686, z: 0.09407298, w: 2.1439812} + outSlope: {x: -0.059120413, y: -1.3706101, z: 0.09357007, w: 2.1314642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.036863938, y: 0.84005487, z: 0.023317728, w: 0.54074496} + inSlope: {x: -0.00044703527, y: -0.009834776, z: 0.0006426132, w: 0.014305129} + outSlope: {x: -0.00050291285, y: -0.011622875, z: 0.0008102485, w: 0.018775415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.036816165, y: 0.83894706, z: 0.023393089, w: 0.5424622} + inSlope: {x: -0.00089406734, y: -0.020563548, z: 0.0013969803, w: 0.032186422} + outSlope: {x: -0.00089407054, y: -0.021457693, z: 0.0014528646, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.03674304, y: 0.8372515, z: 0.023507776, w: 0.54507554} + inSlope: {x: -0.001229347, y: -0.028610257, z: 0.001983719, w: 0.044703525} + outSlope: {x: -0.001229347, y: -0.028610257, z: 0.0018998999, w: 0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.03664985, y: 0.83509064, z: 0.023652803, w: 0.54838026} + inSlope: {x: -0.001508744, y: -0.03576282, z: 0.0023469352, w: 0.053644232} + outSlope: {x: -0.0014528594, y: -0.033974558, z: 0.0023189872, w: 0.052749973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.0365419, y: 0.832588, z: 0.023819244, w: 0.55217254} + inSlope: {x: -0.001620497, y: -0.038444895, z: 0.0025983832, w: 0.059008442} + outSlope: {x: -0.0017322616, y: -0.039339103, z: 0.0025704529, w: 0.059008654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.03642461, y: 0.82986933, z: 0.023998214, w: 0.55625015} + inSlope: {x: -0.0017881411, y: -0.041127246, z: 0.002738091, w: 0.061690867} + outSlope: {x: -0.0017322616, y: -0.042021316, z: 0.0027101513, w: 0.06258494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.036303572, y: 0.8270639, z: 0.02418093, w: 0.560413} + inSlope: {x: -0.0018440204, y: -0.042021316, z: 0.0027660306, w: 0.06258494} + outSlope: {x: -0.0018440204, y: -0.042021316, z: 0.0026822116, w: 0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.036184512, y: 0.8243048, z: 0.024358729, w: 0.5644634} + inSlope: {x: -0.0017322616, y: -0.040233172, z: 0.0025704529, w: 0.058114585} + outSlope: {x: -0.0017322616, y: -0.040233172, z: 0.0025704529, w: 0.059008654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.036073357, y: 0.8217291, z: 0.024523042, w: 0.5682064} + inSlope: {x: -0.0015646234, y: -0.03576282, z: 0.0022910556, w: 0.05185609} + outSlope: {x: -0.0016204913, y: -0.03665663, z: 0.0023469185, w: 0.05364385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.035976153, y: 0.819477, z: 0.024665419, w: 0.5714497} + inSlope: {x: -0.0012852172, y: -0.029504117, z: 0.0018719467, w: 0.04291508} + outSlope: {x: -0.0012852264, y: -0.03129247, z: 0.0019557793, w: 0.044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.03589907, y: 0.8176912, z: 0.024777478, w: 0.5740021} + inSlope: {x: -0.0010058293, y: -0.022351762, z: 0.0014249249, w: 0.032186538} + outSlope: {x: -0.00094994996, y: -0.022351762, z: 0.0014249249, w: 0.032186538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.03584831, y: 0.81651527, z: 0.024850864, w: 0.57567364} + inSlope: {x: -0.00055879407, y: -0.0125169875, z: 0.000754372, w: 0.01698734} + outSlope: {x: -0.00050291466, y: -0.011622917, z: 0.0007264323, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.03583004, y: 0.8160921, z: 0.024877196, w: 0.57627344} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.03584831, y: 0.81651527, z: 0.024850864, w: 0.57567364} + inSlope: {x: 0.00050291466, y: 0.011622917, z: -0.0007264323, w: -0.01698734} + outSlope: {x: 0.00055879005, y: 0.012516898, z: -0.0007543666, w: -0.016987218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.03589907, y: 0.8176912, z: 0.024777478, w: 0.5740021} + inSlope: {x: 0.00094994315, y: 0.022351604, z: -0.0014249147, w: -0.032186307} + outSlope: {x: 0.0010058293, y: 0.022351762, z: -0.0014249249, w: -0.032186538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.035976153, y: 0.819477, z: 0.024665419, w: 0.5714497} + inSlope: {x: 0.0012852264, y: 0.03129247, z: -0.0019557793, w: -0.044703525} + outSlope: {x: 0.0012852264, y: 0.029504327, z: -0.0018719601, w: -0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.036073025, y: 0.82172143, z: 0.024523528, w: 0.5682175} + inSlope: {x: 0.0015646234, y: 0.03576282, z: -0.0023189953, w: -0.052750163} + outSlope: {x: 0.0015646234, y: 0.03665689, z: -0.002263116, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.036184512, y: 0.8243048, z: 0.024358729, w: 0.5644634} + inSlope: {x: 0.0017322616, y: 0.040233172, z: -0.0025704529, w: -0.059008654} + outSlope: {x: 0.0017322616, y: 0.040233172, z: -0.0025704529, w: -0.058114585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.036303192, y: 0.82705516, z: 0.024181498, w: 0.5604258} + inSlope: {x: 0.0017881411, y: 0.042021316, z: -0.002738091, w: -0.061690867} + outSlope: {x: 0.0017322616, y: 0.041127246, z: -0.0027101513, w: -0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.03642461, y: 0.82986933, z: 0.023998214, w: 0.55625015} + inSlope: {x: 0.0017322616, y: 0.042021316, z: -0.0027101513, w: -0.06258494} + outSlope: {x: 0.0017881698, y: 0.041127905, z: -0.002738135, w: -0.061691858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.036541544, y: 0.83257973, z: 0.02381979, w: 0.552185} + inSlope: {x: 0.0017881698, y: 0.04023382, z: -0.0026543145, w: -0.060797773} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone21" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.020741217, y: 0.12703705, z: -0.0052689277, w: 0.9916671} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.011566996, y: 0.13880396, z: -0.0031571751, w: -0.016987279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.021508124, y: 0.13629404, z: -0.00548089, w: 0.99041975} + inSlope: {x: 0.008353941, y: 0.100806095, z: -0.002325972, w: -0.0143050775} + outSlope: {x: 0.008381912, y: 0.10102997, z: -0.0023329654, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.021855995, y: 0.14049779, z: -0.005582122, w: 0.989824} + inSlope: {x: 0.002654272, y: 0.031515986, z: -0.0007683419, w: -0.0044703525} + outSlope: {x: 0.0025983832, y: 0.031292357, z: -0.0007543693, w: -0.005364404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.021855995, y: 0.14049779, z: -0.005582122, w: 0.989824} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.021855999, y: 0.14049782, z: -0.0055821207, w: 0.989824} + inSlope: {x: 0.0029616086, y: 0.035539303, z: -0.0005308544, w: -0.005364423} + outSlope: {x: 0.0029895483, y: 0.03576282, z: -0.0005378393, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.022249697, y: 0.14527796, z: -0.005654525, w: 0.9891245} + inSlope: {x: 0.01039357, y: 0.12539339, z: -0.0020046737, w: -0.018775482} + outSlope: {x: 0.010309714, y: 0.12561646, z: -0.0020046665, w: -0.018775415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.023233002, y: 0.15721312, z: -0.0058527454, w: 0.987274} + inSlope: {x: 0.017015219, y: 0.20541197, z: -0.0036111937, w: -0.032186422} + outSlope: {x: 0.016903521, y: 0.20608325, z: -0.0036112068, w: -0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.02450865, y: 0.17269391, z: -0.0061471933, w: 0.9846513} + inSlope: {x: 0.019082818, y: 0.23178779, z: -0.004610051, w: -0.042021316} + outSlope: {x: 0.019054879, y: 0.23178779, z: -0.0046310057, w: -0.040233172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.025780397, y: 0.1881315, z: -0.0064831716, w: 0.98178405} + inSlope: {x: 0.016847642, y: 0.20474215, z: -0.0045821113, w: -0.040233172} + outSlope: {x: 0.016819641, y: 0.2045179, z: -0.004582095, w: -0.03933896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.02675538, y: 0.19997478, z: -0.0067698397, w: 0.9794122} + inSlope: {x: 0.0101700155, y: 0.124498874, z: -0.0030244621, w: -0.025927952} + outSlope: {x: 0.0102818115, y: 0.1242758, z: -0.0030384427, w: -0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.027144454, y: 0.20470384, z: -0.006891366, w: 0.9784232} + inSlope: {x: 0.002738091, y: 0.03285709, z: -0.00090105546, w: -0.0071525644} + outSlope: {x: 0.002738091, y: 0.03285709, z: -0.00090105546, w: -0.0062584938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.027117575, y: 0.20437701, z: -0.006891406, w: 0.9784923} + inSlope: {x: -0.0008661308, y: -0.0102818115, z: 0.00005587941, w: 0.0026822116} + outSlope: {x: -0.00083819113, y: -0.010058293, z: 0.00003492463, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.027031071, y: 0.2033248, z: -0.006885577, w: 0.9787139} + inSlope: {x: -0.0018160808, y: -0.021904727, z: 0.000188593, w: 0.0044703525} + outSlope: {x: -0.0017881411, y: -0.021904727, z: 0.00019557793, w: 0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.02687616, y: 0.20143944, z: -0.006865212, w: 0.9791081} + inSlope: {x: -0.0029057292, y: -0.035315786, z: 0.0004819599, w: 0.0080466345} + outSlope: {x: -0.0029057085, y: -0.035315532, z: 0.00047497157, w: 0.008046577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.026643995, y: 0.19861242, z: -0.006822125, w: 0.9796921} + inSlope: {x: -0.0041629863, y: -0.050067592, z: 0.0008731095, w: 0.01072877} + outSlope: {x: -0.0041071363, y: -0.050514985, z: 0.00088010065, w: 0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.026325593, y: 0.19473468, z: -0.0067487806, w: 0.98047936} + inSlope: {x: -0.005476182, y: -0.066831775, z: 0.0013760304, w: 0.013411058} + outSlope: {x: -0.005476182, y: -0.066831775, z: 0.0013830153, w: 0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.025911778, y: 0.18969609, z: -0.0066384645, w: 0.9814784} + inSlope: {x: -0.006984926, y: -0.08516022, z: 0.001983719, w: 0.01698734} + outSlope: {x: -0.006956986, y: -0.08471318, z: 0.001976734, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.025393074, y: 0.18338564, z: -0.0064855143, w: 0.9826916} + inSlope: {x: -0.010086233, y: -0.121593595, z: 0.0030873374, w: 0.022351762} + outSlope: {x: -0.010058293, y: -0.12271118, z: 0.0031013072, w: 0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.024569651, y: 0.17338358, z: -0.0062298835, w: 0.98452806} + inSlope: {x: -0.014975681, y: -0.18194336, z: 0.0045821113, w: 0.032186538} + outSlope: {x: -0.015003514, y: -0.18238908, z: 0.0046030334, w: 0.033080373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.023393469, y: 0.15912424, z: -0.005882576, w: 0.98696387} + inSlope: {x: -0.01863565, y: -0.22552767, z: 0.0053364453, w: 0.037550695} + outSlope: {x: -0.018691663, y: -0.22642335, z: 0.0053364835, w: 0.03576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.02208496, y: 0.14329146, z: -0.0055330433, w: 0.98941857} + inSlope: {x: -0.01888724, y: -0.22910558, z: 0.0048824633, w: 0.03397468} + outSlope: {x: -0.01888724, y: -0.2282115, z: 0.0048754783, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.02087202, y: 0.12863718, z: -0.0052458043, w: 0.9914582} + inSlope: {x: -0.015869752, y: -0.1915546, z: 0.0036601012, w: 0.025033975} + outSlope: {x: -0.015869752, y: -0.19133109, z: 0.0036531163, w: 0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.019971663, y: 0.11776934, z: -0.005055649, w: 0.9928272} + inSlope: {x: -0.009359801, y: -0.11321168, z: 0.001969749, w: 0.013411058} + outSlope: {x: -0.009387741, y: -0.11309992, z: 0.001969749, w: 0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.019622153, y: 0.11355233, z: -0.004987064, w: 0.99332577} + inSlope: {x: -0.0017043219, y: -0.020451862, z: 0.0002933669, w: 0.0026822116} + outSlope: {x: -0.0016763823, y: -0.020451862, z: 0.0002933669, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.019746322, y: 0.11504733, z: -0.005016744, w: 0.993151} + inSlope: {x: 0.0033248249, y: 0.040009655, z: -0.00079628156, w: -0.0044703525} + outSlope: {x: 0.0033248782, y: 0.040122062, z: -0.0008032794, w: -0.0044704247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.020065116, y: 0.118886985, z: -0.0050947685, w: 0.992692} + inSlope: {x: 0.004721886, y: 0.057780236, z: -0.0011665014, w: -0.0071526794} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.042209048, y: 0.9667469, z: -0.011001959, w: 0.25198755} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0008381881, y: -0.018775415, z: -0.0030733563, w: 0.07063132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.042154156, y: 0.9654896, z: -0.011210452, w: 0.25676283} + inSlope: {x: 0.0005587921, y: -0.012516943, z: -0.002179289, w: 0.05006777} + outSlope: {x: 0.0006146735, y: -0.013411058, z: -0.0021932668, w: 0.05006795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.04213306, y: 0.9650065, z: -0.011289475, w: 0.25857273} + inSlope: {x: 0.00016763822, y: -0.0035762822, z: -0.00060070364, w: 0.013858093} + outSlope: {x: 0.00011175842, y: -0.002682202, z: -0.00053085247, w: 0.012069909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.04213306, y: 0.9650065, z: -0.011289475, w: 0.25857273} + inSlope: {x: 0.032745216, y: -0.7492284, z: -0.12212401, w: 2.7970896} + outSlope: {x: 0.03285709, y: -0.7528074, z: -0.1226553, w: 2.8091695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.034605578, y: 0.79259837, z: -0.026553731, w: 0.6081819} + inSlope: {x: 0.075213686, y: -1.7228739, z: -0.098068364, w: 2.2459052} + outSlope: {x: 0.07487841, y: -1.7148273, z: -0.09759338, w: 2.2351763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.03462508, y: 0.79304504, z: -0.026528297, w: 0.6075993} + inSlope: {x: -0.0006146735, y: 0.014305129, z: 0.00083819113, w: -0.019669551} + outSlope: {x: -0.00061467127, y: 0.01341101, z: 0.0007543693, w: -0.016987279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.03467928, y: 0.7942863, z: -0.026457408, w: 0.60597587} + inSlope: {x: -0.0010617049, y: 0.024139818, z: 0.001341101, w: -0.030398289} + outSlope: {x: -0.0010058293, y: 0.023245834, z: 0.0013411058, w: -0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.0347616, y: 0.7961719, z: -0.026349148, w: 0.6034962} + inSlope: {x: -0.0013411058, y: 0.03129247, z: 0.0018440204, w: -0.042021316} + outSlope: {x: -0.0014528646, y: 0.032186538, z: 0.0018160808, w: -0.042021316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.03486547, y: 0.79855084, z: -0.02621156, w: 0.6003449} + inSlope: {x: -0.0016763823, y: 0.038445033, z: 0.0022351763, w: -0.05096202} + outSlope: {x: -0.0016763762, y: 0.038444895, z: 0.0022351684, w: -0.050961837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.034984317, y: 0.8012729, z: -0.02605272, w: 0.59670687} + inSlope: {x: -0.0017881347, y: 0.042021163, z: 0.0024866248, w: -0.05722031} + outSlope: {x: -0.0018440204, y: 0.042021316, z: 0.002458694, w: -0.05632644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.035111696, y: 0.80419034, z: -0.025880791, w: 0.5927691} + inSlope: {x: -0.0018998999, y: 0.042915385, z: 0.0026263322, w: -0.059902724} + outSlope: {x: -0.0019557793, y: 0.044703525, z: 0.0025983925, w: -0.059902724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.035241295, y: 0.8071587, z: -0.02570404, w: 0.58872074} + inSlope: {x: -0.0018998999, y: 0.043809455, z: 0.002654272, w: -0.060796797} + outSlope: {x: -0.0019557793, y: 0.044703525, z: 0.002654272, w: -0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.035366964, y: 0.81003696, z: -0.025530856, w: 0.5847542} + inSlope: {x: -0.0017881411, y: 0.041127246, z: 0.0024866336, w: -0.057220515} + outSlope: {x: -0.0018440204, y: 0.042021316, z: 0.002542513, w: -0.058114585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.035482716, y: 0.8126881, z: -0.025369741, w: 0.5810641} + inSlope: {x: -0.0016763823, y: 0.037550963, z: 0.002263116, w: -0.05185609} + outSlope: {x: -0.0016204913, y: 0.037550695, z: 0.0022910393, w: -0.052749783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.035582703, y: 0.8149782, z: -0.02522931, w: 0.57784766} + inSlope: {x: -0.0013410962, y: 0.03039818, z: 0.0018719467, w: -0.04291508} + outSlope: {x: -0.0013411058, y: 0.03129247, z: 0.0019278396, w: -0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.0356612, y: 0.81677604, z: -0.025118237, w: 0.5753037} + inSlope: {x: -0.00094994996, y: 0.022351762, z: 0.0013411058, w: -0.03129247} + outSlope: {x: -0.00094994996, y: 0.022351762, z: 0.0014249249, w: -0.032186538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.035712507, y: 0.8179512, z: -0.025045231, w: 0.57363164} + inSlope: {x: -0.00050291466, y: 0.011622917, z: 0.000754372, w: -0.01698734} + outSlope: {x: -0.00050291466, y: 0.011622917, z: 0.0007264323, w: -0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.0357309, y: 0.8183725, z: -0.025018984, w: 0.5730304} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.035712507, y: 0.8179512, z: -0.025045231, w: 0.57363164} + inSlope: {x: 0.00050291466, y: -0.011622917, z: -0.0007264323, w: 0.01698734} + outSlope: {x: 0.00050291105, y: -0.011622834, z: -0.0007543666, w: 0.016987218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.0356612, y: 0.81677604, z: -0.025118237, w: 0.5753037} + inSlope: {x: 0.00094994315, y: -0.022351604, z: -0.0014249147, w: 0.032186307} + outSlope: {x: 0.00094994996, y: -0.022351762, z: -0.0013411058, w: 0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.035582703, y: 0.8149782, z: -0.02522931, w: 0.57784766} + inSlope: {x: 0.0013411058, y: -0.03129247, z: -0.0019278396, w: 0.043809455} + outSlope: {x: 0.0013411058, y: -0.030398399, z: -0.0018719601, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.035483055, y: 0.8126959, z: -0.025369266, w: 0.5810532} + inSlope: {x: 0.0016205028, y: -0.03576282, z: -0.002263116, w: 0.05185609} + outSlope: {x: 0.0016205028, y: -0.037550963, z: -0.002263116, w: 0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.035366964, y: 0.81003696, z: -0.025530856, w: 0.5847542} + inSlope: {x: 0.0018440204, y: -0.042021316, z: -0.002542513, w: 0.058114585} + outSlope: {x: 0.0017881411, y: -0.041127246, z: -0.0024866336, w: 0.057220515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.035241697, y: 0.8071679, z: -0.02570349, w: 0.5887082} + inSlope: {x: 0.0019557793, y: -0.044703525, z: -0.0025983925, w: 0.059902724} + outSlope: {x: 0.0018998999, y: -0.043809455, z: -0.0026263322, w: 0.059008654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.035111696, y: 0.80419034, z: -0.025880791, w: 0.5927691} + inSlope: {x: 0.0019557793, y: -0.044703525, z: -0.0025983925, w: 0.059902724} + outSlope: {x: 0.0018999304, y: -0.042916074, z: -0.0026263744, w: 0.05990369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.034984704, y: 0.8012818, z: -0.026052197, w: 0.59669495} + inSlope: {x: 0.0018999304, y: -0.042916074, z: -0.002542554, w: 0.05811552} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone24" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.01646212, y: 0.08728852, z: 0.00422338, w: 0.9960381} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.018691596, y: -0.22329332, z: -0.0046309894, w: 0.020563548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.015217932, y: 0.07239391, z: 0.0039208345, w: 0.9972522} + inSlope: {x: 0.013606587, y: -0.16272025, z: -0.0032619487, w: 0.011622875} + outSlope: {x: 0.013564726, y: -0.16249731, z: -0.0032479905, w: 0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.014650655, y: 0.06561788, z: 0.0037959218, w: 0.9977301} + inSlope: {x: 0.0042328653, y: -0.05085026, z: -0.0009394725, w: 0.0044703525} + outSlope: {x: 0.0042468198, y: -0.05073832, z: -0.00094296166, w: 0.0035762694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.014650655, y: 0.06561788, z: 0.0037959218, w: 0.9977301} + inSlope: {x: 0, y: 0.00011175842, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.014650657, y: 0.06561788, z: 0.0037959188, w: 0.9977301} + inSlope: {x: 0.0019976888, y: -0.023916386, z: -0.0005972112, w: 0.0026822116} + outSlope: {x: 0.0019976888, y: -0.024251662, z: -0.00060768856, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.014383251, y: 0.062404808, z: 0.0037150509, w: 0.99794036} + inSlope: {x: 0.0070128655, y: -0.08426615, z: -0.002074523, w: 0.005364423} + outSlope: {x: 0.00704078, y: -0.08448936, z: -0.002084993, w: 0.0044703367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.013713142, y: 0.054369196, z: 0.0035205972, w: 0.99842054} + inSlope: {x: 0.0115809655, y: -0.13863632, z: -0.0032689336, w: 0.0071525387} + outSlope: {x: 0.011581007, y: -0.13869269, z: -0.0032759302, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.012838797, y: 0.04391736, z: 0.0032843077, w: 0.99894726} + inSlope: {x: 0.01314563, y: -0.15679762, z: -0.0034575383, w: 0.0080466345} + outSlope: {x: 0.013103721, y: -0.15690938, z: -0.0034540459, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.011961094, y: 0.033460334, z: 0.0030667179, w: 0.9993637} + inSlope: {x: 0.011664826, y: -0.13880445, z: -0.00283588, w: 0.0044703525} + outSlope: {x: 0.011650815, y: -0.1386922, z: -0.0028288849, w: 0.005364404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.011283842, y: 0.025413644, z: 0.0029120916, w: 0.99960905} + inSlope: {x: 0.007110629, y: -0.08448936, z: -0.0016135122, w: 0.002682202} + outSlope: {x: 0.0071246247, y: -0.084517606, z: -0.0016100254, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.011012463, y: 0.022194436, z: 0.0028533512, w: 0.9996889} + inSlope: {x: 0.0010197992, y: -0.01226553, z: -0.00019208547, w: 0.00089407054} + outSlope: {x: 0.001033769, y: -0.012153771, z: -0.00019208547, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.011146279, y: 0.02378309, z: 0.0028862192, w: 0.9996508} + inSlope: {x: -0.0037159806, y: 0.04408885, z: 0.0009150253, w: -0.0017881411} + outSlope: {x: -0.0037159806, y: 0.04420061, z: 0.0009150253, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.011507991, y: 0.028080909, z: 0.002975786, w: 0.999535} + inSlope: {x: -0.006691559, y: 0.079572275, z: 0.0016693973, w: -0.0017881411} + outSlope: {x: -0.006691559, y: 0.079516396, z: 0.0016659049, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.012037761, y: 0.034385275, z: 0.0031098137, w: 0.9993313} + inSlope: {x: -0.008773067, y: 0.10432685, z: 0.0022281914, w: -0.0035762822} + outSlope: {x: -0.008773005, y: 0.104381986, z: 0.0022281755, w: -0.0035762566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.01267583, y: 0.041993346, z: 0.0032756636, w: 0.9990321} + inSlope: {x: -0.009946464, y: 0.11868701, z: 0.0025878965, w: -0.0044703204} + outSlope: {x: -0.009918595, y: 0.1185761, z: 0.0025774378, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.013362904, y: 0.05020251, z: 0.0034582978, w: 0.9986437} + inSlope: {x: -0.010267842, y: 0.122320026, z: 0.0026996739, w: -0.005364423} + outSlope: {x: -0.010239901, y: 0.12226415, z: 0.0026961814, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.014040421, y: 0.0583109, z: 0.0036391718, w: 0.99819314} + inSlope: {x: -0.009625228, y: 0.115670376, z: 0.0025110808, w: -0.0071525644} + outSlope: {x: -0.0096811075, y: 0.11544686, z: 0.002504096, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.014650656, y: 0.06561788, z: 0.0037959209, w: 0.9977301} + inSlope: {x: -0.009513469, y: 0.11365872, z: 0.0023364578, w: -0.0071525644} + outSlope: {x: -0.009513469, y: 0.11354696, z: 0.0023259805, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.01530624, y: 0.07346287, z: 0.003953241, w: 0.9971726} + inSlope: {x: -0.010756786, y: 0.12885791, z: 0.0025704529, w: -0.008940705} + outSlope: {x: -0.010784648, y: 0.12885699, z: 0.0025704345, w: -0.009834706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.016084738, y: 0.08278441, z: 0.0041431445, w: 0.996429} + inSlope: {x: -0.011790471, y: 0.14092685, z: 0.0029057085, w: -0.011622834} + outSlope: {x: -0.011790555, y: 0.1413749, z: 0.0029127141, w: -0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.016876986, y: 0.0922835, z: 0.004346371, w: 0.99558026} + inSlope: {x: -0.011175881, y: 0.13377531, z: 0.0028987443, w: -0.013411058} + outSlope: {x: -0.011147941, y: 0.13388707, z: 0.0028987443, w: -0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.017573021, y: 0.10064207, z: 0.004535045, w: 0.9947572} + inSlope: {x: -0.008940705, y: 0.10762374, z: 0.002451709, w: -0.010728846} + outSlope: {x: -0.008968645, y: 0.10751198, z: 0.002458694, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.0180717, y: 0.106638856, z: 0.0046763946, w: 0.99412256} + inSlope: {x: -0.005196785, y: 0.0621379, z: 0.0014738194, w: -0.0062584938} + outSlope: {x: -0.0051409057, y: 0.0621379, z: 0.0014598495, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.018260958, y: 0.108916424, z: 0.0047313413, w: 0.9938718} + inSlope: {x: 0.00005587941, y: -0.00089407054, z: -0.000041909556, w: 0} + outSlope: {x: 0.00005587941, y: -0.0007823117, z: -0.000041909556, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.018062375, y: 0.10652278, z: 0.004671111, w: 0.99413514} + inSlope: {x: 0.0053364835, y: -0.0640378, z: -0.0015855782, w: 0.0062584938} + outSlope: {x: 0.005308629, y: -0.064150594, z: -0.0015856037, w: 0.0071526794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.017551355, y: 0.100370355, z: 0.0045208866, w: 0.994785} + inSlope: {x: 0.007655602, y: -0.092314266, z: -0.0022701374, w: 0.008940849} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.7572744, y: -0.17134655, z: -0.59373504, w: 0.21131632} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.09655927, y: 0.19244799, z: 0.032186422, w: -0.10125312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.76359427, y: -0.1585067, z: -0.5915543, w: 0.20460428} + inSlope: {x: 0, y: 0.00022351684, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.7572744, y: -0.17134655, z: -0.59373504, w: 0.21131632} + inSlope: {x: -0.17702596, y: -0.36031044, z: -0.053644232, w: 0.19468385} + outSlope: {x: -0.17970753, y: -0.36165023, z: -0.05364404, w: 0.19580075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.7390609, y: -0.2064166, z: -0.59830916, w: 0.23066683} + inSlope: {x: -0.34868625, y: -0.6524456, z: -0.058114376, w: 0.37729642} + outSlope: {x: -0.34779343, y: -0.65267146, z: -0.060796797, w: 0.37752128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.7097373, y: -0.25774637, z: -0.60101235, w: 0.2619617} + inSlope: {x: -0.5042558, y: -0.8462378, z: 0.0062584938, w: 0.5471712} + outSlope: {x: -0.5033617, y: -0.8462378, z: 0.005364423, w: 0.5471712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.67051715, y: -0.3183503, z: -0.5970239, w: 0.3043393} + inSlope: {x: -0.6428367, y: -0.93877405, z: 0.13768686, w: 0.7063157} + outSlope: {x: -0.64194036, y: -0.9374296, z: 0.1394745, w: 0.7054191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.6229844, y: -0.3816744, z: -0.5821412, w: 0.3568287} + inSlope: {x: -0.74296993, y: -0.9222304, z: 0.31918204, w: 0.83371776} + outSlope: {x: -0.74476075, y: -0.9199986, z: 0.3182891, w: 0.8332737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.5707604, y: -0.44019425, z: -0.5542433, w: 0.4162642} + inSlope: {x: -0.7948287, y: -0.81181604, z: 0.51319647, w: 0.9173164} + outSlope: {x: -0.7957228, y: -0.81092197, z: 0.51319647, w: 0.9186575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.51696277, y: -0.48916417, z: -0.51314545, w: 0.4797391} + inSlope: {x: -0.79393464, y: -0.63344896, z: 0.68754023, w: 0.9419033} + outSlope: {x: -0.78946143, y: -0.63434076, z: 0.6866437, w: 0.9410059} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.4660958, y: -0.5246856, z: -0.46212825, w: 0.5421229} + inSlope: {x: -0.73090005, y: -0.42736417, z: 0.8015314, w: 0.89853764} + outSlope: {x: -0.7313497, y: -0.42736572, z: 0.80287534, w: 0.8994349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.42084008, y: -0.54653645, z: -0.40555617, w: 0.5997632} + inSlope: {x: -0.62808454, y: -0.23156427, z: 0.8328267, w: 0.7948287} + outSlope: {x: -0.6271905, y: -0.23156427, z: 0.83372074, w: 0.79125243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.38410425, y: -0.5563377, z: -0.3504991, w: 0.64815325} + inSlope: {x: -0.4917388, y: -0.080466345, z: 0.76532435, w: 0.6374723} + outSlope: {x: -0.49263287, y: -0.079572275, z: 0.7648773, w: 0.6392604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.35680145, y: -0.5580447, z: -0.30318978, w: 0.68509465} + inSlope: {x: -0.34064087, y: 0.0071525644, z: 0.5981332, w: 0.44703525} + outSlope: {x: -0.33885273, y: 0.005364423, z: 0.59723914, w: 0.44703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.33998173, y: -0.556255, z: -0.27081567, w: 0.7082736} + inSlope: {x: -0.17434375, y: 0.026822116, z: 0.33393535, w: 0.22977613} + outSlope: {x: -0.17344844, y: 0.025033796, z: 0.33348593, w: 0.23335074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.33409297, y: -0.55504304, z: -0.25882062, w: 0.7164642} + inSlope: {x: -0.044703208, y: 0.01072877, z: 0.090747505, w: 0.06079636} + outSlope: {x: -0.04425649, y: 0.008940705, z: 0.08940705, w: 0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.33409297, y: -0.55504304, z: -0.25882062, w: 0.7164642} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00044703527, y: 0, z: 0.00044703527, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.33409297, y: -0.55504304, z: -0.25882062, w: 0.7164642} + inSlope: {x: 0.20205994, y: -0.03129247, z: -0.39115587, w: -0.25928044} + outSlope: {x: 0.20205994, y: -0.033080608, z: -0.39204994, w: -0.26196265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.3606315, y: -0.5581312, z: -0.31019792, w: 0.67986155} + inSlope: {x: 0.7662184, y: 0.060796797, z: -1.2843323, w: -0.9423503} + outSlope: {x: 0.7675595, y: 0.059902724, z: -1.2865674, w: -0.94413847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.43505064, y: -0.5407517, z: -0.42455977, w: 0.5814356} + inSlope: {x: 1.3647987, y: 0.65535367, z: -1.7447786, w: -1.687111} + outSlope: {x: 1.3688122, y: 0.6562431, z: -1.7492365, w: -1.6906753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.54368615, y: -0.46626556, z: -0.53514785, w: 0.44790477} + inSlope: {x: 1.6325611, y: 1.4912989, z: -1.2820879, w: -1.9597886} + outSlope: {x: 1.635255, y: 1.496227, z: -1.2838852, w: -1.9620378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.6553448, y: -0.33968177, z: -0.5934088, w: 0.3209447} + inSlope: {x: 1.3884915, y: 1.8847007, z: -0.43541235, w: -1.6450897} + outSlope: {x: 1.3884915, y: 1.8851477, z: -0.43541235, w: -1.6450897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.73492426, y: -0.21401738, z: -0.59902084, w: 0.2350679} + inSlope: {x: 0.74833703, y: 1.3639046, z: 0.07241971, w: -0.912846} + outSlope: {x: 0.74744296, y: 1.3614459, z: 0.07331378, w: -0.9110579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.76359427, y: -0.1585067, z: -0.5915543, w: 0.20460428} + inSlope: {x: 0, y: 0.0015646234, z: 0.00089407054, w: -0.0011175881} + outSlope: {x: 0, y: -0.0015646234, z: -0.00089407054, w: 0.0011175881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.73492426, y: -0.21401739, z: -0.59902084, w: 0.23506789} + inSlope: {x: -0.7367141, y: -1.3907267, z: -0.064373076, w: 0.8735069} + outSlope: {x: -0.73939633, y: -1.3949735, z: -0.064373076, w: 0.87641263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.6553448, y: -0.33968186, z: -0.59340876, w: 0.3209448} + inSlope: {x: -1.382233, y: -1.9396861, z: 0.4398827, w: 1.5869752} + outSlope: {x: -1.3822553, y: -1.9388231, z: 0.44346613, w: 1.5865537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.54368615, y: -0.46626556, z: -0.53514785, w: 0.44790477} + inSlope: {x: -1.8498617, y: -1.7385482, z: 1.0541261, w: 1.6987613} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.06177418, y: 0.15666518, z: -0.13695678, w: 0.9761572} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.10404708, y: -0.07890144, z: -0.33929855, w: -0.041127097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.06873407, y: 0.15146065, z: -0.15946575, w: 0.97309095} + inSlope: {x: -0.09018904, y: 0.09968851, z: 0.19200096, w: 0.022351684} + outSlope: {x: -0.09097168, y: 0.10035942, z: 0.19356626, w: 0.022351762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.04968028, y: 0.16989326, z: -0.110992715, w: 0.97793084} + inSlope: {x: -0.48626262, y: 0.38132107, z: 1.2860087, w: 0.10371218} + outSlope: {x: -0.4869314, y: 0.38221377, z: 1.287457, w: 0.104605876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.005337284, y: 0.20357475, z: 0.013622096, w: 0.97895014} + inSlope: {x: -0.70504194, y: 0.3305814, z: 2.1624556, w: -0.092983} + outSlope: {x: -0.70505846, y: 0.33013555, z: 2.1632175, w: -0.095665544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.042022828, y: 0.21916714, z: 0.1778649, w: 0.95841736} + inSlope: {x: -0.5823193, y: -0.07085509, z: 2.4274015, w: -0.46044633} + outSlope: {x: -0.5818723, y: -0.07130212, z: 2.4267309, w: -0.45955226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.07361589, y: 0.20189399, z: 0.33616266, w: 0.91695917} + inSlope: {x: -0.29236105, y: -0.4398827, z: 2.027305, w: -0.66965884} + outSlope: {x: -0.2915777, y: -0.43988112, z: 2.0272977, w: -0.6687624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.08534449, y: 0.16647393, z: 0.4494419, w: 0.8735014} + inSlope: {x: -0.07778386, y: -0.4264701, z: 1.1403829, w: -0.5140887} + outSlope: {x: -0.077895895, y: -0.42557758, z: 1.1377047, w: -0.5114083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.086688794, y: 0.14727712, z: 0.4913407, w: 0.85403675} + inSlope: {x: -0.027157392, y: -0.11421751, z: 0.18775481, w: -0.091195196} + outSlope: {x: -0.027604427, y: -0.11354696, z: 0.18551964, w: -0.08940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.08916338, y: 0.15145585, z: 0.4749136, w: 0.862304} + inSlope: {x: -0.051409055, y: 0.09745368, z: -0.4474823, w: 0.22262356} + outSlope: {x: -0.051408872, y: 0.097006306, z: -0.4474807, w: 0.2244109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.09365729, y: 0.16011095, z: 0.43127742, w: 0.8829455} + inSlope: {x: -0.04369754, y: 0.11622875, z: -0.7957199, w: 0.3638854} + outSlope: {x: -0.04347418, y: 0.11622917, z: -0.79661685, w: 0.36209857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.09541569, y: 0.16703752, z: 0.36827472, w: 0.9095977} + inSlope: {x: 0.019334275, y: 0.054314785, z: -1.0062764, w: 0.39875546} + outSlope: {x: 0.01978131, y: 0.054538302, z: -1.0035942, w: 0.39875546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.091530636, y: 0.16793521, z: 0.29699698, w: 0.9355281} + inSlope: {x: 0.09745368, y: -0.039786138, z: -1.0415921, w: 0.34779343} + outSlope: {x: 0.09700665, y: -0.040009655, z: -1.0438273, w: 0.34689936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.08267329, y: 0.16266209, z: 0.22917974, w: 0.95612913} + inSlope: {x: 0.1381339, y: -0.102371074, z: -0.8851298, w: 0.24318719} + outSlope: {x: 0.13791038, y: -0.10259459, z: -0.88423574, w: 0.24050497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.07314501, y: 0.1551962, z: 0.17912754, w: 0.96875036} + inSlope: {x: 0.10460625, y: -0.08761891, z: -0.52437234, w: 0.11891138} + outSlope: {x: 0.1046055, y: -0.08739477, z: -0.5234746, w: 0.11891053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.068734035, y: 0.15146065, z: 0.15946576, w: 0.97309095} + inSlope: {x: 0.033080373, y: -0.028610053, z: -0.1479676, w: 0.031292245} + outSlope: {x: 0.033080608, y: -0.02838674, z: -0.14752163, w: 0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.068734035, y: 0.15146065, z: 0.15946576, w: 0.97309095} + inSlope: {x: 0, y: 0, z: 0.00022351764, w: 0} + outSlope: {x: 0, y: 0, z: -0.00022351764, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.068734035, y: 0.15146065, z: 0.15946576, w: 0.97309095} + inSlope: {x: 0.03106895, y: 0.018328445, z: 0.18328446, w: -0.030398399} + outSlope: {x: 0.03118071, y: 0.018328445, z: 0.18395501, w: -0.030398399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.06455618, y: 0.15386061, z: 0.18389966, w: 0.9686797} + inSlope: {x: 0.095553786, y: 0.048279807, z: 0.5212431, w: -0.09924183} + outSlope: {x: 0.095553786, y: 0.048503324, z: 0.5214666, w: -0.10102997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.05592706, y: 0.15775993, z: 0.22882582, w: 0.9589696} + inSlope: {x: 0.10348866, y: 0.042021316, z: 0.5152081, w: -0.1242758} + outSlope: {x: 0.10304089, y: 0.041797496, z: 0.5160985, w: -0.12338085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.050817948, y: 0.1595457, z: 0.25274065, w: 0.95293486} + inSlope: {x: 0.24854983, y: 0.13209797, z: -0.59723485, w: 0.14930871} + outSlope: {x: 0.24989271, y: 0.13344003, z: -0.60126245, w: 0.15109792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.022732938, y: 0.17509003, z: 0.1473022, w: 0.9732054} + inSlope: {x: 0.65560514, y: 0.057891067, z: -2.2716098, w: 0.34779343} + outSlope: {x: 0.6566389, y: 0.056996997, z: -2.2745154, w: 0.3486875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.0359951, y: 0.17112231, z: -0.053014603, w: 0.98316365} + inSlope: {x: 0.6636797, y: -0.24609292, z: -2.296085, w: -0.107288465} + outSlope: {x: 0.6631209, y: -0.24743402, z: -2.2949114, w: -0.10371218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.068734065, y: 0.15146065, z: -0.15946575, w: 0.97309095} + inSlope: {x: -0.22597632, y: 0.25279844, z: 0.48123345, w: 0.05632644} + outSlope: {x: -0.22955261, y: 0.25570416, z: 0.48838603, w: 0.05543237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.0053372923, y: 0.20357475, z: 0.013622092, w: 0.97895014} + inSlope: {x: -1.1003773, y: 0.30331343, z: 3.7336524, w: -0.107288465} + outSlope: {x: -1.1031364, y: 0.30197233, z: 3.743529, w: -0.109076604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.07368133, y: 0.20179674, z: 0.3366044, w: 0.91681325} + inSlope: {x: -0.5917629, y: -0.5936628, z: 3.4797225, w: -1.1962664} + outSlope: {x: -0.5897608, y: -0.59568405, z: 3.4744139, w: -1.1918151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.0866888, y: 0.14727691, z: 0.49134114, w: 0.8540366} + inSlope: {x: -0.10974892, y: -0.873968, z: 2.1878257, w: -1.1176062} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.16349286, y: -0.069267094, z: -0.40052187, w: 0.89891845} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.74833435, y: -0.31772918, z: 2.4104054, w: 1.1846392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.1115507, y: -0.08681293, z: -0.23301414, w: 0.9621457} + inSlope: {x: -0.6621686, y: -0.28375462, z: 1.8518369, w: 0.49888957} + outSlope: {x: -0.66183573, y: -0.28397915, z: 1.8489379, w: 0.49889135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.076165125, y: -0.10548151, z: -0.15605311, w: 0.9791425} + inSlope: {x: -0.2667683, y: -0.13992204, z: 0.5822634, w: 0.09834776} + outSlope: {x: -0.26576152, y: -0.13925098, z: 0.5804732, w: 0.0983474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.076165125, y: -0.10548151, z: -0.15605311, w: 0.9791425} + inSlope: {x: 0.00022351684, y: 0, z: -0.00044703367, w: 0} + outSlope: {x: 0, y: 0.00011175882, z: -0.00022351764, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.076165125, y: -0.10548151, z: -0.15605311, w: 0.9791425} + inSlope: {x: -0.039786138, y: 0.01218171, z: 0.18619019, w: 0.03397468} + outSlope: {x: -0.039786138, y: 0.012405229, z: 0.18663722, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.07085399, y: -0.10379685, z: -0.13114853, w: 0.9833646} + inSlope: {x: -0.1419337, y: 0.039115585, z: 0.6544596, w: 0.1001359} + outSlope: {x: -0.14170967, y: 0.039115444, z: 0.6551278, w: 0.102817744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.05730526, y: -0.09995223, z: -0.06850584, w: 0.9909757} + inSlope: {x: -0.23905125, y: 0.056102727, z: 1.082492, w: 0.0956652} + outSlope: {x: -0.23916386, y: 0.055879407, z: 1.0830547, w: 0.092983335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.03928483, y: -0.09576787, z: 0.013391716, w: 0.99453807} + inSlope: {x: -0.27453554, y: 0.051520813, z: 1.227489, w: 0} + outSlope: {x: -0.27459142, y: 0.051520813, z: 1.2274052, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.021069143, y: -0.09250519, z: 0.09527675, w: 0.99091935} + inSlope: {x: -0.24296367, y: 0.036880407, z: 1.0823841, w: -0.095665544} + outSlope: {x: -0.24271134, y: 0.03665676, z: 1.0813744, w: -0.0956652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.0071238596, y: -0.09053931, z: 0.15789339, w: 0.9832709} + inSlope: {x: -0.14609618, y: 0.021681132, z: 0.65423375, w: -0.101923674} + outSlope: {x: -0.1460548, y: 0.02168121, z: 0.6535655, w: -0.10281811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.0016526897, y: -0.089602806, z: 0.18278393, w: 0.97906005} + inSlope: {x: -0.029839603, y: 0.009387741, z: 0.08963057, w: -0.01698734} + outSlope: {x: -0.029671965, y: 0.009611258, z: 0.08918353, w: -0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.0031605242, y: -0.08928928, z: 0.16988836, w: 0.9814047} + inSlope: {x: 0.039869957, y: 0.0014528646, z: -0.3460053, w: 0.058114585} + outSlope: {x: 0.039842017, y: 0.0013411058, z: -0.34645233, w: 0.061690867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.006959469, y: -0.089362994, z: 0.13655029, w: 0.9865697} + inSlope: {x: 0.06843831, y: -0.004246835, z: -0.5927687, w: 0.080466345} + outSlope: {x: 0.06835449, y: -0.004246835, z: -0.5920982, w: 0.081360415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.012289358, y: -0.089799896, z: 0.09082651, w: 0.9917336} + inSlope: {x: 0.08608223, y: -0.01039357, z: -0.716374, w: 0.06347901} + outSlope: {x: 0.08610955, y: -0.010393496, z: -0.71692765, w: 0.06258449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.01847722, y: -0.09069565, z: 0.04098733, w: 0.99486333} + inSlope: {x: 0.11578131, y: -0.028274778, z: -0.79666704, w: 0.028610053} + outSlope: {x: 0.115698315, y: -0.02838674, z: -0.79600215, w: 0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.02781979, y: -0.09345516, z: -0.015343135, w: 0.99511653} + inSlope: {x: 0.20359662, y: -0.061132073, z: -0.9283805, w: -0.025033975} + outSlope: {x: 0.20376426, y: -0.061020315, z: -0.92857605, w: -0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.045866318, y: -0.098446764, z: -0.08278297, w: 0.9906319} + inSlope: {x: 0.35908106, y: -0.09700665, z: -1.0566796, w: -0.11444103} + outSlope: {x: 0.35941637, y: -0.09689489, z: -1.0569031, w: -0.1153351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.07616511, y: -0.10548151, z: -0.15605311, w: 0.9791425} + inSlope: {x: 0.53666586, y: -0.05755579, z: -1.209901, w: -0.2396109} + outSlope: {x: 0.5373364, y: -0.057220515, z: -1.210348, w: -0.24050497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.11790352, y: -0.10435362, z: -0.24353528, w: 0.9570265} + inSlope: {x: 0.6015977, y: 0.061914384, z: -1.4416888, w: -0.43451828} + outSlope: {x: 0.60215217, y: 0.062249213, z: -1.4448076, w: -0.43540922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.15664099, y: -0.09492266, z: -0.34740564, w: 0.91965353} + inSlope: {x: 0.45150238, y: 0.099017605, z: -1.5588008, w: -0.655349} + outSlope: {x: 0.45172912, y: 0.09868304, z: -1.5623882, w: -0.65624774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.17895043, y: -0.089639835, z: -0.4511467, w: 0.8697173} + inSlope: {x: 0.17657892, y: 0.014305129, z: -1.4233602, w: -0.77158284} + outSlope: {x: 0.17657892, y: 0.014416887, z: -1.4224662, w: -0.773371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.18190229, y: -0.092985615, z: -0.5379131, w: 0.81787205} + inSlope: {x: -0.05185609, y: -0.07890172, z: -1.0737787, w: -0.7054216} + outSlope: {x: -0.05185609, y: -0.07856645, z: -1.0746728, w: -0.7036335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.17368227, y: -0.10099916, z: -0.5959013, w: 0.7775187} + inSlope: {x: -0.109076604, y: -0.087954186, z: -0.5820399, w: -0.43273014} + outSlope: {x: -0.109076604, y: -0.08773067, z: -0.5811458, w: -0.4336242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.1681755, y: -0.10526301, z: -0.6167342, w: 0.76175827} + inSlope: {x: -0.013187541, y: 0.023916386, z: 0.0017881411, w: 0.008940705} + outSlope: {x: -0.012964022, y: 0.024922216, z: 0.0035762822, w: 0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.17190778, y: -0.09772633, z: -0.5954413, w: 0.7786829} + inSlope: {x: 0.061690867, y: 0.1723321, z: 0.5856162, w: 0.45597598} + outSlope: {x: 0.061691858, y: 0.17211135, z: 0.5874138, w: 0.4550892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.176658, y: -0.08233391, z: -0.5372445, w: 0.8205982} + inSlope: {x: 0.05409214, y: 0.23771483, z: 0.8931908, w: 0.59635466} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.03784938, y: -0.7345581, z: -0.23598969, w: 0.63505954} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.28610155, y: -0.01341101, z: -0.06929022, w: -0.05632624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.056899965, y: -0.73522836, z: -0.24056245, w: 0.631135} + inSlope: {x: 0.19680656, y: -0.0044703367, z: -0.046267983, w: -0.042915232} + outSlope: {x: 0.19691904, y: -0.0062584938, z: -0.046491668, w: -0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.06413314, y: -0.73544776, z: -0.24224317, w: 0.62954104} + inSlope: {x: 0.054203026, y: -0.0026822116, z: -0.012069952, w: -0.0125169875} + outSlope: {x: 0.05431459, y: -0.00089406734, z: -0.012516943, w: -0.0143050775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.06413314, y: -0.73544776, z: -0.24224317, w: 0.62954104} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.06413314, y: -0.73544776, z: -0.24224317, w: 0.62954104} + inSlope: {x: -0.021457693, y: 0, z: 0.004917388, w: 0.0062584938} + outSlope: {x: -0.021457693, y: 0.0017881411, z: 0.0044703525, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.06129779, y: -0.7353641, z: -0.2415879, w: 0.63017255} + inSlope: {x: -0.0805781, y: 0.0044703525, z: 0.019222517, w: 0.01698734} + outSlope: {x: -0.080242544, y: 0.00089406734, z: 0.018775415, w: 0.017881347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.05340741, y: -0.73511547, z: -0.23974004, w: 0.63188434} + inSlope: {x: -0.14964452, y: 0.0044703367, z: 0.034868624, w: 0.033080492} + outSlope: {x: -0.14908627, y: 0.005364423, z: 0.035315786, w: 0.030398399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.04138954, y: -0.7346927, z: -0.23685563, w: 0.6343603} + inSlope: {x: -0.20384808, y: 0.0080466345, z: 0.049620915, w: 0.040233172} + outSlope: {x: -0.20474215, y: 0.0071525644, z: 0.05006795, w: 0.040233172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.02617681, y: -0.7340827, z: -0.23308182, w: 0.63726777} + inSlope: {x: -0.2453106, y: 0.010728846, z: 0.061690867, w: 0.043809455} + outSlope: {x: -0.24508621, y: 0.00983474, z: 0.06213768, w: 0.044703368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.008706078, y: -0.73328215, z: -0.2285762, w: 0.64029235} + inSlope: {x: -0.27213174, y: 0.012516943, z: 0.07152539, w: 0.044703368} + outSlope: {x: -0.27157393, y: 0.010728846, z: 0.07130212, w: 0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.010085113, y: -0.7323056, z: -0.22352105, w: 0.6431681} + inSlope: {x: -0.2846497, y: 0.016093269, z: 0.078678206, w: 0.040233172} + outSlope: {x: -0.28442618, y: 0.015199199, z: 0.07823117, w: 0.040233172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.029264152, y: -0.731189, z: -0.21813312, w: 0.64569664} + inSlope: {x: -0.2838674, y: 0.01698734, z: 0.081360415, w: 0.03397468} + outSlope: {x: -0.28397915, y: 0.015199199, z: 0.081360415, w: 0.03397468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.04790932, y: -0.7299913, z: -0.21266848, w: 0.6477573} + inSlope: {x: -0.26945052, y: 0.018775482, z: 0.080466345, w: 0.025928045} + outSlope: {x: -0.2681094, y: 0.016093269, z: 0.080466345, w: 0.024139903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.06511558, y: -0.7287913, z: -0.20742211, w: 0.6493068} + inSlope: {x: -0.2403932, y: 0.016093269, z: 0.07465489, w: 0.019669551} + outSlope: {x: -0.2411738, y: 0.016987218, z: 0.074654356, w: 0.019669412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.07999786, y: -0.7276817, z: -0.20272306, w: 0.6503713} + inSlope: {x: -0.19926454, y: 0.016987218, z: 0.064149104, w: 0.011622834} + outSlope: {x: -0.19937773, y: 0.014305129, z: 0.06370252, w: 0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.091689, y: -0.7267651, z: -0.19892427, w: 0.65102595} + inSlope: {x: -0.1451747, y: 0.011622917, z: 0.047832772, w: 0.0071525644} + outSlope: {x: -0.14495118, y: 0.011622917, z: 0.047832772, w: 0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.09933336, y: -0.72614455, z: -0.19638833, w: 0.65136665} + inSlope: {x: -0.07800765, y: 0.0080466345, z: 0.026151562, w: 0.0044703525} + outSlope: {x: -0.077784136, y: 0.005364423, z: 0.025928045, w: 0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.102074236, y: -0.7259181, z: -0.19546896, w: 0.65147185} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.09933336, y: -0.72614455, z: -0.19638833, w: 0.65136665} + inSlope: {x: 0.07756062, y: -0.005364423, z: -0.026151562, w: -0.0035762822} + outSlope: {x: 0.07823061, y: -0.008940641, z: -0.02592786, w: -0.0035762566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.091689, y: -0.7267651, z: -0.19892427, w: 0.65102595} + inSlope: {x: 0.14472663, y: -0.011622834, z: -0.047608916, w: -0.007152513} + outSlope: {x: 0.14539821, y: -0.011622917, z: -0.047609255, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.07999788, y: -0.7276817, z: -0.20272304, w: 0.6503713} + inSlope: {x: 0.19870718, y: -0.015199199, z: -0.06347901, w: -0.013411058} + outSlope: {x: 0.1989307, y: -0.01788141, z: -0.06370252, w: -0.0125169875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.0651662, y: -0.72878754, z: -0.20740642, w: 0.64931095} + inSlope: {x: 0.24028145, y: -0.01698734, z: -0.074431375, w: -0.019669551} + outSlope: {x: 0.24050497, y: -0.01698734, z: -0.07420785, w: -0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.047909245, y: -0.72999126, z: -0.21266848, w: 0.64775723} + inSlope: {x: 0.26877996, y: -0.01698734, z: -0.08001931, w: -0.027716186} + outSlope: {x: 0.269227, y: -0.020563623, z: -0.080466345, w: -0.027716186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.029323675, y: -0.7311853, z: -0.218116, w: 0.6457039} + inSlope: {x: 0.28375563, y: -0.018775482, z: -0.08068986, w: -0.03486875} + outSlope: {x: 0.28420267, y: -0.018775482, z: -0.08158393, w: -0.03576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.010085143, y: -0.7323056, z: -0.22352102, w: 0.64316815} + inSlope: {x: 0.28476146, y: -0.01698734, z: -0.07845469, w: -0.042021316} + outSlope: {x: 0.28454253, y: -0.016093528, z: -0.07778539, w: -0.04023382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.008648992, y: -0.7332795, z: -0.22856116, w: 0.6403015} + inSlope: {x: 0.2809662, y: -0.011623104, z: -0.07443257, w: -0.04559833} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.1469921, y: -0.6546075, z: -0.064356625, w: 0.7387425} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.10393532, y: 0.20116515, z: -0.119581506, w: 0.14752111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.15386155, y: -0.6411321, z: -0.0723526, w: 0.74835914} + inSlope: {x: 0.070854835, y: 0.1394745, z: -0.082924746, w: 0.0983474} + outSlope: {x: 0.07018454, y: 0.14126314, z: -0.08270153, w: 0.09745368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.1563984, y: -0.6359799, z: -0.0754536, w: 0.7519148} + inSlope: {x: 0.019222517, y: 0.037550963, z: -0.023134075, w: 0.025928045} + outSlope: {x: 0.01899893, y: 0.03755083, z: -0.02324575, w: 0.025927952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.1563984, y: -0.6359799, z: -0.0754536, w: 0.7519148} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.1563984, y: -0.6359799, z: -0.0754536, w: 0.7519148} + inSlope: {x: -0.007376082, y: -0.015199199, z: 0.009052464, w: -0.009834776} + outSlope: {x: -0.0075995997, y: -0.015199199, z: 0.009052464, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.15540867, y: -0.6380019, z: -0.074233726, w: 0.750527} + inSlope: {x: -0.02838674, y: -0.05543237, z: 0.034421716, w: -0.041127246} + outSlope: {x: -0.028386638, y: -0.059008442, z: 0.03453335, w: -0.03933896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.15262254, y: -0.6436128, z: -0.07086806, w: 0.7466235} + inSlope: {x: -0.05342052, y: -0.105499946, z: 0.063367024, w: -0.07510166} + outSlope: {x: -0.053420715, y: -0.106394395, z: 0.06336725, w: -0.07510193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.14828923, y: -0.6521139, z: -0.06582359, w: 0.74055725} + inSlope: {x: -0.07465489, y: -0.14394535, z: 0.08482494, w: -0.10460625} + outSlope: {x: -0.07420785, y: -0.14394535, z: 0.084601425, w: -0.10371218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.1426494, y: -0.66279566, z: -0.05958131, w: 0.73266846} + inSlope: {x: -0.092089266, y: -0.17076747, z: 0.09952123, w: -0.12964022} + outSlope: {x: -0.09186542, y: -0.17344905, z: 0.09952087, w: -0.12785162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.13596106, y: -0.6749526, z: -0.052612253, w: 0.7233156} + inSlope: {x: -0.10572346, y: -0.18775414, z: 0.107399836, w: -0.14752111} + outSlope: {x: -0.105500326, y: -0.18954295, z: 0.10695319, w: -0.14662756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.12851639, y: -0.6878943, z: -0.04535847, w: 0.7129009} + inSlope: {x: -0.11421751, y: -0.19490737, z: 0.10851781, w: -0.16093269} + outSlope: {x: -0.11421751, y: -0.19580145, z: 0.10868545, w: -0.16093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.12065169, y: -0.7009565, z: -0.03821826, w: 0.70188504} + inSlope: {x: -0.11757027, y: -0.19311923, z: 0.10421509, w: -0.1636149} + outSlope: {x: -0.11801731, y: -0.19133109, z: 0.10449449, w: -0.16808526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.112748966, y: -0.7135099, z: -0.031536832, w: 0.6907943} + inSlope: {x: -0.1153351, y: -0.18149632, z: 0.09533027, w: -0.16272083} + outSlope: {x: -0.11555862, y: -0.17970818, z: 0.09527439, w: -0.16272083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.105231866, y: -0.7249644, z: -0.025603112, w: 0.6802186} + inSlope: {x: -0.10617088, y: -0.15735641, z: 0.08197509, w: -0.14930978} + outSlope: {x: -0.10605836, y: -0.16003747, z: 0.0822539, w: -0.15020278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.0985567, y: -0.7347684, z: -0.020654246, w: 0.67080194} + inSlope: {x: -0.09007696, y: -0.13053337, z: 0.06593723, w: -0.12874523} + outSlope: {x: -0.09007761, y: -0.13053429, z: 0.06554654, w: -0.12606394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.09319998, y: -0.7424015, z: -0.016888116, w: 0.6632258} + inSlope: {x: -0.066831775, y: -0.092983335, z: 0.046491668, w: -0.095665544} + outSlope: {x: -0.06672002, y: -0.094771475, z: 0.04643579, w: -0.094771475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.08964363, y: -0.74735904, z: -0.014484305, w: 0.65818596} + inSlope: {x: -0.036209855, y: -0.05096202, z: 0.02453106, w: -0.05185609} + outSlope: {x: -0.036321614, y: -0.05006795, z: 0.02458694, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.08835821, y: -0.7491301, z: -0.013633847, w: 0.656362} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.08964363, y: -0.74735904, z: -0.014484305, w: 0.65818596} + inSlope: {x: 0.036433373, y: 0.04917388, z: -0.024307542, w: 0.05096202} + outSlope: {x: 0.036321357, y: 0.050961655, z: -0.024363248, w: 0.05185572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.09319998, y: -0.7424015, z: -0.016888116, w: 0.6632258} + inSlope: {x: 0.06683129, y: 0.0947708, z: -0.0460443, w: 0.0947708} + outSlope: {x: 0.06716705, y: 0.092983335, z: -0.04615639, w: 0.095665544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.0985567, y: -0.7347684, z: -0.020654246, w: 0.67080194} + inSlope: {x: 0.090301126, y: 0.13053429, z: -0.064540714, w: 0.12516987} + outSlope: {x: 0.090301126, y: 0.12964022, z: -0.06504363, w: 0.12874615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.10520947, y: -0.72499794, z: -0.025585987, w: 0.68018687} + inSlope: {x: 0.10661791, y: 0.15914455, z: -0.08102514, w: 0.15020385} + outSlope: {x: 0.10672967, y: 0.15914455, z: -0.08119278, w: 0.15109792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.112748966, y: -0.7135099, z: -0.031536832, w: 0.6907943} + inSlope: {x: 0.11611741, y: 0.17970818, z: -0.09398916, w: 0.16272083} + outSlope: {x: 0.11600565, y: 0.18149632, z: -0.09421268, w: 0.16272083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.12062685, y: -0.7009969, z: -0.03819648, w: 0.70185006} + inSlope: {x: 0.11868786, y: 0.19133109, z: -0.10287399, w: 0.16540305} + outSlope: {x: 0.11868786, y: 0.19222516, z: -0.10304163, w: 0.16629712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.1285164, y: -0.6878943, z: -0.04535847, w: 0.7129009} + inSlope: {x: 0.1153351, y: 0.19490737, z: -0.107344344, w: 0.16182676} + outSlope: {x: 0.11511343, y: 0.19491051, z: -0.107290186, w: 0.16093528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.13593878, y: -0.67499214, z: -0.052589834, w: 0.7232846} + inSlope: {x: 0.11109005, y: 0.1958046, z: -0.10762547, w: 0.15288852} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.2123988, y: 0.58773375, z: 0.16980477, w: 0.7619857} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.097900376, y: -0.038444895, z: -0.19468316, w: 0.09924147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: 0.20591414, y: 0.5851912, z: 0.15680146, w: 0.7684815} + inSlope: {x: 0, y: 0, z: -0.00044703367, w: 0} + outSlope: {x: 0, y: 0, z: 0.00044703527, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: 0.2123988, y: 0.58773375, z: 0.16980477, w: 0.7619857} + inSlope: {x: 0.18998998, y: 0.066161215, z: 0.36589837, w: -0.18328446} + outSlope: {x: 0.18887173, y: 0.061690647, z: 0.3663441, w: -0.18238974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.23118481, y: 0.593254, z: 0.20531897, w: 0.74326813} + inSlope: {x: 0.36790872, y: 0.07599572, z: 0.6609393, w: -0.3558388} + outSlope: {x: 0.36791003, y: 0.075996, z: 0.66071814, w: -0.35941637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.2618137, y: 0.5972247, z: 0.25727978, w: 0.71315026} + inSlope: {x: 0.5382305, y: 0.0125169875, z: 0.8569666, w: -0.5185609} + outSlope: {x: 0.53778344, y: 0.013411058, z: 0.8565196, w: -0.5176668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.3036772, y: 0.5945288, z: 0.31855997, w: 0.6729303} + inSlope: {x: 0.7000572, y: -0.11980545, z: 0.94637364, w: -0.65893} + outSlope: {x: 0.7000547, y: -0.11980502, z: 0.94771135, w: -0.6589276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.3560029, y: 0.5807142, z: 0.38242805, w: 0.6243251} + inSlope: {x: 0.8341648, y: -0.30487695, z: 0.9271478, w: -0.7581691} + outSlope: {x: 0.8341678, y: -0.30577213, z: 0.9267041, w: -0.75995994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.41572365, y: 0.55347073, z: 0.4411574, w: 0.57116044} + inSlope: {x: 0.925363, y: -0.506938, z: 0.81092197, w: -0.8064516} + outSlope: {x: 0.92446893, y: -0.506938, z: 0.8100279, w: -0.8073457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.47990647, y: 0.5125652, z: 0.48984933, w: 0.51673436} + inSlope: {x: 0.95397323, y: -0.68664616, z: 0.6276375, w: -0.79661685} + outSlope: {x: 0.9544169, y: -0.68574965, z: 0.62540007, w: -0.7992962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.5432749, y: 0.4613374, z: 0.5245535, w: 0.46568653} + inSlope: {x: 0.9137368, y: -0.80644876, z: 0.41127098, w: -0.730006} + outSlope: {x: 0.9137401, y: -0.80823976, z: 0.41306058, w: -0.73179674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.6019937, y: 0.4042932, z: 0.545117, w: 0.4207113} + inSlope: {x: 0.8091338, y: -0.84132034, z: 0.21100065, w: -0.620932} + outSlope: {x: 0.8073457, y: -0.84042627, z: 0.21010657, w: -0.62182605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.6513591, y: 0.34867913, z: 0.5533859, w: 0.3846014} + inSlope: {x: 0.6490952, y: -0.773371, z: 0.058114585, w: -0.481904} + outSlope: {x: 0.6508833, y: -0.773818, z: 0.05632644, w: -0.4832451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.68905526, y: 0.3008686, z: 0.5536001, w: 0.35806125} + inSlope: {x: 0.45687005, y: -0.6048387, z: -0.026822116, w: -0.3308061} + outSlope: {x: 0.45418784, y: -0.60260355, z: -0.026822116, w: -0.32857093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.712699, y: 0.26815516, z: 0.5507081, w: 0.34186786} + inSlope: {x: 0.23692869, y: -0.33661756, z: -0.037550963, w: -0.16674416} + outSlope: {x: 0.23692699, y: -0.33795625, z: -0.037550695, w: -0.16897812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.7210501, y: 0.25603676, z: 0.5490726, w: 0.3362311} + inSlope: {x: 0.06258449, y: -0.09030048, z: -0.011622834, w: -0.041573983} + outSlope: {x: 0.061690867, y: -0.09164223, z: -0.013411058, w: -0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.7210501, y: 0.25603676, z: 0.5490726, w: 0.3362311} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: -0.00044703527, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.7210501, y: 0.25603676, z: 0.5490726, w: 0.33623108} + inSlope: {x: -0.26464486, y: 0.3942851, z: 0.046491668, w: 0.19446033} + outSlope: {x: -0.26643303, y: 0.39517918, z: 0.045597598, w: 0.19535442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.68371576, y: 0.30795115, z: 0.5539169, w: 0.3617666} + inSlope: {x: -0.9602317, y: 1.2981904, z: -0.022351762, w: 0.74744296} + outSlope: {x: -0.963808, y: 1.2990844, z: -0.023245834, w: 0.74744296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.58331025, y: 0.42347205, z: 0.53980124, w: 0.43478176} + inSlope: {x: -1.7166154, y: 1.7599778, z: -0.61690867, w: 1.3549639} + outSlope: {x: -1.7201794, y: 1.7622004, z: -0.6177983, w: 1.3576363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.4476732, y: 0.53452885, z: 0.46715683, w: 0.54372054} + inSlope: {x: -1.979905, y: 1.2758296, z: -1.4814643, w: 1.6486542} + outSlope: {x: -1.9826014, y: 1.2776268, z: -1.4850512, w: 1.6522423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.32018095, y: 0.5913091, z: 0.34009928, w: 0.6573967} + inSlope: {x: -1.6428546, y: 0.40411988, z: -1.8972176, w: 1.419784} + outSlope: {x: -1.6428546, y: 0.40233174, z: -1.8985587, w: 1.4188899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.23547506, y: 0.5941625, z: 0.21301515, w: 0.7390176} + inSlope: {x: -0.89854085, y: -0.10281811, z: -1.3793273, w: 0.76800656} + outSlope: {x: -0.89854085, y: -0.106394395, z: -1.3779862, w: 0.76800656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.20591414, y: 0.5851912, z: 0.15680146, w: 0.7684815} + inSlope: {x: -0.00044703527, y: 0, z: -0.0011175881, w: 0.00089407054} + outSlope: {x: 0.00044703527, y: 0, z: 0.00089407054, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.235475, y: 0.5941625, z: 0.21301506, w: 0.7390176} + inSlope: {x: 0.8583077, y: 0.09924183, z: 1.408161, w: -0.7581718} + outSlope: {x: 0.8594253, y: 0.096559614, z: 1.4117373, w: -0.7581718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.32018095, y: 0.5913091, z: 0.34009928, w: 0.6573967} + inSlope: {x: 1.5793756, y: -0.40769616, z: 1.9557793, w: -1.4117373} + outSlope: {x: 1.578954, y: -0.41127905, z: 1.9540225, w: -1.4126542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.4476732, y: 0.53452885, z: 0.46715683, w: 0.54372054} + inSlope: {x: 1.7009965, y: -1.0344563, z: 1.7434655, w: -1.8820487} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.06489994, y: -0.1616752, z: -0.13556315, w: 0.97533166} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.10874094, y: 0.0809131, z: -0.3372869, w: -0.041127097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.07216554, y: -0.1563317, z: -0.15794249, w: 0.97232026} + inSlope: {x: 0.11756986, y: -0.12919272, z: 0.21323505, w: 0.022351684} + outSlope: {x: 0.118352585, y: -0.1294167, z: 0.21390638, w: 0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.04916053, y: -0.17877959, z: -0.10675803, w: 0.9768438} + inSlope: {x: 0.5809223, y: -0.46491668, z: 1.3625635, w: 0.092983335} + outSlope: {x: 0.58136725, y: -0.46513852, z: 1.3643467, w: 0.092983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: 0.0033925883, y: -0.21977453, z: 0.02577689, w: 0.97520417} + inSlope: {x: 0.81671655, y: -0.39987162, z: 2.3049335, w: -0.15467365} + outSlope: {x: 0.81695694, y: -0.3992025, z: 2.305305, w: -0.15378013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: 0.056892656, y: -0.23835647, z: 0.20103437, w: 0.9484379} + inSlope: {x: 0.6247318, y: 0.094771475, z: 2.5798404, w: -0.5614763} + outSlope: {x: 0.6237818, y: 0.09588906, z: 2.580064, w: -0.55968815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: 0.08866663, y: -0.21643916, z: 0.36833245, w: 0.8997908} + inSlope: {x: 0.25257492, y: 0.5435949, z: 2.118053, w: -0.7617481} + outSlope: {x: 0.25201523, y: 0.54381645, z: 2.1180456, w: -0.7608513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: 0.096421674, y: -0.17262368, z: 0.485302, w: 0.85169584} + inSlope: {x: 0.023692785, y: 0.5221353, z: 1.1627345, w: -0.5605802} + outSlope: {x: 0.023022316, y: 0.5214666, z: 1.1622916, w: -0.5587941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: 0.09526259, y: -0.14909133, z: 0.5275507, w: 0.8308953} + inSlope: {x: 0.017210858, y: 0.13321652, z: 0.18149632, w: -0.093877405} + outSlope: {x: 0.01788141, y: 0.13232243, z: 0.17970818, w: -0.092089266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: 0.098982744, y: -0.15508845, z: 0.50998455, w: 0.84027714} + inSlope: {x: 0.07811941, y: -0.1408161, z: -0.48100993, w: 0.25659823} + outSlope: {x: 0.078454405, y: -0.14059208, z: -0.4819023, w: 0.25838545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.10591484, y: -0.1676121, z: 0.4626543, w: 0.8640829} + inSlope: {x: 0.07074308, y: -0.17076686, z: -0.8721627, w: 0.42378792} + outSlope: {x: 0.07085509, y: -0.17032044, z: -0.8735069, w: 0.42557758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.10912489, y: -0.17783432, z: 0.39304245, w: 0.8955358} + inSlope: {x: -0.018663723, y: -0.08337208, z: -1.1189293, w: 0.47743365} + outSlope: {x: -0.018551962, y: -0.08337208, z: -1.1175882, w: 0.4756455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.10419311, y: -0.1794723, z: 0.31316057, w: 0.92674917} + inSlope: {x: -0.1313166, y: 0.05252664, z: -1.1703383, w: 0.4211072} + outSlope: {x: -0.1318754, y: 0.05297368, z: -1.1716794, w: 0.4211072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.09191024, y: -0.17218515, z: 0.23663607, w: 0.95179206} + inSlope: {x: -0.19311923, y: 0.14394535, z: -0.99957085, w: 0.29236105} + outSlope: {x: -0.19289571, y: 0.14372183, z: -0.9980062, w: 0.2941492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.078438684, y: -0.16163531, z: 0.18011364, w: 0.9670991} + inSlope: {x: -0.14819218, y: 0.12382877, z: -0.5914276, w: 0.14305128} + outSlope: {x: -0.1479676, y: 0.12427492, z: -0.59209394, w: 0.14126213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.07216541, y: -0.1563316, z: 0.1579425, w: 0.97232026} + inSlope: {x: -0.047161885, y: 0.040456403, z: -0.16718999, w: 0.035762563} + outSlope: {x: -0.04705046, y: 0.04045669, z: -0.1660736, w: 0.038445033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.07216541, y: -0.1563316, z: 0.1579425, w: 0.97232026} + inSlope: {x: 0, y: 0, z: 0.00022351764, w: 0} + outSlope: {x: 0, y: 0, z: -0.00022351764, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.07216541, y: -0.1563316, z: 0.1579425, w: 0.97232026} + inSlope: {x: -0.03397468, y: -0.018775482, z: 0.18529612, w: -0.03129247} + outSlope: {x: -0.03408644, y: -0.018775482, z: 0.18574315, w: -0.029504327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.06760136, y: -0.15881146, z: 0.1826413, w: 0.96791077} + inSlope: {x: -0.103935696, y: -0.050514985, z: 0.52705455, w: -0.09924183} + outSlope: {x: -0.104047455, y: -0.05006795, z: 0.52683103, w: -0.10192404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.058218915, y: -0.16286139, z: 0.2280402, w: 0.9581672} + inSlope: {x: -0.11214997, y: -0.043809455, z: 0.520349, w: -0.12516987} + outSlope: {x: -0.11203741, y: -0.043585625, z: 0.5214629, w: -0.12516898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.05268587, y: -0.16472854, z: 0.25219798, w: 0.952095} + inSlope: {x: -0.2616814, y: -0.13545072, z: -0.5914234, w: 0.14752059} + outSlope: {x: -0.2626332, y: -0.13656928, z: -0.59500396, w: 0.14930978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.023299944, y: -0.18064198, z: 0.14728047, w: 0.9721801} + inSlope: {x: -0.684858, y: -0.059008654, z: -2.2602103, w: 0.34779343} + outSlope: {x: -0.6859197, y: -0.05766755, z: -2.2628925, w: 0.34779343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.03799914, y: -0.17652334, z: -0.05207064, w: 0.98218334} + inSlope: {x: -0.69290465, y: 0.2536925, z: -2.2854679, w: -0.10281811} + outSlope: {x: -0.6924576, y: 0.25413954, z: -2.2842383, w: -0.10102997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.072165534, y: -0.1563317, z: -0.15794249, w: 0.97232026} + inSlope: {x: 0.3068897, y: -0.33639404, z: 0.5605822, w: 0.059008654} + outSlope: {x: 0.31013072, y: -0.34041736, z: 0.5679583, w: 0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.003392592, y: -0.21977453, z: 0.025776887, w: 0.97520417} + inSlope: {x: 1.2477102, y: -0.3638867, z: 3.971657, w: -0.19043702} + outSlope: {x: 1.2505252, y: -0.36187506, z: 3.9831119, w: -0.19133109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.08872379, y: -0.21631786, z: 0.36879438, w: 0.8996252} + inSlope: {x: 0.5581235, y: 0.7300086, z: 3.6308205, w: -1.3670338} + outSlope: {x: 0.555562, y: 0.7322555, z: 3.6255143, w: -1.3661617} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.095262595, y: -0.14909108, z: 0.52755105, w: 0.8308952} + inSlope: {x: -0.007823243, y: 1.0615023, z: 2.2164364, w: -1.2159555} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.14972714, y: 0.10359965, z: -0.3999407, w: 0.8982742} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.6414933, y: 0.2437451, z: 2.4059353, w: 1.1470884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.105334625, y: 0.11660163, z: -0.23323114, w: 0.9596415} + inSlope: {x: 0.55912733, y: 0.19613601, z: 1.8475901, w: 0.48637262} + outSlope: {x: 0.5586823, y: 0.1970308, z: 1.8453616, w: 0.48726845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.07648901, y: 0.12948729, z: -0.15589462, w: 0.9762578} + inSlope: {x: 0.21792969, y: 0.09521851, z: 0.5844986, w: 0.09745368} + outSlope: {x: 0.21725836, y: 0.09477114, z: 0.58270836, w: 0.09745334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.07648901, y: 0.12948729, z: -0.15589462, w: 0.9762578} + inSlope: {x: -0.00033527525, y: 0, z: -0.00044703367, w: 0} + outSlope: {x: 0, y: 0, z: -0.00022351764, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.07648901, y: 0.12948729, z: -0.15589462, w: 0.9762578} + inSlope: {x: 0.034645233, y: -0.0091642225, z: 0.18708426, w: 0.033080608} + outSlope: {x: 0.03486875, y: -0.009387741, z: 0.18753129, w: 0.03397468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.07183906, y: 0.12820734, z: -0.13085976, w: 0.9804477} + inSlope: {x: 0.1248346, y: -0.03129247, z: 0.6578124, w: 0.1001359} + outSlope: {x: 0.12505767, y: -0.031292357, z: 0.6584806, w: 0.101923674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.05987775, y: 0.12499797, z: -0.06792222, w: 0.9880165} + inSlope: {x: 0.21317917, y: -0.05207942, z: 1.0872977, w: 0.09477114} + outSlope: {x: 0.21306819, y: -0.051967848, z: 1.087525, w: 0.094771475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.04372932, y: 0.12086128, z: 0.014297089, w: 0.9916027} + inSlope: {x: 0.24994859, y: -0.058896895, z: 1.2315542, w: 0.0017881411} + outSlope: {x: 0.24989271, y: -0.058226343, z: 1.2317219, w: 0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.0269683, y: 0.11682101, z: 0.09642623, w: 0.9880929} + inSlope: {x: 0.22972025, y: -0.051967848, z: 1.0849546, w: -0.093877405} + outSlope: {x: 0.22944003, y: -0.05152063, z: 1.0839449, w: -0.09208894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.013417713, y: 0.113797665, z: 0.1591363, w: 0.9805843} + inSlope: {x: 0.15241054, y: -0.032633457, z: 0.65423375, w: -0.10013554} + outSlope: {x: 0.15232727, y: -0.03274533, z: 0.6535655, w: -0.1001359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.0067553744, y: 0.11250363, z: 0.1839046, w: 0.97646123} + inSlope: {x: 0.04931358, y: -0.010840605, z: 0.08784243, w: -0.014305129} + outSlope: {x: 0.04909006, y: -0.010840605, z: 0.08694836, w: -0.015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.006863147, y: 0.11236497, z: 0.17083691, w: 0.97884715} + inSlope: {x: -0.02648684, y: 0.00022351764, z: -0.34801695, w: 0.059902724} + outSlope: {x: -0.026654478, y: 0, z: -0.34846398, w: 0.061690867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.010297339, y: 0.112480745, z: 0.1374258, w: 0.9840509} + inSlope: {x: -0.06544875, y: 0.0050291466, z: -0.5938864, w: 0.08225449} + outSlope: {x: -0.06544875, y: 0.004917388, z: -0.5934393, w: 0.080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.01560435, y: 0.11296029, z: 0.0916297, w: 0.9892424} + inSlope: {x: -0.08341399, y: 0.012069952, z: -0.71805036, w: 0.06347901} + outSlope: {x: -0.08359499, y: 0.011734592, z: -0.718604, w: 0.06526668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.021479484, y: 0.11404945, z: 0.04163017, w: 0.99237007} + inSlope: {x: -0.11684301, y: 0.034086194, z: -0.7977846, w: 0.026821924} + outSlope: {x: -0.11673208, y: 0.03397468, z: -0.79717565, w: 0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.031297814, y: 0.11739936, z: -0.014699251, w: 0.9924826} + inSlope: {x: -0.20938013, y: 0.07040805, z: -0.92762613, w: -0.029504327} + outSlope: {x: -0.20954777, y: 0.070296295, z: -0.92807317, w: -0.027716186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.049669724, y: 0.123071246, z: -0.082072705, w: 0.98775023} + inSlope: {x: -0.3354441, y: 0.09667137, z: -1.0601441, w: -0.11712324} + outSlope: {x: -0.33555585, y: 0.09600082, z: -1.0601441, w: -0.11801731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.076489, y: 0.12948729, z: -0.1558947, w: 0.9762578} + inSlope: {x: -0.45452312, y: 0.054985337, z: -1.2208533, w: -0.23782276} + outSlope: {x: -0.45463488, y: 0.054314785, z: -1.2208533, w: -0.23782276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.11073985, y: 0.12904167, z: -0.24439895, w: 0.9546487} + inSlope: {x: -0.4968797, y: -0.04246835, z: -1.4499589, w: -0.4220013} + outSlope: {x: -0.4973232, y: -0.042691562, z: -1.4524071, w: -0.4237864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.14308743, y: 0.122187346, z: -0.34843776, w: 0.9182524} + inSlope: {x: -0.38735327, y: -0.07945995, z: -1.5552245, w: -0.6392559} + outSlope: {x: -0.3882501, y: -0.07890172, z: -1.5579178, w: -0.6428367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.1632657, y: 0.11753802, z: -0.45161662, w: 0.8692362} + inSlope: {x: -0.18082577, y: -0.028833775, z: -1.4166547, w: -0.7671125} + outSlope: {x: -0.18060225, y: -0.029057292, z: -1.4166547, w: -0.76532435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.16862856, y: 0.11855072, z: -0.53815687, w: 0.81724983} + inSlope: {x: -0.00044703527, y: 0.034756992, z: -1.0782491, w: -0.7152564} + outSlope: {x: -0.0006705529, y: 0.03498051, z: -1.076461, w: -0.7143623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.1647289, y: 0.12301922, z: -0.5967149, w: 0.77566874} + inSlope: {x: 0.05923217, y: 0.048279807, z: -0.5900865, w: -0.44971746} + outSlope: {x: 0.05923217, y: 0.048279807, z: -0.58919245, w: -0.44792932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.16144182, y: 0.12555146, z: -0.61801755, w: 0.7590966} + inSlope: {x: 0.0102818115, y: -0.017210858, z: 0.0044703525, w: 0.0080466345} + outSlope: {x: 0.010058293, y: -0.018104928, z: 0.0044703525, w: 0.008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.16338062, y: 0.12070542, z: -0.596014, w: 0.7768553} + inSlope: {x: -0.022798799, y: -0.10930012, z: 0.5990273, w: 0.4702811} + outSlope: {x: -0.023022687, y: -0.10874308, z: 0.599931, w: 0.473865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.1646375, y: 0.110989526, z: -0.5367073, w: 0.82007384} + inSlope: {x: -0.004023382, y: -0.15311204, z: 0.9101784, w: 0.61423635} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.035151646, y: 0.73847055, z: -0.23585607, w: 0.63071185} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.3512567, y: 0.061690647, z: -0.06258471, w: -0.11354655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.058544315, y: 0.7422008, z: -0.23992474, w: 0.6230143} + inSlope: {x: -0.24229224, y: 0.03755083, z: -0.041350614, w: -0.081360124} + outSlope: {x: -0.24162255, y: 0.03576282, z: -0.040903725, w: -0.08225449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.06743314, y: 0.74355763, z: -0.24134538, w: 0.6199414} + inSlope: {x: -0.06672002, y: 0.010728846, z: -0.0102818115, w: -0.023245834} + outSlope: {x: -0.0663845, y: 0.008940673, z: -0.010505291, w: -0.025033886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.06743314, y: 0.74355763, z: -0.24134538, w: 0.6199414} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.06743314, y: 0.74355763, z: -0.24134538, w: 0.6199414} + inSlope: {x: 0.025704527, y: -0.0026822116, z: 0.0040233172, w: 0.008940705} + outSlope: {x: 0.026151562, y: -0.0044703525, z: 0.0040233172, w: 0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.06394834, y: 0.7430297, z: -0.2407966, w: 0.62115574} + inSlope: {x: 0.09901831, y: -0.015199199, z: 0.016093269, w: 0.03397468} + outSlope: {x: 0.0989062, y: -0.015199144, z: 0.016093211, w: 0.033974558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.054253638, y: 0.74153376, z: -0.2392144, w: 0.6244684} + inSlope: {x: 0.18361908, y: -0.027716087, z: 0.030621806, w: 0.061690647} + outSlope: {x: 0.18283743, y: -0.026822116, z: 0.030621916, w: 0.061690867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.03949643, y: 0.73918056, z: -0.2366482, w: 0.6293249} + inSlope: {x: 0.2510103, y: -0.040233172, z: 0.045150563, w: 0.081360415} + outSlope: {x: 0.25067502, y: -0.041127246, z: 0.04537408, w: 0.079572275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.020834975, y: 0.73607695, z: -0.23312715, w: 0.63514435} + inSlope: {x: 0.30074298, y: -0.05096202, z: 0.059008654, w: 0.090301126} + outSlope: {x: 0.30085367, y: -0.05006777, z: 0.059455477, w: 0.0903008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: 0.0005644858, y: 0.7323491, z: -0.22870411, w: 0.6413728} + inSlope: {x: 0.33259305, y: -0.05722031, z: 0.071748905, w: 0.092983} + outSlope: {x: 0.33315304, y: -0.059008654, z: 0.07174916, w: 0.092089266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: 0.023534961, y: 0.72815484, z: -0.22348897, w: 0.6475255} + inSlope: {x: 0.3479052, y: -0.064373076, z: 0.08247801, w: 0.08761891} + outSlope: {x: 0.34779343, y: -0.064373076, z: 0.08247801, w: 0.08851298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: 0.04691983, y: 0.7236895, z: -0.21767053, w: 0.65321636} + inSlope: {x: 0.3454465, y: -0.066161215, z: 0.08985409, w: 0.079572275} + outSlope: {x: 0.34555826, y: -0.066161215, z: 0.08940705, w: 0.077784136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.06958585, y: 0.71918213, z: -0.21152706, w: 0.65817267} + inSlope: {x: 0.32689452, y: -0.065267146, z: 0.09141871, w: 0.06794936} + outSlope: {x: 0.32600045, y: -0.065267146, z: 0.09141871, w: 0.065267146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: 0.09043442, y: 0.7148873, z: -0.20542525, w: 0.6622373} + inSlope: {x: 0.29124346, y: -0.060796797, z: 0.088065945, w: 0.052750163} + outSlope: {x: 0.2914649, y: -0.06079636, z: 0.0878418, w: 0.05185572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: 0.10840736, y: 0.7110755, z: -0.19980794, w: 0.66535425} + inSlope: {x: 0.24072677, y: -0.05185572, z: 0.07733655, w: 0.038444757} + outSlope: {x: 0.24016969, y: -0.05185609, z: 0.076890066, w: 0.038445033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: 0.12248385, y: 0.708022, z: -0.1951712, w: 0.66754085} + inSlope: {x: 0.17412023, y: -0.037550963, z: 0.05856162, w: 0.025928045} + outSlope: {x: 0.17434375, y: -0.038445033, z: 0.05856162, w: 0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: 0.13166618, y: 0.7059989, z: -0.19203173, w: 0.6688448} + inSlope: {x: 0.09343037, y: -0.020563623, z: 0.03196302, w: 0.0125169875} + outSlope: {x: 0.09343037, y: -0.021457693, z: 0.032410055, w: 0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: 0.13495417, y: 0.70526856, z: -0.19088513, w: 0.66928816} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: 0.13166615, y: 0.7059989, z: -0.1920317, w: 0.6688448} + inSlope: {x: -0.09343037, y: 0.020563623, z: -0.032186538, w: -0.014305129} + outSlope: {x: -0.09320618, y: 0.020563476, z: -0.032186307, w: -0.012516898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: 0.122483835, y: 0.708022, z: -0.19517124, w: 0.66754085} + inSlope: {x: -0.17423075, y: 0.039338823, z: -0.058784716, w: -0.02592786} + outSlope: {x: -0.17445551, y: 0.039339103, z: -0.058338102, w: -0.025928045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: 0.10840733, y: 0.7110755, z: -0.19980797, w: 0.66535425} + inSlope: {x: -0.2396109, y: 0.05185609, z: -0.076890066, w: -0.040233172} + outSlope: {x: -0.24005793, y: 0.052750163, z: -0.076890066, w: -0.039339103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: 0.09049553, y: 0.7148745, z: -0.2054067, w: 0.66224855} + inSlope: {x: -0.29101995, y: 0.061690867, z: -0.088065945, w: -0.053644232} + outSlope: {x: -0.29046115, y: 0.061690867, z: -0.088065945, w: -0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: 0.0695858, y: 0.71918213, z: -0.21152705, w: 0.6581727} + inSlope: {x: -0.3258887, y: 0.06705529, z: -0.09231278, w: -0.06705529} + outSlope: {x: -0.32622397, y: 0.066161215, z: -0.09186575, w: -0.06884343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: 0.04699233, y: 0.7236754, z: -0.21765171, w: 0.65323305} + inSlope: {x: -0.34455243, y: 0.06705529, z: -0.09007761, w: -0.080466345} + outSlope: {x: -0.3460053, y: 0.06884343, z: -0.09007761, w: -0.080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.023534976, y: 0.72815484, z: -0.22348896, w: 0.6475255} + inSlope: {x: -0.34723464, y: 0.065267146, z: -0.082925044, w: -0.091195196} + outSlope: {x: -0.34746376, y: 0.06616228, z: -0.083149895, w: -0.089408495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.00063444674, y: 0.7323365, z: -0.22868896, w: 0.64139235} + inSlope: {x: -0.34310508, y: 0.05990369, z: -0.0768913, w: -0.09566709} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.14765109, y: 0.6592223, z: -0.06283197, w: 0.7346273} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.10527643, y: -0.20027108, z: -0.118687436, w: 0.14841518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.15460214, y: 0.6458093, z: -0.07075674, w: 0.7443266} + inSlope: {x: -0.07152539, y: -0.1394745, z: -0.08236595, w: 0.10013554} + outSlope: {x: -0.07130212, y: -0.14036907, z: -0.08191921, w: 0.09834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.15717062, y: 0.6406803, z: -0.07383148, w: 0.7479138} + inSlope: {x: -0.019222517, y: -0.038445033, z: -0.023022316, w: 0.026822116} + outSlope: {x: -0.019222448, y: -0.038444895, z: -0.023022234, w: 0.02682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.15717062, y: 0.6406803, z: -0.07383148, w: 0.7479138} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.15717062, y: 0.6406803, z: -0.07383148, w: 0.7479138} + inSlope: {x: 0.007376082, y: 0.015199199, z: 0.009052464, w: -0.010728846} + outSlope: {x: 0.0075995997, y: 0.014305129, z: 0.008717188, w: -0.009834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.15616845, y: 0.6426931, z: -0.07262196, w: 0.7465139} + inSlope: {x: 0.028833775, y: 0.05632644, z: 0.0341982, w: -0.040233172} + outSlope: {x: 0.028610155, y: 0.05722031, z: 0.034198076, w: -0.03933896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.15334797, y: 0.64827865, z: -0.06928508, w: 0.7425758} + inSlope: {x: 0.053867556, y: 0.106394015, z: 0.062361196, w: -0.07420759} + outSlope: {x: 0.05386775, y: 0.10460625, z: 0.06303197, w: -0.07510193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.14896318, y: 0.65674025, z: -0.06428554, w: 0.73645747} + inSlope: {x: 0.075325444, y: 0.14305128, z: 0.084601425, w: -0.106394395} + outSlope: {x: 0.07554896, y: 0.14394535, z: 0.08415439, w: -0.106394395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.1432595, y: 0.6673711, z: -0.05810172, w: 0.7285029} + inSlope: {x: 0.09320685, y: 0.16897933, z: 0.09829188, w: -0.12964022} + outSlope: {x: 0.092983, y: 0.172555, z: 0.09868268, w: -0.12963976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.13649967, y: 0.6794685, z: -0.051202048, w: 0.71907496} + inSlope: {x: 0.10684104, y: 0.18775414, z: 0.10611462, w: -0.14930925} + outSlope: {x: 0.10661791, y: 0.18686074, z: 0.106506154, w: -0.14930978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.12898052, y: 0.6923442, z: -0.04402549, w: 0.70857984} + inSlope: {x: 0.115782134, y: 0.1940133, z: 0.10767962, w: -0.16182676} + outSlope: {x: 0.1153351, y: 0.19311923, z: 0.107232586, w: -0.16182676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.12104233, y: 0.70533717, z: -0.036967013, w: 0.69748235} + inSlope: {x: 0.11891138, y: 0.19043702, z: 0.103097506, w: -0.16719119} + outSlope: {x: 0.11902314, y: 0.19222516, z: 0.103097506, w: -0.16719119} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.11307067, y: 0.7178216, z: -0.030367773, w: 0.6863127} + inSlope: {x: 0.11622917, y: 0.18060225, z: 0.09410092, w: -0.16450898} + outSlope: {x: 0.11622917, y: 0.17792003, z: 0.093933284, w: -0.1636149} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.105492234, y: 0.7292105, z: -0.02451232, w: 0.67566454} + inSlope: {x: 0.10695319, y: 0.15914455, z: 0.08102514, w: -0.15109792} + outSlope: {x: 0.10717594, y: 0.15824935, z: 0.081136316, w: -0.15109684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.09876589, y: 0.73895645, z: -0.019633088, w: 0.66618556} + inSlope: {x: 0.090635754, y: 0.13053337, z: 0.06487553, w: -0.12874523} + outSlope: {x: 0.09085992, y: 0.12964022, z: 0.06493187, w: -0.12874615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.093370065, y: 0.7465429, z: -0.015922807, w: 0.65856063} + inSlope: {x: 0.06727881, y: 0.092983335, z: 0.045765236, w: -0.095665544} + outSlope: {x: 0.06705529, y: 0.094771475, z: 0.045709357, w: -0.094771475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.08978875, y: 0.7514697, z: -0.013556093, w: 0.65348876} + inSlope: {x: 0.036433373, y: 0.05096202, z: 0.023972265, w: -0.05185609} + outSlope: {x: 0.036433373, y: 0.05006795, z: 0.024028145, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.08849444, y: 0.75322956, z: -0.0127190575, w: 0.6516534} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.08978874, y: 0.7514697, z: -0.013556082, w: 0.65348876} + inSlope: {x: -0.03654513, y: -0.04917388, z: -0.023748748, w: 0.05096202} + outSlope: {x: -0.036768388, y: -0.050961655, z: -0.023972094, w: 0.05185572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.093370065, y: 0.7465429, z: -0.015922807, w: 0.65856063} + inSlope: {x: -0.067278326, y: -0.0947708, z: -0.045373753, w: 0.0947708} + outSlope: {x: -0.06750233, y: -0.092983335, z: -0.04542996, w: 0.095665544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.098765865, y: 0.73895645, z: -0.019633114, w: 0.66618556} + inSlope: {x: -0.09097168, y: -0.12874615, z: -0.06398192, w: 0.12785208} + outSlope: {x: -0.09097168, y: -0.12874615, z: -0.0637584, w: 0.12695801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.10546969, y: 0.7292439, z: -0.024495497, w: 0.6756327} + inSlope: {x: -0.1077355, y: -0.15735641, z: -0.07996343, w: 0.15020385} + outSlope: {x: -0.10751198, y: -0.16003862, z: -0.08001931, w: 0.15288606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.11307067, y: 0.7178216, z: -0.030367773, w: 0.6863127} + inSlope: {x: -0.11689972, y: -0.17792003, z: -0.09264806, w: 0.1636149} + outSlope: {x: -0.11712324, y: -0.18060225, z: -0.092983335, w: 0.16450898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.121017255, y: 0.70537734, z: -0.036945503, w: 0.6974473} + inSlope: {x: -0.11947017, y: -0.19043702, z: -0.101532884, w: 0.16629712} + outSlope: {x: -0.11991721, y: -0.19311923, z: -0.1020358, w: 0.16629712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.12898052, y: 0.6923442, z: -0.04402549, w: 0.70857984} + inSlope: {x: -0.11622917, y: -0.19311923, z: -0.10589148, w: 0.16182676} + outSlope: {x: -0.11645456, y: -0.19401643, z: -0.106172584, w: 0.16182937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.1364772, y: 0.67950785, z: -0.051179826, w: 0.7190436} + inSlope: {x: -0.112431176, y: -0.19491051, z: -0.106675506, w: 0.15557078} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.009674785, y: 0.53064895, z: 0.13903522} + inSlope: {x: 0, y: -0.2319309, z: 0} + outSlope: {x: 0, y: -0.2319309, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666756 + value: {x: -0.009674785, y: 0.51518685, z: 0.13903522} + inSlope: {x: 0, y: -0.15995237, z: 0} + outSlope: {x: 0, y: -0.15995237, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333416 + value: {x: -0.009674785, y: 0.5093219, z: 0.13903522} + inSlope: {x: 0, y: -0.043986928, z: 0} + outSlope: {x: 0, y: -0.043986928, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.200001 + value: {x: -0.009674785, y: 0.5093219, z: 0.13903522} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2666676 + value: {x: -0.009674785, y: 0.5093219, z: 0.13903522} + inSlope: {x: 0, y: 0.017240362, z: 0} + outSlope: {x: 0, y: 0.017240362, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.3333342 + value: {x: -0.009674785, y: 0.51162064, z: 0.13903522} + inSlope: {x: 0, y: 0.065233, z: 0} + outSlope: {x: 0, y: 0.065233, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.40000105 + value: {x: -0.009674785, y: 0.5180197, z: 0.13903522} + inSlope: {x: 0, y: 0.121147275, z: 0} + outSlope: {x: 0, y: 0.121147275, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666765 + value: {x: -0.009674785, y: 0.5277736, z: 0.13903522} + inSlope: {x: 0, y: 0.16587913, z: 0} + outSlope: {x: 0, y: 0.16587913, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333426 + value: {x: -0.009674785, y: 0.5401369, z: 0.13903522} + inSlope: {x: 0, y: 0.19942741, z: 0} + outSlope: {x: 0, y: 0.19942741, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6000011 + value: {x: -0.009674785, y: 0.55436397, z: 0.13903522} + inSlope: {x: 0, y: 0.22179303, z: 0} + outSlope: {x: 0, y: 0.22179303, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666677 + value: {x: -0.009674785, y: 0.5697093, z: 0.13903522} + inSlope: {x: 0, y: 0.23297645, z: 0} + outSlope: {x: 0, y: 0.23297645, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7333343 + value: {x: -0.009674785, y: 0.58542746, z: 0.13903522} + inSlope: {x: 0, y: 0.23297645, z: 0} + outSlope: {x: 0, y: 0.23297645, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.009674785, y: 0.6007728, z: 0.13903522} + inSlope: {x: 0, y: 0.22179341, z: 0} + outSlope: {x: 0, y: 0.22179341, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666675 + value: {x: -0.009674785, y: 0.6149999, z: 0.13903522} + inSlope: {x: 0, y: 0.19942713, z: 0} + outSlope: {x: 0, y: 0.19942713, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9333346 + value: {x: -0.009674785, y: 0.62736315, z: 0.13903522} + inSlope: {x: 0, y: 0.16587847, z: 0} + outSlope: {x: 0, y: 0.16587847, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0000012 + value: {x: -0.009674785, y: 0.6371171, z: 0.13903522} + inSlope: {x: 0, y: 0.12114745, z: 0} + outSlope: {x: 0, y: 0.12114745, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666678 + value: {x: -0.009674785, y: 0.6435161, z: 0.13903522} + inSlope: {x: 0, y: 0.06523317, z: 0} + outSlope: {x: 0, y: 0.06523317, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333344 + value: {x: -0.009674785, y: 0.64581484, z: 0.13903522} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.200001 + value: {x: -0.009674785, y: 0.6435161, z: 0.13903522} + inSlope: {x: 0, y: -0.06523283, z: 0} + outSlope: {x: 0, y: -0.06523283, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666681 + value: {x: -0.009674785, y: 0.6371171, z: 0.13903522} + inSlope: {x: 0, y: -0.1211471, z: 0} + outSlope: {x: 0, y: -0.1211471, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333347 + value: {x: -0.009674785, y: 0.62736315, z: 0.13903522} + inSlope: {x: 0, y: -0.16556486, z: 0} + outSlope: {x: 0, y: -0.16556486, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4000013 + value: {x: -0.009674785, y: 0.6150418, z: 0.13903522} + inSlope: {x: 0, y: -0.1994278, z: 0} + outSlope: {x: 0, y: -0.1994278, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666679 + value: {x: -0.009674785, y: 0.6007728, z: 0.13903522} + inSlope: {x: 0, y: -0.22174111, z: 0} + outSlope: {x: 0, y: -0.22174111, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333345 + value: {x: -0.009674785, y: 0.58547634, z: 0.13903522} + inSlope: {x: 0, y: -0.23297645, z: 0} + outSlope: {x: 0, y: -0.23297645, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.009674785, y: 0.5697093, z: 0.13903522} + inSlope: {x: 0, y: -0.23299262, z: 0} + outSlope: {x: 0, y: -0.23299262, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.009674785, y: 0.5544106, z: 0.13903522} + inSlope: {x: 0, y: -0.22947945, z: 0} + outSlope: {x: 0, y: -0.22947945, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.33680558, y: 0.19064681, z: -0.47120088} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.33680558, y: 0.19064681, z: -0.47120088} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.33680558, y: 0.19064681, z: -0.47120088} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone18" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.349755, y: 0.000000021441586, z: 0.000000080996976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.349755, y: 0.000000021441586, z: 0.000000080996976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.349755, y: 0.000000021441586, z: 0.000000080996976} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.3908155, y: 0.00000002765226, z: -0.000000004002315} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.3908155, y: 0.00000002765226, z: -0.000000004002315} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.3908155, y: 0.00000002765226, z: -0.000000004002315} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.3294888, y: -0.18245547, z: -0.46388412} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.3294888, y: -0.18245547, z: -0.46388412} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.3294888, y: -0.18245547, z: -0.46388412} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone15" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.3658398, y: 0.00000003597219, z: 0.00000007685534} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.3658398, y: 0.00000003597219, z: 0.00000007685534} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.3658398, y: 0.00000003597219, z: 0.00000007685534} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.37027597, y: 0.000000028172742, z: -0.000000025299386} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.37027597, y: 0.000000028172742, z: -0.000000025299386} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.37027597, y: 0.000000028172742, z: -0.000000025299386} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.49451846, y: -0.16276103, z: -0.35009253} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.49451846, y: -0.16276103, z: -0.35009253} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.49451846, y: -0.16276103, z: -0.35009253} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone24" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.5913602, y: -0.000000011602573, z: 0.000000030534967} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.5913602, y: -0.000000011602573, z: 0.000000030534967} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.5913602, y: -0.000000011602573, z: 0.000000030534967} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.3858901, y: -0.000000004070064, z: 0.00000005591302} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.3858901, y: -0.000000004070064, z: 0.00000005591302} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.3858901, y: -0.000000004070064, z: 0.00000005591302} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.48986214, y: 0.16804403, z: -0.34543613} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.48986214, y: 0.16804403, z: -0.34543613} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.48986214, y: 0.16804403, z: -0.34543613} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone21" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.5867223, y: 0.000000004074245, z: 0.000000021638627} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.5867223, y: 0.000000004074245, z: 0.000000021638627} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.5867223, y: 0.000000004074245, z: 0.000000021638627} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.39447555, y: -0.000000016741083, z: -0.000000014154355} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.39447555, y: -0.000000016741083, z: -0.000000014154355} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.39447555, y: -0.000000016741083, z: -0.000000014154355} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.35046542, y: -0.33538646, z: 0.16232574} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.35046542, y: -0.33538646, z: 0.16232574} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.35046542, y: -0.33538646, z: 0.16232574} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.40944558, y: -2.1381985e-10, z: 0.0000000123196955} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.40944558, y: -2.1381985e-10, z: 0.0000000123196955} + inSlope: {x: 0.000000018626448, y: 0.000000009453345, z: 0.000000008286314} + outSlope: {x: 0.000000018626448, y: 0.000000009453345, z: 0.000000008286314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.4094456, y: 0.000000014911535, z: 0.000000025577801} + inSlope: {x: 0.000000037252896, y: 0.00000001890669, z: 0.000000016572628} + outSlope: {x: 0.000000037252896, y: 0.00000001890669, z: 0.000000016572628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.4654351, y: 0.0000000390795, z: 0.000000054575942} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.4654351, y: 0.0000000390795, z: 0.000000054575942} + inSlope: {x: -0.00000007450579, y: 0.0000000021606557, z: 0.000000011792302} + outSlope: {x: -0.00000007450579, y: 0.0000000021606557, z: 0.000000011792302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.465435, y: 0.00000004253655, z: 0.00000007344363} + inSlope: {x: -0.00000014901158, y: 0.0000000043213113, z: 0.000000023584604} + outSlope: {x: -0.00000014901158, y: 0.0000000043213113, z: 0.000000023584604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.4654353, y: 0.000000039079353, z: -0.000000046337647} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.4654353, y: 0.000000039079353, z: -0.000000046337647} + inSlope: {x: -0.00000007450579, y: 0.0000000021607067, z: 0.000000011792317} + outSlope: {x: -0.00000007450579, y: 0.0000000021607067, z: 0.000000011792317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.4654351, y: 0.000000042536485, z: -0.000000027469934} + inSlope: {x: -0.00000014901158, y: 0.0000000043214134, z: 0.000000023584635} + outSlope: {x: -0.00000014901158, y: 0.0000000043214134, z: 0.000000023584635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.40944558, y: -2.1381985e-10, z: 0.0000000123196955} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.40944558, y: -2.1381985e-10, z: 0.0000000123196955} + inSlope: {x: 0.000000018626448, y: 0.000000009453335, z: -0.000000009749252} + outSlope: {x: 0.000000018626448, y: 0.000000009453335, z: -0.000000009749252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.4094456, y: 0.00000001491152, z: -0.000000003279112} + inSlope: {x: 0.000000037252896, y: 0.00000001890667, z: -0.000000019498504} + outSlope: {x: 0.000000037252896, y: 0.00000001890667, z: -0.000000019498504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.35046577, y: 0.36800367, z: 0.16232577} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.35046577, y: 0.36800367, z: 0.16232577} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.35046577, y: 0.36800367, z: 0.16232577} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.38473222, y: -1.13254836e-10, z: 0.000000011726499} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.38473222, y: -1.13254836e-10, z: 0.000000011726499} + inSlope: {x: -0.000000018626448, y: 0.000000017703536, z: 0.00000002015674} + outSlope: {x: -0.000000018626448, y: 0.000000017703536, z: 0.00000002015674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.3847322, y: 0.00000002821241, z: 0.00000004397729} + inSlope: {x: -0.000000037252896, y: 0.000000035407073, z: 0.00000004031348} + outSlope: {x: -0.000000037252896, y: 0.000000035407073, z: 0.00000004031348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.4755566, y: 0.000000057812443, z: 0.00000002228695} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.4755566, y: 0.000000057812443, z: 0.00000002228695} + inSlope: {x: 0, y: 0.000000006734447, z: -0.000000007846465} + outSlope: {x: 0, y: 0.000000006734447, z: -0.000000007846465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.4755566, y: 0.00000006858756, z: 0.000000009732602} + inSlope: {x: 0, y: 0.000000013468894, z: -0.00000001569293} + outSlope: {x: 0, y: 0.000000013468894, z: -0.00000001569293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.4755567, y: 0.000000045045468, z: -0.00000004550467} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.4755567, y: 0.000000045045468, z: -0.00000004550467} + inSlope: {x: 0, y: -0.000000012557211, z: -0.000000021932332} + outSlope: {x: 0, y: -0.000000012557211, z: -0.000000021932332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.4755567, y: 0.000000024953925, z: -0.00000008059641} + inSlope: {x: 0, y: -0.000000025114423, z: -0.000000043864663} + outSlope: {x: 0, y: -0.000000025114423, z: -0.000000043864663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.38473222, y: -1.13254836e-10, z: 0.000000011726499} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.38473222, y: -1.13254836e-10, z: 0.000000011726499} + inSlope: {x: -0.000000018626448, y: 0.000000017703538, z: 0.0000000022009834} + outSlope: {x: -0.000000018626448, y: 0.000000017703538, z: 0.0000000022009834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.3847322, y: 0.000000028212412, z: 0.000000015248073} + inSlope: {x: -0.000000037252896, y: 0.000000035407076, z: 0.000000004401967} + outSlope: {x: -0.000000037252896, y: 0.000000035407076, z: 0.000000004401967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.40023792, y: -0.00000001752993, z: 0.008156627} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.40023792, y: -0.00000001752993, z: 0.008156627} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.40023792, y: -0.00000001752993, z: 0.008156627} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.4637413, y: -7.125854e-13, z: 0.0000007501616} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.4637413, y: -7.125854e-13, z: 0.0000007501616} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.4637413, y: -7.125854e-13, z: 0.0000007501616} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.20519316, y: -0.000000015232276, z: 0.16471767} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.20519316, y: -0.000000015232276, z: 0.16471767} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.20519316, y: -0.000000015232276, z: 0.16471767} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.30649108, y: 0.00000002826112, z: -0.00000016896772} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.30649108, y: 0.00000002826112, z: -0.00000016896772} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.30649108, y: 0.00000002826112, z: -0.00000016896772} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: -0.3503005, y: -0.000000016378038, z: -0.01819551} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: -0.3503005, y: -0.000000016378038, z: -0.01819551} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: -0.3503005, y: -0.000000016378038, z: -0.01819551} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.72367585, y: 0.000000022815614, z: -0.0000002602165} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.72367585, y: 0.000000022815614, z: -0.0000002602165} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.72367585, y: 0.000000022815614, z: -0.0000002602165} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.92987615, y: 0.000000017389391, z: 0.00000004127911} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.92987615, y: 0.000000017389391, z: 0.00000004127911} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.92987615, y: 0.000000017389391, z: 0.00000004127911} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.4861734, y: 0.000000012957495, z: -0.000000024028292} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.4861734, y: 0.000000012957495, z: -0.000000024028292} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.4861734, y: 0.000000012957495, z: -0.000000024028292} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.7758029, y: -0.0000001593084, z: 0.00000028663555} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.7758029, y: -0.0000001593084, z: 0.00000028663555} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.7758029, y: -0.0000001593084, z: 0.00000028663555} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.8043216, y: -0.000000027139171, z: 0.00000006045659} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.8043216, y: -0.000000027139171, z: 0.00000006045659} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.8043216, y: -0.000000027139171, z: 0.00000006045659} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.7236801, y: 0.000000004923138, z: -0.0000005333047} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.7236801, y: 0.000000004923138, z: -0.0000005333047} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.7236801, y: 0.000000004923138, z: -0.0000005333047} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.0605826, y: 0.0000002773726, z: -0.00000009288721} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.0605826, y: 0.0000002773726, z: -0.00000009288721} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.0605826, y: 0.0000002773726, z: -0.00000009288721} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.7236801, y: 0.000000004923138, z: -0.0000005333047} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.7236801, y: 0.000000004923138, z: -0.0000005333047} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.7236801, y: 0.000000004923138, z: -0.0000005333047} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.0597266, y: 0.00000023459145, z: 0.00000011478535} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.0597266, y: 0.00000023459145, z: 0.00000011478535} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.0597266, y: 0.00000023459145, z: 0.00000011478535} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.72367865, y: -2.5548223e-14, z: -0.0000004397442} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.72367865, y: -2.5548223e-14, z: -0.0000004397442} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.72367865, y: -2.5548223e-14, z: -0.0000004397442} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.45982, y: 0.00000009293967, z: 0.00000007608984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.45982, y: 0.00000009293967, z: 0.00000007608984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.45982, y: 0.00000009293967, z: 0.00000007608984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.0399064, y: 0.000000053637486, z: -0.00000035106376} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.0399064, y: 0.000000053637486, z: -0.00000035106376} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.0399064, y: 0.000000053637486, z: -0.00000035106376} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.8793545, y: 0.00000055126014, z: -0.00000007867392} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.8793545, y: 0.00000055126014, z: -0.00000007867392} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.8793545, y: 0.00000055126014, z: -0.00000007867392} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 0.7236773, y: -1.660336e-14, z: -0.000000353777} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 0.7236773, y: -1.660336e-14, z: -0.000000353777} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 0.7236773, y: -1.660336e-14, z: -0.000000353777} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.4597121, y: -0.00000004133454, z: -0.000000054755105} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.4597121, y: -0.00000004133454, z: -0.000000054755105} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.4597121, y: -0.00000004133454, z: -0.000000054755105} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.048998, y: -0.000000049088772, z: -0.00000013175598} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.048998, y: -0.000000049088772, z: -0.00000013175598} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.048998, y: -0.000000049088772, z: -0.00000013175598} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: {x: 1.8839649, y: -0.00000013128616, z: 0.000000039936438} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8000009 + value: {x: 1.8839649, y: -0.00000013128616, z: 0.000000039936438} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6000011 + value: {x: 1.8839649, y: -0.00000013128616, z: 0.000000039936438} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 15 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 704342489 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 359201598 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 915644300 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3710090200 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 107625556 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 217301373 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 154804147 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 435211316 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2905818255 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3939634514 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 978424132 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 81554558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2680994622 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3814998393 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2642808959 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2541194641 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1971914780 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1840097712 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1318996432 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 420366738 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 29434870 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3151261805 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2960029741 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 660511164 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1930998308 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1463053619 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 976286009 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 696586638 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 245603920 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 517619184 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2278779978 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2544553962 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1311726706 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4072106829 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2587379114 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3980358972 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2349209584 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1974432475 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2960029741 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3511443600 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 186519142 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3151261805 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1093387856 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1463053619 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4241968719 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 976286009 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 660511164 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 710137224 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1930998308 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 696586638 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 245603920 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 517619184 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2278779978 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2544553962 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1311726706 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4072106829 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2587379114 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3980358972 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2349209584 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 359201598 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 915644300 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3710090200 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 107625556 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4217805330 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2647997892 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 217301373 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 154804147 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 435211316 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2905818255 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3939634514 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 978424132 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 81554558 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2680994622 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3814998393 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2642808959 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2541194641 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1971914780 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1840097712 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1318996432 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 420366738 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 29434870 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 704342489 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1974432475 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3511443600 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 186519142 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1093387856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4217805330 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2647997892 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.6666666 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.49999997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.49999997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.49999997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000027413932 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000027413932 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000027413932 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.94735193 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.94735193 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.94735193 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000000554062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000000554062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.0000000554062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.32019427 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.32019427 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.32019427 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000000053511373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000000053511373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000000053511373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.4801814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.4801814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.4801814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000000029293257 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000000029293257 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.0000000029293257 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.8771692 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.8771692 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.8771692 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000027645513 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000027645513 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000027645513 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9486833 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9486833 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9486833 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000055291018 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000055291018 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000055291018 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.31622773 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.31622773 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.31622773 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000000021857882 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000000021857882 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000000021857882 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.40572563 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.40572563 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.40572563 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 9.702734e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 9.702734e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 9.702734e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9139949 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9139949 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9139949 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000018532967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000018532967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000018532967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.997961 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.997961 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.997961 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000008641608 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000008641608 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000008641608 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.06382729 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.06382729 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.06382729 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.3084363e-15 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.3084363e-15 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.3084363e-15 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.014904579 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.014904579 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.014904579 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.4977172e-16 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -1.4977172e-16 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -1.4977172e-16 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9998889 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9998889 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9998889 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0096747875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0096747875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.0096747875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.6577143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.6577143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.6577143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.435883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.435883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.435883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.009674785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.53064895 + inSlope: -0.2319309 + outSlope: -0.2319309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.51518685 + inSlope: -0.15995237 + outSlope: -0.15995237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.5093219 + inSlope: -0.043986928 + outSlope: -0.043986928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.5093219 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.5093219 + inSlope: 0.017240362 + outSlope: 0.017240362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.51162064 + inSlope: 0.065233 + outSlope: 0.065233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.5180197 + inSlope: 0.121147275 + outSlope: 0.121147275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.5277736 + inSlope: 0.16587913 + outSlope: 0.16587913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.5401369 + inSlope: 0.19942741 + outSlope: 0.19942741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.55436397 + inSlope: 0.22179303 + outSlope: 0.22179303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.5697093 + inSlope: 0.23297645 + outSlope: 0.23297645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.58542746 + inSlope: 0.23297645 + outSlope: 0.23297645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.6007728 + inSlope: 0.22179341 + outSlope: 0.22179341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.6149999 + inSlope: 0.19942713 + outSlope: 0.19942713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.62736315 + inSlope: 0.16587847 + outSlope: 0.16587847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.6371171 + inSlope: 0.12114745 + outSlope: 0.12114745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.6435161 + inSlope: 0.06523317 + outSlope: 0.06523317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.64581484 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.6435161 + inSlope: -0.06523283 + outSlope: -0.06523283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.6371171 + inSlope: -0.1211471 + outSlope: -0.1211471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.62736315 + inSlope: -0.16556486 + outSlope: -0.16556486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.6150418 + inSlope: -0.1994278 + outSlope: -0.1994278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.6007728 + inSlope: -0.22174111 + outSlope: -0.22174111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.58547634 + inSlope: -0.23297645 + outSlope: -0.23297645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5697093 + inSlope: -0.23299262 + outSlope: -0.23299262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.5544106 + inSlope: -0.22947945 + outSlope: -0.22947945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.13903522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.33680558 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.33680558 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.33680558 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.19064681 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.19064681 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.19064681 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.47120088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.47120088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.47120088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.349755 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.349755 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.349755 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000021441586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000021441586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000021441586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000080996976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000080996976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000080996976 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.3908155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.3908155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3908155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000002765226 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000002765226 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000002765226 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000004002315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000004002315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000004002315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.3294888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.3294888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.3294888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.18245547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.18245547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.18245547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.46388412 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.46388412 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.46388412 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.3658398 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.3658398 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3658398 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000003597219 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000003597219 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000003597219 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000007685534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000007685534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000007685534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.37027597 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.37027597 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.37027597 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000028172742 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000028172742 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000028172742 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000025299386 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000025299386 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000025299386 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.49451846 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.49451846 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.49451846 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.16276103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.16276103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.16276103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.35009253 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.35009253 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.35009253 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.5913602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5913602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5913602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000011602573 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000011602573 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000011602573 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000030534967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000030534967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000030534967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.3858901 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.3858901 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3858901 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000004070064 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000004070064 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000004070064 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000005591302 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000005591302 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000005591302 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.48986214 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.48986214 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.48986214 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16804403 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.16804403 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.16804403 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.34543613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.34543613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.34543613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.5867223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5867223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5867223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000004074245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000004074245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000004074245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000021638627 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000021638627 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000021638627 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.39447555 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.39447555 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.39447555 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000016741083 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000016741083 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000016741083 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000014154355 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000014154355 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000014154355 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.35046542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.35046542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.35046542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.33538646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.33538646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.33538646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16232574 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.16232574 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.16232574 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.40944558 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.40944558 + inSlope: 0.000000018626448 + outSlope: 0.000000018626448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.4094456 + inSlope: 0.000000037252896 + outSlope: 0.000000037252896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.1381985e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.1381985e-10 + inSlope: 0.000000009453345 + outSlope: 0.000000009453345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000014911535 + inSlope: 0.00000001890669 + outSlope: 0.00000001890669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000000123196955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000000123196955 + inSlope: 0.000000008286314 + outSlope: 0.000000008286314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000025577801 + inSlope: 0.000000016572628 + outSlope: 0.000000016572628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.4654351 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.4654351 + inSlope: -0.00000007450579 + outSlope: -0.00000007450579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.465435 + inSlope: -0.00000014901158 + outSlope: -0.00000014901158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000000390795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000000390795 + inSlope: 0.0000000021606557 + outSlope: 0.0000000021606557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000004253655 + inSlope: 0.0000000043213113 + outSlope: 0.0000000043213113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000054575942 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000054575942 + inSlope: 0.000000011792302 + outSlope: 0.000000011792302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000007344363 + inSlope: 0.000000023584604 + outSlope: 0.000000023584604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.4654353 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.4654353 + inSlope: -0.00000007450579 + outSlope: -0.00000007450579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.4654351 + inSlope: -0.00000014901158 + outSlope: -0.00000014901158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000039079353 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000039079353 + inSlope: 0.0000000021607067 + outSlope: 0.0000000021607067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000042536485 + inSlope: 0.0000000043214134 + outSlope: 0.0000000043214134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000046337647 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000046337647 + inSlope: 0.000000011792317 + outSlope: 0.000000011792317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000027469934 + inSlope: 0.000000023584635 + outSlope: 0.000000023584635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.40944558 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.40944558 + inSlope: 0.000000018626448 + outSlope: 0.000000018626448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.4094456 + inSlope: 0.000000037252896 + outSlope: 0.000000037252896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.1381985e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.1381985e-10 + inSlope: 0.000000009453335 + outSlope: 0.000000009453335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000001491152 + inSlope: 0.00000001890667 + outSlope: 0.00000001890667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000000123196955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000000123196955 + inSlope: -0.000000009749252 + outSlope: -0.000000009749252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000003279112 + inSlope: -0.000000019498504 + outSlope: -0.000000019498504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.35046577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.35046577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.35046577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.36800367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.36800367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.36800367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16232577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.16232577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.16232577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.38473222 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.38473222 + inSlope: -0.000000018626448 + outSlope: -0.000000018626448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3847322 + inSlope: -0.000000037252896 + outSlope: -0.000000037252896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.13254836e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -1.13254836e-10 + inSlope: 0.000000017703536 + outSlope: 0.000000017703536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000002821241 + inSlope: 0.000000035407073 + outSlope: 0.000000035407073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000011726499 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000011726499 + inSlope: 0.00000002015674 + outSlope: 0.00000002015674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000004397729 + inSlope: 0.00000004031348 + outSlope: 0.00000004031348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.4755566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.4755566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.4755566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000057812443 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000057812443 + inSlope: 0.000000006734447 + outSlope: 0.000000006734447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000006858756 + inSlope: 0.000000013468894 + outSlope: 0.000000013468894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000002228695 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000002228695 + inSlope: -0.000000007846465 + outSlope: -0.000000007846465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000009732602 + inSlope: -0.00000001569293 + outSlope: -0.00000001569293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.4755567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.4755567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.4755567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000045045468 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000045045468 + inSlope: -0.000000012557211 + outSlope: -0.000000012557211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000024953925 + inSlope: -0.000000025114423 + outSlope: -0.000000025114423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000004550467 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000004550467 + inSlope: -0.000000021932332 + outSlope: -0.000000021932332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000008059641 + inSlope: -0.000000043864663 + outSlope: -0.000000043864663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.38473222 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.38473222 + inSlope: -0.000000018626448 + outSlope: -0.000000018626448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3847322 + inSlope: -0.000000037252896 + outSlope: -0.000000037252896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.13254836e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -1.13254836e-10 + inSlope: 0.000000017703538 + outSlope: 0.000000017703538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000028212412 + inSlope: 0.000000035407076 + outSlope: 0.000000035407076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000011726499 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000011726499 + inSlope: 0.0000000022009834 + outSlope: 0.0000000022009834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000015248073 + inSlope: 0.000000004401967 + outSlope: 0.000000004401967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.40023792 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.40023792 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.40023792 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000001752993 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000001752993 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000001752993 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.008156627 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.008156627 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.008156627 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.4637413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.4637413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.4637413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -7.125854e-13 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -7.125854e-13 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -7.125854e-13 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000007501616 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000007501616 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.0000007501616 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.20519316 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.20519316 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.20519316 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000015232276 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000015232276 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000015232276 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16471767 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.16471767 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.16471767 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.30649108 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.30649108 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.30649108 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000002826112 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000002826112 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000002826112 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000016896772 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000016896772 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000016896772 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.3503005 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.3503005 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.3503005 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000016378038 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000016378038 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000016378038 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.01819551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.01819551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.01819551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.72367585 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.72367585 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.72367585 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000022815614 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000022815614 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000022815614 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000002602165 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000002602165 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000002602165 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.92987615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.92987615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.92987615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000017389391 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000017389391 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000017389391 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000004127911 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000004127911 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000004127911 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.4861734 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.4861734 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.4861734 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000012957495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000012957495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000012957495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000024028292 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000024028292 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000024028292 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.7758029 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.7758029 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.7758029 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000001593084 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000001593084 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000001593084 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000028663555 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000028663555 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000028663555 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.8043216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.8043216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.8043216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000027139171 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000027139171 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000027139171 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000006045659 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000006045659 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000006045659 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7236801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7236801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7236801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000004923138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000004923138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000004923138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000005333047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000005333047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000005333047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.0605826 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.0605826 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.0605826 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000002773726 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000002773726 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.0000002773726 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000009288721 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000009288721 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000009288721 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7236801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7236801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7236801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000004923138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000004923138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000004923138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000005333047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000005333047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000005333047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.0597266 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.0597266 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.0597266 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000023459145 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000023459145 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000023459145 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000011478535 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000011478535 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000011478535 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.72367865 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.72367865 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.72367865 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.5548223e-14 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.5548223e-14 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.5548223e-14 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000004397442 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000004397442 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000004397442 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.45982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.45982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.45982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000009293967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000009293967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000009293967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000007608984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000007608984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000007608984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.0399064 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.0399064 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.0399064 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000053637486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000053637486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000053637486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000035106376 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000035106376 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000035106376 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.8793545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.8793545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.8793545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00000055126014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000055126014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000055126014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000007867392 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000007867392 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000007867392 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7236773 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7236773 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7236773 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.660336e-14 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -1.660336e-14 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -1.660336e-14 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000353777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000353777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000353777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.4597121 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.4597121 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.4597121 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000004133454 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000004133454 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000004133454 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000054755105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000054755105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000054755105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.048998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.048998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.048998 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000049088772 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000049088772 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000000049088772 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000013175598 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000013175598 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000013175598 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.8839649 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.8839649 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.8839649 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000013128616 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000013128616 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000013128616 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000039936438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.000000039936438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.000000039936438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000059893814 + inSlope: 0 + outSlope: 0.0000026878695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.00000005985547 + inSlope: 0.0000026862708 + outSlope: 0.000002685854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.00000005984055 + inSlope: 0.0000026846817 + outSlope: 0.0000026847788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.00000005984055 + inSlope: 0.0000026853115 + outSlope: 0.0000026846817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.00000005984055 + inSlope: 0.000002684575 + outSlope: 0.0000026846817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00000005984643 + inSlope: 0.0000026859607 + outSlope: 0.0000026848852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0000000598626 + inSlope: 0.0000026860578 + outSlope: 0.0000026853213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.00000005988678 + inSlope: 0.0000026862804 + outSlope: 0.000002686387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0000000599166 + inSlope: 0.0000026901173 + outSlope: 0.0000026865905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.000000059949734 + inSlope: 0.0000026875498 + outSlope: 0.0000026903306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.00000005998411 + inSlope: 0.000002692249 + outSlope: 0.0000026895846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.000000060017804 + inSlope: 0.000002691503 + outSlope: 0.000002693528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000006004922 + inSlope: 0.0000026953398 + outSlope: 0.0000026923556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.00000006007708 + inSlope: 0.0000026940609 + outSlope: 0.0000026961732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.00000006010028 + inSlope: 0.0000026981982 + outSlope: 0.0000026949135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.000000060117905 + inSlope: 0.0000026954465 + outSlope: 0.0000026956595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.00000006012918 + inSlope: 0.0000026978978 + outSlope: 0.0000026964058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.000000060133154 + inSlope: 0.0000026977912 + outSlope: 0.0000026967255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.00000006012918 + inSlope: 0.0000026976847 + outSlope: 0.0000027013957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.000000060117905 + inSlope: 0.0000026964929 + outSlope: 0.000002700882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.00000006010028 + inSlope: 0.0000026953398 + outSlope: 0.0000026954465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.00000006007716 + inSlope: 0.0000026957662 + outSlope: 0.0000026945938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.00000006004922 + inSlope: 0.000002692782 + outSlope: 0.000002698111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.00000006001788 + inSlope: 0.0000026923556 + outSlope: 0.0000026967255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000005998411 + inSlope: 0.0000026919292 + outSlope: 0.0000026906935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.000000059949855 + inSlope: 0.0000026884554 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.12597273 + inSlope: 0 + outSlope: -0.073760554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.13087463 + inSlope: -0.05073832 + outSlope: -0.050738502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.13273318 + inSlope: -0.014305129 + outSlope: -0.013634527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.13273318 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.13273318 + inSlope: 0.0051409057 + outSlope: 0.0055879406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.1320048 + inSlope: 0.020563623 + outSlope: 0.021010581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.12997681 + inSlope: 0.038221378 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.12688453 + inSlope: 0.052750163 + outSlope: 0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.122963294 + inSlope: 0.06314373 + outSlope: 0.063255265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.11844852 + inSlope: 0.0704078 + outSlope: 0.07040805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.11357614 + inSlope: 0.07409609 + outSlope: 0.07398433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.108582556 + inSlope: 0.07398433 + outSlope: 0.07409609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.10370478 + inSlope: 0.07051981 + outSlope: 0.07051981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.099180214 + inSlope: 0.06347901 + outSlope: 0.06336679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.09524672 + inSlope: 0.05286154 + outSlope: 0.05286192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.092142366 + inSlope: 0.038445033 + outSlope: 0.03866855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.09010526 + inSlope: 0.020675382 + outSlope: 0.02078714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.08937338 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.09010526 + inSlope: -0.02078714 + outSlope: -0.020675233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.092142366 + inSlope: -0.038668275 + outSlope: -0.03855679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.09524672 + inSlope: -0.052750163 + outSlope: -0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.09916688 + inSlope: -0.06336725 + outSlope: -0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.10370478 + inSlope: -0.07051981 + outSlope: -0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.10856702 + inSlope: -0.07398433 + outSlope: -0.07409609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.11357614 + inSlope: -0.07398433 + outSlope: -0.073985524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.11843374 + inSlope: -0.07286792 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000007605573 + inSlope: 0 + outSlope: 0.00000033678305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.000000007901525 + inSlope: 0.00000035149125 + outSlope: 0.0000003514392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.000000008013734 + inSlope: 0.0000003586468 + outSlope: 0.0000003586988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.000000008013734 + inSlope: 0.00000035961807 + outSlope: 0.0000003595261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000000008013734 + inSlope: 0.0000003598325 + outSlope: 0.00000035985914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.000000007969756 + inSlope: 0.0000003589532 + outSlope: 0.0000003588187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.00000000784732 + inSlope: 0.0000003544622 + outSlope: 0.0000003543702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.000000007660623 + inSlope: 0.00000034686954 + outSlope: 0.0000003468562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0000000074238815 + inSlope: 0.00000033719058 + outSlope: 0.00000033674308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0000000071513 + inSlope: 0.00000032491923 + outSlope: 0.00000032522684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000000068571335 + inSlope: 0.00000031231713 + outSlope: 0.00000031197075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.0000000065556467 + inSlope: 0.00000029852816 + outSlope: 0.00000029872135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000000062611494 + inSlope: 0.000000285352 + outSlope: 0.00000028501896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.000000005987981 + inSlope: 0.000000272409 + outSlope: 0.00000027258693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.000000005750498 + inSlope: 0.0000002613893 + outSlope: 0.00000026106474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.000000005563072 + inSlope: 0.00000025177218 + outSlope: 0.0000002518055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.000000005440084 + inSlope: 0.00000024535063 + outSlope: 0.00000024521742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0000000053958975 + inSlope: 0.00000024208657 + outSlope: 0.00000024197334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.000000005440084 + inSlope: 0.00000024279936 + outSlope: 0.00000024315065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.000000005563072 + inSlope: 0.00000024716076 + outSlope: 0.00000024759552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.000000005750498 + inSlope: 0.00000025466986 + outSlope: 0.00000025470982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.0000000059871774 + inSlope: 0.0000002647818 + outSlope: 0.0000002646752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0000000062611494 + inSlope: 0.0000002764458 + outSlope: 0.00000027702532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.0000000065547066 + inSlope: 0.00000028950203 + outSlope: 0.00000029000162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000000068571335 + inSlope: 0.00000030319777 + outSlope: 0.0000003030694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0000000071504087 + inSlope: 0.0000003161858 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9920337 + inSlope: 0 + outSlope: -0.00983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.99139893 + inSlope: -0.0062584714 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9911518 + inSlope: -0.0017881411 + outSlope: -0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9911518 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9911518 + inSlope: 0.00089407054 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9912491 + inSlope: 0.0026822116 + outSlope: 0.002682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.991517 + inSlope: 0.0044703367 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9919175 + inSlope: 0.0062584938 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9924112 + inSlope: 0.0071525644 + outSlope: 0.008046606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9929602 + inSlope: 0.008940673 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9935293 + inSlope: 0.008940705 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.99408746 + inSlope: 0.0080466345 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9946081 + inSlope: 0.0071525644 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9950695 + inSlope: 0.0062584938 + outSlope: 0.006258449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9954537 + inSlope: 0.005364385 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99574584 + inSlope: 0.0035762822 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9959322 + inSlope: 0.0017881411 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9959982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9959322 + inSlope: -0.0026822116 + outSlope: -0.0017881283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.99574584 + inSlope: -0.0035762566 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9954537 + inSlope: -0.0044703525 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9950708 + inSlope: -0.0062584938 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.9946081 + inSlope: -0.0080466345 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9940891 + inSlope: -0.0080466345 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9935293 + inSlope: -0.0080466345 + outSlope: -0.008940849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99296194 + inSlope: -0.008940849 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000000014649072 + inSlope: 0 + outSlope: 0.00000006574057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0000000014637058 + inSlope: 0.00000006569228 + outSlope: 0.00000006568252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0000000014632395 + inSlope: 0.00000006566087 + outSlope: 0.00000006565231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0000000014632395 + inSlope: 0.00000006565398 + outSlope: 0.00000006564922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0000000014632395 + inSlope: 0.00000006565254 + outSlope: 0.00000006564755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.0000000014634217 + inSlope: 0.000000065655875 + outSlope: 0.00000006565231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0000000014639286 + inSlope: 0.000000065683956 + outSlope: 0.00000006567253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0000000014646852 + inSlope: 0.00000006569751 + outSlope: 0.00000006570084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0000000014656268 + inSlope: 0.00000006577245 + outSlope: 0.000000065710594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0000000014666818 + inSlope: 0.00000006576222 + outSlope: 0.00000006581575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000000014677886 + inSlope: 0.00000006586904 + outSlope: 0.00000006580576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.0000000014688805 + inSlope: 0.00000006582574 + outSlope: 0.00000006591567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000000014699169 + inSlope: 0.00000006597562 + outSlope: 0.00000006590401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.0000000014708413 + inSlope: 0.00000006593732 + outSlope: 0.00000006600513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.0000000014716189 + inSlope: 0.00000006602677 + outSlope: 0.00000006598395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.0000000014722208 + inSlope: 0.000000066002265 + outSlope: 0.00000006601726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0000000014726045 + inSlope: 0.00000006605056 + outSlope: 0.000000066035575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0000000014727397 + inSlope: 0.000000066077206 + outSlope: 0.000000066045565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0000000014726045 + inSlope: 0.0000000660489 + outSlope: 0.00000006616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.0000000014722208 + inSlope: 0.00000006604343 + outSlope: 0.000000066148814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.0000000014716196 + inSlope: 0.00000006602058 + outSlope: 0.0000000660056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.000000001470841 + inSlope: 0.000000065992275 + outSlope: 0.00000006597396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0000000014699169 + inSlope: 0.00000006593732 + outSlope: 0.00000006605222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.000000001468885 + inSlope: 0.00000006589235 + outSlope: 0.00000006600726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000000014677886 + inSlope: 0.00000006584073 + outSlope: 0.000000065840126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0000000014666853 + inSlope: 0.000000065815144 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16154978 + inSlope: 0 + outSlope: 0.07331352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.16642569 + inSlope: 0.05029129 + outSlope: 0.050514985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.16827413 + inSlope: 0.013858093 + outSlope: 0.013634527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.16827413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.16827413 + inSlope: -0.005364423 + outSlope: -0.0055879406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.16754971 + inSlope: -0.020563623 + outSlope: -0.020787066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.16553268 + inSlope: -0.038221378 + outSlope: -0.038221516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.16245681 + inSlope: -0.052303124 + outSlope: -0.052079607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.15855584 + inSlope: -0.06303197 + outSlope: -0.06280823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.15406375 + inSlope: -0.069960766 + outSlope: -0.06996102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.14921497 + inSlope: -0.0735373 + outSlope: -0.073760815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.14424467 + inSlope: -0.0735373 + outSlope: -0.073760815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.13938874 + inSlope: -0.07018454 + outSlope: -0.07018454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.1348837 + inSlope: -0.06325549 + outSlope: -0.063031524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.13096656 + inSlope: -0.05252627 + outSlope: -0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.12787469 + inSlope: -0.038221516 + outSlope: -0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.12584561 + inSlope: -0.02078714 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.1251166 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.12584561 + inSlope: 0.020563623 + outSlope: 0.020786991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.12787469 + inSlope: 0.038444757 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.13096657 + inSlope: 0.05252664 + outSlope: 0.052303124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.13487042 + inSlope: 0.06303197 + outSlope: 0.06325549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.13938874 + inSlope: 0.07018454 + outSlope: 0.07018454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.14422919 + inSlope: 0.073760815 + outSlope: 0.073760815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.14921497 + inSlope: 0.073760815 + outSlope: 0.07353848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.15404901 + inSlope: 0.07242088 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 2.3980465e-10 + inSlope: 0 + outSlope: -0.000000010650619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 2.4704477e-10 + inSlope: -0.000000011011163 + outSlope: -0.000000011008704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 2.4978702e-10 + inSlope: -0.000000011187728 + outSlope: -0.000000011186439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 2.4978702e-10 + inSlope: -0.000000011207672 + outSlope: -0.00000001120688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 2.4978702e-10 + inSlope: -0.000000011215622 + outSlope: -0.0000000112152065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 2.4871208e-10 + inSlope: -0.00000001118981 + outSlope: -0.000000011189353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 2.4571922e-10 + inSlope: -0.000000011083605 + outSlope: -0.000000011081147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 2.4115218e-10 + inSlope: -0.00000001089671 + outSlope: -0.0000000108962945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 2.3536303e-10 + inSlope: -0.000000010658567 + outSlope: -0.000000010647705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 2.2869316e-10 + inSlope: -0.000000010360644 + outSlope: -0.000000010368591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 2.2149745e-10 + inSlope: -0.000000010051969 + outSlope: -0.000000010042394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 2.1411992e-10 + inSlope: -0.000000009707453 + outSlope: -0.000000009719942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 2.0690838e-10 + inSlope: -0.000000009393537 + outSlope: -0.00000000938292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 2.0022231e-10 + inSlope: -0.0000000090717105 + outSlope: -0.00000000908018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 1.9440936e-10 + inSlope: -0.000000008801863 + outSlope: -0.000000008796514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 1.8981795e-10 + inSlope: -0.000000008567738 + outSlope: -0.000000008569612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 1.8680653e-10 + inSlope: -0.000000008410155 + outSlope: -0.0000000084078655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 1.8572592e-10 + inSlope: -0.000000008332718 + outSlope: -0.00000000832897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 1.8680653e-10 + inSlope: -0.000000008347289 + outSlope: -0.0000000083613845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 1.8981795e-10 + inSlope: -0.000000008456933 + outSlope: -0.00000000847094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 1.9440881e-10 + inSlope: -0.000000008642053 + outSlope: -0.000000008641013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 2.002029e-10 + inSlope: -0.000000008886858 + outSlope: -0.0000000088847765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 2.0690838e-10 + inSlope: -0.000000009174961 + outSlope: -0.000000009191822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 2.1409616e-10 + inSlope: -0.000000009491791 + outSlope: -0.000000009509278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 2.2149745e-10 + inSlope: -0.000000009823193 + outSlope: -0.000000009824601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.2867232e-10 + inSlope: -0.000000010150804 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.98686457 + inSlope: 0 + outSlope: -0.011622875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.986054 + inSlope: -0.008046606 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.98574024 + inSlope: -0.0026822116 + outSlope: -0.002682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.98574024 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.98574024 + inSlope: 0.00089407054 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9858636 + inSlope: 0.0035762822 + outSlope: 0.0035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.9862043 + inSlope: 0.0071525387 + outSlope: 0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9867157 + inSlope: 0.008940705 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.98735 + inSlope: 0.009834776 + outSlope: 0.010728808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9880609 + inSlope: 0.010728808 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.98880476 + inSlope: 0.010728846 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.98954207 + inSlope: 0.010728846 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9902377 + inSlope: 0.009834776 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9908614 + inSlope: 0.0080466345 + outSlope: 0.008940641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9913868 + inSlope: 0.006258449 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99179035 + inSlope: 0.005364423 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9920498 + inSlope: 0.0026822116 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.992142 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9920498 + inSlope: -0.0026822116 + outSlope: -0.0026821925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.99179035 + inSlope: -0.0044703204 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9913868 + inSlope: -0.0071525644 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.99086326 + inSlope: -0.0080466345 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.9902377 + inSlope: -0.009834776 + outSlope: -0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.98954433 + inSlope: -0.010728846 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.98880476 + inSlope: -0.011622917 + outSlope: -0.010729019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9880632 + inSlope: -0.010729019 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.000000142684 + inSlope: 0 + outSlope: -0.000000701517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.00000014223757 + inSlope: -0.0000006885141 + outSlope: -0.0000006885166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.0000001420673 + inSlope: -0.00000068105584 + outSlope: -0.0000006808403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.0000001420673 + inSlope: -0.00000067998764 + outSlope: -0.0000006795637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.0000001420673 + inSlope: -0.0000006791374 + outSlope: -0.00000067935053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.0000001421341 + inSlope: -0.00000067977686 + outSlope: -0.00000067934815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.0000001423196 + inSlope: -0.0000006827587 + outSlope: -0.00000068212165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.00000014260124 + inSlope: -0.00000068830343 + outSlope: -0.00000068809027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.00000014295624 + inSlope: -0.00000069682994 + outSlope: -0.0000006957616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.00000014336202 + inSlope: -0.0000007059934 + outSlope: -0.00000070642227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.00000014379631 + inSlope: -0.0000007172936 + outSlope: -0.0000007164409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.00000014423763 + inSlope: -0.00000072773855 + outSlope: -0.00000072880437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00000014466488 + inSlope: -0.000000740102 + outSlope: -0.0000007390362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.00000014505795 + inSlope: -0.00000075054703 + outSlope: -0.00000075096796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.00000014539708 + inSlope: -0.0000007611997 + outSlope: -0.00000076013936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.00000014566304 + inSlope: -0.00000076887903 + outSlope: -0.0000007684527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.00000014583672 + inSlope: -0.0000007748476 + outSlope: -0.00000077442127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.00000014589898 + inSlope: -0.0000007782582 + outSlope: -0.00000077804503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.00000014583672 + inSlope: -0.00000077847136 + outSlope: -0.00000077931844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.00000014566304 + inSlope: -0.00000077526835 + outSlope: -0.00000077612657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.00000014539708 + inSlope: -0.0000007695185 + outSlope: -0.0000007690922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.0000001450591 + inSlope: -0.0000007616315 + outSlope: -0.00000076141833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.00000014466488 + inSlope: -0.00000075225233 + outSlope: -0.0000007528918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.00000014423898 + inSlope: -0.0000007411678 + outSlope: -0.0000007424468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00000014379631 + inSlope: -0.0000007302965 + outSlope: -0.0000007296688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00000014336334 + inSlope: -0.0000007187973 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.95519686 + inSlope: 0 + outSlope: 0.022351684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.9537223 + inSlope: 0.015199144 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.9531568 + inSlope: 0.0035762822 + outSlope: 0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.9531568 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.9531568 + inSlope: -0.0017881411 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.95337886 + inSlope: -0.005364423 + outSlope: -0.0062584714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.95399415 + inSlope: -0.010728808 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.9549244 + inSlope: -0.016093269 + outSlope: -0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.95609015 + inSlope: -0.01788141 + outSlope: -0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.9574132 + inSlope: -0.020563548 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.95881796 + inSlope: -0.021457693 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.960233 + inSlope: -0.020563623 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.961591 + inSlope: -0.019669551 + outSlope: -0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.9628295 + inSlope: -0.01788141 + outSlope: -0.016987218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.9638895 + inSlope: -0.014305026 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.9647152 + inSlope: -0.009834776 + outSlope: -0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.9652517 + inSlope: -0.005364423 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.9654435 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.9652517 + inSlope: 0.005364423 + outSlope: 0.005364385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.9647152 + inSlope: 0.009834706 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.9638895 + inSlope: 0.014305129 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.9628331 + inSlope: 0.01698734 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.961591 + inSlope: 0.019669551 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.9602374 + inSlope: 0.020563623 + outSlope: 0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.95881796 + inSlope: 0.021457693 + outSlope: 0.021458037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.9574175 + inSlope: 0.021458037 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000008997282 + inSlope: 0 + outSlope: 0.0000022579213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.00000009067696 + inSlope: 0.0000022645293 + outSlope: 0.0000022646439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0000000909435 + inSlope: 0.0000022714653 + outSlope: 0.0000022711374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0000000909435 + inSlope: 0.0000022733755 + outSlope: 0.0000022731706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0000000909435 + inSlope: 0.0000022742363 + outSlope: 0.0000022739166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00000009083906 + inSlope: 0.0000022760482 + outSlope: 0.0000022754007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.00000009054813 + inSlope: 0.000002276786 + outSlope: 0.0000022767942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.00000009010392 + inSlope: 0.0000022764746 + outSlope: 0.0000022767942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.000000089539625 + inSlope: 0.000002276368 + outSlope: 0.0000022746544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.00000008888853 + inSlope: 0.0000022725228 + outSlope: 0.0000022744496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.00000008818422 + inSlope: 0.0000022716783 + outSlope: 0.0000022693337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.00000008746055 + inSlope: 0.000002266136 + outSlope: 0.0000022676284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000008675197 + inSlope: 0.0000022635782 + outSlope: 0.0000022616596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.000000086093124 + inSlope: 0.0000022571833 + outSlope: 0.0000022592988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.00000008551914 + inSlope: 0.0000022547158 + outSlope: 0.0000022528134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.00000008506536 + inSlope: 0.0000022481238 + outSlope: 0.0000022479107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.000000084767244 + inSlope: 0.0000022439672 + outSlope: 0.0000022440738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.000000084660044 + inSlope: 0.0000022407696 + outSlope: 0.0000022403433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.000000084767244 + inSlope: 0.000002237892 + outSlope: 0.0000022421393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.00000008506536 + inSlope: 0.0000022370234 + outSlope: 0.0000022410895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.00000008551915 + inSlope: 0.0000022377853 + outSlope: 0.000002237359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.00000008609118 + inSlope: 0.0000022383183 + outSlope: 0.000002238638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.00000008675197 + inSlope: 0.0000022414092 + outSlope: 0.0000022450329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.000000087458304 + inSlope: 0.0000022446065 + outSlope: 0.0000022482304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000008818422 + inSlope: 0.0000022474844 + outSlope: 0.0000022482666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.000000088886395 + inSlope: 0.0000022521035 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.2959713 + inSlope: 0 + outSlope: 0.06973725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.30068886 + inSlope: 0.0491737 + outSlope: 0.049620915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.3024766 + inSlope: 0.013858093 + outSlope: 0.01341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.3024766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.3024766 + inSlope: -0.004917388 + outSlope: -0.004917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.30177593 + inSlope: -0.018775482 + outSlope: -0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.29982513 + inSlope: -0.035762694 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.2968491 + inSlope: -0.05096202 + outSlope: -0.051409055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.29307267 + inSlope: -0.059902724 + outSlope: -0.061690647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.2887213 + inSlope: -0.06660802 + outSlope: -0.0683964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.2840214 + inSlope: -0.07018454 + outSlope: -0.071972676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.27919996 + inSlope: -0.07241971 + outSlope: -0.07018454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.27448624 + inSlope: -0.06884343 + outSlope: -0.06884343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.27011004 + inSlope: -0.061690867 + outSlope: -0.06213746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.2663026 + inSlope: -0.051408686 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.26329574 + inSlope: -0.036209855 + outSlope: -0.036209855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.26132196 + inSlope: -0.018775482 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.2606125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.26132196 + inSlope: 0.020563623 + outSlope: 0.018775348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.26329574 + inSlope: 0.0362096 + outSlope: 0.036209855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.2663026 + inSlope: 0.05006795 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.27009708 + inSlope: 0.0621379 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.27448624 + inSlope: 0.06884343 + outSlope: 0.06884343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.27918485 + inSlope: 0.07018454 + outSlope: 0.07241971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.2840214 + inSlope: 0.071972676 + outSlope: 0.07018567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.28870702 + inSlope: 0.07018567 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: -0.00000008514355 + inSlope: 0 + outSlope: -0.0000021182009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666851 + value: -0.000000085309615 + inSlope: -0.0000021216115 + outSlope: -0.0000021218173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333535 + value: -0.00000008543611 + inSlope: -0.0000021250146 + outSlope: -0.0000021244894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000196 + value: -0.00000008551293 + inSlope: -0.0000021251287 + outSlope: -0.0000021255476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666688 + value: -0.00000008553914 + inSlope: -0.000002125441 + outSlope: -0.000002125555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333354 + value: -0.000000085539135 + inSlope: -0.0000021261947 + outSlope: -0.000002125441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000224 + value: -0.000000085539135 + inSlope: -0.0000021257606 + outSlope: -0.0000021254484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666884 + value: -0.00000008553914 + inSlope: -0.0000021251287 + outSlope: -0.0000021254484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333545 + value: -0.000000085539135 + inSlope: -0.0000021271537 + outSlope: -0.0000021244816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000023 + value: -0.000000085539135 + inSlope: -0.0000021250146 + outSlope: -0.0000021264077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666689 + value: -0.000000085539135 + inSlope: -0.0000021267274 + outSlope: -0.0000021242686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333573 + value: -0.00000008551292 + inSlope: -0.0000021235226 + outSlope: -0.0000021251287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.80000234 + value: -0.00000008543645 + inSlope: -0.0000021221445 + outSlope: -0.0000021203325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666894 + value: -0.000000085309615 + inSlope: -0.0000021163892 + outSlope: -0.0000021185056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.933336 + value: -0.000000085144116 + inSlope: -0.0000021139226 + outSlope: -0.0000021120193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000026 + value: -0.00000008496532 + inSlope: -0.0000021067967 + outSlope: -0.000002107756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666692 + value: -0.00000008481967 + inSlope: -0.0000021050914 + outSlope: -0.0000021050914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333358 + value: -0.000000084759165 + inSlope: -0.0000021038124 + outSlope: -0.000002104665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2000024 + value: -0.000000084759165 + inSlope: -0.000002105198 + outSlope: -0.0000021088067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666695 + value: -0.00000008475916 + inSlope: -0.0000021045435 + outSlope: -0.0000021087153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333361 + value: -0.00000008475916 + inSlope: -0.0000021067967 + outSlope: -0.0000021073297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000027 + value: -0.00000008502364 + inSlope: -0.0000021168155 + outSlope: -0.0000021167089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666693 + value: -0.00000008539927 + inSlope: -0.0000021245958 + outSlope: -0.0000021284175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333364 + value: -0.000000085539135 + inSlope: -0.0000021256465 + outSlope: -0.000002129179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.600003 + value: -0.000000085539135 + inSlope: -0.0000021245958 + outSlope: -0.0000021245842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.000000085539135 + inSlope: -0.0000021242645 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: 0.113562375 + inSlope: 0 + outSlope: -0.2768266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666851 + value: 0.09509124 + inSlope: -0.265986 + outSlope: -0.26587328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333535 + value: 0.07810928 + inSlope: -0.22072287 + outSlope: -0.2206119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000196 + value: 0.06567497 + inSlope: -0.12964022 + outSlope: -0.12930448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666688 + value: 0.060850646 + inSlope: -0.03615385 + outSlope: -0.036153976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333354 + value: 0.060850624 + inSlope: 0.00011175882 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000224 + value: 0.06085068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666884 + value: 0.06085068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333545 + value: 0.06085068 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000023 + value: 0.060850672 + inSlope: 0 + outSlope: -0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666689 + value: 0.060850665 + inSlope: 0.036153976 + outSlope: 0.03615385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333573 + value: 0.065675 + inSlope: 0.12885745 + outSlope: 0.12930495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.80000234 + value: 0.07806173 + inSlope: 0.22083542 + outSlope: 0.2206119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666894 + value: 0.09509125 + inSlope: 0.26565072 + outSlope: 0.26609585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.933336 + value: 0.11350551 + inSlope: 0.26553705 + outSlope: 0.2653154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000026 + value: 0.13048105 + inSlope: 0.21949431 + outSlope: 0.21949431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666692 + value: 0.14280224 + inSlope: 0.12852263 + outSlope: 0.1280756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333358 + value: 0.14761336 + inSlope: 0.035986338 + outSlope: 0.035986338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2000024 + value: 0.14761336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666695 + value: 0.14761336 + inSlope: 0 + outSlope: 0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333361 + value: 0.14761336 + inSlope: -0.16741471 + outSlope: -0.16786174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000027 + value: 0.12520066 + inSlope: -0.4807864 + outSlope: -0.48123345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666693 + value: 0.08341587 + inSlope: -0.4832451 + outSlope: -0.48346516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333364 + value: 0.06085065 + inSlope: -0.16948102 + outSlope: -0.16920285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.600003 + value: 0.06085066 + inSlope: 0.00022351764 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.060850643 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: 0.000000009732056 + inSlope: 0 + outSlope: 0.00000021805245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666851 + value: 0.000000008149118 + inSlope: 0.00000017969643 + outSlope: 0.00000017966914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333535 + value: 0.0000000066938006 + inSlope: 0.00000014750162 + outSlope: 0.00000014738225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000196 + value: 0.0000000056282037 + inSlope: 0.00000012873048 + outSlope: 0.00000012875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666688 + value: 0.000000005214778 + inSlope: 0.00000012647183 + outSlope: 0.00000012646562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333354 + value: 0.000000005214777 + inSlope: 0.00000012962977 + outSlope: 0.00000012957601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000224 + value: 0.000000005214776 + inSlope: 0.00000012959599 + outSlope: 0.00000012957648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666884 + value: 0.0000000052147735 + inSlope: 0.00000012955648 + outSlope: 0.00000012957648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333545 + value: 0.0000000052147726 + inSlope: 0.0000001296764 + outSlope: 0.00000012951605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000023 + value: 0.0000000052147744 + inSlope: 0.00000012954936 + outSlope: 0.0000001296231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666689 + value: 0.000000005214773 + inSlope: 0.00000013275394 + outSlope: 0.00000013262023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333573 + value: 0.000000005628206 + inSlope: 0.00000015084561 + outSlope: 0.00000015101269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.80000234 + value: 0.0000000066897305 + inSlope: 0.00000018516539 + outSlope: 0.00000018508545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666894 + value: 0.00000000814912 + inSlope: 0.00000022508684 + outSlope: 0.00000022541829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.933336 + value: 0.000000009727186 + inSlope: 0.0000002645201 + outSlope: 0.00000026436211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000026 + value: 0.000000011181951 + inSlope: 0.00000029637653 + outSlope: 0.00000029656306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666692 + value: 0.0000000122378605 + inSlope: 0.00000031496168 + outSlope: 0.00000031493505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333358 + value: 0.000000012650161 + inSlope: 0.0000003171333 + outSlope: 0.00000031727984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2000024 + value: 0.000000012650161 + inSlope: 0.0000003142023 + outSlope: 0.00000031473294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666695 + value: 0.000000012650159 + inSlope: 0.00000031410679 + outSlope: 0.00000031473522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333361 + value: 0.000000012650159 + inSlope: 0.00000029980046 + outSlope: 0.00000029977383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000027 + value: 0.000000010729436 + inSlope: 0.00000022533996 + outSlope: 0.00000022515344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666693 + value: 0.000000007148565 + inSlope: 0.00000013621784 + outSlope: 0.00000013636341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333364 + value: 0.0000000052147717 + inSlope: 0.00000011502728 + outSlope: 0.000000115227934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.600003 + value: 0.000000005214772 + inSlope: 0.00000012954317 + outSlope: 0.0000001295223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0000000052147744 + inSlope: 0.00000012950233 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: 0.99353087 + inSlope: 0 + outSlope: 0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666851 + value: 0.99546856 + inSlope: 0.025033975 + outSlope: 0.025033886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333535 + value: 0.9969448 + inSlope: 0.016987279 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000196 + value: 0.99784106 + inSlope: 0.0080466345 + outSlope: 0.008940673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666688 + value: 0.9981469 + inSlope: 0.002682202 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333354 + value: 0.9981469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000224 + value: 0.9981469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666884 + value: 0.9981469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333545 + value: 0.9981469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000023 + value: 0.9981469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666689 + value: 0.9981469 + inSlope: -0.0017881411 + outSlope: -0.002682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333573 + value: 0.99784106 + inSlope: -0.008940673 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.80000234 + value: 0.99694854 + inSlope: -0.01698734 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666894 + value: 0.99546856 + inSlope: -0.025033975 + outSlope: -0.025033796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.933336 + value: 0.99353737 + inSlope: -0.03039818 + outSlope: -0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000026 + value: 0.9914508 + inSlope: -0.029504327 + outSlope: -0.028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666692 + value: 0.9897512 + inSlope: -0.018775482 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333358 + value: 0.98904514 + inSlope: -0.005364423 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2000024 + value: 0.98904514 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666695 + value: 0.98904514 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333361 + value: 0.98904514 + inSlope: 0.025033975 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000027 + value: 0.9921314 + inSlope: 0.059902724 + outSlope: 0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666693 + value: 0.9965148 + inSlope: 0.040233172 + outSlope: 0.04112695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333364 + value: 0.9981469 + inSlope: 0.01072877 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.600003 + value: 0.9981469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9981469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.7069958 + inSlope: 0 + outSlope: -0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.7070903 + inSlope: -0.00089406734 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.70710075 + inSlope: 0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.70710075 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.70710075 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.7071042 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.70707583 + inSlope: 0 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.7070157 + inSlope: 0.00089407054 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.7069236 + inSlope: 0.0017881411 + outSlope: 0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.7068 + inSlope: 0.0017881347 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.70664364 + inSlope: 0.0026822116 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.706457 + inSlope: 0.0035762822 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.70623696 + inSlope: 0.0035762822 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.70598555 + inSlope: 0.0035762822 + outSlope: 0.0035762566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.7057018 + inSlope: 0.005364385 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.70538765 + inSlope: 0.0044703525 + outSlope: 0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.70504045 + inSlope: 0.005364423 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.7046622 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.70504045 + inSlope: -0.005364423 + outSlope: -0.005364385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.70538765 + inSlope: -0.006258449 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.7057018 + inSlope: -0.0044703525 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.70598483 + inSlope: -0.0044703525 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.70623696 + inSlope: -0.0035762822 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.7064557 + inSlope: -0.0017881411 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.70664364 + inSlope: -0.0026822116 + outSlope: -0.0026822546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.70679945 + inSlope: -0.0026822546 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.010781974 + inSlope: 0 + outSlope: 0.11622875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0030791163 + inSlope: 0.11667579 + outSlope: 0.11891138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.0046522915 + inSlope: 0.05766755 + outSlope: 0.056773275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.0046522915 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.0046522915 + inSlope: -0.03486875 + outSlope: -0.037998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00008943677 + inSlope: -0.07331378 + outSlope: -0.07331352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0048439205 + inSlope: -0.06973725 + outSlope: -0.071972676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.009599328 + inSlope: -0.07018454 + outSlope: -0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0143434405 + inSlope: -0.071078606 + outSlope: -0.07063132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.019098312 + inSlope: -0.07018428 + outSlope: -0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.023826003 + inSlope: -0.07063157 + outSlope: -0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.028595507 + inSlope: -0.07152564 + outSlope: -0.0697375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.033317596 + inSlope: -0.07018454 + outSlope: -0.071078606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.03806156 + inSlope: -0.07018454 + outSlope: -0.070631064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.04279381 + inSlope: -0.069737 + outSlope: -0.071078606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.047536224 + inSlope: -0.0697375 + outSlope: -0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.05226031 + inSlope: -0.07152564 + outSlope: -0.071078606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.05699116 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.05226031 + inSlope: 0.071078606 + outSlope: 0.07197216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.047536224 + inSlope: 0.0710781 + outSlope: 0.071972676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.04279381 + inSlope: 0.071078606 + outSlope: 0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.038074583 + inSlope: 0.07063157 + outSlope: 0.07018454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.033317596 + inSlope: 0.07152564 + outSlope: 0.071078606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.028590977 + inSlope: 0.07241971 + outSlope: 0.07241971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.023826003 + inSlope: 0.07063157 + outSlope: 0.07063271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.01911524 + inSlope: 0.07018567 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.012525201 + inSlope: 0 + outSlope: 0.11578172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0048054755 + inSlope: 0.11265248 + outSlope: 0.115782134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.0028918087 + inSlope: 0.05766755 + outSlope: 0.059008442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.0028918087 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.0028918087 + inSlope: -0.035315786 + outSlope: -0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.0018667579 + inSlope: -0.07018454 + outSlope: -0.068843186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0066044033 + inSlope: -0.072866485 + outSlope: -0.071078606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.011342645 + inSlope: -0.07152564 + outSlope: -0.071078606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.016086578 + inSlope: -0.07241971 + outSlope: -0.07107835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.020824015 + inSlope: -0.07331352 + outSlope: -0.071972676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.025585353 + inSlope: -0.071078606 + outSlope: -0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.030302912 + inSlope: -0.072866745 + outSlope: -0.072866745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.035059005 + inSlope: -0.07018454 + outSlope: -0.071972676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.039802402 + inSlope: -0.07152564 + outSlope: -0.070631064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.044550925 + inSlope: -0.07152513 + outSlope: -0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.049275637 + inSlope: -0.07063157 + outSlope: -0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.054015756 + inSlope: -0.07241971 + outSlope: -0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.058745712 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.054015756 + inSlope: 0.07018454 + outSlope: 0.0710781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.049275637 + inSlope: 0.07018404 + outSlope: 0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.044550925 + inSlope: 0.07063157 + outSlope: 0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.039815426 + inSlope: 0.071972676 + outSlope: 0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.035059005 + inSlope: 0.071078606 + outSlope: 0.0697375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.030332953 + inSlope: 0.07063157 + outSlope: 0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.025585353 + inSlope: 0.07152564 + outSlope: 0.07197384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.020840913 + inSlope: 0.07107975 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7070248 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.70710015 + inSlope: 0 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.70709157 + inSlope: -0.00089407054 + outSlope: -0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.70709157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.70709157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.70710695 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.7070904 + inSlope: 0 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.7070418 + inSlope: -0.00089407054 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.70696145 + inSlope: -0.00089407054 + outSlope: -0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.706849 + inSlope: -0.0017881347 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.7067054 + inSlope: -0.0026822116 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.7065284 + inSlope: -0.0026822116 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7063216 + inSlope: -0.0026822116 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.7060818 + inSlope: -0.0035762822 + outSlope: -0.0035762566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.70581084 + inSlope: -0.0044703204 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.7055073 + inSlope: -0.0044703525 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.705173 + inSlope: -0.005364423 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.70480657 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.705173 + inSlope: 0.005364423 + outSlope: 0.006258449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.7055073 + inSlope: 0.005364385 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.70581084 + inSlope: 0.005364423 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.7060811 + inSlope: 0.0044703525 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.7063216 + inSlope: 0.0035762822 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.70652866 + inSlope: 0.0026822116 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7067054 + inSlope: 0.0017881411 + outSlope: 0.0026822546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7068485 + inSlope: 0.0017881698 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00032573412 + inSlope: 0 + outSlope: -0.0012179922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.00040684248 + inSlope: -0.0012144997 + outSlope: -0.0012158137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0004877571 + inSlope: -0.000607252 + outSlope: -0.0006055036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0004877571 + inSlope: 0.00000087311264 + outSlope: -0.00000087311577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0004877571 + inSlope: 0.00037238386 + outSlope: 0.00037325697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.0004379886 + inSlope: 0.00074738706 + outSlope: 0.00074694783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.000388141 + inSlope: 0.0007482575 + outSlope: 0.00074869674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0003382235 + inSlope: 0.0007491333 + outSlope: 0.0007491333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.00028824498 + inSlope: 0.00075044297 + outSlope: 0.0007495672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0002382145 + inSlope: 0.00075065857 + outSlope: 0.0007510978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.00018814114 + inSlope: 0.00075175264 + outSlope: 0.0007508795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.00013803369 + inSlope: 0.0007513161 + outSlope: 0.0007524075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00008790158 + inSlope: 0.00075262575 + outSlope: 0.0007519709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.000037753493 + inSlope: 0.00075213466 + outSlope: 0.00075272954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.000012401309 + inSlope: 0.0007529205 + outSlope: 0.0007521756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.00006255391 + inSlope: 0.00075208006 + outSlope: 0.0007519709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.000112695234 + inSlope: 0.00075175264 + outSlope: 0.0007525166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.00016281621 + inSlope: 0.0000017462315 + outSlope: -0.0000015279526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.00011269522 + inSlope: -0.00075229834 + outSlope: -0.0007528387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.0000625539 + inSlope: -0.000751529 + outSlope: -0.00075317145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.000012401295 + inSlope: -0.0007503884 + outSlope: -0.000750593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.000037596867 + inSlope: -0.00075175264 + outSlope: -0.0007518618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.000087901586 + inSlope: -0.0007516435 + outSlope: -0.0007529532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.0001378771 + inSlope: -0.00075153436 + outSlope: -0.0007530623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00018814117 + inSlope: -0.0007508795 + outSlope: -0.0007513282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00023805798 + inSlope: -0.0007476174 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0037216034 + inSlope: 0 + outSlope: 0.00010477351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0037136183 + inSlope: 0.00013620556 + outSlope: 0.0001327136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0037038648 + inSlope: 0.00008032665 + outSlope: 0.00008032636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0037038648 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0037038648 + inSlope: -0.000048894482 + outSlope: -0.000048894482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.0037100755 + inSlope: -0.00008381911 + outSlope: -0.000087311266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0037156183 + inSlope: -0.00007683391 + outSlope: -0.00008032665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0037204903 + inSlope: -0.00006984926 + outSlope: -0.00006984926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0037246924 + inSlope: -0.00006286433 + outSlope: -0.000059371658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0037282228 + inSlope: -0.000052386757 + outSlope: -0.000048894482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0037310806 + inSlope: -0.000041909556 + outSlope: -0.00004540202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.0037332668 + inSlope: -0.00003492463 + outSlope: -0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0037347798 + inSlope: -0.000024447241 + outSlope: -0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.00373562 + inSlope: -0.000013969852 + outSlope: -0.000010477314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.003735786 + inSlope: 0.000006984876 + outSlope: 0.000003492463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.0037352801 + inSlope: 0.000013969852 + outSlope: 0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0037340987 + inSlope: 0.000031432166 + outSlope: 0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0037322463 + inSlope: 0.000003492463 + outSlope: 0.000003492463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0037340987 + inSlope: -0.000017462315 + outSlope: -0.000020954629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.0037352801 + inSlope: -0.000010477314 + outSlope: -0.000003492463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.003735786 + inSlope: 0.000003492463 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.003735621 + inSlope: 0.000003492463 + outSlope: 0.000003492463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0037347798 + inSlope: 0.000013969852 + outSlope: 0.000017462315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.0037332727 + inSlope: 0.000020954778 + outSlope: 0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0037310806 + inSlope: 0.00003492463 + outSlope: 0.00003143267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0037282323 + inSlope: 0.00004191023 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.08715506 + inSlope: 0 + outSlope: 0.3259993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.10886604 + inSlope: 0.32521698 + outSlope: 0.32544166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.1305252 + inSlope: 0.16249731 + outSlope: 0.1620497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.1305252 + inSlope: -0.00022351684 + outSlope: 0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.1305252 + inSlope: -0.099688865 + outSlope: -0.09991238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.11720318 + inSlope: -0.20016004 + outSlope: -0.19993581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.10386006 + inSlope: -0.20027108 + outSlope: -0.20038356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.09049819 + inSlope: -0.20060708 + outSlope: -0.20049532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.07712001 + inSlope: -0.20094235 + outSlope: -0.20071812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.063727915 + inSlope: -0.20094164 + outSlope: -0.20105411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.05032435 + inSlope: -0.20122175 + outSlope: -0.20105411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.036911704 + inSlope: -0.20110999 + outSlope: -0.20138939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.023492418 + inSlope: -0.20141733 + outSlope: -0.20124969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.0100689 + inSlope: -0.20127763 + outSlope: -0.20144382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.003356447 + inSlope: -0.20148574 + outSlope: -0.20129159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.016781185 + inSlope: -0.20127763 + outSlope: -0.20124969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.030202892 + inSlope: -0.20122175 + outSlope: -0.20138939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.04361914 + inSlope: -0.00044703527 + outSlope: 0.00039115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.030202886 + inSlope: 0.20136145 + outSlope: 0.20155558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.016781185 + inSlope: 0.2012203 + outSlope: 0.20164084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.0033564367 + inSlope: 0.20091441 + outSlope: 0.20096679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.010026947 + inSlope: 0.20129159 + outSlope: 0.20129159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.023492418 + inSlope: 0.20124969 + outSlope: 0.20158496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.03686979 + inSlope: 0.20116587 + outSlope: 0.20155703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.050324354 + inSlope: 0.20105411 + outSlope: 0.20105734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.063686036 + inSlope: 0.20016326 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.99618775 + inSlope: 0 + outSlope: -0.028610155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.99404943 + inSlope: -0.035762694 + outSlope: -0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.991438 + inSlope: -0.021457693 + outSlope: -0.021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.991438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.991438 + inSlope: 0.013411058 + outSlope: 0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.99310094 + inSlope: 0.023245834 + outSlope: 0.02324575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.9945849 + inSlope: 0.020563548 + outSlope: 0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9958896 + inSlope: 0.018775482 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9970148 + inSlope: 0.016093269 + outSlope: 0.015199144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9979603 + inSlope: 0.01341101 + outSlope: 0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.99872595 + inSlope: 0.010728846 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.99931157 + inSlope: 0.0080466345 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.99971706 + inSlope: 0.005364423 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.99994236 + inSlope: 0.0026822116 + outSlope: 0.0017881283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.99998736 + inSlope: -0.00089406414 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99985224 + inSlope: -0.0026822116 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9995368 + inSlope: -0.0062584938 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.99904126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9995368 + inSlope: 0.0062584938 + outSlope: 0.006258449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.99985224 + inSlope: 0.0035762566 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.99998736 + inSlope: 0 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9999428 + inSlope: -0.0017881411 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.99971706 + inSlope: -0.0044703525 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9993131 + inSlope: -0.0071525644 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.99872595 + inSlope: -0.009834776 + outSlope: -0.010729019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.997963 + inSlope: -0.012517189 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000274092 + inSlope: 0 + outSlope: 0.0004225865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0002458739 + inSlope: 0.00042389618 + outSlope: 0.00042346114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.00021762405 + inSlope: 0.00021282196 + outSlope: 0.00021107498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.00021762405 + inSlope: -0.00000021827816 + outSlope: -0.0000013096736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.00021762405 + inSlope: 0.0008803189 + outSlope: 0.00088315655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00009984448 + inSlope: 0.0017691507 + outSlope: 0.0017683805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.000018158167 + inSlope: 0.0017693901 + outSlope: 0.0017696146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.00013612017 + inSlope: 0.0017667497 + outSlope: 0.0017669679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0002537782 + inSlope: 0.001761511 + outSlope: 0.0017597585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.00037086927 + inSlope: 0.0017484081 + outSlope: 0.0017514701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.00048713182 + inSlope: 0.0008124342 + outSlope: 0.0008089417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.0004794969 + inSlope: -0.000115687835 + outSlope: -0.00011437816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.00047185714 + inSlope: -0.00011481472 + outSlope: -0.00011437816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.0004642131 + inSlope: -0.00011437816 + outSlope: -0.00011437735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.00045656424 + inSlope: -0.00011394079 + outSlope: -0.00011481472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.00044891116 + inSlope: -0.00011481472 + outSlope: -0.00011437816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.00044125362 + inSlope: -0.00011481472 + outSlope: -0.000113941605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.00043359175 + inSlope: -0.0009997175 + outSlope: -0.00100321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.00030715577 + inSlope: -0.0019020827 + outSlope: -0.001905125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.00017991444 + inSlope: -0.0019105818 + outSlope: -0.0019147429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.000052201398 + inSlope: -0.001912942 + outSlope: -0.0019126146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.00007524896 + inSlope: -0.0019149611 + outSlope: -0.0019152885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.00020329979 + inSlope: -0.0019099407 + outSlope: -0.0019143063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.0003300224 + inSlope: -0.0008312062 + outSlope: -0.0008290234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00031434128 + inSlope: 0.00023923372 + outSlope: 0.0002374913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00029830125 + inSlope: 0.00024098382 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0024818662 + inSlope: 0 + outSlope: 0.000045401855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.0024848203 + inSlope: 0.000045401855 + outSlope: 0.000041909556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.0024874536 + inSlope: 0.000020954778 + outSlope: 0.000017462253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.0024874536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.0024874536 + inSlope: 0.000076834185 + outSlope: 0.000076834185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.0024949585 + inSlope: 0.000073341726 + outSlope: 0.00006984901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.002496889 + inSlope: -0.000013969802 + outSlope: -0.000010477389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.0024932423 + inSlope: -0.0000942965 + outSlope: -0.000097788965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0024840257 + inSlope: -0.00018160808 + outSlope: -0.00017811498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.0024692595 + inSlope: -0.00026193378 + outSlope: -0.0002654272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.0024489772 + inSlope: -0.00016414576 + outSlope: -0.0001606533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.0024504839 + inSlope: 0.000024447241 + outSlope: 0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.002451966 + inSlope: 0.000020954778 + outSlope: 0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.0024534245 + inSlope: 0.000020954778 + outSlope: 0.000020954629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.0024548597 + inSlope: 0.000020954629 + outSlope: 0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.0024562709 + inSlope: 0.000020954778 + outSlope: 0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.0024576578 + inSlope: 0.000020954778 + outSlope: 0.000017462315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.0024590208 + inSlope: 0.00017811562 + outSlope: 0.00017811562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.0024779914 + inSlope: 0.00023748749 + outSlope: 0.00023399334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.0024904653 + inSlope: 0.00013969751 + outSlope: 0.00013620606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.0024964092 + inSlope: 0.000041909556 + outSlope: 0.000038417093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.0024958216 + inSlope: -0.000059371872 + outSlope: -0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.0024886653 + inSlope: -0.00015716083 + outSlope: -0.00015716083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.0024750498 + inSlope: -0.00011175882 + outSlope: -0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.00247709 + inSlope: 0.000027939705 + outSlope: 0.00003143267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0024790731 + inSlope: 0.00003143267 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.10977011 + inSlope: 0 + outSlope: 0.169314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.09846915 + inSlope: 0.16964927 + outSlope: 0.16964988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.08715547 + inSlope: 0.08516022 + outSlope: 0.08460112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.08715547 + inSlope: -0.00011175842 + outSlope: -0.00044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.08715547 + inSlope: 0.3524873 + outSlope: 0.35371664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.039986346 + inSlope: 0.708495 + outSlope: 0.7082131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.007272122 + inSlope: 0.7086252 + outSlope: 0.70869756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.054514334 + inSlope: 0.70754504 + outSlope: 0.7077127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.101634786 + inSlope: 0.7054216 + outSlope: 0.7047486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.14852813 + inSlope: 0.7002782 + outSlope: 0.7013983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.19508971 + inSlope: 0.32544166 + outSlope: 0.32387704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.19203202 + inSlope: -0.04626815 + outSlope: -0.045821115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.18897244 + inSlope: -0.046044633 + outSlope: -0.045821115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.18591101 + inSlope: -0.045821115 + outSlope: -0.045820788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.18284781 + inSlope: -0.04559727 + outSlope: -0.046044633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.17978284 + inSlope: -0.046044633 + outSlope: -0.045821115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.1767161 + inSlope: -0.046044633 + outSlope: -0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.17364764 + inSlope: -0.40032008 + outSlope: -0.4018847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.12301173 + inSlope: -0.76185983 + outSlope: -0.76286024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.07205332 + inSlope: -0.7652071 + outSlope: -0.7667772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.020905998 + inSlope: -0.76610667 + outSlope: -0.7659949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.030136174 + inSlope: -0.76691693 + outSlope: -0.76705664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.081418805 + inSlope: -0.7648773 + outSlope: -0.76666546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.13216946 + inSlope: -0.33281776 + outSlope: -0.3319237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.1258894 + inSlope: 0.09588906 + outSlope: 0.09499652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.11946556 + inSlope: 0.09644941 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9939539 + inSlope: 0 + outSlope: 0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.995137 + inSlope: 0.016987279 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9961916 + inSlope: 0.0080466345 + outSlope: 0.0071525387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9961916 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9961916 + inSlope: 0.03129247 + outSlope: 0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9991971 + inSlope: 0.028610257 + outSlope: 0.028610155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.99997044 + inSlope: -0.005364404 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9985099 + inSlope: -0.038445033 + outSlope: -0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9948186 + inSlope: -0.07241971 + outSlope: -0.07152539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9889051 + inSlope: -0.105499946 + outSlope: -0.105500326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9807822 + inSlope: -0.065267146 + outSlope: -0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9813855 + inSlope: 0.009834776 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.98197925 + inSlope: 0.008940705 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.98256344 + inSlope: 0.008940705 + outSlope: 0.008940641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9831381 + inSlope: 0.008046577 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.9837032 + inSlope: 0.008940705 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9842587 + inSlope: 0.0080466345 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9848047 + inSlope: 0.07063157 + outSlope: 0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9924021 + inSlope: 0.094771475 + outSlope: 0.0947708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.99739766 + inSlope: 0.055431977 + outSlope: 0.05543237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.99977833 + inSlope: 0.016093269 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9995427 + inSlope: -0.023245834 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.99667686 + inSlope: -0.06258494 + outSlope: -0.06258494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.991224 + inSlope: -0.044703525 + outSlope: -0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9920411 + inSlope: 0.011622917 + outSlope: 0.012517189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9928352 + inSlope: 0.011623104 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.698784 + inSlope: 0 + outSlope: 0.035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.7009994 + inSlope: 0.030398289 + outSlope: 0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.7028812 + inSlope: 0.0125169875 + outSlope: 0.012516943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.7028812 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.7028812 + inSlope: 0.016093269 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.7048698 + inSlope: 0.025033975 + outSlope: 0.02682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.706262 + inSlope: 0.016093211 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.7070567 + inSlope: 0.009834776 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.707253 + inSlope: 0.0071525644 + outSlope: 0.008046606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.706851 + inSlope: -0.010728808 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.7058511 + inSlope: -0.016093269 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.7045184 + inSlope: -0.024139903 + outSlope: -0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7027478 + inSlope: -0.029504327 + outSlope: -0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.7005405 + inSlope: -0.03486875 + outSlope: -0.037550695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.69789743 + inSlope: -0.043809142 + outSlope: -0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.6948209 + inSlope: -0.048279807 + outSlope: -0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.6913122 + inSlope: -0.05543237 + outSlope: -0.05632644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.6873738 + inSlope: 0.059902724 + outSlope: 0.059902724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.6976577 + inSlope: 0.12695801 + outSlope: 0.1269571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.7042537 + inSlope: 0.07152513 + outSlope: 0.06258494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.70712686 + inSlope: 1.9168872 + outSlope: 1.9061583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.7062706 + inSlope: -0.028610257 + outSlope: -0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.70166385 + inSlope: -0.094771475 + outSlope: -0.09834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.6933882 + inSlope: -0.06258494 + outSlope: -0.06258494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6950424 + inSlope: 0.024139903 + outSlope: 0.025034377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.69661546 + inSlope: 0.023246208 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.109232366 + inSlope: 0 + outSlope: 0.22977531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.09396258 + inSlope: 0.23022233 + outSlope: 0.2293291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.07864809 + inSlope: 0.11757027 + outSlope: 0.11354655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.07864809 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.07864809 + inSlope: 0.15422717 + outSlope: 0.15243903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.058171928 + inSlope: 0.30711323 + outSlope: 0.30711213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.03764662 + inSlope: 0.3080062 + outSlope: 0.30711323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.017088383 + inSlope: 0.31024247 + outSlope: 0.30621916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0034814477 + inSlope: 0.3004077 + outSlope: 0.3080062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.024050653 + inSlope: 0.30711213 + outSlope: 0.30890137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.044599414 + inSlope: 0.2865496 + outSlope: 0.28431442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.0621832 + inSlope: 0.26151562 + outSlope: 0.26419783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0797281 + inSlope: 0.26330376 + outSlope: 0.2624097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.09722337 + inSlope: 0.2624097 + outSlope: 0.2619608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.114658475 + inSlope: 0.2619608 + outSlope: 0.26151562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.13202202 + inSlope: 0.26062155 + outSlope: 0.25838637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.1493035 + inSlope: 0.2588334 + outSlope: 0.25838637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.16649222 + inSlope: -0.2458694 + outSlope: -0.2458694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.11610803 + inSlope: -0.760854 + outSlope: -0.7612956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.065110296 + inSlope: -0.76666 + outSlope: -0.76800656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.013767123 + inSlope: -0.48279807 + outSlope: -0.5006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.037485898 + inSlope: -0.7773943 + outSlope: -0.7697947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.08886215 + inSlope: -0.7648773 + outSlope: -0.7657714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.13945109 + inSlope: -0.31471282 + outSlope: -0.3120306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.13095418 + inSlope: 0.12919319 + outSlope: 0.1274071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.122306645 + inSlope: 0.13098344 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.10913235 + inSlope: 0 + outSlope: 0.22888124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.09386936 + inSlope: 0.22932827 + outSlope: 0.22977613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.078561574 + inSlope: 0.11265288 + outSlope: 0.11444062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.078561574 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.078561574 + inSlope: 0.15109792 + outSlope: 0.15512124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.058093965 + inSlope: 0.30756027 + outSlope: 0.30711213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.03757772 + inSlope: 0.30711213 + outSlope: 0.30890137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.01702863 + inSlope: 0.30845433 + outSlope: 0.3093484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0035323799 + inSlope: 0.31381875 + outSlope: 0.30845323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.024092853 + inSlope: 0.30890027 + outSlope: 0.3080073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.044632047 + inSlope: 0.28610256 + outSlope: 0.2865496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.062208086 + inSlope: 0.2624097 + outSlope: 0.2637508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.07974535 + inSlope: 0.2637508 + outSlope: 0.26196265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.09723276 + inSlope: 0.26151562 + outSlope: 0.26330188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.114659905 + inSlope: 0.25972563 + outSlope: 0.26062155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.13201556 + inSlope: 0.25928044 + outSlope: 0.2601745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.14928928 + inSlope: 0.25793934 + outSlope: 0.2588334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.16647035 + inSlope: -0.24497533 + outSlope: -0.2472105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.116108984 + inSlope: -0.75995994 + outSlope: -0.7612956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.06513393 + inSlope: -0.767107 + outSlope: -0.76800656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.0138147175 + inSlope: -0.48503327 + outSlope: -0.5011265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.037417233 + inSlope: -0.76130104 + outSlope: -0.76890063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.088771135 + inSlope: -0.76398325 + outSlope: -0.7657714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.13933834 + inSlope: -0.31381875 + outSlope: -0.3120306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.1308451 + inSlope: 0.12919319 + outSlope: 0.12785414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.122201264 + inSlope: 0.13053639 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.6984693 + inSlope: 0 + outSlope: 0.035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.70068496 + inSlope: 0.030398289 + outSlope: 0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.7025671 + inSlope: 0.0125169875 + outSlope: 0.012516943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.7025671 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.7025671 + inSlope: 0.01698734 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.7045563 + inSlope: 0.024139903 + outSlope: 0.025927952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.70594937 + inSlope: 0.015199144 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.70674527 + inSlope: 0.005364423 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.70694315 + inSlope: -0.010728846 + outSlope: -0.010728808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.70654273 + inSlope: -0.010728808 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.70554465 + inSlope: -0.01788141 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.70421386 + inSlope: -0.024139903 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.70244545 + inSlope: -0.029504327 + outSlope: -0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.7002404 + inSlope: -0.03486875 + outSlope: -0.037550695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.6975999 + inSlope: -0.043809142 + outSlope: -0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.6945258 + inSlope: -0.04917388 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.69102 + inSlope: -0.05543237 + outSlope: -0.05632644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.68708456 + inSlope: 0.059008654 + outSlope: 0.059902724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.6973603 + inSlope: 0.12695801 + outSlope: 0.12516898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.7039496 + inSlope: 0.069737 + outSlope: 0.078678206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.70681775 + inSlope: -1.8981117 + outSlope: -1.8882769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.705958 + inSlope: -0.05185609 + outSlope: -0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.70134944 + inSlope: -0.09745368 + outSlope: -0.096559614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.69307363 + inSlope: -0.06347901 + outSlope: -0.06258494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6947277 + inSlope: 0.024139903 + outSlope: 0.025034377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6963008 + inSlope: 0.022352124 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.6795968 + inSlope: 0 + outSlope: 0.005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.67921895 + inSlope: 0.0044703367 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.6790701 + inSlope: 0.00089407054 + outSlope: 0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.6790701 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.6790701 + inSlope: -0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.67912877 + inSlope: -0.0017881411 + outSlope: -0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.6792898 + inSlope: -0.0035762694 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.6795281 + inSlope: -0.0035762822 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.6798183 + inSlope: -0.0044703525 + outSlope: -0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.68013537 + inSlope: -0.005364404 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.6804576 + inSlope: -0.0071525644 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.6807659 + inSlope: -0.0044703525 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.68104607 + inSlope: -0.0044703525 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.68128717 + inSlope: -0.0017881411 + outSlope: -0.0044703204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.6814824 + inSlope: -0.0017881283 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.6816269 + inSlope: -0.0035762822 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.68171704 + inSlope: 0 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.6817486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.68171704 + inSlope: 0.0017881411 + outSlope: -0.00089406414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.6816269 + inSlope: 0 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.6814824 + inSlope: 0.0026822116 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.68128794 + inSlope: 0.0026822116 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.68104607 + inSlope: 0.0026822116 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.6807668 + inSlope: 0.0044703525 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.6804576 + inSlope: 0.0035762822 + outSlope: 0.0062585943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.6801364 + inSlope: 0.0044704247 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16069704 + inSlope: 0 + outSlope: 0.048279636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.16393206 + inSlope: 0.032633457 + outSlope: 0.033527646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.16515997 + inSlope: 0.009834776 + outSlope: 0.0084936395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.16515997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.16515997 + inSlope: -0.0031292469 + outSlope: -0.0031292469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.16467848 + inSlope: -0.0125169875 + outSlope: -0.012963976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.16333902 + inSlope: -0.025927952 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.16129848 + inSlope: -0.03486875 + outSlope: -0.035315786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.15871385 + inSlope: -0.042021316 + outSlope: -0.04157413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.1557424 + inSlope: -0.04604447 + outSlope: -0.046491668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.1525408 + inSlope: -0.049620915 + outSlope: -0.047385737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.14926547 + inSlope: -0.047832772 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.14607155 + inSlope: -0.046491668 + outSlope: -0.046491668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.1431137 + inSlope: -0.041127246 + outSlope: -0.041573983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.14054605 + inSlope: -0.033527404 + outSlope: -0.036209855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.13852212 + inSlope: -0.025033975 + outSlope: -0.02458694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.13719544 + inSlope: -0.0125169875 + outSlope: -0.012069952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.13671899 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.13719544 + inSlope: 0.012964022 + outSlope: 0.01296393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.13852212 + inSlope: 0.024586763 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.14054605 + inSlope: 0.03486875 + outSlope: 0.033527646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.14310482 + inSlope: 0.04157428 + outSlope: 0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.14607155 + inSlope: 0.046491668 + outSlope: 0.046491668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.14925525 + inSlope: 0.04917388 + outSlope: 0.04872684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.1525408 + inSlope: 0.047385737 + outSlope: 0.04917467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.15573266 + inSlope: 0.048280586 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.19237602 + inSlope: 0 + outSlope: -0.05073832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.19583163 + inSlope: -0.036880277 + outSlope: -0.035986338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.19713926 + inSlope: -0.0102818115 + outSlope: -0.009611224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.19713926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.19713926 + inSlope: 0.0031292469 + outSlope: 0.0040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.19662689 + inSlope: 0.014975681 + outSlope: 0.0143050775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.19519912 + inSlope: 0.026598504 + outSlope: 0.026375081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.19301929 + inSlope: 0.038221516 + outSlope: 0.036433373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.19024992 + inSlope: 0.044703525 + outSlope: 0.046267983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.18705386 + inSlope: 0.051408872 + outSlope: 0.049620915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.18359604 + inSlope: 0.052750163 + outSlope: 0.052303124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.18004292 + inSlope: 0.052303124 + outSlope: 0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.17656317 + inSlope: 0.050514985 + outSlope: 0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.17332733 + inSlope: 0.046044633 + outSlope: 0.04559727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.17050806 + inSlope: 0.037997726 + outSlope: 0.037103925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.16827902 + inSlope: 0.02816322 + outSlope: 0.027269151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.16681442 + inSlope: 0.014305129 + outSlope: 0.015646234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.16628784 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.16681442 + inSlope: -0.014752164 + outSlope: -0.013857994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.16827902 + inSlope: -0.027268955 + outSlope: -0.02816322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.17050806 + inSlope: -0.038445033 + outSlope: -0.037998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.17331791 + inSlope: -0.045150563 + outSlope: -0.046044633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.17656317 + inSlope: -0.04917388 + outSlope: -0.050514985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.18003196 + inSlope: -0.052750163 + outSlope: -0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.18359604 + inSlope: -0.052750163 + outSlope: -0.05319805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.18704343 + inSlope: -0.051856924 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.6894318 + inSlope: 0 + outSlope: -0.01966948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.6880683 + inSlope: -0.01341101 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.6875479 + inSlope: -0.0044703525 + outSlope: -0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.6875479 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.6875479 + inSlope: 0.0017881411 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.6877521 + inSlope: 0.0062584938 + outSlope: 0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.688319 + inSlope: 0.00983474 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.68917906 + inSlope: 0.013411058 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.6902623 + inSlope: 0.01698734 + outSlope: 0.017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.6914991 + inSlope: 0.01966948 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.6928214 + inSlope: 0.021457693 + outSlope: 0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.69416285 + inSlope: 0.019669551 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.6954602 + inSlope: 0.01788141 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.6966519 + inSlope: 0.01698734 + outSlope: 0.016987218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.6976787 + inSlope: 0.014305026 + outSlope: 0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.6984831 + inSlope: 0.010728846 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.699008 + inSlope: 0.0044703525 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.699196 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.699008 + inSlope: -0.005364423 + outSlope: -0.0035762566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.6984831 + inSlope: -0.008940641 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.6976787 + inSlope: -0.0125169875 + outSlope: -0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.6966553 + inSlope: -0.016093269 + outSlope: -0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.6954602 + inSlope: -0.01788141 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.6941671 + inSlope: -0.019669551 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6928214 + inSlope: -0.019669551 + outSlope: -0.021458037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.69150317 + inSlope: -0.019669868 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.012504231 + inSlope: 0 + outSlope: -0.13317412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.003666603 + inSlope: -0.09412154 + outSlope: -0.09404155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.00000002908076 + inSlope: -0.027537005 + outSlope: -0.027470425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.00000002908076 + inSlope: 0.000031727497 + outSlope: -0.000003991318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.00000002908076 + inSlope: 0.0059965327 + outSlope: 0.0060106902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.0007994514 + inSlope: 0.021733597 + outSlope: 0.021759713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.0028842033 + inSlope: 0.037641633 + outSlope: 0.037659228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.005775577 + inSlope: 0.046889808 + outSlope: 0.046896793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.009073322 + inSlope: 0.05098996 + outSlope: 0.050919928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.012514132 + inSlope: 0.051841937 + outSlope: 0.05193991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.015964549 + inSlope: 0.057192575 + outSlope: 0.057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.020139745 + inSlope: 0.07082715 + outSlope: 0.07093891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.025429655 + inSlope: 0.08323238 + outSlope: 0.08323238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.031258725 + inSlope: 0.0868366 + outSlope: 0.0867801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.03702723 + inSlope: 0.081080444 + outSlope: 0.08119278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.04210747 + inSlope: 0.0659377 + outSlope: 0.0659377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.045845296 + inSlope: 0.041015483 + outSlope: 0.040736087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.047565944 + inSlope: 0.011455279 + outSlope: 0.0113993995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.047366913 + inSlope: -0.012405229 + outSlope: -0.012461019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.0458886 + inSlope: -0.030286422 + outSlope: -0.030230759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.043295093 + inSlope: -0.044982925 + outSlope: -0.044982925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.039849427 + inSlope: -0.055376492 + outSlope: -0.055376492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.03587224 + inSlope: -0.059902724 + outSlope: -0.059958603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.03185009 + inSlope: -0.06554654 + outSlope: -0.06549066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.027141128 + inSlope: -0.07851057 + outSlope: -0.078539774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.021391304 + inSlope: -0.0864189 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.037959475 + inSlope: 0 + outSlope: 0.21692309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.052439865 + inSlope: 0.1574676 + outSlope: 0.15730053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.058969922 + inSlope: 0.048950363 + outSlope: 0.04889431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.058969922 + inSlope: -0.00005587921 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.058969922 + inSlope: 0.02453106 + outSlope: 0.02458694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.062247768 + inSlope: 0.08566313 + outSlope: 0.08594222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.07041715 + inSlope: 0.1402568 + outSlope: 0.14059259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.080971785 + inSlope: 0.15746817 + outSlope: 0.15746817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.091421545 + inSlope: 0.13746335 + outSlope: 0.13723934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.09932133 + inSlope: 0.08113661 + outSlope: 0.081360415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.10227994 + inSlope: 0.008717188 + outSlope: 0.008381912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.10048418 + inSlope: -0.04637991 + outSlope: -0.046603426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0961078 + inSlope: -0.080354586 + outSlope: -0.080354586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.089792095 + inSlope: -0.10449449 + outSlope: -0.104381986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.08220362 + inSlope: -0.118463494 + outSlope: -0.118352585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.07403108 + inSlope: -0.121593595 + outSlope: -0.12170535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.06597714 + inSlope: -0.11466455 + outSlope: -0.11466455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.05874554 + inSlope: -0.11226173 + outSlope: -0.11231761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.051004935 + inSlope: -0.12706977 + outSlope: -0.1272365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.041808013 + inSlope: -0.13936225 + outSlope: -0.13964264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.032421444 + inSlope: -0.13243419 + outSlope: -0.13243419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.024157198 + inSlope: -0.10622676 + outSlope: -0.10619882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.018275226 + inSlope: -0.059735086 + outSlope: -0.059818905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.01621316 + inSlope: 0.0040233172 + outSlope: 0.0040791966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.018833874 + inSlope: 0.066133276 + outSlope: 0.06613434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.02505424 + inSlope: 0.09312453 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.011497515 + inSlope: 0 + outSlope: 0.12135567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0033648966 + inSlope: 0.08598413 + outSlope: 0.085855216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.00000024288204 + inSlope: 0.025221344 + outSlope: 0.025161264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.00000024288204 + inSlope: -0.000026859723 + outSlope: 0.00001791891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.00000024288204 + inSlope: -0.016869348 + outSlope: -0.016909761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.002254022 + inSlope: -0.061023805 + outSlope: -0.0611109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.008148046 + inSlope: -0.10584919 + outSlope: -0.10587751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.016382368 + inSlope: -0.13100927 + outSlope: -0.13095339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.025631988 + inSlope: -0.13592666 + outSlope: -0.13598205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.034528065 + inSlope: -0.1201403 + outSlope: -0.120140724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.04165745 + inSlope: -0.098906554 + outSlope: -0.098794796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.047708947 + inSlope: -0.09270394 + outSlope: -0.09275982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.054004636 + inSlope: -0.09275982 + outSlope: -0.0928157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.0600582 + inSlope: -0.08566313 + outSlope: -0.08577428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.06540416 + inSlope: -0.071748644 + outSlope: -0.07186092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.069608964 + inSlope: -0.051632572 + outSlope: -0.05174433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.07227422 + inSlope: -0.025928045 + outSlope: -0.025592769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.073031195 + inSlope: 0.013522817 + outSlope: 0.0136345755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.07045448 + inSlope: 0.06549066 + outSlope: 0.06571371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.06428897 + inSlope: 0.10896406 + outSlope: 0.10930012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.055931125 + inSlope: 0.1313166 + outSlope: 0.13137248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.046786834 + inSlope: 0.13366355 + outSlope: 0.13377531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.038116734 + inSlope: 0.11583801 + outSlope: 0.11611741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.031334754 + inSlope: 0.09343037 + outSlope: 0.09370977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.025643747 + inSlope: 0.08672484 + outSlope: 0.08675417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.019747254 + inSlope: 0.088262945 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9991349 + inSlope: 0 + outSlope: -0.005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9986116 + inSlope: -0.008046606 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9982598 + inSlope: -0.0026822116 + outSlope: -0.0035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9982598 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9982598 + inSlope: -0.00089407054 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.99805784 + inSlope: -0.0062584938 + outSlope: -0.005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.99748015 + inSlope: -0.010728808 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.996565 + inSlope: -0.015199199 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.995441 + inSlope: -0.01698734 + outSlope: -0.015199144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9943774 + inSlope: -0.01341101 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9937549 + inSlope: -0.0044703525 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.99359006 + inSlope: -0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.99357945 + inSlope: 0 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9936565 + inSlope: 0.0017881411 + outSlope: 0.00089406414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9937776 + inSlope: 0.0017881283 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99393207 + inSlope: 0.0026822116 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9941437 + inSlope: 0.0044703525 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.99446106 + inSlope: 0.0071525644 + outSlope: 0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9950835 + inSlope: 0.0125169875 + outSlope: 0.009834706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.9959986 + inSlope: 0.014305026 + outSlope: 0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9969685 + inSlope: 0.014305129 + outSlope: 0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.99781734 + inSlope: 0.010728846 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.998462 + inSlope: 0.0080466345 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9988698 + inSlope: 0.005364423 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9991251 + inSlope: 0.0035762822 + outSlope: 0.0035763397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99926203 + inSlope: 0.0008940849 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.68857735 + inSlope: 0 + outSlope: 0.020563548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.6871974 + inSlope: 0.015199144 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.68667084 + inSlope: 0.0044703525 + outSlope: 0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.68667084 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.68667084 + inSlope: -0.00089407054 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.6868775 + inSlope: -0.0062584938 + outSlope: -0.005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.6874511 + inSlope: -0.010728808 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.68832165 + inSlope: -0.014305129 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.68941814 + inSlope: -0.01788141 + outSlope: -0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.6906702 + inSlope: -0.020563548 + outSlope: -0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.6920091 + inSlope: -0.020563623 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.69336784 + inSlope: -0.019669551 + outSlope: -0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.694682 + inSlope: -0.01788141 + outSlope: -0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.6958895 + inSlope: -0.016093269 + outSlope: -0.016093154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.69693017 + inSlope: -0.014305026 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.69774544 + inSlope: -0.008940705 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.69827765 + inSlope: -0.0062584938 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.6984682 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.69827765 + inSlope: 0.0044703525 + outSlope: 0.006258449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.69774544 + inSlope: 0.01072877 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.69693017 + inSlope: 0.0125169875 + outSlope: 0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.69589305 + inSlope: 0.01698734 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.694682 + inSlope: 0.019669551 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.6933721 + inSlope: 0.019669551 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.6920091 + inSlope: 0.020563623 + outSlope: 0.020563953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.69067425 + inSlope: 0.020563953 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.19594309 + inSlope: 0 + outSlope: -0.052302938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.19939646 + inSlope: -0.035762694 + outSlope: -0.035315786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.20070346 + inSlope: -0.009611258 + outSlope: -0.009611224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.20070346 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.20070346 + inSlope: 0.004246835 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.20019136 + inSlope: 0.014975681 + outSlope: 0.013634527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.19876465 + inSlope: 0.026374986 + outSlope: 0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.19658607 + inSlope: 0.037550963 + outSlope: 0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.19381817 + inSlope: 0.04537408 + outSlope: 0.04582095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.1906241 + inSlope: 0.0491737 + outSlope: 0.051409055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.18716803 + inSlope: 0.052750163 + outSlope: 0.053197198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.18361646 + inSlope: 0.052750163 + outSlope: 0.053197198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.18013808 + inSlope: 0.050514985 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.17690381 + inSlope: 0.045150563 + outSlope: 0.0460443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.17408535 + inSlope: 0.037997726 + outSlope: 0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.17185694 + inSlope: 0.029057292 + outSlope: 0.027269151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.17039284 + inSlope: 0.015646234 + outSlope: 0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.16986632 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.17039284 + inSlope: -0.014305129 + outSlope: -0.015646122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.17185694 + inSlope: -0.027268955 + outSlope: -0.029057292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.17408535 + inSlope: -0.03665689 + outSlope: -0.037998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.17689398 + inSlope: -0.04425649 + outSlope: -0.046044633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.18013808 + inSlope: -0.05006795 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.18360543 + inSlope: -0.053197198 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.18716803 + inSlope: -0.053197198 + outSlope: -0.05275101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.19061355 + inSlope: -0.051633403 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16431612 + inSlope: 0 + outSlope: 0.048279636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.16754395 + inSlope: 0.033527523 + outSlope: 0.033527646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.16876918 + inSlope: 0.009834776 + outSlope: 0.00983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.16876918 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.16876918 + inSlope: -0.0031292469 + outSlope: -0.0031292469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.16828883 + inSlope: -0.013411058 + outSlope: -0.01341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.16695231 + inSlope: -0.025480919 + outSlope: -0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.16491607 + inSlope: -0.034421716 + outSlope: -0.035315786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.16233703 + inSlope: -0.04157428 + outSlope: -0.040680062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.15937209 + inSlope: -0.0464915 + outSlope: -0.046044633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.15617764 + inSlope: -0.049620915 + outSlope: -0.04872684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.15290916 + inSlope: -0.047385737 + outSlope: -0.04872684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.14972204 + inSlope: -0.045597598 + outSlope: -0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.14677072 + inSlope: -0.042021316 + outSlope: -0.04112695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.14420867 + inSlope: -0.03442147 + outSlope: -0.035315786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.14218909 + inSlope: -0.025033975 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.14086506 + inSlope: -0.013858093 + outSlope: -0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.14038971 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.14086506 + inSlope: 0.013411058 + outSlope: 0.013857994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.14218909 + inSlope: 0.02592786 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.14420867 + inSlope: 0.035315786 + outSlope: 0.034421716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.14676198 + inSlope: 0.040233172 + outSlope: 0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.14972204 + inSlope: 0.045597598 + outSlope: 0.046491668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.15289906 + inSlope: 0.04872684 + outSlope: 0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.15617764 + inSlope: 0.04917388 + outSlope: 0.049621712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.15936261 + inSlope: 0.048280586 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.6785778 + inSlope: 0 + outSlope: -0.0071525387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.67818123 + inSlope: -0.0044703367 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.67802525 + inSlope: -0.00089407054 + outSlope: -0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.67802525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.67802525 + inSlope: 0.0017881411 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.67808676 + inSlope: 0.00089407054 + outSlope: 0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.67825544 + inSlope: 0.0035762694 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.6785056 + inSlope: 0.0044703525 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.6788106 + inSlope: 0.005364423 + outSlope: 0.005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.67914486 + inSlope: 0.005364404 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.6794852 + inSlope: 0.005364423 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.6798124 + inSlope: 0.0044703525 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.68011063 + inSlope: 0.0044703525 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.6803684 + inSlope: 0.0026822116 + outSlope: 0.0035762566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.680578 + inSlope: 0.0017881283 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.6807339 + inSlope: 0 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.6808316 + inSlope: 0.0017881411 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.68086576 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.6808316 + inSlope: -0.00089407054 + outSlope: -0.0017881283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.6807339 + inSlope: -0.0017881283 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.680578 + inSlope: -0.0035762822 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.68036926 + inSlope: -0.0044703525 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.68011063 + inSlope: -0.0035762822 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.67981327 + inSlope: -0.005364423 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6794852 + inSlope: -0.005364423 + outSlope: -0.0053645093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6791459 + inSlope: -0.0053645093 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.012478428 + inSlope: 0 + outSlope: 0.13286678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0036602824 + inSlope: 0.09397835 + outSlope: 0.093835495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.00000005337545 + inSlope: 0.027504275 + outSlope: 0.027425177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.00000005337545 + inSlope: -0.000023739454 + outSlope: 0.000007807149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.00000005337545 + inSlope: -0.005968035 + outSlope: -0.005981507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00079635193 + inSlope: -0.021645412 + outSlope: -0.021674147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0028728407 + inSlope: -0.03749495 + outSlope: -0.037512545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.005752762 + inSlope: -0.04668026 + outSlope: -0.046687245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.009037772 + inSlope: -0.05078041 + outSlope: -0.05073832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.012466444 + inSlope: -0.05171621 + outSlope: -0.05174433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.015907144 + inSlope: -0.057080816 + outSlope: -0.057052877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.020074593 + inSlope: -0.07077127 + outSlope: -0.07079921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.025357293 + inSlope: -0.0831765 + outSlope: -0.08312062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.031179955 + inSlope: -0.08658514 + outSlope: -0.0867801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.036942832 + inSlope: -0.081192195 + outSlope: -0.08096926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.042017873 + inSlope: -0.06588182 + outSlope: -0.06588182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.045750517 + inSlope: -0.040736087 + outSlope: -0.040736087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.047465753 + inSlope: -0.0113993995 + outSlope: -0.011287641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.047260076 + inSlope: 0.012349349 + outSlope: 0.012516898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.04577581 + inSlope: 0.030230543 + outSlope: 0.03034252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.04318097 + inSlope: 0.044871163 + outSlope: 0.044927046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.039740495 + inSlope: 0.055208854 + outSlope: 0.055320613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.035774235 + inSlope: 0.059567448 + outSlope: 0.059790965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.031765502 + inSlope: 0.065267146 + outSlope: 0.065378904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.027072472 + inSlope: 0.07828705 + outSlope: 0.07828831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.02134091 + inSlope: 0.08613949 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.026610674 + inSlope: 0 + outSlope: -0.21169838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.04073754 + inSlope: -0.15355606 + outSlope: -0.15350074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.04710819 + inSlope: -0.047776893 + outSlope: -0.047664963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.04710819 + inSlope: 0.00005587921 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.04710819 + inSlope: -0.02453106 + outSlope: -0.02464282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.050386436 + inSlope: -0.08583077 + outSlope: -0.08594222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.058558315 + inSlope: -0.14042445 + outSlope: -0.14042495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.06911943 + inSlope: -0.15769169 + outSlope: -0.15746817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.07958009 + inSlope: -0.13768686 + outSlope: -0.13746285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.08749249 + inSlope: -0.081360124 + outSlope: -0.081360415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.09046099 + inSlope: -0.008381912 + outSlope: -0.008717188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.0886606 + inSlope: 0.046603426 + outSlope: 0.046715185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.084263824 + inSlope: 0.0805781 + outSlope: 0.08091338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.07792257 + inSlope: 0.10460625 + outSlope: 0.10494078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.07031376 + inSlope: 0.11868701 + outSlope: 0.1185761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.062136598 + inSlope: 0.121537715 + outSlope: 0.121593595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.054103885 + inSlope: 0.11416163 + outSlope: 0.113938116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.046928898 + inSlope: 0.110808864 + outSlope: 0.11086474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.03931504 + inSlope: 0.1245552 + outSlope: 0.124666065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.030315895 + inSlope: 0.13617714 + outSlope: 0.13645752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.021157838 + inSlope: 0.12919319 + outSlope: 0.12908143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.013110403 + inSlope: 0.10340484 + outSlope: 0.10333499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0073915487 + inSlope: 0.05806569 + outSlope: 0.0581076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.0053909738 + inSlope: -0.0040093474 + outSlope: -0.0041071363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.007950211 + inSlope: -0.064526744 + outSlope: -0.06459764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.014020172 + inSlope: -0.0908055 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.011514263 + inSlope: 0 + outSlope: 0.121593155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0033683449 + inSlope: 0.08612034 + outSlope: 0.08599143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.00000023423031 + inSlope: 0.025250336 + outSlope: 0.025188422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.00000023423031 + inSlope: -0.000026089781 + outSlope: 0.000018320936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.00000023423031 + inSlope: -0.01687476 + outSlope: -0.016916173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.002255062 + inSlope: -0.06105524 + outSlope: -0.06113884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0081517985 + inSlope: -0.10584919 + outSlope: -0.10591942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.01638987 + inSlope: -0.13106515 + outSlope: -0.13100927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.02564377 + inSlope: -0.13606636 + outSlope: -0.13598205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.034544393 + inSlope: -0.12008442 + outSlope: -0.12025248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.04167843 + inSlope: -0.098906554 + outSlope: -0.098850675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.047735464 + inSlope: -0.09270394 + outSlope: -0.09287158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.054037858 + inSlope: -0.092927456 + outSlope: -0.0928157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.06009853 + inSlope: -0.08577489 + outSlope: -0.08577428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.06545149 + inSlope: -0.07197216 + outSlope: -0.07186092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.06966293 + inSlope: -0.05174433 + outSlope: -0.05174433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.07233421 + inSlope: -0.025816286 + outSlope: -0.025816286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.07309641 + inSlope: 0.013522817 + outSlope: 0.0136345755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0705247 + inSlope: 0.06560242 + outSlope: 0.06560195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.06436393 + inSlope: 0.10907582 + outSlope: 0.108964846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.056008734 + inSlope: 0.1313166 + outSlope: 0.13142836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.046863493 + inSlope: 0.13366355 + outSlope: 0.13371943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.038188357 + inSlope: 0.11600565 + outSlope: 0.11622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.031398065 + inSlope: 0.09365389 + outSlope: 0.09370977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.02569481 + inSlope: 0.08692042 + outSlope: 0.0869777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.01978348 + inSlope: 0.08843058 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.99950165 + inSlope: 0 + outSlope: -0.002682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9991575 + inSlope: -0.0062584714 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9988898 + inSlope: -0.0017881411 + outSlope: -0.002682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9988898 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9988898 + inSlope: -0.00089407054 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9987269 + inSlope: -0.0044703525 + outSlope: -0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.99824655 + inSlope: -0.008940673 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.99745715 + inSlope: -0.0125169875 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9964576 + inSlope: -0.015199199 + outSlope: -0.016093211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.995488 + inSlope: -0.012516943 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.99490035 + inSlope: -0.0062584938 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.99471486 + inSlope: -0.00089407054 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.994654 + inSlope: 0 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9946577 + inSlope: 0 + outSlope: 0.00089406414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9946896 + inSlope: 0.00089406414 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.9947465 + inSlope: 0.00089407054 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9948606 + inSlope: 0.0026822116 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.99508876 + inSlope: 0.0071525644 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.99561393 + inSlope: 0.009834776 + outSlope: 0.009834706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.996415 + inSlope: 0.013410962 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9972717 + inSlope: 0.013411058 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.99802434 + inSlope: 0.008940705 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.9986026 + inSlope: 0.0071525644 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.99898744 + inSlope: 0.0044703525 + outSlope: 0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9992715 + inSlope: 0.0035762822 + outSlope: 0.0035763397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9994781 + inSlope: 0.0017881698 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.036893547 + inSlope: 0 + outSlope: -0.01760195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.035718642 + inSlope: -0.012181668 + outSlope: -0.01218171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.03527093 + inSlope: -0.0034086439 + outSlope: -0.0033527524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.03527093 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.03527093 + inSlope: 0.0012852264 + outSlope: 0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.03544654 + inSlope: 0.0050291466 + outSlope: 0.0049732495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.0359345 + inSlope: 0.009275949 + outSlope: 0.009220102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.03667567 + inSlope: 0.012572867 + outSlope: 0.012572867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0376105 + inSlope: 0.01508744 + outSlope: 0.015031507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.038679697 + inSlope: 0.016652005 + outSlope: 0.016596183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.03982487 + inSlope: 0.017322617 + outSlope: 0.017322617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.04098891 + inSlope: 0.017154979 + outSlope: 0.017210858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.04211636 + inSlope: 0.016205028 + outSlope: 0.016260907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.04315351 + inSlope: 0.014472767 + outSlope: 0.014472663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.044048272 + inSlope: 0.012013987 + outSlope: 0.011902314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.044749822 + inSlope: 0.008661308 + outSlope: 0.008661308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.045207944 + inSlope: 0.0046379906 + outSlope: 0.0046938704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.04537211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.045207944 + inSlope: -0.0046938704 + outSlope: -0.0046379576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.044749822 + inSlope: -0.008661246 + outSlope: -0.008661308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.044048272 + inSlope: -0.011846434 + outSlope: -0.011958193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.043156557 + inSlope: -0.014416887 + outSlope: -0.014528646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.04211636 + inSlope: -0.016205028 + outSlope: -0.016260907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.040992517 + inSlope: -0.017154979 + outSlope: -0.017210858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.03982487 + inSlope: -0.017322617 + outSlope: -0.017322896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.03868319 + inSlope: -0.017155254 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.006618211 + inSlope: 0 + outSlope: -0.2216309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.021388665 + inSlope: -0.15288551 + outSlope: -0.15269049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.026990201 + inSlope: -0.042049255 + outSlope: -0.041909404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.026990201 + inSlope: 0.000027939604 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.026990201 + inSlope: 0.016456485 + outSlope: 0.016456485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.024794832 + inSlope: 0.06224966 + outSlope: 0.062361196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.018682795 + inSlope: 0.11566996 + outSlope: 0.115754195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.009365119 + inSlope: 0.158474 + outSlope: 0.15848798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0024462629 + inSlope: 0.19062561 + outSlope: 0.19046079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.01603773 + inSlope: 0.21175426 + outSlope: 0.21197854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.03069409 + inSlope: 0.22253974 + outSlope: 0.22245592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.045699574 + inSlope: 0.22217652 + outSlope: 0.22245592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.060339186 + inSlope: 0.21155944 + outSlope: 0.2113918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.07390036 + inSlope: 0.18998998 + outSlope: 0.18998863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.08567386 + inSlope: 0.15802583 + outSlope: 0.1579152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.09495408 + inSlope: 0.11522334 + outSlope: 0.11522334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.10103792 + inSlope: 0.062026143 + outSlope: 0.061914384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.10322247 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.10103792 + inSlope: -0.061914384 + outSlope: -0.06213746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.09495408 + inSlope: -0.11522251 + outSlope: -0.1153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.085673854 + inSlope: -0.15746817 + outSlope: -0.15757993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.07394029 + inSlope: -0.18987823 + outSlope: -0.18998998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.06033917 + inSlope: -0.2113918 + outSlope: -0.2116712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.045746252 + inSlope: -0.2222324 + outSlope: -0.22256768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.030694086 + inSlope: -0.2225118 + outSlope: -0.2223198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.016082242 + inSlope: -0.21902287 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.078961916 + inSlope: 0 + outSlope: 0.008158364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.079500295 + inSlope: 0.0054761623 + outSlope: 0.005476182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.07969995 + inSlope: 0.0015646234 + outSlope: 0.001341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.07969995 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.07969995 + inSlope: -0.00044703527 + outSlope: -0.0006705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.079621986 + inSlope: -0.0022351763 + outSlope: -0.0022351684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.07940296 + inSlope: -0.004023303 + outSlope: -0.004246835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.07906335 + inSlope: -0.0058114585 + outSlope: -0.005923217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.07862295 + inSlope: -0.007264323 + outSlope: -0.007264297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.078102484 + inSlope: -0.008158364 + outSlope: -0.008270152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.077524826 + inSlope: -0.008940705 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.07691571 + inSlope: -0.009275981 + outSlope: -0.009052464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0763042 + inSlope: -0.008940705 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.07572247 + inSlope: -0.008270152 + outSlope: -0.008270093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.075205505 + inSlope: -0.007040755 + outSlope: -0.007040805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.07479018 + inSlope: -0.0052526644 + outSlope: -0.0051409057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.07451415 + inSlope: -0.0029057292 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.074414305 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.07451415 + inSlope: 0.0026822116 + outSlope: 0.0029057085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.07479018 + inSlope: 0.005140869 + outSlope: 0.0052526644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.075205505 + inSlope: 0.007040805 + outSlope: 0.007040805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.07572074 + inSlope: 0.008270152 + outSlope: 0.008270152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.0763042 + inSlope: 0.008940705 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.0769138 + inSlope: 0.009275981 + outSlope: 0.0091642225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.077524826 + inSlope: 0.008940705 + outSlope: 0.008940849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.07810075 + inSlope: 0.008493806 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9961727 + inSlope: 0 + outSlope: -0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.995965 + inSlope: -0.0035762694 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.995829 + inSlope: -0.00089407054 + outSlope: -0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.995829 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.995829 + inSlope: 0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9958861 + inSlope: 0.0017881411 + outSlope: 0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.9960194 + inSlope: 0.0017881347 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9961506 + inSlope: 0.0017881411 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9961917 + inSlope: 0 + outSlope: -0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.99606556 + inSlope: -0.0035762694 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.99572176 + inSlope: -0.0062584938 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9951459 + inSlope: -0.009834776 + outSlope: -0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.99436563 + inSlope: -0.013411058 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9934498 + inSlope: -0.015199199 + outSlope: -0.013410962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9925038 + inSlope: -0.012516898 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.9916589 + inSlope: -0.011622917 + outSlope: -0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.99105763 + inSlope: -0.0062584938 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.99083245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.99105763 + inSlope: 0.0062584938 + outSlope: 0.006258449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.9916589 + inSlope: 0.009834706 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9925038 + inSlope: 0.014305129 + outSlope: 0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9934468 + inSlope: 0.013411058 + outSlope: 0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.99436563 + inSlope: 0.0125169875 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9951438 + inSlope: 0.010728846 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.99572176 + inSlope: 0.0080466345 + outSlope: 0.0062585943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9960649 + inSlope: 0.0044704247 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.03816382 + inSlope: 0 + outSlope: -0.02961598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.03618239 + inSlope: -0.021737011 + outSlope: -0.02162533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.035269536 + inSlope: -0.006873167 + outSlope: -0.0068172636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.035269536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.035269536 + inSlope: -0.0031292469 + outSlope: -0.0031292469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.034853492 + inSlope: -0.010896484 + outSlope: -0.010952325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.03380494 + inSlope: -0.018216621 + outSlope: -0.018160807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.03242411 + inSlope: -0.02084302 + outSlope: -0.020731261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.03102374 + inSlope: -0.018663723 + outSlope: -0.018635716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.029933546 + inSlope: -0.011483178 + outSlope: -0.011455279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.029494368 + inSlope: -0.0016763823 + outSlope: -0.0016484426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.029709088 + inSlope: 0.005951157 + outSlope: 0.0059790965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0302886 + inSlope: 0.010728846 + outSlope: 0.010672967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.031134618 + inSlope: 0.013941912 + outSlope: 0.014025631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.032149203 + inSlope: 0.015757881 + outSlope: 0.015813872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.033236936 + inSlope: 0.016149148 + outSlope: 0.016205028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.034306183 + inSlope: 0.015255079 + outSlope: 0.015255079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.035269536 + inSlope: 0.014919802 + outSlope: 0.01508744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.03631149 + inSlope: 0.0170991 + outSlope: 0.017154856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.037549697 + inSlope: 0.01860771 + outSlope: 0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.038804397 + inSlope: 0.017657893 + outSlope: 0.017546134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.039900426 + inSlope: 0.01413749 + outSlope: 0.01408161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.04068177 + inSlope: 0.008158393 + outSlope: 0.007990755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.04097749 + inSlope: -0.00011175882 + outSlope: -0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.040669892 + inSlope: -0.008270152 + outSlope: -0.008270285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.039874867 + inSlope: -0.011958386 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.05468334 + inSlope: 0 + outSlope: -0.2214493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.039914075 + inSlope: -0.16121152 + outSlope: -0.16104445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.03319498 + inSlope: -0.050514985 + outSlope: -0.050347168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.03319498 + inSlope: 0.00005587921 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.03319498 + inSlope: -0.023804627 + outSlope: -0.023860507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.03001352 + inSlope: -0.08348384 + outSlope: -0.08356736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.022056963 + inSlope: -0.13726728 + outSlope: -0.13735159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.011707794 + inSlope: -0.15528888 + outSlope: -0.15528888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.001353326 + inSlope: -0.13753669 + outSlope: -0.13735808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0066145067 + inSlope: -0.08370007 + outSlope: -0.08365846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.009802234 + inSlope: -0.012139801 + outSlope: -0.012055982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.008229653 + inSlope: 0.043683726 + outSlope: 0.043767545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0039752307 + inSlope: 0.07875504 + outSlope: 0.078706145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.002265782 + inSlope: 0.10326864 + outSlope: 0.1033587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.009798156 + inSlope: 0.11751355 + outSlope: 0.117416605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.017926633 + inSlope: 0.1211745 + outSlope: 0.12114656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.025956482 + inSlope: 0.11449691 + outSlope: 0.11438515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.03319498 + inSlope: 0.112541124 + outSlope: 0.112597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.040970467 + inSlope: 0.12762856 + outSlope: 0.12790705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.050212584 + inSlope: 0.13992104 + outSlope: 0.14008968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.059632413 + inSlope: 0.13276947 + outSlope: 0.13276947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.0679221 + inSlope: 0.10684143 + outSlope: 0.10661791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.073869795 + inSlope: 0.06157911 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.076128826 + inSlope: -0.0007823117 + outSlope: -0.0007823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.07375529 + inSlope: -0.06347901 + outSlope: -0.063591786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.067654744 + inSlope: -0.09142018 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.03004178 + inSlope: 0 + outSlope: 0.022882536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.028524343 + inSlope: 0.016512306 + outSlope: 0.016484424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.027856242 + inSlope: 0.005001207 + outSlope: 0.005029129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.027856242 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.027856242 + inSlope: 0.002654272 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.02749977 + inSlope: 0.009303922 + outSlope: 0.009275949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.026621493 + inSlope: 0.015003568 + outSlope: 0.014975681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.025507448 + inSlope: 0.016596183 + outSlope: 0.016540304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.02442502 + inSlope: 0.014249249 + outSlope: 0.014277138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.02361407 + inSlope: 0.008521579 + outSlope: 0.00849367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.023295011 + inSlope: 0.0011734676 + outSlope: 0.0011734676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.023457842 + inSlope: -0.004526232 + outSlope: -0.0045821113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.023899911 + inSlope: -0.0081304535 + outSlope: -0.008270152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.024553858 + inSlope: -0.010840605 + outSlope: -0.010896406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.025351591 + inSlope: -0.012405139 + outSlope: -0.012489048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.026220992 + inSlope: -0.012964022 + outSlope: -0.012908143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.027084004 + inSlope: -0.012209651 + outSlope: -0.012237591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.02785624 + inSlope: -0.011790555 + outSlope: -0.011762615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.028662954 + inSlope: -0.013103721 + outSlope: -0.013187446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.02961654 + inSlope: -0.014444724 + outSlope: -0.014500706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.030599874 + inSlope: -0.013886033 + outSlope: -0.013858093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.031479426 + inSlope: -0.0113993995 + outSlope: -0.01134352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.032119498 + inSlope: -0.0066496497 + outSlope: -0.0066496497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.03236444 + inSlope: 0.00016763822 + outSlope: 0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.032100447 + inSlope: 0.007040805 + outSlope: 0.007040919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.031429805 + inSlope: 0.010058455 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9973218 + inSlope: 0 + outSlope: 0.0143050775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9981404 + inSlope: 0.008940673 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9984379 + inSlope: 0.0017881411 + outSlope: 0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9984379 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9984379 + inSlope: 0.00089407054 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.99856305 + inSlope: 0.0026822116 + outSlope: 0.0035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.9988303 + inSlope: 0.0044703367 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.99908006 + inSlope: 0.0026822116 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.99921924 + inSlope: 0.0017881411 + outSlope: 0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.99925095 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.99924535 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9992494 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.99924743 + inSlope: -0.00089407054 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.99921095 + inSlope: -0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9991134 + inSlope: -0.0035762566 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.9989426 + inSlope: -0.0026822116 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.99870706 + inSlope: -0.0035762822 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9984379 + inSlope: -0.0044703525 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9980888 + inSlope: -0.0071525644 + outSlope: -0.006258449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.99759287 + inSlope: -0.008046577 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.99699646 + inSlope: -0.008940705 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.99639535 + inSlope: -0.0080466345 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.99592 + inSlope: -0.005364423 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9957298 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.99592954 + inSlope: 0.005364423 + outSlope: 0.0062585943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99641603 + inSlope: 0.0071526794 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0077433265 + inSlope: 0 + outSlope: -0.027115386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.009558273 + inSlope: -0.019892998 + outSlope: -0.01983719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.010401861 + inSlope: -0.006328343 + outSlope: -0.0063143503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.010401861 + inSlope: 0 + outSlope: 0.000013969852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.010401861 + inSlope: -0.007376082 + outSlope: -0.0073900516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.011388293 + inSlope: -0.02655669 + outSlope: -0.026584534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.013967941 + inSlope: -0.045723163 + outSlope: -0.045765236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.01755841 + inSlope: -0.055041216 + outSlope: -0.055152975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.021407895 + inSlope: -0.05180021 + outSlope: -0.051772088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.024538955 + inSlope: -0.032912854 + outSlope: -0.03296885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.025831554 + inSlope: -0.004135076 + outSlope: -0.004135076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.02509034 + inSlope: 0.020060707 + outSlope: 0.020116586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.023159787 + inSlope: 0.034673173 + outSlope: 0.034645233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.020497283 + inSlope: 0.04246835 + outSlope: 0.042468045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.017542511 + inSlope: 0.0440606 + outSlope: 0.044005033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.014679836 + inSlope: 0.04030302 + outSlope: 0.04031699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0122195985 + inSlope: 0.032368146 + outSlope: 0.032326236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.010401866 + inSlope: 0.024070054 + outSlope: 0.024111964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.009027966 + inSlope: 0.019641612 + outSlope: 0.019669412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.0077933273 + inSlope: 0.017182795 + outSlope: 0.017224828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.0067436267 + inSlope: 0.014011761 + outSlope: 0.014004776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.005929428 + inSlope: 0.010121157 + outSlope: 0.010107188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0053961156 + inSlope: 0.0054272874 + outSlope: 0.0054412573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.0052059134 + inSlope: -0.0006426132 + outSlope: -0.0006426132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0054809498 + inSlope: -0.0074040215 + outSlope: -0.0074041407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.006194521 + inSlope: -0.010666153 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.015768025 + inSlope: 0 + outSlope: -0.22167282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.0009931962 + inSlope: -0.16131279 + outSlope: -0.16113177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0057247956 + inSlope: -0.05045212 + outSlope: -0.05027732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0057247956 + inSlope: 0.000048894308 + outSlope: 0.00006984926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0057247956 + inSlope: -0.0714069 + outSlope: -0.07157454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.015263234 + inSlope: -0.25032577 + outSlope: -0.25060427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.03910954 + inSlope: -0.41155037 + outSlope: -0.41132832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.07009015 + inSlope: -0.4645814 + outSlope: -0.46435788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.10101844 + inSlope: -0.41037837 + outSlope: -0.4095946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.124753214 + inSlope: -0.24866247 + outSlope: -0.24922216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.13422969 + inSlope: -0.029951362 + outSlope: -0.029951362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.12875192 + inSlope: 0.14975682 + outSlope: 0.15065089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.11421315 + inSlope: 0.26486838 + outSlope: 0.2645331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.093453474 + inSlope: 0.33639404 + outSlope: 0.33661515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.06933214 + inSlope: 0.3654487 + outSlope: 0.36522782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.04473541 + inSlope: 0.3505874 + outSlope: 0.35053152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.022565806 + inSlope: 0.2924728 + outSlope: 0.29244488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0057247938 + inSlope: 0.21890758 + outSlope: 0.21883774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.006633729 + inSlope: 0.17158471 + outSlope: 0.1718559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.01716012 + inSlope: 0.14279881 + outSlope: 0.14291158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.025668586 + inSlope: 0.1109765 + outSlope: 0.11094856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.03195839 + inSlope: 0.07661067 + outSlope: 0.07661067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.03589348 + inSlope: 0.0396185 + outSlope: 0.03973026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.03724098 + inSlope: -0.007655479 + outSlope: -0.007823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.03486339 + inSlope: -0.063590765 + outSlope: -0.06370355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.028753472 + inSlope: -0.091643706 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.008301531 + inSlope: 0 + outSlope: 0.028093271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.010163991 + inSlope: 0.020284152 + outSlope: 0.020214375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.010993356 + inSlope: 0.006230554 + outSlope: 0.006202592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.010993356 + inSlope: 0 + outSlope: -0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.010993356 + inSlope: 0.009960504 + outSlope: 0.009974474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.012322485 + inSlope: 0.034435686 + outSlope: 0.034463502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.015565835 + inSlope: 0.05497117 + outSlope: 0.055013277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.01960465 + inSlope: 0.05945569 + outSlope: 0.05951157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.023431111 + inSlope: 0.05004001 + outSlope: 0.049928073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.026222339 + inSlope: 0.029057188 + outSlope: 0.02919699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.027300423 + inSlope: 0.0033807042 + outSlope: 0.0033807042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.026671495 + inSlope: -0.017406436 + outSlope: -0.017406436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.024971452 + inSlope: -0.031376287 + outSlope: -0.031320408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.022466697 + inSlope: -0.041183125 + outSlope: -0.04115489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.01944613 + inSlope: -0.046323698 + outSlope: -0.04629609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.01625142 + inSlope: -0.045932874 + outSlope: -0.045904934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.013283988 + inSlope: -0.039255284 + outSlope: -0.039241314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.010993362 + inSlope: -0.029462418 + outSlope: -0.029462418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.009339913 + inSlope: -0.022589251 + outSlope: -0.022617029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.00797298 + inSlope: -0.018258465 + outSlope: -0.018286536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.0068989466 + inSlope: -0.0138091985 + outSlope: -0.013795229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.0061269803 + inSlope: -0.009296937 + outSlope: -0.009289952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.005657889 + inSlope: -0.0046799006 + outSlope: -0.0046868855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.0055018454 + inSlope: 0.0011734676 + outSlope: 0.0011944224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.005817204 + inSlope: 0.008395881 + outSlope: 0.008416971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0066215047 + inSlope: 0.012084116 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.99981123 + inSlope: 0 + outSlope: 0.0035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9999022 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.99986905 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.99986905 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.99986905 + inSlope: -0.00089407054 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9997427 + inSlope: -0.0035762822 + outSlope: -0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.99901605 + inSlope: -0.016987279 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9971934 + inSlope: -0.03486875 + outSlope: -0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9943782 + inSlope: -0.042915385 + outSlope: -0.0438093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9915376 + inSlope: -0.033974558 + outSlope: -0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9902373 + inSlope: -0.0035762822 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.99100053 + inSlope: 0.020563623 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9928723 + inSlope: 0.03129247 + outSlope: 0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.99515903 + inSlope: 0.033080608 + outSlope: 0.033974435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9972498 + inSlope: 0.026821924 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99875885 + inSlope: 0.01698734 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.99958247 + inSlope: 0.0071525644 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.99986905 + inSlope: 0.0026822116 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9998936 + inSlope: -0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.9997906 + inSlope: -0.00089406414 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.99962395 + inSlope: -0.0026822116 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9994529 + inSlope: -0.0017881411 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.99932504 + inSlope: -0.00089407054 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9992776 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9993601 + inSlope: 0.0026822116 + outSlope: 0.0017881698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99954534 + inSlope: 0.0026822546 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.7343685 + inSlope: 0 + outSlope: -0.118016884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.74156725 + inSlope: -0.07063132 + outSlope: -0.06884343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.7444338 + inSlope: -0.021457693 + outSlope: -0.020563548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.7444338 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.7444338 + inSlope: -0.0080466345 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.7455121 + inSlope: -0.027716186 + outSlope: -0.028610155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.7479713 + inSlope: -0.04023303 + outSlope: -0.039339103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.7506581 + inSlope: -0.03486875 + outSlope: -0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.7527595 + inSlope: -0.023245834 + outSlope: -0.02324575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.7539721 + inSlope: -0.011622875 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.754358 + inSlope: -0.00089407054 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.75419563 + inSlope: 0.0035762822 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.7536801 + inSlope: 0.010728846 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.7527286 + inSlope: 0.01698734 + outSlope: 0.019669412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.75126904 + inSlope: 0.026821924 + outSlope: 0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.7493058 + inSlope: 0.033080608 + outSlope: 0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.74695086 + inSlope: 0.038445033 + outSlope: 0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.74443394 + inSlope: 0.042915385 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.74123466 + inSlope: 0.057220515 + outSlope: 0.055431977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.73686385 + inSlope: 0.070631064 + outSlope: 0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.73184687 + inSlope: 0.07420785 + outSlope: 0.07420785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.7269868 + inSlope: 0.06705529 + outSlope: 0.065267146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.7232479 + inSlope: 0.040233172 + outSlope: 0.039339103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.7217725 + inSlope: 0.00089407054 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.7232885 + inSlope: -0.039339103 + outSlope: -0.041127905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.7270482 + inSlope: -0.05453918 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.039908618 + inSlope: 0 + outSlope: -0.49576032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.0069233775 + inSlope: -0.3598621 + outSlope: -0.35829875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0079500675 + inSlope: -0.11198233 + outSlope: -0.10907622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0079500675 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0079500675 + inSlope: -0.05565589 + outSlope: -0.054314785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.015197888 + inSlope: -0.1888724 + outSlope: -0.18864821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.033245027 + inSlope: -0.3093473 + outSlope: -0.30867785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.05653289 + inSlope: -0.34645233 + outSlope: -0.3486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.079597965 + inSlope: -0.3042075 + outSlope: -0.30487695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.09717001 + inSlope: -0.1844014 + outSlope: -0.18294919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.1041543 + inSlope: -0.025257492 + outSlope: -0.025816286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.10067939 + inSlope: 0.09544203 + outSlope: 0.098236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.09125878 + inSlope: 0.17546134 + outSlope: 0.17479078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.07738243 + inSlope: 0.22910558 + outSlope: 0.23044503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.060552105 + inSlope: 0.2637489 + outSlope: 0.26218617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.042306855 + inSlope: 0.2711269 + outSlope: 0.2713504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.024231449 + inSlope: 0.25592768 + outSlope: 0.25704527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.007949933 + inSlope: 0.2510103 + outSlope: 0.25190437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.009436339 + inSlope: 0.28632608 + outSlope: 0.2845359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.030091867 + inSlope: 0.31336948 + outSlope: 0.31404227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.05121188 + inSlope: 0.2977255 + outSlope: 0.2988431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.06986576 + inSlope: 0.24072848 + outSlope: 0.23983441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.083286956 + inSlope: 0.1367928 + outSlope: 0.139475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.08839056 + inSlope: -0.0026822116 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.08299726 + inSlope: -0.1432748 + outSlope: -0.14573584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.06916237 + inSlope: -0.20563953 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.08349976 + inSlope: 0 + outSlope: -0.44144574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.053949922 + inSlope: -0.32387587 + outSlope: -0.32343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.040343538 + inSlope: -0.10259459 + outSlope: -0.099912025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.040343538 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.040343538 + inSlope: -0.048279807 + outSlope: -0.046491668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.03409551 + inSlope: -0.16249731 + outSlope: -0.16383784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.018392697 + inSlope: -0.27134943 + outSlope: -0.27067986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0021861196 + inSlope: -0.30867785 + outSlope: -0.31113654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.022936761 + inSlope: -0.27582076 + outSlope: -0.27559626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.03900437 + inSlope: -0.16897872 + outSlope: -0.16719119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.045455262 + inSlope: -0.024139903 + outSlope: -0.024139903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.042302877 + inSlope: 0.08672484 + outSlope: 0.08940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.033777446 + inSlope: 0.158474 + outSlope: 0.15802696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.021287322 + inSlope: 0.20563622 + outSlope: 0.20652881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.006244898 + inSlope: 0.23491535 + outSlope: 0.23335241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.009950504 + inSlope: 0.24028145 + outSlope: 0.24072848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.025925785 + inSlope: 0.2257528 + outSlope: 0.22754095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.04034339 + inSlope: 0.22351763 + outSlope: 0.22485873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.05592011 + inSlope: 0.25682175 + outSlope: 0.2552553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.07440877 + inSlope: 0.27917153 + outSlope: 0.2802911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.0931205 + inSlope: 0.26330376 + outSlope: 0.26464486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.10944237 + inSlope: 0.20831843 + outSlope: 0.2092125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.12105964 + inSlope: 0.11801731 + outSlope: 0.120923035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.12545092 + inSlope: -0.002458694 + outSlope: -0.0022351763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.12086722 + inSlope: -0.122487664 + outSlope: -0.12383076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.109017015 + inSlope: -0.17635825 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.6724121 + inSlope: 0 + outSlope: -0.045597434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.66866994 + inSlope: -0.05006777 + outSlope: -0.047385737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.66642886 + inSlope: -0.01698734 + outSlope: -0.016987279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.66642886 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.66642886 + inSlope: -0.0071525644 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.6654458 + inSlope: -0.028610257 + outSlope: -0.02682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.6626428 + inSlope: -0.051855903 + outSlope: -0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.65826416 + inSlope: -0.07152564 + outSlope: -0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.65306294 + inSlope: -0.07331378 + outSlope: -0.07510166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.6485081 + inSlope: -0.05006777 + outSlope: -0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.64655215 + inSlope: -0.0080466345 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.6475053 + inSlope: 0.025928045 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.6499978 + inSlope: 0.043809455 + outSlope: 0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.6534207 + inSlope: 0.054538302 + outSlope: 0.05364385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.6571828 + inSlope: 0.05453791 + outSlope: 0.05543237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.6607964 + inSlope: 0.05006795 + outSlope: 0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.6639314 + inSlope: 0.041127246 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.6664288 + inSlope: 0.03665689 + outSlope: 0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.668846 + inSlope: 0.03665689 + outSlope: 0.037550695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.6712596 + inSlope: 0.032186307 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.6731316 + inSlope: 0.023245834 + outSlope: 0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.6742635 + inSlope: 0.0125169875 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.6747743 + inSlope: 0.005364423 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.6749026 + inSlope: 0.00089407054 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6748009 + inSlope: -0.0044703525 + outSlope: -0.0026822546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6743387 + inSlope: -0.008940849 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.043841403 + inSlope: 0 + outSlope: -0.016707882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.044953518 + inSlope: -0.0113993585 + outSlope: -0.011455279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.045372777 + inSlope: -0.0031851262 + outSlope: -0.0031292357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.045372777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.045372777 + inSlope: 0.001229347 + outSlope: 0.001229347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.045208625 + inSlope: 0.0046379906 + outSlope: 0.0046938537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.044750497 + inSlope: 0.008717156 + outSlope: 0.008661308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.044048946 + inSlope: 0.012014072 + outSlope: 0.011958193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.043154188 + inSlope: 0.014528646 + outSlope: 0.014472715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.042117048 + inSlope: 0.01620497 + outSlope: 0.016205028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.040989596 + inSlope: 0.017210858 + outSlope: 0.017154979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.03982556 + inSlope: 0.017322617 + outSlope: 0.017266737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.038680397 + inSlope: 0.016596183 + outSlope: 0.016596183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.0376112 + inSlope: 0.014975681 + outSlope: 0.015031453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.03667638 + inSlope: 0.0125727765 + outSlope: 0.012572867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.03593521 + inSlope: 0.009220102 + outSlope: 0.009220102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.03544725 + inSlope: 0.004973267 + outSlope: 0.004917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.03527164 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.03544725 + inSlope: -0.004917388 + outSlope: -0.0050291107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.03593521 + inSlope: -0.009220037 + outSlope: -0.009275981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.03667638 + inSlope: -0.0125169875 + outSlope: -0.012572867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.037608042 + inSlope: -0.01503156 + outSlope: -0.01508744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.038680397 + inSlope: -0.016596183 + outSlope: -0.016596183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.039821923 + inSlope: -0.017322617 + outSlope: -0.017378496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0409896 + inSlope: -0.017210858 + outSlope: -0.017155254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.042113632 + inSlope: -0.016764091 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.08292683 + inSlope: 0 + outSlope: 0.22083463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.097637974 + inSlope: 0.15221496 + outSlope: 0.151992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.1032126 + inSlope: 0.041909557 + outSlope: 0.04168589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.1032126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.1032126 + inSlope: -0.016316786 + outSlope: -0.016205028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.101028055 + inSlope: -0.061914384 + outSlope: -0.06191416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.09494421 + inSlope: -0.11533468 + outSlope: -0.11522334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.085663974 + inSlope: -0.15780345 + outSlope: -0.15802696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.073890455 + inSlope: -0.18998998 + outSlope: -0.19010107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.06032929 + inSlope: -0.2115028 + outSlope: -0.21150357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.045689654 + inSlope: -0.2225118 + outSlope: -0.22217652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.030684168 + inSlope: -0.2223721 + outSlope: -0.22253974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.016027797 + inSlope: -0.21197854 + outSlope: -0.21178296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.0024363368 + inSlope: -0.1904475 + outSlope: -0.19061027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.009375044 + inSlope: -0.15858462 + outSlope: -0.15837622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.018692724 + inSlope: -0.115670376 + outSlope: -0.115670376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.024804756 + inSlope: -0.06230554 + outSlope: -0.0622776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.027000133 + inSlope: -0.000027939705 + outSlope: 0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.024804752 + inSlope: 0.0622776 + outSlope: 0.06241685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.018692723 + inSlope: 0.11569749 + outSlope: 0.11586595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.009375044 + inSlope: 0.15809682 + outSlope: 0.15812476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.0023962865 + inSlope: 0.19044401 + outSlope: 0.19045797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.016027808 + inSlope: 0.21178296 + outSlope: 0.2120903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.03063746 + inSlope: 0.22242798 + outSlope: 0.22281913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.045689657 + inSlope: 0.2222324 + outSlope: 0.22234774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.060284853 + inSlope: 0.2187714 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.07532633 + inSlope: 0 + outSlope: 0.0097229825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.07466798 + inSlope: 0.0068172636 + outSlope: 0.007040805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.07441393 + inSlope: 0.0018998999 + outSlope: 0.0020116514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.07441393 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.07441393 + inSlope: -0.0007823117 + outSlope: -0.0006705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.074513786 + inSlope: -0.0027939703 + outSlope: -0.0029057187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.074789815 + inSlope: -0.005029129 + outSlope: -0.0052526644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.075205155 + inSlope: -0.0069290465 + outSlope: -0.007040805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.075722136 + inSlope: -0.008270152 + outSlope: -0.008270123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.07630386 + inSlope: -0.008940673 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.07691539 + inSlope: -0.0091642225 + outSlope: -0.009052464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.07752451 + inSlope: -0.008828946 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.07810219 + inSlope: -0.008270152 + outSlope: -0.008158393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.078622654 + inSlope: -0.007264323 + outSlope: -0.007264271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.079063065 + inSlope: -0.005923175 + outSlope: -0.0058114585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.07940268 + inSlope: -0.004246835 + outSlope: -0.004135076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.07962172 + inSlope: -0.0021234176 + outSlope: -0.0023469352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.07969967 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.07962172 + inSlope: 0.0023469352 + outSlope: 0.0021234022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.07940268 + inSlope: 0.0041350466 + outSlope: 0.004246835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.079063065 + inSlope: 0.0058114585 + outSlope: 0.005923217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.078624174 + inSlope: 0.0071525644 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.07810219 + inSlope: 0.008158393 + outSlope: 0.008270152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.077526376 + inSlope: 0.008828946 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.07691539 + inSlope: 0.009052464 + outSlope: 0.009164371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.07630574 + inSlope: 0.009276131 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9927371 + inSlope: 0 + outSlope: -0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.99139833 + inSlope: -0.015199144 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9908335 + inSlope: -0.0035762822 + outSlope: -0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9908335 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9908335 + inSlope: 0.0017881411 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.99105865 + inSlope: 0.0062584938 + outSlope: 0.0062584714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.9916599 + inSlope: 0.00983474 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9925046 + inSlope: 0.0125169875 + outSlope: 0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9934506 + inSlope: 0.013411058 + outSlope: 0.0143050775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9943663 + inSlope: 0.012516943 + outSlope: 0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9951464 + inSlope: 0.010728846 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.995722 + inSlope: 0.0062584938 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.99606574 + inSlope: 0.0035762822 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9961917 + inSlope: 0.00089407054 + outSlope: 0.00089406414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9961505 + inSlope: -0.0017881283 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99601924 + inSlope: -0.0026822116 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.99588585 + inSlope: -0.0017881411 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.99582875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.99588585 + inSlope: 0.0017881411 + outSlope: 0.0017881283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.99601924 + inSlope: 0.0017881283 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9961505 + inSlope: 0.00089407054 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9961918 + inSlope: 0 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.99606574 + inSlope: -0.0026822116 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9957235 + inSlope: -0.0062584938 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9951464 + inSlope: -0.009834776 + outSlope: -0.010729019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.994369 + inSlope: -0.013411273 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.026634324 + inSlope: 0 + outSlope: -0.029867437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.028619222 + inSlope: -0.021597315 + outSlope: -0.021597391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.029507337 + inSlope: -0.0066496497 + outSlope: -0.006677565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.029507337 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.029507337 + inSlope: -0.0032968852 + outSlope: -0.0033248249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.029946683 + inSlope: -0.011455279 + outSlope: -0.011539057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.031037312 + inSlope: -0.018747475 + outSlope: -0.018691663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.032438267 + inSlope: -0.02084302 + outSlope: -0.021010658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.03381969 + inSlope: -0.018216686 + outSlope: -0.018216621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.034868713 + inSlope: -0.011008204 + outSlope: -0.011008243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.03528494 + inSlope: -0.0015646234 + outSlope: -0.001508744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.035076834 + inSlope: 0.0058114585 + outSlope: 0.0058114585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.034512613 + inSlope: 0.0104494495 + outSlope: 0.01039357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.03368099 + inSlope: 0.013858093 + outSlope: 0.013690357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.032671187 + inSlope: 0.015757881 + outSlope: 0.015757993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.03157485 + inSlope: 0.016372666 + outSlope: 0.016372666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.030487236 + inSlope: 0.015478596 + outSlope: 0.015506536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.029507335 + inSlope: 0.015199199 + outSlope: 0.01514332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.028463107 + inSlope: 0.01707116 + outSlope: 0.017098976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.027220242 + inSlope: 0.018859165 + outSlope: 0.01891518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.025942994 + inSlope: 0.018049048 + outSlope: 0.018021109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.024807971 + inSlope: 0.0146683445 + outSlope: 0.0146683445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.023986846 + inSlope: 0.008465731 + outSlope: 0.00852161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.023673564 + inSlope: -0.00013969852 + outSlope: -0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.024005758 + inSlope: -0.008912765 + outSlope: -0.008857029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.02485447 + inSlope: -0.01274071 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.030717924 + inSlope: 0 + outSlope: 0.22161694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.015943917 + inSlope: 0.16129534 + outSlope: 0.16110033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.00922987 + inSlope: 0.050403226 + outSlope: 0.05026335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.00922987 + inSlope: -0.000041909407 + outSlope: -0.000013969852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.00922987 + inSlope: 0.023860507 + outSlope: 0.023930356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.006042191 + inSlope: 0.083609566 + outSlope: 0.08372103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.0019256151 + inSlope: 0.13738602 + outSlope: 0.1374581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.012280011 + inSlope: 0.1552749 + outSlope: 0.15530284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.022629065 + inSlope: 0.13746335 + outSlope: 0.13718346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.030585466 + inSlope: 0.08356736 + outSlope: 0.08353972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.03376681 + inSlope: 0.012014072 + outSlope: 0.012069952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.03219624 + inSlope: -0.043641817 + outSlope: -0.043753576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.02794639 + inSlope: -0.078650266 + outSlope: -0.078678206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.02170972 + inSlope: -0.103237204 + outSlope: -0.103320286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.014179122 + inSlope: -0.11754149 + outSlope: -0.117402636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.006048652 + inSlope: -0.1211745 + outSlope: -0.12120244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0019864 + inSlope: -0.11451786 + outSlope: -0.114528336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.009229867 + inSlope: -0.112597 + outSlope: -0.11261097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.017007412 + inSlope: -0.12757269 + outSlope: -0.12787911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.026252981 + inSlope: -0.1400328 + outSlope: -0.14025731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.03568143 + inSlope: -0.13304888 + outSlope: -0.13288124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.043984044 + inSlope: -0.10695319 + outSlope: -0.10689731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.04994438 + inSlope: -0.061690867 + outSlope: -0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.052208886 + inSlope: 0.0007823117 + outSlope: 0.00094994996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.049828164 + inSlope: 0.06370252 + outSlope: 0.06375943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.043711524 + inSlope: 0.09186722 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.02090991 + inSlope: 0 + outSlope: 0.024055999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.022524152 + inSlope: 0.017713709 + outSlope: 0.017657893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.023278793 + inSlope: 0.0055879406 + outSlope: 0.00561586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.023278793 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.023278793 + inSlope: 0.002374875 + outSlope: 0.002374875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.023597624 + inSlope: 0.008437791 + outSlope: 0.00843776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.02440797 + inSlope: 0.014137439 + outSlope: 0.01410955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.02548963 + inSlope: 0.016344726 + outSlope: 0.016428545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.026602922 + inSlope: 0.014891862 + outSlope: 0.0148359295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.02748062 + inSlope: 0.009220069 + outSlope: 0.009248042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.027836869 + inSlope: 0.0014249249 + outSlope: 0.0013690455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.02766611 + inSlope: -0.0046938704 + outSlope: -0.00474975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.02720574 + inSlope: -0.00852161 + outSlope: -0.008465731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.02653584 + inSlope: -0.011036183 + outSlope: -0.011064043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.025735835 + inSlope: -0.012433079 + outSlope: -0.0124331685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.02488116 + inSlope: -0.012740505 + outSlope: -0.012768445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.02404121 + inSlope: -0.012042012 + outSlope: -0.012069952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.023278799 + inSlope: -0.012069952 + outSlope: -0.012042012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.022437748 + inSlope: -0.013886033 + outSlope: -0.013941812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.021432059 + inSlope: -0.01522703 + outSlope: -0.015227139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.020416722 + inSlope: -0.014277189 + outSlope: -0.014249249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.019535787 + inSlope: -0.01131558 + outSlope: -0.01134352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.018911783 + inSlope: -0.006426132 + outSlope: -0.006482011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.0186764 + inSlope: 0.00005587941 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.018917097 + inSlope: 0.0065378905 + outSlope: 0.006426235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.019543186 + inSlope: 0.009332011 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9989544 + inSlope: 0 + outSlope: 0.0035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9992094 + inSlope: 0.002682202 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.99925077 + inSlope: -0.00089407054 + outSlope: 0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.99925077 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.99925077 + inSlope: 0 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9992546 + inSlope: 0 + outSlope: 0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.99921834 + inSlope: 0 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9990732 + inSlope: -0.0026822116 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9988175 + inSlope: -0.0044703525 + outSlope: -0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9985457 + inSlope: -0.002682202 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9984187 + inSlope: 0 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9984827 + inSlope: 0.0026822116 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.998643 + inSlope: 0.0026822116 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9988445 + inSlope: 0.005364423 + outSlope: 0.0017881283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.99903417 + inSlope: 0.0026821925 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99917334 + inSlope: 0.0017881411 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.99924403 + inSlope: 0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.99925077 + inSlope: -0.0017881411 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.99919826 + inSlope: -0.00089407054 + outSlope: -0.0017881283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.9990548 + inSlope: -0.0026821925 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9988178 + inSlope: -0.0026822116 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9985331 + inSlope: -0.0044703525 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.9982848 + inSlope: -0.0026822116 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.99818087 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.99829006 + inSlope: 0.0026822116 + outSlope: 0.0026822546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9985438 + inSlope: 0.0026822546 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.015340766 + inSlope: 0 + outSlope: -0.0521353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.011901848 + inSlope: -0.037299372 + outSlope: -0.037257597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.010418072 + inSlope: -0.011175881 + outSlope: -0.0111339325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.010418072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.010418072 + inSlope: -0.0062724636 + outSlope: -0.0062724636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.009581649 + inSlope: -0.02168121 + outSlope: -0.021709071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.0075345114 + inSlope: -0.034812745 + outSlope: -0.03482684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.004969036 + inSlope: -0.03792815 + outSlope: -0.037935134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0025148706 + inSlope: -0.032238927 + outSlope: -0.0321969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.0007047688 + inSlope: -0.01894218 + outSlope: -0.018944865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000000022726694 + inSlope: -0.0025462129 + outSlope: -0.0025260933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.00036665358 + inSlope: 0.010205413 + outSlope: 0.010223749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0013642547 + inSlope: 0.018541485 + outSlope: 0.018527515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.0028471416 + inSlope: 0.02462885 + outSlope: 0.024663597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.004667023 + inSlope: 0.02846337 + outSlope: 0.028435634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.006661199 + inSlope: 0.029657995 + outSlope: 0.029657995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.00864644 + inSlope: 0.028009553 + outSlope: 0.028023522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.010418069 + inSlope: 0.026850056 + outSlope: 0.026836086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.012247401 + inSlope: 0.029727845 + outSlope: 0.029769542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.014410074 + inSlope: 0.032800976 + outSlope: 0.03287106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.016659543 + inSlope: 0.031823322 + outSlope: 0.03190714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.018692134 + inSlope: 0.02629126 + outSlope: 0.026235381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.020183492 + inSlope: 0.015450656 + outSlope: 0.015394777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.020756675 + inSlope: -0.00036321615 + outSlope: -0.00039115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.02013321 + inSlope: -0.016512364 + outSlope: -0.016568512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.018557953 + inSlope: -0.02372119 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.048314415 + inSlope: 0 + outSlope: 0.44256333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.01879625 + inSlope: 0.32219952 + outSlope: 0.32189333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0053780964 + inSlope: 0.10070866 + outSlope: 0.10042891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0053780964 + inSlope: -0.00009080371 + outSlope: -0.000048894482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0053780964 + inSlope: 0.047707044 + outSlope: 0.047818802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.0009954757 + inSlope: 0.16716151 + outSlope: 0.16736871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.016923986 + inSlope: 0.27461836 + outSlope: 0.27467522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.037613574 + inSlope: 0.31007484 + outSlope: 0.3101866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.058274414 + inSlope: 0.27397674 + outSlope: 0.27380812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.074141815 + inSlope: 0.1666318 + outSlope: 0.1666324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.08048143 + inSlope: 0.024139903 + outSlope: 0.024028145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.07735179 + inSlope: -0.087060116 + outSlope: -0.087171875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.068879634 + inSlope: -0.15679762 + outSlope: -0.15702114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.05643813 + inSlope: -0.20591561 + outSlope: -0.20619354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.04140391 + inSlope: -0.23474771 + outSlope: -0.23447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.025161237 + inSlope: -0.24218135 + outSlope: -0.24223724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.00910183 + inSlope: -0.22897984 + outSlope: -0.2289519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.005378092 + inSlope: -0.22508225 + outSlope: -0.22510321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.020923967 + inSlope: -0.2550057 + outSlope: -0.2555906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.039398838 + inSlope: -0.27967444 + outSlope: -0.28023523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.05822909 + inSlope: -0.2653713 + outSlope: -0.26542717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.07479825 + inSlope: -0.21345934 + outSlope: -0.21323583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.086683474 + inSlope: -0.123269975 + outSlope: -0.1229347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.09119658 + inSlope: 0.0016763823 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.08645121 + inSlope: 0.12718153 + outSlope: 0.12707181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.07425265 + inSlope: 0.18306388 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.016632333 + inSlope: 0 + outSlope: 0.05713649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.012787489 + inSlope: 0.04223071 + outSlope: 0.042188954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.010978008 + inSlope: 0.013564726 + outSlope: 0.013536738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.010978008 + inSlope: -0.000013969802 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.010978008 + inSlope: 0.0056158807 + outSlope: 0.0056298506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.010226059 + inSlope: 0.019976888 + outSlope: 0.020004757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.008301831 + inSlope: 0.03369516 + outSlope: 0.033695284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.005707755 + inSlope: 0.03942292 + outSlope: 0.03943689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0030122215 + inSlope: 0.03610508 + outSlope: 0.036066536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0008719533 + inSlope: 0.022525433 + outSlope: 0.022520274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000000023178797 + inSlope: 0.0034135957 + outSlope: 0.003387809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.00041781712 + inSlope: -0.011572713 + outSlope: -0.011591922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0015417731 + inSlope: -0.020713799 + outSlope: -0.020699829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.003170507 + inSlope: -0.026811639 + outSlope: -0.026849864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.005104689 + inSlope: -0.030062906 + outSlope: -0.030035181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.0071579297 + inSlope: -0.030586991 + outSlope: -0.030566037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.009163751 + inSlope: -0.028777895 + outSlope: -0.028763926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0109780105 + inSlope: -0.028722016 + outSlope: -0.028749956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0129814735 + inSlope: -0.033136487 + outSlope: -0.033150222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.015374035 + inSlope: -0.03613975 + outSlope: -0.036237795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.017780084 + inSlope: -0.033779103 + outSlope: -0.033807043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.019857181 + inSlope: -0.026654478 + outSlope: -0.026654478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.021321578 + inSlope: -0.015115379 + outSlope: -0.01514332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.021872452 + inSlope: 0.00008381911 + outSlope: 0.00008381911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.021313338 + inSlope: 0.015115379 + outSlope: 0.015115623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.019852065 + inSlope: 0.02182126 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9985758 + inSlope: 0 + outSlope: 0.02324575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9996707 + inSlope: 0.008046606 + outSlope: 0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.999871 + inSlope: 0.00089407054 + outSlope: 0.0017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.999871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.999871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9999013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.99979395 + inSlope: -0.0035762694 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9992637 + inSlope: -0.010728846 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9982928 + inSlope: -0.016093269 + outSlope: -0.015199144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.99724704 + inSlope: -0.012516943 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.99675614 + inSlope: -0.0017881411 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.99700373 + inSlope: 0.0062584938 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9976229 + inSlope: 0.010728846 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.99839693 + inSlope: 0.010728846 + outSlope: 0.011622834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9991185 + inSlope: 0.009834706 + outSlope: 0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.9996356 + inSlope: 0.005364423 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.99987924 + inSlope: 0.0017881411 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.999871 + inSlope: -0.0017881411 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.99962175 + inSlope: -0.005364423 + outSlope: -0.007152513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.9990013 + inSlope: -0.013410962 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9980058 + inSlope: -0.01788141 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.99682575 + inSlope: -0.01698734 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.9958033 + inSlope: -0.010728846 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9953763 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.9958246 + inSlope: 0.010728846 + outSlope: 0.011623104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99686915 + inSlope: 0.015199443 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.65027606 + inSlope: 0 + outSlope: -0.12427536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.6578315 + inSlope: -0.07241946 + outSlope: -0.07420785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.66070545 + inSlope: -0.020563623 + outSlope: -0.01966948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.66070545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.66070545 + inSlope: -0.011622917 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.66215366 + inSlope: -0.03576282 + outSlope: -0.03665676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.66544324 + inSlope: -0.052749973 + outSlope: -0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.6690062 + inSlope: -0.047385737 + outSlope: -0.048279807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.6717558 + inSlope: -0.03129247 + outSlope: -0.030398289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.67331314 + inSlope: -0.012516943 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.67379946 + inSlope: -0.00089407054 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.6735394 + inSlope: 0.0071525644 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.6727539 + inSlope: 0.014305129 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.6713733 + inSlope: 0.024139903 + outSlope: 0.024139732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.66934824 + inSlope: 0.035762563 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.66673094 + inSlope: 0.042021316 + outSlope: 0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.66372746 + inSlope: 0.045597598 + outSlope: 0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.66070545 + inSlope: 0.047385737 + outSlope: 0.048279807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.6572002 + inSlope: 0.060796797 + outSlope: 0.06079636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.6525587 + inSlope: 0.07420732 + outSlope: 0.07420785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.64721596 + inSlope: 0.080466345 + outSlope: 0.078678206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.64198226 + inSlope: 0.0697375 + outSlope: 0.07063157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.63791764 + inSlope: 0.042915385 + outSlope: 0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.6363064 + inSlope: 0 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.63802564 + inSlope: -0.044703525 + outSlope: -0.046492416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.6422475 + inSlope: -0.060797773 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.025987938 + inSlope: 0 + outSlope: 0.43988112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.003328681 + inSlope: 0.3198526 + outSlope: 0.31806558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.016548634 + inSlope: 0.099688865 + outSlope: 0.09924147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.016548634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.016548634 + inSlope: 0.047609255 + outSlope: 0.048950363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.023013785 + inSlope: 0.16897933 + outSlope: 0.16942576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.039085567 + inSlope: 0.2762668 + outSlope: 0.27582076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.05977373 + inSlope: 0.30867785 + outSlope: 0.30890137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.08021417 + inSlope: 0.2700093 + outSlope: 0.2709024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.0957578 + inSlope: 0.16227321 + outSlope: 0.1622738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.10192968 + inSlope: 0.023022316 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.09886214 + inSlope: -0.08560725 + outSlope: -0.08560725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.09053779 + inSlope: -0.15422717 + outSlope: -0.15445068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.078259096 + inSlope: -0.20317753 + outSlope: -0.20407014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.06333922 + inSlope: -0.23335074 + outSlope: -0.23312889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.04713367 + inSlope: -0.24184607 + outSlope: -0.24184607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.031050429 + inSlope: -0.22910558 + outSlope: -0.22865854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.016548663 + inSlope: -0.22463521 + outSlope: -0.22485873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.0010701269 + inSlope: -0.25302196 + outSlope: -0.25436124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.017304286 + inSlope: -0.27827746 + outSlope: -0.27895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.036080778 + inSlope: -0.26553893 + outSlope: -0.26464486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.05265802 + inSlope: -0.21345934 + outSlope: -0.21301231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0645819 + inSlope: -0.12315822 + outSlope: -0.12360525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.069115445 + inSlope: 0.0017881411 + outSlope: 0.002458694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.06431323 + inSlope: 0.12829912 + outSlope: 0.12807767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.052001566 + inSlope: 0.18507558 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.09390099 + inSlope: 0 + outSlope: 0.49486625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.06076321 + inSlope: 0.3625443 + outSlope: 0.3623221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.045551434 + inSlope: 0.113993995 + outSlope: 0.11444062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.045551434 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.045551434 + inSlope: 0.05185609 + outSlope: 0.053644232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.038527235 + inSlope: 0.18417853 + outSlope: 0.18507193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.020874187 + inSlope: 0.30577102 + outSlope: 0.30487806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.0022543967 + inSlope: 0.34712288 + outSlope: 0.34824046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.025560021 + inSlope: 0.30957192 + outSlope: 0.30979434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.043589905 + inSlope: 0.18842469 + outSlope: 0.18931943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.050823316 + inSlope: 0.02816322 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.04727617 + inSlope: -0.09745368 + outSlope: -0.09946535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.03768678 + inSlope: -0.17702596 + outSlope: -0.17724948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.023642808 + inSlope: -0.23223482 + outSlope: -0.23268019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.0067364573 + inSlope: -0.2635254 + outSlope: -0.26330376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.01145564 + inSlope: -0.27067986 + outSlope: -0.27179745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.029386193 + inSlope: -0.25659823 + outSlope: -0.25525713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.045551434 + inSlope: -0.25145733 + outSlope: -0.25190437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.062995255 + inSlope: -0.28677312 + outSlope: -0.2872181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.08371672 + inSlope: -0.31336948 + outSlope: -0.31337172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.104729235 + inSlope: -0.2957138 + outSlope: -0.29504326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.12309636 + inSlope: -0.2358111 + outSlope: -0.23558758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.1361914 + inSlope: -0.13589872 + outSlope: -0.13589872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.14114666 + inSlope: 0.0006705529 + outSlope: 0.0022351763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.13597497 + inSlope: 0.13902797 + outSlope: 0.13947725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.12261407 + inSlope: 0.19960445 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.75342435 + inSlope: 0 + outSlope: -0.029504221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.7507026 + inSlope: -0.03755083 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.7490792 + inSlope: -0.0125169875 + outSlope: -0.0143050775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.7490792 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.7490792 + inSlope: -0.0071525644 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.7480231 + inSlope: -0.027716186 + outSlope: -0.028610155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.74513215 + inSlope: -0.05453811 + outSlope: -0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.74084586 + inSlope: -0.06884343 + outSlope: -0.06794936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.7359731 + inSlope: -0.0697375 + outSlope: -0.067949116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.7318331 + inSlope: -0.0464915 + outSlope: -0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.7300832 + inSlope: -0.0080466345 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.73098284 + inSlope: 0.025033975 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7333381 + inSlope: 0.042021316 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.7365965 + inSlope: 0.053644232 + outSlope: 0.05185572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.7402133 + inSlope: 0.05364385 + outSlope: 0.053644232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.7437183 + inSlope: 0.048279807 + outSlope: 0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.7467517 + inSlope: 0.039339103 + outSlope: 0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.7490791 + inSlope: 0.03129247 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.7510781 + inSlope: 0.029504327 + outSlope: 0.029504117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.75290054 + inSlope: 0.023245668 + outSlope: 0.024139903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.7542157 + inSlope: 0.013411058 + outSlope: 0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.75493926 + inSlope: 0.0080466345 + outSlope: 0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.7552101 + inSlope: 0.0026822116 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.75525814 + inSlope: 0.0017881411 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7551806 + inSlope: -0.0035762822 + outSlope: -0.0017881698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7548376 + inSlope: -0.0062585943 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -8.702843e-10 + inSlope: 0 + outSlope: 0.000000039108613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -8.659614e-10 + inSlope: 0.000000038903778 + outSlope: 0.000000038897255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -8.6431706e-10 + inSlope: 0.00000003880233 + outSlope: 0.000000038791367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -8.6431706e-10 + inSlope: 0.000000038782208 + outSlope: 0.00000003877985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -8.6431706e-10 + inSlope: 0.00000003877069 + outSlope: 0.000000038774022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -8.649622e-10 + inSlope: 0.00000003879151 + outSlope: 0.000000038788038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -8.6675417e-10 + inSlope: 0.000000038856317 + outSlope: 0.00000003885479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -8.694814e-10 + inSlope: 0.000000038968032 + outSlope: 0.000000038962202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -8.7292545e-10 + inSlope: 0.000000039121243 + outSlope: 0.000000039091127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -8.7687024e-10 + inSlope: 0.000000039268485 + outSlope: 0.000000039296104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -8.8110746e-10 + inSlope: 0.000000039486785 + outSlope: 0.000000039450146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -8.8542357e-10 + inSlope: 0.000000039661646 + outSlope: 0.000000039679133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -8.896185e-10 + inSlope: 0.00000003987481 + outSlope: 0.00000003983734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -8.934815e-10 + inSlope: 0.000000040018026 + outSlope: 0.000000040049382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -8.968296e-10 + inSlope: 0.00000004020759 + outSlope: 0.00000004017457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -8.9945784e-10 + inSlope: 0.00000004029114 + outSlope: 0.000000040304464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -9.0117924e-10 + inSlope: 0.000000040392727 + outSlope: 0.000000040398557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -9.0179686e-10 + inSlope: 0.00000004044269 + outSlope: 0.000000040441023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -9.0117924e-10 + inSlope: 0.00000004042187 + outSlope: 0.000000040504847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -8.9945784e-10 + inSlope: 0.000000040369123 + outSlope: 0.000000040441854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -8.968296e-10 + inSlope: 0.00000004025617 + outSlope: 0.000000040263664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -8.9349717e-10 + inSlope: 0.000000040129606 + outSlope: 0.000000040123776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -8.896185e-10 + inSlope: 0.000000039952248 + outSlope: 0.00000004002802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -8.854369e-10 + inSlope: 0.000000039780716 + outSlope: 0.000000039843165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -8.8110746e-10 + inSlope: 0.00000003958504 + outSlope: 0.00000003957985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.768868e-10 + inSlope: 0.000000039399158 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.70787495 + inSlope: 0 + outSlope: -0.052749973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.7113576 + inSlope: -0.035762694 + outSlope: -0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.712674 + inSlope: -0.009834776 + outSlope: -0.00983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.712674 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.712674 + inSlope: 0.0044703525 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.71215844 + inSlope: 0.014305129 + outSlope: 0.015199144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.71072084 + inSlope: 0.027716087 + outSlope: 0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.7085239 + inSlope: 0.037550963 + outSlope: 0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.70572937 + inSlope: 0.044703525 + outSlope: 0.045597434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.7024999 + inSlope: 0.05006777 + outSlope: 0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.69900024 + inSlope: 0.053644232 + outSlope: 0.053644232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.6953982 + inSlope: 0.053644232 + outSlope: 0.053644232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.6918646 + inSlope: 0.05096202 + outSlope: 0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.6885736 + inSlope: 0.046491668 + outSlope: 0.04559727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.68570226 + inSlope: 0.038444757 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.68342936 + inSlope: 0.028610257 + outSlope: 0.028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.68193454 + inSlope: 0.015199199 + outSlope: 0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.68139696 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.68193454 + inSlope: -0.015199199 + outSlope: -0.01519909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.68342936 + inSlope: -0.028610053 + outSlope: -0.028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.68570226 + inSlope: -0.038445033 + outSlope: -0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.688564 + inSlope: -0.047385737 + outSlope: -0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.6918646 + inSlope: -0.05096202 + outSlope: -0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.69538695 + inSlope: -0.053644232 + outSlope: -0.053644232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.69900024 + inSlope: -0.053644232 + outSlope: -0.053645093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.70248926 + inSlope: -0.051856924 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -8.721734e-10 + inSlope: 0 + outSlope: 0.00000003906448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -8.7646357e-10 + inSlope: 0.000000039286803 + outSlope: 0.00000003927945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -8.7808555e-10 + inSlope: 0.000000039396024 + outSlope: 0.000000039385057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -8.7808555e-10 + inSlope: 0.000000039399215 + outSlope: 0.000000039396856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -8.7808555e-10 + inSlope: 0.000000039399353 + outSlope: 0.000000039402686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -8.7745206e-10 + inSlope: 0.00000003938603 + outSlope: 0.000000039386723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -8.7568003e-10 + inSlope: 0.00000003932594 + outSlope: 0.00000003932358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -8.729713e-10 + inSlope: 0.000000039217 + outSlope: 0.000000039212004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -8.695301e-10 + inSlope: 0.000000039078778 + outSlope: 0.00000003905116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -8.6555274e-10 + inSlope: 0.000000038884625 + outSlope: 0.000000038913075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -8.61241e-10 + inSlope: 0.000000038726558 + outSlope: 0.000000038689922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -8.5679835e-10 + inSlope: 0.00000003850757 + outSlope: 0.00000003852422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -8.524471e-10 + inSlope: 0.000000038328544 + outSlope: 0.000000038291905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -8.4839297e-10 + inSlope: 0.000000038107054 + outSlope: 0.000000038135923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -8.4485285e-10 + inSlope: 0.000000037967727 + outSlope: 0.00000003793469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -8.4205515e-10 + inSlope: 0.000000037786478 + outSlope: 0.000000037798134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -8.4021284e-10 + inSlope: 0.000000037696548 + outSlope: 0.000000037699046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -8.3955043e-10 + inSlope: 0.000000037651585 + outSlope: 0.00000003764992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -8.4021284e-10 + inSlope: 0.00000003765325 + outSlope: 0.000000037728753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -8.4205515e-10 + inSlope: 0.000000037727087 + outSlope: 0.000000037794802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -8.4485285e-10 + inSlope: 0.00000003783477 + outSlope: 0.00000003783977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -8.483793e-10 + inSlope: 0.00000003799298 + outSlope: 0.000000037990482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -8.524471e-10 + inSlope: 0.000000038161176 + outSlope: 0.000000038235285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -8.5678775e-10 + inSlope: 0.000000038363517 + outSlope: 0.000000038426798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -8.61241e-10 + inSlope: 0.000000038562522 + outSlope: 0.00000003855815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.6553587e-10 + inSlope: 0.000000038762987 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.70633775 + inSlope: 0 + outSlope: -0.052749973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.70283026 + inSlope: -0.035762694 + outSlope: -0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.70149535 + inSlope: -0.009834776 + outSlope: -0.00983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.70149535 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.70149535 + inSlope: 0.0044703525 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.7020188 + inSlope: 0.014305129 + outSlope: 0.015199144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.70347416 + inSlope: 0.027716087 + outSlope: 0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.70568675 + inSlope: 0.03665689 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.7084815 + inSlope: 0.044703525 + outSlope: 0.045597434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.7116838 + inSlope: 0.05006777 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.71512145 + inSlope: 0.052750163 + outSlope: 0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.7186246 + inSlope: 0.05096202 + outSlope: 0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7220273 + inSlope: 0.04917388 + outSlope: 0.048279807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.72516644 + inSlope: 0.043809455 + outSlope: 0.043809142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.72788215 + inSlope: 0.03665663 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.73001665 + inSlope: 0.026822116 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.73141325 + inSlope: 0.015199199 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.7319141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.73141325 + inSlope: -0.013411058 + outSlope: -0.01519909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.73001665 + inSlope: -0.026821924 + outSlope: -0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.72788215 + inSlope: -0.03576282 + outSlope: -0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.7251756 + inSlope: -0.043809455 + outSlope: -0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.7220273 + inSlope: -0.048279807 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.7186355 + inSlope: -0.052750163 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.71512145 + inSlope: -0.052750163 + outSlope: -0.05275101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.71169436 + inSlope: -0.05096284 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -6.415634e-10 + inSlope: 0 + outSlope: 0.000000028736105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -6.448154e-10 + inSlope: 0.000000028898475 + outSlope: 0.000000028897745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -6.460468e-10 + inSlope: 0.000000028970188 + outSlope: 0.000000028976745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -6.460468e-10 + inSlope: 0.000000028986737 + outSlope: 0.000000028985175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -6.460468e-10 + inSlope: 0.000000028986841 + outSlope: 0.000000028989339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -6.455644e-10 + inSlope: 0.00000002897685 + outSlope: 0.000000028977578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -6.4422023e-10 + inSlope: 0.000000028926785 + outSlope: 0.000000028928554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -6.421698e-10 + inSlope: 0.00000002884612 + outSlope: 0.00000002884612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -6.3956035e-10 + inSlope: 0.0000000287462 + outSlope: 0.000000028723615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -6.3654365e-10 + inSlope: 0.00000002858456 + outSlope: 0.000000028617968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -6.332762e-10 + inSlope: 0.000000028473085 + outSlope: 0.00000002844977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -6.299147e-10 + inSlope: 0.000000028293227 + outSlope: 0.00000002832487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -6.26615e-10 + inSlope: 0.000000028173323 + outSlope: 0.000000028148344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -6.2354544e-10 + inSlope: 0.000000028005125 + outSlope: 0.00000002803157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -6.208673e-10 + inSlope: 0.00000002790334 + outSlope: 0.000000027879391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -6.187466e-10 + inSlope: 0.000000027773643 + outSlope: 0.000000027774476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -6.1735084e-10 + inSlope: 0.000000027692042 + outSlope: 0.000000027700368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -6.1684796e-10 + inSlope: 0.000000027657903 + outSlope: 0.000000027662066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -6.1735084e-10 + inSlope: 0.000000027677054 + outSlope: 0.000000027720986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -6.187466e-10 + inSlope: 0.000000027722653 + outSlope: 0.000000027770312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -6.208673e-10 + inSlope: 0.000000027809447 + outSlope: 0.000000027807783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -6.2353545e-10 + inSlope: 0.000000027921025 + outSlope: 0.00000002791936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -6.26615e-10 + inSlope: 0.000000028050922 + outSlope: 0.000000028104212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -6.299071e-10 + inSlope: 0.000000028197471 + outSlope: 0.000000028249097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -6.332762e-10 + inSlope: 0.000000028347351 + outSlope: 0.000000028350305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -6.3653444e-10 + inSlope: 0.000000028500189 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.71684456 + inSlope: 0 + outSlope: 0.050961837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.7133895 + inSlope: 0.035762694 + outSlope: 0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.71207446 + inSlope: 0.009834776 + outSlope: 0.00983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.71207446 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.71207446 + inSlope: -0.0044703525 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.7125902 + inSlope: -0.015199199 + outSlope: -0.0143050775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.7140239 + inSlope: -0.027716087 + outSlope: -0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.71620345 + inSlope: -0.03665689 + outSlope: -0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.71895605 + inSlope: -0.044703525 + outSlope: -0.044703368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.72210974 + inSlope: -0.0491737 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.7254945 + inSlope: -0.05096202 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.72894347 + inSlope: -0.05096202 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.7322929 + inSlope: -0.048279807 + outSlope: -0.048279807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.7353825 + inSlope: -0.042915385 + outSlope: -0.043809142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.738055 + inSlope: -0.035762563 + outSlope: -0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.7401553 + inSlope: -0.025928045 + outSlope: -0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.7415292 + inSlope: -0.013411058 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.7420221 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.7415292 + inSlope: 0.014305129 + outSlope: 0.013410962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.7401553 + inSlope: 0.026821924 + outSlope: 0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.738055 + inSlope: 0.03486875 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.73539156 + inSlope: 0.042915385 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.7322929 + inSlope: 0.048279807 + outSlope: 0.048279807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.72895414 + inSlope: 0.05185609 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.7254945 + inSlope: 0.05185609 + outSlope: 0.05096284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.72212 + inSlope: 0.05096284 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -6.5960887e-10 + inSlope: 0 + outSlope: 0.000000029640379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -6.5643013e-10 + inSlope: 0.000000029486335 + outSlope: 0.000000029483111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -6.5521893e-10 + inSlope: 0.000000029399844 + outSlope: 0.000000029405568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -6.5521893e-10 + inSlope: 0.000000029398906 + outSlope: 0.000000029396514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -6.5521893e-10 + inSlope: 0.000000029391517 + outSlope: 0.00000002939235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -6.5569417e-10 + inSlope: 0.000000029403175 + outSlope: 0.000000029405568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -6.5701394e-10 + inSlope: 0.0000000294497 + outSlope: 0.000000029451469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -6.5901673e-10 + inSlope: 0.000000029531405 + outSlope: 0.000000029533904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -6.615517e-10 + inSlope: 0.000000029649645 + outSlope: 0.00000002962789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -6.644546e-10 + inSlope: 0.000000029742797 + outSlope: 0.00000002977954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -6.67568e-10 + inSlope: 0.000000029914432 + outSlope: 0.000000029889453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -6.707443e-10 + inSlope: 0.000000030026012 + outSlope: 0.00000003005932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -6.7382355e-10 + inSlope: 0.000000030200038 + outSlope: 0.000000030173393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -6.766661e-10 + inSlope: 0.000000030304122 + outSlope: 0.000000030332217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -6.7912354e-10 + inSlope: 0.00000003044962 + outSlope: 0.000000030423195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -6.8105754e-10 + inSlope: 0.000000030517285 + outSlope: 0.000000030517285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -6.823202e-10 + inSlope: 0.000000030578903 + outSlope: 0.000000030585564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -6.827746e-10 + inSlope: 0.000000030613872 + outSlope: 0.00000003061887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -6.823202e-10 + inSlope: 0.000000030620534 + outSlope: 0.00000003066528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -6.8105754e-10 + inSlope: 0.000000030568692 + outSlope: 0.000000030620534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -6.7912354e-10 + inSlope: 0.00000003049147 + outSlope: 0.000000030488142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -6.7667455e-10 + inSlope: 0.000000030386555 + outSlope: 0.00000003038489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -6.7382355e-10 + inSlope: 0.00000003026082 + outSlope: 0.000000030316613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -6.707519e-10 + inSlope: 0.000000030127595 + outSlope: 0.000000030180054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -6.67568e-10 + inSlope: 0.00000002998271 + outSlope: 0.00000002998486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -6.644642e-10 + inSlope: 0.000000029848298 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.697233 + inSlope: 0 + outSlope: 0.052749973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.7007677 + inSlope: 0.03665676 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.702104 + inSlope: 0.009834776 + outSlope: 0.00983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.702104 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.702104 + inSlope: -0.0035762822 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.7015805 + inSlope: -0.015199199 + outSlope: -0.015199144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.70012134 + inSlope: -0.027716087 + outSlope: -0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.69789153 + inSlope: -0.038445033 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.69505554 + inSlope: -0.045597598 + outSlope: -0.045597434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.69177854 + inSlope: -0.050961837 + outSlope: -0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.68822795 + inSlope: -0.054538302 + outSlope: -0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.6845739 + inSlope: -0.054538302 + outSlope: -0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.6809898 + inSlope: -0.05185609 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.67765224 + inSlope: -0.047385737 + outSlope: -0.0473854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.6747406 + inSlope: -0.038444757 + outSlope: -0.039339103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.672436 + inSlope: -0.028610257 + outSlope: -0.029504327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.67092055 + inSlope: -0.015199199 + outSlope: -0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.6703754 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.67092055 + inSlope: 0.016093269 + outSlope: 0.01519909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.672436 + inSlope: 0.029504117 + outSlope: 0.028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.6747406 + inSlope: 0.039339103 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.6776424 + inSlope: 0.046491668 + outSlope: 0.047385737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.6809898 + inSlope: 0.05185609 + outSlope: 0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.6845625 + inSlope: 0.054538302 + outSlope: 0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.68822795 + inSlope: 0.054538302 + outSlope: 0.05453918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6917678 + inSlope: 0.05275101 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.04255853 + inSlope: 0 + outSlope: 0.0006705505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.042605273 + inSlope: 0.00050291285 + outSlope: 0.00050291466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.042622734 + inSlope: 0.00016763822 + outSlope: 0.00016763763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.042622734 + inSlope: -0.0239163 + outSlope: -0.024139903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.036881067 + inSlope: -0.05934393 + outSlope: -0.059120413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.036863938 + inSlope: -0.00044703527 + outSlope: -0.00050291285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.036816165 + inSlope: -0.00089406734 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.03674304 + inSlope: -0.001229347 + outSlope: -0.001229347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.03664985 + inSlope: -0.001508744 + outSlope: -0.0014528594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.0365419 + inSlope: -0.001620497 + outSlope: -0.0017322616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.03642461 + inSlope: -0.0017881411 + outSlope: -0.0017322616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.036303572 + inSlope: -0.0018440204 + outSlope: -0.0018440204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.036184512 + inSlope: -0.0017322616 + outSlope: -0.0017322616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.036073357 + inSlope: -0.0015646234 + outSlope: -0.0016204913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.035976153 + inSlope: -0.0012852172 + outSlope: -0.0012852264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.03589907 + inSlope: -0.0010058293 + outSlope: -0.00094994996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.03584831 + inSlope: -0.00055879407 + outSlope: -0.00050291466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.03583004 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.03584831 + inSlope: 0.00050291466 + outSlope: 0.00055879005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.03589907 + inSlope: 0.00094994315 + outSlope: 0.0010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.035976153 + inSlope: 0.0012852264 + outSlope: 0.0012852264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.036073025 + inSlope: 0.0015646234 + outSlope: 0.0015646234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.036184512 + inSlope: 0.0017322616 + outSlope: 0.0017322616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.036303192 + inSlope: 0.0017881411 + outSlope: 0.0017322616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.03642461 + inSlope: 0.0017322616 + outSlope: 0.0017881698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.036541544 + inSlope: 0.0017881698 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9729779 + inSlope: 0 + outSlope: 0.016987279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9740867 + inSlope: 0.011622875 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9745011 + inSlope: 0.0035762822 + outSlope: 0.0035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9745011 + inSlope: -0.5686268 + outSlope: -0.5722051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.840452 + inSlope: -1.3768686 + outSlope: -1.3706101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.84005487 + inSlope: -0.009834776 + outSlope: -0.011622875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.83894706 + inSlope: -0.020563548 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.8372515 + inSlope: -0.028610257 + outSlope: -0.028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.83509064 + inSlope: -0.03576282 + outSlope: -0.033974558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.832588 + inSlope: -0.038444895 + outSlope: -0.039339103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.82986933 + inSlope: -0.041127246 + outSlope: -0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.8270639 + inSlope: -0.042021316 + outSlope: -0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.8243048 + inSlope: -0.040233172 + outSlope: -0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.8217291 + inSlope: -0.03576282 + outSlope: -0.03665663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.819477 + inSlope: -0.029504117 + outSlope: -0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.8176912 + inSlope: -0.022351762 + outSlope: -0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.81651527 + inSlope: -0.0125169875 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.8160921 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.81651527 + inSlope: 0.011622917 + outSlope: 0.012516898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.8176912 + inSlope: 0.022351604 + outSlope: 0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.819477 + inSlope: 0.03129247 + outSlope: 0.029504327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.82172143 + inSlope: 0.03576282 + outSlope: 0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.8243048 + inSlope: 0.040233172 + outSlope: 0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.82705516 + inSlope: 0.042021316 + outSlope: 0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.82986933 + inSlope: 0.042021316 + outSlope: 0.041127905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.83257973 + inSlope: 0.04023382 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00956234 + inSlope: 0 + outSlope: -0.0031292357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.009351871 + inSlope: -0.0022072287 + outSlope: -0.0021932668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.009271968 + inSlope: -0.0006146735 + outSlope: -0.0006845203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.009271968 + inSlope: 0.1100541 + outSlope: 0.110739015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.023290636 + inSlope: 0.09407298 + outSlope: 0.09357007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.023317728 + inSlope: 0.0006426132 + outSlope: 0.0008102485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.023393089 + inSlope: 0.0013969803 + outSlope: 0.0014528646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.023507776 + inSlope: 0.001983719 + outSlope: 0.0018998999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.023652803 + inSlope: 0.0023469352 + outSlope: 0.0023189872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.023819244 + inSlope: 0.0025983832 + outSlope: 0.0025704529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.023998214 + inSlope: 0.002738091 + outSlope: 0.0027101513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.02418093 + inSlope: 0.0027660306 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.024358729 + inSlope: 0.0025704529 + outSlope: 0.0025704529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.024523042 + inSlope: 0.0022910556 + outSlope: 0.0023469185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.024665419 + inSlope: 0.0018719467 + outSlope: 0.0019557793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.024777478 + inSlope: 0.0014249249 + outSlope: 0.0014249249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.024850864 + inSlope: 0.000754372 + outSlope: 0.0007264323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.024877196 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.024850864 + inSlope: -0.0007264323 + outSlope: -0.0007543666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.024777478 + inSlope: -0.0014249147 + outSlope: -0.0014249249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.024665419 + inSlope: -0.0019557793 + outSlope: -0.0018719601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.024523528 + inSlope: -0.0023189953 + outSlope: -0.002263116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.024358729 + inSlope: -0.0025704529 + outSlope: -0.0025704529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.024181498 + inSlope: -0.002738091 + outSlope: -0.0027101513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.023998214 + inSlope: -0.0027101513 + outSlope: -0.002738135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.02381979 + inSlope: -0.0026543145 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.22674096 + inSlope: 0 + outSlope: -0.07130187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.2219291 + inSlope: -0.050514802 + outSlope: -0.050514985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.22010225 + inSlope: -0.01408161 + outSlope: -0.015646178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.22010225 + inSlope: 2.516129 + outSlope: 2.5320077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.5401276 + inSlope: 2.1439812 + outSlope: 2.1314642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.54074496 + inSlope: 0.014305129 + outSlope: 0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.5424622 + inSlope: 0.032186422 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.54507554 + inSlope: 0.044703525 + outSlope: 0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.54838026 + inSlope: 0.053644232 + outSlope: 0.052749973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.55217254 + inSlope: 0.059008442 + outSlope: 0.059008654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.55625015 + inSlope: 0.061690867 + outSlope: 0.06258494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.560413 + inSlope: 0.06258494 + outSlope: 0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5644634 + inSlope: 0.058114585 + outSlope: 0.059008654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.5682064 + inSlope: 0.05185609 + outSlope: 0.05364385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.5714497 + inSlope: 0.04291508 + outSlope: 0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.5740021 + inSlope: 0.032186538 + outSlope: 0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.57567364 + inSlope: 0.01698734 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.57627344 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.57567364 + inSlope: -0.01698734 + outSlope: -0.016987218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.5740021 + inSlope: -0.032186307 + outSlope: -0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.5714497 + inSlope: -0.044703525 + outSlope: -0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.5682175 + inSlope: -0.052750163 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.5644634 + inSlope: -0.059008654 + outSlope: -0.058114585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.5604258 + inSlope: -0.061690867 + outSlope: -0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.55625015 + inSlope: -0.06258494 + outSlope: -0.061691858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.552185 + inSlope: -0.060797773 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.020741217 + inSlope: 0 + outSlope: 0.011566996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.021508124 + inSlope: 0.008353941 + outSlope: 0.008381912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.021855995 + inSlope: 0.002654272 + outSlope: 0.0025983832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.021855995 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.021855999 + inSlope: 0.0029616086 + outSlope: 0.0029895483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.022249697 + inSlope: 0.01039357 + outSlope: 0.010309714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.023233002 + inSlope: 0.017015219 + outSlope: 0.016903521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.02450865 + inSlope: 0.019082818 + outSlope: 0.019054879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.025780397 + inSlope: 0.016847642 + outSlope: 0.016819641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.02675538 + inSlope: 0.0101700155 + outSlope: 0.0102818115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.027144454 + inSlope: 0.002738091 + outSlope: 0.002738091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.027117575 + inSlope: -0.0008661308 + outSlope: -0.00083819113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.027031071 + inSlope: -0.0018160808 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.02687616 + inSlope: -0.0029057292 + outSlope: -0.0029057085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.026643995 + inSlope: -0.0041629863 + outSlope: -0.0041071363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.026325593 + inSlope: -0.005476182 + outSlope: -0.005476182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.025911778 + inSlope: -0.006984926 + outSlope: -0.006956986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.025393074 + inSlope: -0.010086233 + outSlope: -0.010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.024569651 + inSlope: -0.014975681 + outSlope: -0.015003514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.023393469 + inSlope: -0.01863565 + outSlope: -0.018691663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.02208496 + inSlope: -0.01888724 + outSlope: -0.01888724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.02087202 + inSlope: -0.015869752 + outSlope: -0.015869752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.019971663 + inSlope: -0.009359801 + outSlope: -0.009387741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.019622153 + inSlope: -0.0017043219 + outSlope: -0.0016763823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.019746322 + inSlope: 0.0033248249 + outSlope: 0.0033248782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.020065116 + inSlope: 0.004721886 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.12703705 + inSlope: 0 + outSlope: 0.13880396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.13629404 + inSlope: 0.100806095 + outSlope: 0.10102997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.14049779 + inSlope: 0.031515986 + outSlope: 0.031292357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.14049779 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.14049782 + inSlope: 0.035539303 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.14527796 + inSlope: 0.12539339 + outSlope: 0.12561646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.15721312 + inSlope: 0.20541197 + outSlope: 0.20608325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.17269391 + inSlope: 0.23178779 + outSlope: 0.23178779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.1881315 + inSlope: 0.20474215 + outSlope: 0.2045179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.19997478 + inSlope: 0.124498874 + outSlope: 0.1242758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.20470384 + inSlope: 0.03285709 + outSlope: 0.03285709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.20437701 + inSlope: -0.0102818115 + outSlope: -0.010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.2033248 + inSlope: -0.021904727 + outSlope: -0.021904727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.20143944 + inSlope: -0.035315786 + outSlope: -0.035315532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.19861242 + inSlope: -0.050067592 + outSlope: -0.050514985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.19473468 + inSlope: -0.066831775 + outSlope: -0.066831775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.18969609 + inSlope: -0.08516022 + outSlope: -0.08471318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.18338564 + inSlope: -0.121593595 + outSlope: -0.12271118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.17338358 + inSlope: -0.18194336 + outSlope: -0.18238908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.15912424 + inSlope: -0.22552767 + outSlope: -0.22642335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.14329146 + inSlope: -0.22910558 + outSlope: -0.2282115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.12863718 + inSlope: -0.1915546 + outSlope: -0.19133109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.11776934 + inSlope: -0.11321168 + outSlope: -0.11309992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.11355233 + inSlope: -0.020451862 + outSlope: -0.020451862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.11504733 + inSlope: 0.040009655 + outSlope: 0.040122062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.118886985 + inSlope: 0.057780236 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0052689277 + inSlope: 0 + outSlope: -0.0031571751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.00548089 + inSlope: -0.002325972 + outSlope: -0.0023329654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.005582122 + inSlope: -0.0007683419 + outSlope: -0.0007543693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.005582122 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0055821207 + inSlope: -0.0005308544 + outSlope: -0.0005378393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.005654525 + inSlope: -0.0020046737 + outSlope: -0.0020046665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0058527454 + inSlope: -0.0036111937 + outSlope: -0.0036112068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0061471933 + inSlope: -0.004610051 + outSlope: -0.0046310057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0064831716 + inSlope: -0.0045821113 + outSlope: -0.004582095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0067698397 + inSlope: -0.0030244621 + outSlope: -0.0030384427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.006891366 + inSlope: -0.00090105546 + outSlope: -0.00090105546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.006891406 + inSlope: 0.00005587941 + outSlope: 0.00003492463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.006885577 + inSlope: 0.000188593 + outSlope: 0.00019557793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.006865212 + inSlope: 0.0004819599 + outSlope: 0.00047497157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.006822125 + inSlope: 0.0008731095 + outSlope: 0.00088010065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.0067487806 + inSlope: 0.0013760304 + outSlope: 0.0013830153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0066384645 + inSlope: 0.001983719 + outSlope: 0.001976734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0064855143 + inSlope: 0.0030873374 + outSlope: 0.0031013072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0062298835 + inSlope: 0.0045821113 + outSlope: 0.0046030334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.005882576 + inSlope: 0.0053364453 + outSlope: 0.0053364835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.0055330433 + inSlope: 0.0048824633 + outSlope: 0.0048754783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.0052458043 + inSlope: 0.0036601012 + outSlope: 0.0036531163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.005055649 + inSlope: 0.001969749 + outSlope: 0.001969749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.004987064 + inSlope: 0.0002933669 + outSlope: 0.0002933669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.005016744 + inSlope: -0.00079628156 + outSlope: -0.0008032794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0050947685 + inSlope: -0.0011665014 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9916671 + inSlope: 0 + outSlope: -0.016987279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.99041975 + inSlope: -0.0143050775 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.989824 + inSlope: -0.0044703525 + outSlope: -0.005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.989824 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.989824 + inSlope: -0.005364423 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9891245 + inSlope: -0.018775482 + outSlope: -0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.987274 + inSlope: -0.032186422 + outSlope: -0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9846513 + inSlope: -0.042021316 + outSlope: -0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.98178405 + inSlope: -0.040233172 + outSlope: -0.03933896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9794122 + inSlope: -0.025927952 + outSlope: -0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9784232 + inSlope: -0.0071525644 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9784923 + inSlope: 0.0026822116 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9787139 + inSlope: 0.0044703525 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9791081 + inSlope: 0.0080466345 + outSlope: 0.008046577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9796921 + inSlope: 0.01072877 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.98047936 + inSlope: 0.013411058 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9814784 + inSlope: 0.01698734 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9826916 + inSlope: 0.022351762 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.98452806 + inSlope: 0.032186538 + outSlope: 0.033080373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.98696387 + inSlope: 0.037550695 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.98941857 + inSlope: 0.03397468 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9914582 + inSlope: 0.025033975 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.9928272 + inSlope: 0.013411058 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.99332577 + inSlope: 0.0026822116 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.993151 + inSlope: -0.0044703525 + outSlope: -0.0044704247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.992692 + inSlope: -0.0071526794 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.042209048 + inSlope: 0 + outSlope: 0.0008381881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.042154156 + inSlope: 0.0005587921 + outSlope: 0.0006146735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.04213306 + inSlope: 0.00016763822 + outSlope: 0.00011175842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.04213306 + inSlope: 0.032745216 + outSlope: 0.03285709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.034605578 + inSlope: 0.075213686 + outSlope: 0.07487841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.03462508 + inSlope: -0.0006146735 + outSlope: -0.00061467127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.03467928 + inSlope: -0.0010617049 + outSlope: -0.0010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0347616 + inSlope: -0.0013411058 + outSlope: -0.0014528646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.03486547 + inSlope: -0.0016763823 + outSlope: -0.0016763762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.034984317 + inSlope: -0.0017881347 + outSlope: -0.0018440204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.035111696 + inSlope: -0.0018998999 + outSlope: -0.0019557793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.035241295 + inSlope: -0.0018998999 + outSlope: -0.0019557793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.035366964 + inSlope: -0.0017881411 + outSlope: -0.0018440204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.035482716 + inSlope: -0.0016763823 + outSlope: -0.0016204913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.035582703 + inSlope: -0.0013410962 + outSlope: -0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.0356612 + inSlope: -0.00094994996 + outSlope: -0.00094994996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.035712507 + inSlope: -0.00050291466 + outSlope: -0.00050291466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0357309 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.035712507 + inSlope: 0.00050291466 + outSlope: 0.00050291105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.0356612 + inSlope: 0.00094994315 + outSlope: 0.00094994996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.035582703 + inSlope: 0.0013411058 + outSlope: 0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.035483055 + inSlope: 0.0016205028 + outSlope: 0.0016205028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.035366964 + inSlope: 0.0018440204 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.035241697 + inSlope: 0.0019557793 + outSlope: 0.0018998999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.035111696 + inSlope: 0.0019557793 + outSlope: 0.0018999304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.034984704 + inSlope: 0.0018999304 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9667469 + inSlope: 0 + outSlope: -0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9654896 + inSlope: -0.012516943 + outSlope: -0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9650065 + inSlope: -0.0035762822 + outSlope: -0.002682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9650065 + inSlope: -0.7492284 + outSlope: -0.7528074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.79259837 + inSlope: -1.7228739 + outSlope: -1.7148273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.79304504 + inSlope: 0.014305129 + outSlope: 0.01341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.7942863 + inSlope: 0.024139818 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.7961719 + inSlope: 0.03129247 + outSlope: 0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.79855084 + inSlope: 0.038445033 + outSlope: 0.038444895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.8012729 + inSlope: 0.042021163 + outSlope: 0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.80419034 + inSlope: 0.042915385 + outSlope: 0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.8071587 + inSlope: 0.043809455 + outSlope: 0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.81003696 + inSlope: 0.041127246 + outSlope: 0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.8126881 + inSlope: 0.037550963 + outSlope: 0.037550695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.8149782 + inSlope: 0.03039818 + outSlope: 0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.81677604 + inSlope: 0.022351762 + outSlope: 0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.8179512 + inSlope: 0.011622917 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.8183725 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.8179512 + inSlope: -0.011622917 + outSlope: -0.011622834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.81677604 + inSlope: -0.022351604 + outSlope: -0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.8149782 + inSlope: -0.03129247 + outSlope: -0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.8126959 + inSlope: -0.03576282 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.81003696 + inSlope: -0.042021316 + outSlope: -0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.8071679 + inSlope: -0.044703525 + outSlope: -0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.80419034 + inSlope: -0.044703525 + outSlope: -0.042916074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.8012818 + inSlope: -0.042916074 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.011001959 + inSlope: 0 + outSlope: -0.0030733563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.011210452 + inSlope: -0.002179289 + outSlope: -0.0021932668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.011289475 + inSlope: -0.00060070364 + outSlope: -0.00053085247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.011289475 + inSlope: -0.12212401 + outSlope: -0.1226553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.026553731 + inSlope: -0.098068364 + outSlope: -0.09759338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.026528297 + inSlope: 0.00083819113 + outSlope: 0.0007543693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.026457408 + inSlope: 0.001341101 + outSlope: 0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.026349148 + inSlope: 0.0018440204 + outSlope: 0.0018160808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.02621156 + inSlope: 0.0022351763 + outSlope: 0.0022351684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.02605272 + inSlope: 0.0024866248 + outSlope: 0.002458694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.025880791 + inSlope: 0.0026263322 + outSlope: 0.0025983925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.02570404 + inSlope: 0.002654272 + outSlope: 0.002654272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.025530856 + inSlope: 0.0024866336 + outSlope: 0.002542513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.025369741 + inSlope: 0.002263116 + outSlope: 0.0022910393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.02522931 + inSlope: 0.0018719467 + outSlope: 0.0019278396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.025118237 + inSlope: 0.0013411058 + outSlope: 0.0014249249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.025045231 + inSlope: 0.000754372 + outSlope: 0.0007264323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.025018984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.025045231 + inSlope: -0.0007264323 + outSlope: -0.0007543666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.025118237 + inSlope: -0.0014249147 + outSlope: -0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.02522931 + inSlope: -0.0019278396 + outSlope: -0.0018719601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.025369266 + inSlope: -0.002263116 + outSlope: -0.002263116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.025530856 + inSlope: -0.002542513 + outSlope: -0.0024866336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.02570349 + inSlope: -0.0025983925 + outSlope: -0.0026263322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.025880791 + inSlope: -0.0025983925 + outSlope: -0.0026263744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.026052197 + inSlope: -0.002542554 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.25198755 + inSlope: 0 + outSlope: 0.07063132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.25676283 + inSlope: 0.05006777 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.25857273 + inSlope: 0.013858093 + outSlope: 0.012069909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.25857273 + inSlope: 2.7970896 + outSlope: 2.8091695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.6081819 + inSlope: 2.2459052 + outSlope: 2.2351763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.6075993 + inSlope: -0.019669551 + outSlope: -0.016987279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.60597587 + inSlope: -0.030398289 + outSlope: -0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.6034962 + inSlope: -0.042021316 + outSlope: -0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.6003449 + inSlope: -0.05096202 + outSlope: -0.050961837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.59670687 + inSlope: -0.05722031 + outSlope: -0.05632644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.5927691 + inSlope: -0.059902724 + outSlope: -0.059902724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.58872074 + inSlope: -0.060796797 + outSlope: -0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5847542 + inSlope: -0.057220515 + outSlope: -0.058114585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.5810641 + inSlope: -0.05185609 + outSlope: -0.052749783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.57784766 + inSlope: -0.04291508 + outSlope: -0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.5753037 + inSlope: -0.03129247 + outSlope: -0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.57363164 + inSlope: -0.01698734 + outSlope: -0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.5730304 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.57363164 + inSlope: 0.01698734 + outSlope: 0.016987218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.5753037 + inSlope: 0.032186307 + outSlope: 0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.57784766 + inSlope: 0.043809455 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.5810532 + inSlope: 0.05185609 + outSlope: 0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.5847542 + inSlope: 0.058114585 + outSlope: 0.057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.5887082 + inSlope: 0.059902724 + outSlope: 0.059008654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5927691 + inSlope: 0.059902724 + outSlope: 0.05990369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.59669495 + inSlope: 0.05811552 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.01646212 + inSlope: 0 + outSlope: 0.018691596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.015217932 + inSlope: 0.013606587 + outSlope: 0.013564726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.014650655 + inSlope: 0.0042328653 + outSlope: 0.0042468198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.014650655 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.014650657 + inSlope: 0.0019976888 + outSlope: 0.0019976888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.014383251 + inSlope: 0.0070128655 + outSlope: 0.00704078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.013713142 + inSlope: 0.0115809655 + outSlope: 0.011581007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.012838797 + inSlope: 0.01314563 + outSlope: 0.013103721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.011961094 + inSlope: 0.011664826 + outSlope: 0.011650815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.011283842 + inSlope: 0.007110629 + outSlope: 0.0071246247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.011012463 + inSlope: 0.0010197992 + outSlope: 0.001033769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.011146279 + inSlope: -0.0037159806 + outSlope: -0.0037159806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.011507991 + inSlope: -0.006691559 + outSlope: -0.006691559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.012037761 + inSlope: -0.008773067 + outSlope: -0.008773005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.01267583 + inSlope: -0.009946464 + outSlope: -0.009918595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.013362904 + inSlope: -0.010267842 + outSlope: -0.010239901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.014040421 + inSlope: -0.009625228 + outSlope: -0.0096811075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.014650656 + inSlope: -0.009513469 + outSlope: -0.009513469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.01530624 + inSlope: -0.010756786 + outSlope: -0.010784648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.016084738 + inSlope: -0.011790471 + outSlope: -0.011790555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.016876986 + inSlope: -0.011175881 + outSlope: -0.011147941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.017573021 + inSlope: -0.008940705 + outSlope: -0.008968645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0180717 + inSlope: -0.005196785 + outSlope: -0.0051409057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.018260958 + inSlope: 0.00005587941 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.018062375 + inSlope: 0.0053364835 + outSlope: 0.005308629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.017551355 + inSlope: 0.007655602 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.08728852 + inSlope: 0 + outSlope: -0.22329332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.07239391 + inSlope: -0.16272025 + outSlope: -0.16249731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.06561788 + inSlope: -0.05085026 + outSlope: -0.05073832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.06561788 + inSlope: 0.00011175842 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.06561788 + inSlope: -0.023916386 + outSlope: -0.024251662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.062404808 + inSlope: -0.08426615 + outSlope: -0.08448936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.054369196 + inSlope: -0.13863632 + outSlope: -0.13869269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.04391736 + inSlope: -0.15679762 + outSlope: -0.15690938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.033460334 + inSlope: -0.13880445 + outSlope: -0.1386922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.025413644 + inSlope: -0.08448936 + outSlope: -0.084517606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.022194436 + inSlope: -0.01226553 + outSlope: -0.012153771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.02378309 + inSlope: 0.04408885 + outSlope: 0.04420061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.028080909 + inSlope: 0.079572275 + outSlope: 0.079516396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.034385275 + inSlope: 0.10432685 + outSlope: 0.104381986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.041993346 + inSlope: 0.11868701 + outSlope: 0.1185761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.05020251 + inSlope: 0.122320026 + outSlope: 0.12226415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.0583109 + inSlope: 0.115670376 + outSlope: 0.11544686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.06561788 + inSlope: 0.11365872 + outSlope: 0.11354696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.07346287 + inSlope: 0.12885791 + outSlope: 0.12885699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.08278441 + inSlope: 0.14092685 + outSlope: 0.1413749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.0922835 + inSlope: 0.13377531 + outSlope: 0.13388707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.10064207 + inSlope: 0.10762374 + outSlope: 0.10751198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.106638856 + inSlope: 0.0621379 + outSlope: 0.0621379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.108916424 + inSlope: -0.00089407054 + outSlope: -0.0007823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.10652278 + inSlope: -0.0640378 + outSlope: -0.064150594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.100370355 + inSlope: -0.092314266 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.00422338 + inSlope: 0 + outSlope: -0.0046309894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.0039208345 + inSlope: -0.0032619487 + outSlope: -0.0032479905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.0037959218 + inSlope: -0.0009394725 + outSlope: -0.00094296166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.0037959218 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.0037959188 + inSlope: -0.0005972112 + outSlope: -0.00060768856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.0037150509 + inSlope: -0.002074523 + outSlope: -0.002084993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.0035205972 + inSlope: -0.0032689336 + outSlope: -0.0032759302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.0032843077 + inSlope: -0.0034575383 + outSlope: -0.0034540459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.0030667179 + inSlope: -0.00283588 + outSlope: -0.0028288849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.0029120916 + inSlope: -0.0016135122 + outSlope: -0.0016100254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.0028533512 + inSlope: -0.00019208547 + outSlope: -0.00019208547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.0028862192 + inSlope: 0.0009150253 + outSlope: 0.0009150253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.002975786 + inSlope: 0.0016693973 + outSlope: 0.0016659049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.0031098137 + inSlope: 0.0022281914 + outSlope: 0.0022281755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.0032756636 + inSlope: 0.0025878965 + outSlope: 0.0025774378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.0034582978 + inSlope: 0.0026996739 + outSlope: 0.0026961814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.0036391718 + inSlope: 0.0025110808 + outSlope: 0.002504096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.0037959209 + inSlope: 0.0023364578 + outSlope: 0.0023259805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.003953241 + inSlope: 0.0025704529 + outSlope: 0.0025704345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.0041431445 + inSlope: 0.0029057085 + outSlope: 0.0029127141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.004346371 + inSlope: 0.0028987443 + outSlope: 0.0028987443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.004535045 + inSlope: 0.002451709 + outSlope: 0.002458694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.0046763946 + inSlope: 0.0014738194 + outSlope: 0.0014598495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.0047313413 + inSlope: -0.000041909556 + outSlope: -0.000041909556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.004671111 + inSlope: -0.0015855782 + outSlope: -0.0015856037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0045208866 + inSlope: -0.0022701374 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9960381 + inSlope: 0 + outSlope: 0.020563548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9972522 + inSlope: 0.011622875 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9977301 + inSlope: 0.0044703525 + outSlope: 0.0035762694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9977301 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9977301 + inSlope: 0.0026822116 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.99794036 + inSlope: 0.005364423 + outSlope: 0.0044703367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.99842054 + inSlope: 0.0071525387 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.99894726 + inSlope: 0.0080466345 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9993637 + inSlope: 0.0044703525 + outSlope: 0.005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.99960905 + inSlope: 0.002682202 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9996889 + inSlope: 0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9996508 + inSlope: -0.0017881411 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.999535 + inSlope: -0.0017881411 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9993313 + inSlope: -0.0035762822 + outSlope: -0.0035762566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.9990321 + inSlope: -0.0044703204 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.9986437 + inSlope: -0.005364423 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.99819314 + inSlope: -0.0071525644 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9977301 + inSlope: -0.0071525644 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9971726 + inSlope: -0.008940705 + outSlope: -0.009834706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.996429 + inSlope: -0.011622834 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.99558026 + inSlope: -0.013411058 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.9947572 + inSlope: -0.010728846 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.99412256 + inSlope: -0.0062584938 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.9938718 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.99413514 + inSlope: 0.0062584938 + outSlope: 0.0071526794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.994785 + inSlope: 0.008940849 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7572744 + inSlope: 0 + outSlope: 0.09655927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.76359427 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.7572744 + inSlope: -0.17702596 + outSlope: -0.17970753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.7390609 + inSlope: -0.34868625 + outSlope: -0.34779343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.7097373 + inSlope: -0.5042558 + outSlope: -0.5033617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.67051715 + inSlope: -0.6428367 + outSlope: -0.64194036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.6229844 + inSlope: -0.74296993 + outSlope: -0.74476075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.5707604 + inSlope: -0.7948287 + outSlope: -0.7957228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.51696277 + inSlope: -0.79393464 + outSlope: -0.78946143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.4660958 + inSlope: -0.73090005 + outSlope: -0.7313497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.42084008 + inSlope: -0.62808454 + outSlope: -0.6271905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.38410425 + inSlope: -0.4917388 + outSlope: -0.49263287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.35680145 + inSlope: -0.34064087 + outSlope: -0.33885273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.33998173 + inSlope: -0.17434375 + outSlope: -0.17344844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.33409297 + inSlope: -0.044703208 + outSlope: -0.04425649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.33409297 + inSlope: 0 + outSlope: -0.00044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.33409297 + inSlope: 0.20205994 + outSlope: 0.20205994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.3606315 + inSlope: 0.7662184 + outSlope: 0.7675595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.43505064 + inSlope: 1.3647987 + outSlope: 1.3688122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.54368615 + inSlope: 1.6325611 + outSlope: 1.635255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.6553448 + inSlope: 1.3884915 + outSlope: 1.3884915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.73492426 + inSlope: 0.74833703 + outSlope: 0.74744296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.76359427 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.73492426 + inSlope: -0.7367141 + outSlope: -0.73939633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6553448 + inSlope: -1.382233 + outSlope: -1.3822553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.54368615 + inSlope: -1.8498617 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.17134655 + inSlope: 0 + outSlope: 0.19244799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.1585067 + inSlope: 0.00022351684 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.17134655 + inSlope: -0.36031044 + outSlope: -0.36165023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.2064166 + inSlope: -0.6524456 + outSlope: -0.65267146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.25774637 + inSlope: -0.8462378 + outSlope: -0.8462378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.3183503 + inSlope: -0.93877405 + outSlope: -0.9374296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.3816744 + inSlope: -0.9222304 + outSlope: -0.9199986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.44019425 + inSlope: -0.81181604 + outSlope: -0.81092197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.48916417 + inSlope: -0.63344896 + outSlope: -0.63434076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.5246856 + inSlope: -0.42736417 + outSlope: -0.42736572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.54653645 + inSlope: -0.23156427 + outSlope: -0.23156427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.5563377 + inSlope: -0.080466345 + outSlope: -0.079572275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.5580447 + inSlope: 0.0071525644 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.556255 + inSlope: 0.026822116 + outSlope: 0.025033796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.55504304 + inSlope: 0.01072877 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.55504304 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.55504304 + inSlope: -0.03129247 + outSlope: -0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.5581312 + inSlope: 0.060796797 + outSlope: 0.059902724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.5407517 + inSlope: 0.65535367 + outSlope: 0.6562431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.46626556 + inSlope: 1.4912989 + outSlope: 1.496227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.33968177 + inSlope: 1.8847007 + outSlope: 1.8851477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.21401738 + inSlope: 1.3639046 + outSlope: 1.3614459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.1585067 + inSlope: 0.0015646234 + outSlope: -0.0015646234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.21401739 + inSlope: -1.3907267 + outSlope: -1.3949735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.33968186 + inSlope: -1.9396861 + outSlope: -1.9388231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.46626556 + inSlope: -1.7385482 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.59373504 + inSlope: 0 + outSlope: 0.032186422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.5915543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.59373504 + inSlope: -0.053644232 + outSlope: -0.05364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.59830916 + inSlope: -0.058114376 + outSlope: -0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.60101235 + inSlope: 0.0062584938 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.5970239 + inSlope: 0.13768686 + outSlope: 0.1394745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.5821412 + inSlope: 0.31918204 + outSlope: 0.3182891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.5542433 + inSlope: 0.51319647 + outSlope: 0.51319647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.51314545 + inSlope: 0.68754023 + outSlope: 0.6866437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.46212825 + inSlope: 0.8015314 + outSlope: 0.80287534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.40555617 + inSlope: 0.8328267 + outSlope: 0.83372074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.3504991 + inSlope: 0.76532435 + outSlope: 0.7648773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.30318978 + inSlope: 0.5981332 + outSlope: 0.59723914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.27081567 + inSlope: 0.33393535 + outSlope: 0.33348593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.25882062 + inSlope: 0.090747505 + outSlope: 0.08940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.25882062 + inSlope: 0 + outSlope: 0.00044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.25882062 + inSlope: -0.39115587 + outSlope: -0.39204994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.31019792 + inSlope: -1.2843323 + outSlope: -1.2865674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.42455977 + inSlope: -1.7447786 + outSlope: -1.7492365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.53514785 + inSlope: -1.2820879 + outSlope: -1.2838852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.5934088 + inSlope: -0.43541235 + outSlope: -0.43541235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.59902084 + inSlope: 0.07241971 + outSlope: 0.07331378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.5915543 + inSlope: 0.00089407054 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.59902084 + inSlope: -0.064373076 + outSlope: -0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.59340876 + inSlope: 0.4398827 + outSlope: 0.44346613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.53514785 + inSlope: 1.0541261 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.21131632 + inSlope: 0 + outSlope: -0.10125312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.20460428 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.21131632 + inSlope: 0.19468385 + outSlope: 0.19580075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.23066683 + inSlope: 0.37729642 + outSlope: 0.37752128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.2619617 + inSlope: 0.5471712 + outSlope: 0.5471712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.3043393 + inSlope: 0.7063157 + outSlope: 0.7054191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.3568287 + inSlope: 0.83371776 + outSlope: 0.8332737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.4162642 + inSlope: 0.9173164 + outSlope: 0.9186575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.4797391 + inSlope: 0.9419033 + outSlope: 0.9410059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.5421229 + inSlope: 0.89853764 + outSlope: 0.8994349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.5997632 + inSlope: 0.7948287 + outSlope: 0.79125243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.64815325 + inSlope: 0.6374723 + outSlope: 0.6392604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.68509465 + inSlope: 0.44703525 + outSlope: 0.44703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.7082736 + inSlope: 0.22977613 + outSlope: 0.23335074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.7164642 + inSlope: 0.06079636 + outSlope: 0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.7164642 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.7164642 + inSlope: -0.25928044 + outSlope: -0.26196265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.67986155 + inSlope: -0.9423503 + outSlope: -0.94413847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.5814356 + inSlope: -1.687111 + outSlope: -1.6906753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.44790477 + inSlope: -1.9597886 + outSlope: -1.9620378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.3209447 + inSlope: -1.6450897 + outSlope: -1.6450897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.2350679 + inSlope: -0.912846 + outSlope: -0.9110579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.20460428 + inSlope: -0.0011175881 + outSlope: 0.0011175881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.23506789 + inSlope: 0.8735069 + outSlope: 0.87641263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3209448 + inSlope: 1.5869752 + outSlope: 1.5865537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.44790477 + inSlope: 1.6987613 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.06177418 + inSlope: 0 + outSlope: 0.10404708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.06873407 + inSlope: -0.09018904 + outSlope: -0.09097168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.04968028 + inSlope: -0.48626262 + outSlope: -0.4869314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.005337284 + inSlope: -0.70504194 + outSlope: -0.70505846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.042022828 + inSlope: -0.5823193 + outSlope: -0.5818723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.07361589 + inSlope: -0.29236105 + outSlope: -0.2915777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.08534449 + inSlope: -0.07778386 + outSlope: -0.077895895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.086688794 + inSlope: -0.027157392 + outSlope: -0.027604427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.08916338 + inSlope: -0.051409055 + outSlope: -0.051408872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.09365729 + inSlope: -0.04369754 + outSlope: -0.04347418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.09541569 + inSlope: 0.019334275 + outSlope: 0.01978131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.091530636 + inSlope: 0.09745368 + outSlope: 0.09700665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.08267329 + inSlope: 0.1381339 + outSlope: 0.13791038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.07314501 + inSlope: 0.10460625 + outSlope: 0.1046055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.068734035 + inSlope: 0.033080373 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.068734035 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.068734035 + inSlope: 0.03106895 + outSlope: 0.03118071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.06455618 + inSlope: 0.095553786 + outSlope: 0.095553786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.05592706 + inSlope: 0.10348866 + outSlope: 0.10304089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.050817948 + inSlope: 0.24854983 + outSlope: 0.24989271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.022732938 + inSlope: 0.65560514 + outSlope: 0.6566389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.0359951 + inSlope: 0.6636797 + outSlope: 0.6631209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.068734065 + inSlope: -0.22597632 + outSlope: -0.22955261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.0053372923 + inSlope: -1.1003773 + outSlope: -1.1031364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.07368133 + inSlope: -0.5917629 + outSlope: -0.5897608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0866888 + inSlope: -0.10974892 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.15666518 + inSlope: 0 + outSlope: -0.07890144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.15146065 + inSlope: 0.09968851 + outSlope: 0.10035942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.16989326 + inSlope: 0.38132107 + outSlope: 0.38221377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.20357475 + inSlope: 0.3305814 + outSlope: 0.33013555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.21916714 + inSlope: -0.07085509 + outSlope: -0.07130212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.20189399 + inSlope: -0.4398827 + outSlope: -0.43988112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.16647393 + inSlope: -0.4264701 + outSlope: -0.42557758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.14727712 + inSlope: -0.11421751 + outSlope: -0.11354696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.15145585 + inSlope: 0.09745368 + outSlope: 0.097006306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.16011095 + inSlope: 0.11622875 + outSlope: 0.11622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.16703752 + inSlope: 0.054314785 + outSlope: 0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.16793521 + inSlope: -0.039786138 + outSlope: -0.040009655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.16266209 + inSlope: -0.102371074 + outSlope: -0.10259459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.1551962 + inSlope: -0.08761891 + outSlope: -0.08739477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.15146065 + inSlope: -0.028610053 + outSlope: -0.02838674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.15146065 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.15146065 + inSlope: 0.018328445 + outSlope: 0.018328445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.15386061 + inSlope: 0.048279807 + outSlope: 0.048503324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.15775993 + inSlope: 0.042021316 + outSlope: 0.041797496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.1595457 + inSlope: 0.13209797 + outSlope: 0.13344003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.17509003 + inSlope: 0.057891067 + outSlope: 0.056996997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.17112231 + inSlope: -0.24609292 + outSlope: -0.24743402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.15146065 + inSlope: 0.25279844 + outSlope: 0.25570416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.20357475 + inSlope: 0.30331343 + outSlope: 0.30197233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.20179674 + inSlope: -0.5936628 + outSlope: -0.59568405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.14727691 + inSlope: -0.873968 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.13695678 + inSlope: 0 + outSlope: -0.33929855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.15946575 + inSlope: 0.19200096 + outSlope: 0.19356626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.110992715 + inSlope: 1.2860087 + outSlope: 1.287457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.013622096 + inSlope: 2.1624556 + outSlope: 2.1632175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.1778649 + inSlope: 2.4274015 + outSlope: 2.4267309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.33616266 + inSlope: 2.027305 + outSlope: 2.0272977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.4494419 + inSlope: 1.1403829 + outSlope: 1.1377047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.4913407 + inSlope: 0.18775481 + outSlope: 0.18551964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.4749136 + inSlope: -0.4474823 + outSlope: -0.4474807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.43127742 + inSlope: -0.7957199 + outSlope: -0.79661685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.36827472 + inSlope: -1.0062764 + outSlope: -1.0035942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.29699698 + inSlope: -1.0415921 + outSlope: -1.0438273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.22917974 + inSlope: -0.8851298 + outSlope: -0.88423574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.17912754 + inSlope: -0.52437234 + outSlope: -0.5234746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.15946576 + inSlope: -0.1479676 + outSlope: -0.14752163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.15946576 + inSlope: 0.00022351764 + outSlope: -0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.15946576 + inSlope: 0.18328446 + outSlope: 0.18395501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.18389966 + inSlope: 0.5212431 + outSlope: 0.5214666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.22882582 + inSlope: 0.5152081 + outSlope: 0.5160985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.25274065 + inSlope: -0.59723485 + outSlope: -0.60126245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.1473022 + inSlope: -2.2716098 + outSlope: -2.2745154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.053014603 + inSlope: -2.296085 + outSlope: -2.2949114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.15946575 + inSlope: 0.48123345 + outSlope: 0.48838603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.013622092 + inSlope: 3.7336524 + outSlope: 3.743529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3366044 + inSlope: 3.4797225 + outSlope: 3.4744139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.49134114 + inSlope: 2.1878257 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9761572 + inSlope: 0 + outSlope: -0.041127097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.97309095 + inSlope: 0.022351684 + outSlope: 0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.97793084 + inSlope: 0.10371218 + outSlope: 0.104605876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.97895014 + inSlope: -0.092983 + outSlope: -0.095665544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.95841736 + inSlope: -0.46044633 + outSlope: -0.45955226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.91695917 + inSlope: -0.66965884 + outSlope: -0.6687624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.8735014 + inSlope: -0.5140887 + outSlope: -0.5114083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.85403675 + inSlope: -0.091195196 + outSlope: -0.08940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.862304 + inSlope: 0.22262356 + outSlope: 0.2244109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.8829455 + inSlope: 0.3638854 + outSlope: 0.36209857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.9095977 + inSlope: 0.39875546 + outSlope: 0.39875546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9355281 + inSlope: 0.34779343 + outSlope: 0.34689936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.95612913 + inSlope: 0.24318719 + outSlope: 0.24050497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.96875036 + inSlope: 0.11891138 + outSlope: 0.11891053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.97309095 + inSlope: 0.031292245 + outSlope: 0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.97309095 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.97309095 + inSlope: -0.030398399 + outSlope: -0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9686797 + inSlope: -0.09924183 + outSlope: -0.10102997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9589696 + inSlope: -0.1242758 + outSlope: -0.12338085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.95293486 + inSlope: 0.14930871 + outSlope: 0.15109792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9732054 + inSlope: 0.34779343 + outSlope: 0.3486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.98316365 + inSlope: -0.107288465 + outSlope: -0.10371218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.97309095 + inSlope: 0.05632644 + outSlope: 0.05543237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.97895014 + inSlope: -0.107288465 + outSlope: -0.109076604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.91681325 + inSlope: -1.1962664 + outSlope: -1.1918151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.8540366 + inSlope: -1.1176062 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16349286 + inSlope: 0 + outSlope: -0.74833435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.1115507 + inSlope: -0.6621686 + outSlope: -0.66183573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.076165125 + inSlope: -0.2667683 + outSlope: -0.26576152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.076165125 + inSlope: 0.00022351684 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.076165125 + inSlope: -0.039786138 + outSlope: -0.039786138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.07085399 + inSlope: -0.1419337 + outSlope: -0.14170967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.05730526 + inSlope: -0.23905125 + outSlope: -0.23916386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.03928483 + inSlope: -0.27453554 + outSlope: -0.27459142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.021069143 + inSlope: -0.24296367 + outSlope: -0.24271134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.0071238596 + inSlope: -0.14609618 + outSlope: -0.1460548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.0016526897 + inSlope: -0.029839603 + outSlope: -0.029671965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.0031605242 + inSlope: 0.039869957 + outSlope: 0.039842017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.006959469 + inSlope: 0.06843831 + outSlope: 0.06835449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.012289358 + inSlope: 0.08608223 + outSlope: 0.08610955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.01847722 + inSlope: 0.11578131 + outSlope: 0.115698315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.02781979 + inSlope: 0.20359662 + outSlope: 0.20376426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.045866318 + inSlope: 0.35908106 + outSlope: 0.35941637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.07616511 + inSlope: 0.53666586 + outSlope: 0.5373364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.11790352 + inSlope: 0.6015977 + outSlope: 0.60215217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.15664099 + inSlope: 0.45150238 + outSlope: 0.45172912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.17895043 + inSlope: 0.17657892 + outSlope: 0.17657892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.18190229 + inSlope: -0.05185609 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.17368227 + inSlope: -0.109076604 + outSlope: -0.109076604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.1681755 + inSlope: -0.013187541 + outSlope: -0.012964022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.17190778 + inSlope: 0.061690867 + outSlope: 0.061691858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.176658 + inSlope: 0.05409214 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.069267094 + inSlope: 0 + outSlope: -0.31772918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.08681293 + inSlope: -0.28375462 + outSlope: -0.28397915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.10548151 + inSlope: -0.13992204 + outSlope: -0.13925098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.10548151 + inSlope: 0 + outSlope: 0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.10548151 + inSlope: 0.01218171 + outSlope: 0.012405229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.10379685 + inSlope: 0.039115585 + outSlope: 0.039115444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.09995223 + inSlope: 0.056102727 + outSlope: 0.055879407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.09576787 + inSlope: 0.051520813 + outSlope: 0.051520813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.09250519 + inSlope: 0.036880407 + outSlope: 0.03665676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.09053931 + inSlope: 0.021681132 + outSlope: 0.02168121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.089602806 + inSlope: 0.009387741 + outSlope: 0.009611258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.08928928 + inSlope: 0.0014528646 + outSlope: 0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.089362994 + inSlope: -0.004246835 + outSlope: -0.004246835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.089799896 + inSlope: -0.01039357 + outSlope: -0.010393496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.09069565 + inSlope: -0.028274778 + outSlope: -0.02838674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.09345516 + inSlope: -0.061132073 + outSlope: -0.061020315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.098446764 + inSlope: -0.09700665 + outSlope: -0.09689489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.10548151 + inSlope: -0.05755579 + outSlope: -0.057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.10435362 + inSlope: 0.061914384 + outSlope: 0.062249213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.09492266 + inSlope: 0.099017605 + outSlope: 0.09868304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.089639835 + inSlope: 0.014305129 + outSlope: 0.014416887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.092985615 + inSlope: -0.07890172 + outSlope: -0.07856645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.10099916 + inSlope: -0.087954186 + outSlope: -0.08773067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.10526301 + inSlope: 0.023916386 + outSlope: 0.024922216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.09772633 + inSlope: 0.1723321 + outSlope: 0.17211135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.08233391 + inSlope: 0.23771483 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.40052187 + inSlope: 0 + outSlope: 2.4104054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.23301414 + inSlope: 1.8518369 + outSlope: 1.8489379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.15605311 + inSlope: 0.5822634 + outSlope: 0.5804732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.15605311 + inSlope: -0.00044703367 + outSlope: -0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.15605311 + inSlope: 0.18619019 + outSlope: 0.18663722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.13114853 + inSlope: 0.6544596 + outSlope: 0.6551278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.06850584 + inSlope: 1.082492 + outSlope: 1.0830547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.013391716 + inSlope: 1.227489 + outSlope: 1.2274052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.09527675 + inSlope: 1.0823841 + outSlope: 1.0813744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.15789339 + inSlope: 0.65423375 + outSlope: 0.6535655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.18278393 + inSlope: 0.08963057 + outSlope: 0.08918353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.16988836 + inSlope: -0.3460053 + outSlope: -0.34645233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.13655029 + inSlope: -0.5927687 + outSlope: -0.5920982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.09082651 + inSlope: -0.716374 + outSlope: -0.71692765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.04098733 + inSlope: -0.79666704 + outSlope: -0.79600215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.015343135 + inSlope: -0.9283805 + outSlope: -0.92857605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.08278297 + inSlope: -1.0566796 + outSlope: -1.0569031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.15605311 + inSlope: -1.209901 + outSlope: -1.210348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.24353528 + inSlope: -1.4416888 + outSlope: -1.4448076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.34740564 + inSlope: -1.5588008 + outSlope: -1.5623882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.4511467 + inSlope: -1.4233602 + outSlope: -1.4224662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.5379131 + inSlope: -1.0737787 + outSlope: -1.0746728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.5959013 + inSlope: -0.5820399 + outSlope: -0.5811458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.6167342 + inSlope: 0.0017881411 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.5954413 + inSlope: 0.5856162 + outSlope: 0.5874138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.5372445 + inSlope: 0.8931908 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.89891845 + inSlope: 0 + outSlope: 1.1846392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9621457 + inSlope: 0.49888957 + outSlope: 0.49889135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9791425 + inSlope: 0.09834776 + outSlope: 0.0983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9791425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9791425 + inSlope: 0.03397468 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9833646 + inSlope: 0.1001359 + outSlope: 0.102817744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.9909757 + inSlope: 0.0956652 + outSlope: 0.092983335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.99453807 + inSlope: 0 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.99091935 + inSlope: -0.095665544 + outSlope: -0.0956652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9832709 + inSlope: -0.101923674 + outSlope: -0.10281811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.97906005 + inSlope: -0.01698734 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.9814047 + inSlope: 0.058114585 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9865697 + inSlope: 0.080466345 + outSlope: 0.081360415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9917336 + inSlope: 0.06347901 + outSlope: 0.06258449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.99486333 + inSlope: 0.028610053 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.99511653 + inSlope: -0.025033975 + outSlope: -0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.9906319 + inSlope: -0.11444103 + outSlope: -0.1153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9791425 + inSlope: -0.2396109 + outSlope: -0.24050497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9570265 + inSlope: -0.43451828 + outSlope: -0.43540922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.91965353 + inSlope: -0.655349 + outSlope: -0.65624774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.8697173 + inSlope: -0.77158284 + outSlope: -0.773371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.81787205 + inSlope: -0.7054216 + outSlope: -0.7036335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.7775187 + inSlope: -0.43273014 + outSlope: -0.4336242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.76175827 + inSlope: 0.008940705 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7786829 + inSlope: 0.45597598 + outSlope: 0.4550892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.8205982 + inSlope: 0.59635466 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.03784938 + inSlope: 0 + outSlope: 0.28610155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.056899965 + inSlope: 0.19680656 + outSlope: 0.19691904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.06413314 + inSlope: 0.054203026 + outSlope: 0.05431459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.06413314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.06413314 + inSlope: -0.021457693 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.06129779 + inSlope: -0.0805781 + outSlope: -0.080242544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.05340741 + inSlope: -0.14964452 + outSlope: -0.14908627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.04138954 + inSlope: -0.20384808 + outSlope: -0.20474215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.02617681 + inSlope: -0.2453106 + outSlope: -0.24508621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.008706078 + inSlope: -0.27213174 + outSlope: -0.27157393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.010085113 + inSlope: -0.2846497 + outSlope: -0.28442618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.029264152 + inSlope: -0.2838674 + outSlope: -0.28397915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.04790932 + inSlope: -0.26945052 + outSlope: -0.2681094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.06511558 + inSlope: -0.2403932 + outSlope: -0.2411738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.07999786 + inSlope: -0.19926454 + outSlope: -0.19937773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.091689 + inSlope: -0.1451747 + outSlope: -0.14495118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.09933336 + inSlope: -0.07800765 + outSlope: -0.077784136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.102074236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.09933336 + inSlope: 0.07756062 + outSlope: 0.07823061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.091689 + inSlope: 0.14472663 + outSlope: 0.14539821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.07999788 + inSlope: 0.19870718 + outSlope: 0.1989307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.0651662 + inSlope: 0.24028145 + outSlope: 0.24050497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.047909245 + inSlope: 0.26877996 + outSlope: 0.269227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.029323675 + inSlope: 0.28375563 + outSlope: 0.28420267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.010085143 + inSlope: 0.28476146 + outSlope: 0.28454253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.008648992 + inSlope: 0.2809662 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.7345581 + inSlope: 0 + outSlope: -0.01341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.73522836 + inSlope: -0.0044703367 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.73544776 + inSlope: -0.0026822116 + outSlope: -0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.73544776 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.73544776 + inSlope: 0 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.7353641 + inSlope: 0.0044703525 + outSlope: 0.00089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.73511547 + inSlope: 0.0044703367 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.7346927 + inSlope: 0.0080466345 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.7340827 + inSlope: 0.010728846 + outSlope: 0.00983474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.73328215 + inSlope: 0.012516943 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.7323056 + inSlope: 0.016093269 + outSlope: 0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.731189 + inSlope: 0.01698734 + outSlope: 0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.7299913 + inSlope: 0.018775482 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.7287913 + inSlope: 0.016093269 + outSlope: 0.016987218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.7276817 + inSlope: 0.016987218 + outSlope: 0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.7267651 + inSlope: 0.011622917 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.72614455 + inSlope: 0.0080466345 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.7259181 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.72614455 + inSlope: -0.005364423 + outSlope: -0.008940641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.7267651 + inSlope: -0.011622834 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.7276817 + inSlope: -0.015199199 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.72878754 + inSlope: -0.01698734 + outSlope: -0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.72999126 + inSlope: -0.01698734 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.7311853 + inSlope: -0.018775482 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.7323056 + inSlope: -0.01698734 + outSlope: -0.016093528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.7332795 + inSlope: -0.011623104 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.23598969 + inSlope: 0 + outSlope: -0.06929022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.24056245 + inSlope: -0.046267983 + outSlope: -0.046491668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.24224317 + inSlope: -0.012069952 + outSlope: -0.012516943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.24224317 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.24224317 + inSlope: 0.004917388 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.2415879 + inSlope: 0.019222517 + outSlope: 0.018775415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.23974004 + inSlope: 0.034868624 + outSlope: 0.035315786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.23685563 + inSlope: 0.049620915 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.23308182 + inSlope: 0.061690867 + outSlope: 0.06213768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.2285762 + inSlope: 0.07152539 + outSlope: 0.07130212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.22352105 + inSlope: 0.078678206 + outSlope: 0.07823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.21813312 + inSlope: 0.081360415 + outSlope: 0.081360415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.21266848 + inSlope: 0.080466345 + outSlope: 0.080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.20742211 + inSlope: 0.07465489 + outSlope: 0.074654356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.20272306 + inSlope: 0.064149104 + outSlope: 0.06370252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.19892427 + inSlope: 0.047832772 + outSlope: 0.047832772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.19638833 + inSlope: 0.026151562 + outSlope: 0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.19546896 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.19638833 + inSlope: -0.026151562 + outSlope: -0.02592786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.19892427 + inSlope: -0.047608916 + outSlope: -0.047609255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.20272304 + inSlope: -0.06347901 + outSlope: -0.06370252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.20740642 + inSlope: -0.074431375 + outSlope: -0.07420785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.21266848 + inSlope: -0.08001931 + outSlope: -0.080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.218116 + inSlope: -0.08068986 + outSlope: -0.08158393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.22352102 + inSlope: -0.07845469 + outSlope: -0.07778539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.22856116 + inSlope: -0.07443257 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.63505954 + inSlope: 0 + outSlope: -0.05632624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.631135 + inSlope: -0.042915232 + outSlope: -0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.62954104 + inSlope: -0.0125169875 + outSlope: -0.0143050775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.62954104 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.62954104 + inSlope: 0.0062584938 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.63017255 + inSlope: 0.01698734 + outSlope: 0.017881347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.63188434 + inSlope: 0.033080492 + outSlope: 0.030398399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.6343603 + inSlope: 0.040233172 + outSlope: 0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.63726777 + inSlope: 0.043809455 + outSlope: 0.044703368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.64029235 + inSlope: 0.044703368 + outSlope: 0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.6431681 + inSlope: 0.040233172 + outSlope: 0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.64569664 + inSlope: 0.03397468 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.6477573 + inSlope: 0.025928045 + outSlope: 0.024139903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.6493068 + inSlope: 0.019669551 + outSlope: 0.019669412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.6503713 + inSlope: 0.011622834 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.65102595 + inSlope: 0.0071525644 + outSlope: 0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.65136665 + inSlope: 0.0044703525 + outSlope: 0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.65147185 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.65136665 + inSlope: -0.0035762822 + outSlope: -0.0035762566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.65102595 + inSlope: -0.007152513 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.6503713 + inSlope: -0.013411058 + outSlope: -0.0125169875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.64931095 + inSlope: -0.019669551 + outSlope: -0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.64775723 + inSlope: -0.027716186 + outSlope: -0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.6457039 + inSlope: -0.03486875 + outSlope: -0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.64316815 + inSlope: -0.042021316 + outSlope: -0.04023382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6403015 + inSlope: -0.04559833 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.1469921 + inSlope: 0 + outSlope: 0.10393532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.15386155 + inSlope: 0.070854835 + outSlope: 0.07018454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.1563984 + inSlope: 0.019222517 + outSlope: 0.01899893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.1563984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.1563984 + inSlope: -0.007376082 + outSlope: -0.0075995997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.15540867 + inSlope: -0.02838674 + outSlope: -0.028386638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.15262254 + inSlope: -0.05342052 + outSlope: -0.053420715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.14828923 + inSlope: -0.07465489 + outSlope: -0.07420785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.1426494 + inSlope: -0.092089266 + outSlope: -0.09186542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.13596106 + inSlope: -0.10572346 + outSlope: -0.105500326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.12851639 + inSlope: -0.11421751 + outSlope: -0.11421751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.12065169 + inSlope: -0.11757027 + outSlope: -0.11801731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.112748966 + inSlope: -0.1153351 + outSlope: -0.11555862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.105231866 + inSlope: -0.10617088 + outSlope: -0.10605836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.0985567 + inSlope: -0.09007696 + outSlope: -0.09007761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.09319998 + inSlope: -0.066831775 + outSlope: -0.06672002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.08964363 + inSlope: -0.036209855 + outSlope: -0.036321614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.08835821 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.08964363 + inSlope: 0.036433373 + outSlope: 0.036321357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.09319998 + inSlope: 0.06683129 + outSlope: 0.06716705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.0985567 + inSlope: 0.090301126 + outSlope: 0.090301126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.10520947 + inSlope: 0.10661791 + outSlope: 0.10672967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.112748966 + inSlope: 0.11611741 + outSlope: 0.11600565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.12062685 + inSlope: 0.11868786 + outSlope: 0.11868786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.1285164 + inSlope: 0.1153351 + outSlope: 0.11511343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.13593878 + inSlope: 0.11109005 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.6546075 + inSlope: 0 + outSlope: 0.20116515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.6411321 + inSlope: 0.1394745 + outSlope: 0.14126314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.6359799 + inSlope: 0.037550963 + outSlope: 0.03755083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.6359799 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.6359799 + inSlope: -0.015199199 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.6380019 + inSlope: -0.05543237 + outSlope: -0.059008442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.6436128 + inSlope: -0.105499946 + outSlope: -0.106394395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.6521139 + inSlope: -0.14394535 + outSlope: -0.14394535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.66279566 + inSlope: -0.17076747 + outSlope: -0.17344905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.6749526 + inSlope: -0.18775414 + outSlope: -0.18954295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.6878943 + inSlope: -0.19490737 + outSlope: -0.19580145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.7009565 + inSlope: -0.19311923 + outSlope: -0.19133109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.7135099 + inSlope: -0.18149632 + outSlope: -0.17970818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.7249644 + inSlope: -0.15735641 + outSlope: -0.16003747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.7347684 + inSlope: -0.13053337 + outSlope: -0.13053429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.7424015 + inSlope: -0.092983335 + outSlope: -0.094771475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.74735904 + inSlope: -0.05096202 + outSlope: -0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.7491301 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.74735904 + inSlope: 0.04917388 + outSlope: 0.050961655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.7424015 + inSlope: 0.0947708 + outSlope: 0.092983335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.7347684 + inSlope: 0.13053429 + outSlope: 0.12964022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.72499794 + inSlope: 0.15914455 + outSlope: 0.15914455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.7135099 + inSlope: 0.17970818 + outSlope: 0.18149632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.7009969 + inSlope: 0.19133109 + outSlope: 0.19222516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.6878943 + inSlope: 0.19490737 + outSlope: 0.19491051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.67499214 + inSlope: 0.1958046 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.064356625 + inSlope: 0 + outSlope: -0.119581506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0723526 + inSlope: -0.082924746 + outSlope: -0.08270153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0754536 + inSlope: -0.023134075 + outSlope: -0.02324575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0754536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0754536 + inSlope: 0.009052464 + outSlope: 0.009052464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.074233726 + inSlope: 0.034421716 + outSlope: 0.03453335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.07086806 + inSlope: 0.063367024 + outSlope: 0.06336725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.06582359 + inSlope: 0.08482494 + outSlope: 0.084601425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.05958131 + inSlope: 0.09952123 + outSlope: 0.09952087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.052612253 + inSlope: 0.107399836 + outSlope: 0.10695319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.04535847 + inSlope: 0.10851781 + outSlope: 0.10868545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.03821826 + inSlope: 0.10421509 + outSlope: 0.10449449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.031536832 + inSlope: 0.09533027 + outSlope: 0.09527439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.025603112 + inSlope: 0.08197509 + outSlope: 0.0822539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.020654246 + inSlope: 0.06593723 + outSlope: 0.06554654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.016888116 + inSlope: 0.046491668 + outSlope: 0.04643579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.014484305 + inSlope: 0.02453106 + outSlope: 0.02458694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.013633847 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.014484305 + inSlope: -0.024307542 + outSlope: -0.024363248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.016888116 + inSlope: -0.0460443 + outSlope: -0.04615639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.020654246 + inSlope: -0.064540714 + outSlope: -0.06504363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.025585987 + inSlope: -0.08102514 + outSlope: -0.08119278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.031536832 + inSlope: -0.09398916 + outSlope: -0.09421268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.03819648 + inSlope: -0.10287399 + outSlope: -0.10304163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.04535847 + inSlope: -0.107344344 + outSlope: -0.107290186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.052589834 + inSlope: -0.10762547 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7387425 + inSlope: 0 + outSlope: 0.14752111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.74835914 + inSlope: 0.0983474 + outSlope: 0.09745368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.7519148 + inSlope: 0.025928045 + outSlope: 0.025927952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.7519148 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.7519148 + inSlope: -0.009834776 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.750527 + inSlope: -0.041127246 + outSlope: -0.03933896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.7466235 + inSlope: -0.07510166 + outSlope: -0.07510193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.74055725 + inSlope: -0.10460625 + outSlope: -0.10371218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.73266846 + inSlope: -0.12964022 + outSlope: -0.12785162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.7233156 + inSlope: -0.14752111 + outSlope: -0.14662756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.7129009 + inSlope: -0.16093269 + outSlope: -0.16093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.70188504 + inSlope: -0.1636149 + outSlope: -0.16808526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.6907943 + inSlope: -0.16272083 + outSlope: -0.16272083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.6802186 + inSlope: -0.14930978 + outSlope: -0.15020278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.67080194 + inSlope: -0.12874523 + outSlope: -0.12606394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.6632258 + inSlope: -0.095665544 + outSlope: -0.094771475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.65818596 + inSlope: -0.05185609 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.656362 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.65818596 + inSlope: 0.05096202 + outSlope: 0.05185572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.6632258 + inSlope: 0.0947708 + outSlope: 0.095665544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.67080194 + inSlope: 0.12516987 + outSlope: 0.12874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.68018687 + inSlope: 0.15020385 + outSlope: 0.15109792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.6907943 + inSlope: 0.16272083 + outSlope: 0.16272083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.70185006 + inSlope: 0.16540305 + outSlope: 0.16629712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7129009 + inSlope: 0.16182676 + outSlope: 0.16093528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7232846 + inSlope: 0.15288852 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.2123988 + inSlope: 0 + outSlope: -0.097900376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.20591414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.2123988 + inSlope: 0.18998998 + outSlope: 0.18887173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.23118481 + inSlope: 0.36790872 + outSlope: 0.36791003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.2618137 + inSlope: 0.5382305 + outSlope: 0.53778344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.3036772 + inSlope: 0.7000572 + outSlope: 0.7000547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.3560029 + inSlope: 0.8341648 + outSlope: 0.8341678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.41572365 + inSlope: 0.925363 + outSlope: 0.92446893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.47990647 + inSlope: 0.95397323 + outSlope: 0.9544169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.5432749 + inSlope: 0.9137368 + outSlope: 0.9137401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.6019937 + inSlope: 0.8091338 + outSlope: 0.8073457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.6513591 + inSlope: 0.6490952 + outSlope: 0.6508833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.68905526 + inSlope: 0.45687005 + outSlope: 0.45418784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.712699 + inSlope: 0.23692869 + outSlope: 0.23692699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.7210501 + inSlope: 0.06258449 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.7210501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.7210501 + inSlope: -0.26464486 + outSlope: -0.26643303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.68371576 + inSlope: -0.9602317 + outSlope: -0.963808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.58331025 + inSlope: -1.7166154 + outSlope: -1.7201794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.4476732 + inSlope: -1.979905 + outSlope: -1.9826014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.32018095 + inSlope: -1.6428546 + outSlope: -1.6428546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.23547506 + inSlope: -0.89854085 + outSlope: -0.89854085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.20591414 + inSlope: -0.00044703527 + outSlope: 0.00044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.235475 + inSlope: 0.8583077 + outSlope: 0.8594253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.32018095 + inSlope: 1.5793756 + outSlope: 1.578954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.4476732 + inSlope: 1.7009965 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.58773375 + inSlope: 0 + outSlope: -0.038444895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.5851912 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.58773375 + inSlope: 0.066161215 + outSlope: 0.061690647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.593254 + inSlope: 0.07599572 + outSlope: 0.075996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.5972247 + inSlope: 0.0125169875 + outSlope: 0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.5945288 + inSlope: -0.11980545 + outSlope: -0.11980502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.5807142 + inSlope: -0.30487695 + outSlope: -0.30577213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.55347073 + inSlope: -0.506938 + outSlope: -0.506938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.5125652 + inSlope: -0.68664616 + outSlope: -0.68574965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.4613374 + inSlope: -0.80644876 + outSlope: -0.80823976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.4042932 + inSlope: -0.84132034 + outSlope: -0.84042627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.34867913 + inSlope: -0.773371 + outSlope: -0.773818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.3008686 + inSlope: -0.6048387 + outSlope: -0.60260355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.26815516 + inSlope: -0.33661756 + outSlope: -0.33795625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.25603676 + inSlope: -0.09030048 + outSlope: -0.09164223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.25603676 + inSlope: 0 + outSlope: -0.00044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.25603676 + inSlope: 0.3942851 + outSlope: 0.39517918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.30795115 + inSlope: 1.2981904 + outSlope: 1.2990844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.42347205 + inSlope: 1.7599778 + outSlope: 1.7622004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.53452885 + inSlope: 1.2758296 + outSlope: 1.2776268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.5913091 + inSlope: 0.40411988 + outSlope: 0.40233174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.5941625 + inSlope: -0.10281811 + outSlope: -0.106394395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.5851912 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.5941625 + inSlope: 0.09924183 + outSlope: 0.096559614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.5913091 + inSlope: -0.40769616 + outSlope: -0.41127905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.53452885 + inSlope: -1.0344563 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.16980477 + inSlope: 0 + outSlope: -0.19468316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.15680146 + inSlope: -0.00044703367 + outSlope: 0.00044703527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.16980477 + inSlope: 0.36589837 + outSlope: 0.3663441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.20531897 + inSlope: 0.6609393 + outSlope: 0.66071814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.25727978 + inSlope: 0.8569666 + outSlope: 0.8565196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.31855997 + inSlope: 0.94637364 + outSlope: 0.94771135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.38242805 + inSlope: 0.9271478 + outSlope: 0.9267041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.4411574 + inSlope: 0.81092197 + outSlope: 0.8100279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.48984933 + inSlope: 0.6276375 + outSlope: 0.62540007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.5245535 + inSlope: 0.41127098 + outSlope: 0.41306058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.545117 + inSlope: 0.21100065 + outSlope: 0.21010657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.5533859 + inSlope: 0.058114585 + outSlope: 0.05632644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.5536001 + inSlope: -0.026822116 + outSlope: -0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.5507081 + inSlope: -0.037550963 + outSlope: -0.037550695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.5490726 + inSlope: -0.011622834 + outSlope: -0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.5490726 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.5490726 + inSlope: 0.046491668 + outSlope: 0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.5539169 + inSlope: -0.022351762 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.53980124 + inSlope: -0.61690867 + outSlope: -0.6177983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.46715683 + inSlope: -1.4814643 + outSlope: -1.4850512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.34009928 + inSlope: -1.8972176 + outSlope: -1.8985587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.21301515 + inSlope: -1.3793273 + outSlope: -1.3779862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.15680146 + inSlope: -0.0011175881 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.21301506 + inSlope: 1.408161 + outSlope: 1.4117373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.34009928 + inSlope: 1.9557793 + outSlope: 1.9540225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.46715683 + inSlope: 1.7434655 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7619857 + inSlope: 0 + outSlope: 0.09924147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.7684815 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.7619857 + inSlope: -0.18328446 + outSlope: -0.18238974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.74326813 + inSlope: -0.3558388 + outSlope: -0.35941637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.71315026 + inSlope: -0.5185609 + outSlope: -0.5176668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.6729303 + inSlope: -0.65893 + outSlope: -0.6589276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.6243251 + inSlope: -0.7581691 + outSlope: -0.75995994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.57116044 + inSlope: -0.8064516 + outSlope: -0.8073457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.51673436 + inSlope: -0.79661685 + outSlope: -0.7992962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.46568653 + inSlope: -0.730006 + outSlope: -0.73179674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.4207113 + inSlope: -0.620932 + outSlope: -0.62182605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.3846014 + inSlope: -0.481904 + outSlope: -0.4832451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.35806125 + inSlope: -0.3308061 + outSlope: -0.32857093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.34186786 + inSlope: -0.16674416 + outSlope: -0.16897812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.3362311 + inSlope: -0.041573983 + outSlope: -0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.3362311 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.33623108 + inSlope: 0.19446033 + outSlope: 0.19535442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.3617666 + inSlope: 0.74744296 + outSlope: 0.74744296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.43478176 + inSlope: 1.3549639 + outSlope: 1.3576363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.54372054 + inSlope: 1.6486542 + outSlope: 1.6522423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.6573967 + inSlope: 1.419784 + outSlope: 1.4188899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.7390176 + inSlope: 0.76800656 + outSlope: 0.76800656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.7684815 + inSlope: 0.00089407054 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.7390176 + inSlope: -0.7581718 + outSlope: -0.7581718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6573967 + inSlope: -1.4117373 + outSlope: -1.4126542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.54372054 + inSlope: -1.8820487 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.06489994 + inSlope: 0 + outSlope: -0.10874094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.07216554 + inSlope: 0.11756986 + outSlope: 0.118352585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.04916053 + inSlope: 0.5809223 + outSlope: 0.58136725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.0033925883 + inSlope: 0.81671655 + outSlope: 0.81695694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.056892656 + inSlope: 0.6247318 + outSlope: 0.6237818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.08866663 + inSlope: 0.25257492 + outSlope: 0.25201523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.096421674 + inSlope: 0.023692785 + outSlope: 0.023022316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.09526259 + inSlope: 0.017210858 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.098982744 + inSlope: 0.07811941 + outSlope: 0.078454405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.10591484 + inSlope: 0.07074308 + outSlope: 0.07085509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.10912489 + inSlope: -0.018663723 + outSlope: -0.018551962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.10419311 + inSlope: -0.1313166 + outSlope: -0.1318754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.09191024 + inSlope: -0.19311923 + outSlope: -0.19289571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.078438684 + inSlope: -0.14819218 + outSlope: -0.1479676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.07216541 + inSlope: -0.047161885 + outSlope: -0.04705046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.07216541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.07216541 + inSlope: -0.03397468 + outSlope: -0.03408644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.06760136 + inSlope: -0.103935696 + outSlope: -0.104047455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.058218915 + inSlope: -0.11214997 + outSlope: -0.11203741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.05268587 + inSlope: -0.2616814 + outSlope: -0.2626332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.023299944 + inSlope: -0.684858 + outSlope: -0.6859197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.03799914 + inSlope: -0.69290465 + outSlope: -0.6924576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.072165534 + inSlope: 0.3068897 + outSlope: 0.31013072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.003392592 + inSlope: 1.2477102 + outSlope: 1.2505252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.08872379 + inSlope: 0.5581235 + outSlope: 0.555562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.095262595 + inSlope: -0.007823243 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.1616752 + inSlope: 0 + outSlope: 0.0809131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.1563317 + inSlope: -0.12919272 + outSlope: -0.1294167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.17877959 + inSlope: -0.46491668 + outSlope: -0.46513852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.21977453 + inSlope: -0.39987162 + outSlope: -0.3992025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.23835647 + inSlope: 0.094771475 + outSlope: 0.09588906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.21643916 + inSlope: 0.5435949 + outSlope: 0.54381645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.17262368 + inSlope: 0.5221353 + outSlope: 0.5214666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.14909133 + inSlope: 0.13321652 + outSlope: 0.13232243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.15508845 + inSlope: -0.1408161 + outSlope: -0.14059208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.1676121 + inSlope: -0.17076686 + outSlope: -0.17032044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.17783432 + inSlope: -0.08337208 + outSlope: -0.08337208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.1794723 + inSlope: 0.05252664 + outSlope: 0.05297368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.17218515 + inSlope: 0.14394535 + outSlope: 0.14372183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.16163531 + inSlope: 0.12382877 + outSlope: 0.12427492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.1563316 + inSlope: 0.040456403 + outSlope: 0.04045669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.1563316 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.1563316 + inSlope: -0.018775482 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.15881146 + inSlope: -0.050514985 + outSlope: -0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.16286139 + inSlope: -0.043809455 + outSlope: -0.043585625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.16472854 + inSlope: -0.13545072 + outSlope: -0.13656928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.18064198 + inSlope: -0.059008654 + outSlope: -0.05766755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.17652334 + inSlope: 0.2536925 + outSlope: 0.25413954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.1563317 + inSlope: -0.33639404 + outSlope: -0.34041736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.21977453 + inSlope: -0.3638867 + outSlope: -0.36187506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.21631786 + inSlope: 0.7300086 + outSlope: 0.7322555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.14909108 + inSlope: 1.0615023 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.13556315 + inSlope: 0 + outSlope: -0.3372869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.15794249 + inSlope: 0.21323505 + outSlope: 0.21390638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.10675803 + inSlope: 1.3625635 + outSlope: 1.3643467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.02577689 + inSlope: 2.3049335 + outSlope: 2.305305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.20103437 + inSlope: 2.5798404 + outSlope: 2.580064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.36833245 + inSlope: 2.118053 + outSlope: 2.1180456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.485302 + inSlope: 1.1627345 + outSlope: 1.1622916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.5275507 + inSlope: 0.18149632 + outSlope: 0.17970818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.50998455 + inSlope: -0.48100993 + outSlope: -0.4819023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.4626543 + inSlope: -0.8721627 + outSlope: -0.8735069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.39304245 + inSlope: -1.1189293 + outSlope: -1.1175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.31316057 + inSlope: -1.1703383 + outSlope: -1.1716794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.23663607 + inSlope: -0.99957085 + outSlope: -0.9980062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.18011364 + inSlope: -0.5914276 + outSlope: -0.59209394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.1579425 + inSlope: -0.16718999 + outSlope: -0.1660736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.1579425 + inSlope: 0.00022351764 + outSlope: -0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.1579425 + inSlope: 0.18529612 + outSlope: 0.18574315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.1826413 + inSlope: 0.52705455 + outSlope: 0.52683103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.2280402 + inSlope: 0.520349 + outSlope: 0.5214629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.25219798 + inSlope: -0.5914234 + outSlope: -0.59500396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.14728047 + inSlope: -2.2602103 + outSlope: -2.2628925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.05207064 + inSlope: -2.2854679 + outSlope: -2.2842383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.15794249 + inSlope: 0.5605822 + outSlope: 0.5679583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.025776887 + inSlope: 3.971657 + outSlope: 3.9831119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.36879438 + inSlope: 3.6308205 + outSlope: 3.6255143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.52755105 + inSlope: 2.2164364 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.97533166 + inSlope: 0 + outSlope: -0.041127097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.97232026 + inSlope: 0.022351684 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9768438 + inSlope: 0.092983335 + outSlope: 0.092983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.97520417 + inSlope: -0.15467365 + outSlope: -0.15378013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9484379 + inSlope: -0.5614763 + outSlope: -0.55968815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.8997908 + inSlope: -0.7617481 + outSlope: -0.7608513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.85169584 + inSlope: -0.5605802 + outSlope: -0.5587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.8308953 + inSlope: -0.093877405 + outSlope: -0.092089266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.84027714 + inSlope: 0.25659823 + outSlope: 0.25838545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.8640829 + inSlope: 0.42378792 + outSlope: 0.42557758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.8955358 + inSlope: 0.47743365 + outSlope: 0.4756455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.92674917 + inSlope: 0.4211072 + outSlope: 0.4211072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.95179206 + inSlope: 0.29236105 + outSlope: 0.2941492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9670991 + inSlope: 0.14305128 + outSlope: 0.14126213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.97232026 + inSlope: 0.035762563 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.97232026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.97232026 + inSlope: -0.03129247 + outSlope: -0.029504327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.96791077 + inSlope: -0.09924183 + outSlope: -0.10192404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9581672 + inSlope: -0.12516987 + outSlope: -0.12516898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.952095 + inSlope: 0.14752059 + outSlope: 0.14930978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.9721801 + inSlope: 0.34779343 + outSlope: 0.34779343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.98218334 + inSlope: -0.10281811 + outSlope: -0.10102997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.97232026 + inSlope: 0.059008654 + outSlope: 0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.97520417 + inSlope: -0.19043702 + outSlope: -0.19133109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.8996252 + inSlope: -1.3670338 + outSlope: -1.3661617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.8308952 + inSlope: -1.2159555 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.14972714 + inSlope: 0 + outSlope: 0.6414933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.105334625 + inSlope: 0.55912733 + outSlope: 0.5586823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.07648901 + inSlope: 0.21792969 + outSlope: 0.21725836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.07648901 + inSlope: -0.00033527525 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.07648901 + inSlope: 0.034645233 + outSlope: 0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.07183906 + inSlope: 0.1248346 + outSlope: 0.12505767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.05987775 + inSlope: 0.21317917 + outSlope: 0.21306819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.04372932 + inSlope: 0.24994859 + outSlope: 0.24989271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0269683 + inSlope: 0.22972025 + outSlope: 0.22944003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.013417713 + inSlope: 0.15241054 + outSlope: 0.15232727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0067553744 + inSlope: 0.04931358 + outSlope: 0.04909006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.006863147 + inSlope: -0.02648684 + outSlope: -0.026654478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.010297339 + inSlope: -0.06544875 + outSlope: -0.06544875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.01560435 + inSlope: -0.08341399 + outSlope: -0.08359499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.021479484 + inSlope: -0.11684301 + outSlope: -0.11673208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.031297814 + inSlope: -0.20938013 + outSlope: -0.20954777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.049669724 + inSlope: -0.3354441 + outSlope: -0.33555585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.076489 + inSlope: -0.45452312 + outSlope: -0.45463488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.11073985 + inSlope: -0.4968797 + outSlope: -0.4973232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.14308743 + inSlope: -0.38735327 + outSlope: -0.3882501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.1632657 + inSlope: -0.18082577 + outSlope: -0.18060225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.16862856 + inSlope: -0.00044703527 + outSlope: -0.0006705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.1647289 + inSlope: 0.05923217 + outSlope: 0.05923217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.16144182 + inSlope: 0.0102818115 + outSlope: 0.010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.16338062 + inSlope: -0.022798799 + outSlope: -0.023022687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.1646375 + inSlope: -0.004023382 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.10359965 + inSlope: 0 + outSlope: 0.2437451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.11660163 + inSlope: 0.19613601 + outSlope: 0.1970308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.12948729 + inSlope: 0.09521851 + outSlope: 0.09477114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.12948729 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.12948729 + inSlope: -0.0091642225 + outSlope: -0.009387741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.12820734 + inSlope: -0.03129247 + outSlope: -0.031292357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.12499797 + inSlope: -0.05207942 + outSlope: -0.051967848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.12086128 + inSlope: -0.058896895 + outSlope: -0.058226343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.11682101 + inSlope: -0.051967848 + outSlope: -0.05152063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.113797665 + inSlope: -0.032633457 + outSlope: -0.03274533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.11250363 + inSlope: -0.010840605 + outSlope: -0.010840605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.11236497 + inSlope: 0.00022351764 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.112480745 + inSlope: 0.0050291466 + outSlope: 0.004917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.11296029 + inSlope: 0.012069952 + outSlope: 0.011734592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.11404945 + inSlope: 0.034086194 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.11739936 + inSlope: 0.07040805 + outSlope: 0.070296295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.123071246 + inSlope: 0.09667137 + outSlope: 0.09600082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.12948729 + inSlope: 0.054985337 + outSlope: 0.054314785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.12904167 + inSlope: -0.04246835 + outSlope: -0.042691562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.122187346 + inSlope: -0.07945995 + outSlope: -0.07890172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.11753802 + inSlope: -0.028833775 + outSlope: -0.029057292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.11855072 + inSlope: 0.034756992 + outSlope: 0.03498051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.12301922 + inSlope: 0.048279807 + outSlope: 0.048279807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.12555146 + inSlope: -0.017210858 + outSlope: -0.018104928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.12070542 + inSlope: -0.10930012 + outSlope: -0.10874308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.110989526 + inSlope: -0.15311204 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.3999407 + inSlope: 0 + outSlope: 2.4059353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.23323114 + inSlope: 1.8475901 + outSlope: 1.8453616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.15589462 + inSlope: 0.5844986 + outSlope: 0.58270836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.15589462 + inSlope: -0.00044703367 + outSlope: -0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.15589462 + inSlope: 0.18708426 + outSlope: 0.18753129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.13085976 + inSlope: 0.6578124 + outSlope: 0.6584806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.06792222 + inSlope: 1.0872977 + outSlope: 1.087525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.014297089 + inSlope: 1.2315542 + outSlope: 1.2317219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.09642623 + inSlope: 1.0849546 + outSlope: 1.0839449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.1591363 + inSlope: 0.65423375 + outSlope: 0.6535655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.1839046 + inSlope: 0.08784243 + outSlope: 0.08694836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.17083691 + inSlope: -0.34801695 + outSlope: -0.34846398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.1374258 + inSlope: -0.5938864 + outSlope: -0.5934393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.0916297 + inSlope: -0.71805036 + outSlope: -0.718604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.04163017 + inSlope: -0.7977846 + outSlope: -0.79717565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.014699251 + inSlope: -0.92762613 + outSlope: -0.92807317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.082072705 + inSlope: -1.0601441 + outSlope: -1.0601441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.1558947 + inSlope: -1.2208533 + outSlope: -1.2208533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.24439895 + inSlope: -1.4499589 + outSlope: -1.4524071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.34843776 + inSlope: -1.5552245 + outSlope: -1.5579178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.45161662 + inSlope: -1.4166547 + outSlope: -1.4166547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.53815687 + inSlope: -1.0782491 + outSlope: -1.076461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.5967149 + inSlope: -0.5900865 + outSlope: -0.58919245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.61801755 + inSlope: 0.0044703525 + outSlope: 0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.596014 + inSlope: 0.5990273 + outSlope: 0.599931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.5367073 + inSlope: 0.9101784 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.8982742 + inSlope: 0 + outSlope: 1.1470884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.9596415 + inSlope: 0.48637262 + outSlope: 0.48726845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.9762578 + inSlope: 0.09745368 + outSlope: 0.09745334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.9762578 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.9762578 + inSlope: 0.033080608 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.9804477 + inSlope: 0.1001359 + outSlope: 0.101923674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.9880165 + inSlope: 0.09477114 + outSlope: 0.094771475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.9916027 + inSlope: 0.0017881411 + outSlope: 0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.9880929 + inSlope: -0.093877405 + outSlope: -0.09208894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.9805843 + inSlope: -0.10013554 + outSlope: -0.1001359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.97646123 + inSlope: -0.014305129 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.97884715 + inSlope: 0.059902724 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.9840509 + inSlope: 0.08225449 + outSlope: 0.080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.9892424 + inSlope: 0.06347901 + outSlope: 0.06526668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.99237007 + inSlope: 0.026821924 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.9924826 + inSlope: -0.029504327 + outSlope: -0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.98775023 + inSlope: -0.11712324 + outSlope: -0.11801731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.9762578 + inSlope: -0.23782276 + outSlope: -0.23782276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.9546487 + inSlope: -0.4220013 + outSlope: -0.4237864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.9182524 + inSlope: -0.6392559 + outSlope: -0.6428367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.8692362 + inSlope: -0.7671125 + outSlope: -0.76532435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.81724983 + inSlope: -0.7152564 + outSlope: -0.7143623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.77566874 + inSlope: -0.44971746 + outSlope: -0.44792932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.7590966 + inSlope: 0.0080466345 + outSlope: 0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.7768553 + inSlope: 0.4702811 + outSlope: 0.473865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.82007384 + inSlope: 0.61423635 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.035151646 + inSlope: 0 + outSlope: -0.3512567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.058544315 + inSlope: -0.24229224 + outSlope: -0.24162255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.06743314 + inSlope: -0.06672002 + outSlope: -0.0663845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.06743314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.06743314 + inSlope: 0.025704527 + outSlope: 0.026151562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.06394834 + inSlope: 0.09901831 + outSlope: 0.0989062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.054253638 + inSlope: 0.18361908 + outSlope: 0.18283743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.03949643 + inSlope: 0.2510103 + outSlope: 0.25067502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.020834975 + inSlope: 0.30074298 + outSlope: 0.30085367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.0005644858 + inSlope: 0.33259305 + outSlope: 0.33315304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.023534961 + inSlope: 0.3479052 + outSlope: 0.34779343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.04691983 + inSlope: 0.3454465 + outSlope: 0.34555826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.06958585 + inSlope: 0.32689452 + outSlope: 0.32600045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.09043442 + inSlope: 0.29124346 + outSlope: 0.2914649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.10840736 + inSlope: 0.24072677 + outSlope: 0.24016969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.12248385 + inSlope: 0.17412023 + outSlope: 0.17434375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.13166618 + inSlope: 0.09343037 + outSlope: 0.09343037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.13495417 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.13166615 + inSlope: -0.09343037 + outSlope: -0.09320618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.122483835 + inSlope: -0.17423075 + outSlope: -0.17445551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.10840733 + inSlope: -0.2396109 + outSlope: -0.24005793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.09049553 + inSlope: -0.29101995 + outSlope: -0.29046115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.0695858 + inSlope: -0.3258887 + outSlope: -0.32622397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.04699233 + inSlope: -0.34455243 + outSlope: -0.3460053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.023534976 + inSlope: -0.34723464 + outSlope: -0.34746376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00063444674 + inSlope: -0.34310508 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.73847055 + inSlope: 0 + outSlope: 0.061690647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.7422008 + inSlope: 0.03755083 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.74355763 + inSlope: 0.010728846 + outSlope: 0.008940673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.74355763 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.74355763 + inSlope: -0.0026822116 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.7430297 + inSlope: -0.015199199 + outSlope: -0.015199144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.74153376 + inSlope: -0.027716087 + outSlope: -0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.73918056 + inSlope: -0.040233172 + outSlope: -0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.73607695 + inSlope: -0.05096202 + outSlope: -0.05006777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.7323491 + inSlope: -0.05722031 + outSlope: -0.059008654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.72815484 + inSlope: -0.064373076 + outSlope: -0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.7236895 + inSlope: -0.066161215 + outSlope: -0.066161215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.71918213 + inSlope: -0.065267146 + outSlope: -0.065267146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.7148873 + inSlope: -0.060796797 + outSlope: -0.06079636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.7110755 + inSlope: -0.05185572 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.708022 + inSlope: -0.037550963 + outSlope: -0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.7059989 + inSlope: -0.020563623 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.70526856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.7059989 + inSlope: 0.020563623 + outSlope: 0.020563476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.708022 + inSlope: 0.039338823 + outSlope: 0.039339103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.7110755 + inSlope: 0.05185609 + outSlope: 0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.7148745 + inSlope: 0.061690867 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.71918213 + inSlope: 0.06705529 + outSlope: 0.066161215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.7236754 + inSlope: 0.06705529 + outSlope: 0.06884343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.72815484 + inSlope: 0.065267146 + outSlope: 0.06616228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7323365 + inSlope: 0.05990369 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.23585607 + inSlope: 0 + outSlope: -0.06258471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.23992474 + inSlope: -0.041350614 + outSlope: -0.040903725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.24134538 + inSlope: -0.0102818115 + outSlope: -0.010505291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.24134538 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.24134538 + inSlope: 0.0040233172 + outSlope: 0.0040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.2407966 + inSlope: 0.016093269 + outSlope: 0.016093211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.2392144 + inSlope: 0.030621806 + outSlope: 0.030621916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.2366482 + inSlope: 0.045150563 + outSlope: 0.04537408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.23312715 + inSlope: 0.059008654 + outSlope: 0.059455477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.22870411 + inSlope: 0.071748905 + outSlope: 0.07174916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.22348897 + inSlope: 0.08247801 + outSlope: 0.08247801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.21767053 + inSlope: 0.08985409 + outSlope: 0.08940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.21152706 + inSlope: 0.09141871 + outSlope: 0.09141871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.20542525 + inSlope: 0.088065945 + outSlope: 0.0878418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.19980794 + inSlope: 0.07733655 + outSlope: 0.076890066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.1951712 + inSlope: 0.05856162 + outSlope: 0.05856162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.19203173 + inSlope: 0.03196302 + outSlope: 0.032410055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.19088513 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.1920317 + inSlope: -0.032186538 + outSlope: -0.032186307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.19517124 + inSlope: -0.058784716 + outSlope: -0.058338102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.19980797 + inSlope: -0.076890066 + outSlope: -0.076890066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.2054067 + inSlope: -0.088065945 + outSlope: -0.088065945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.21152705 + inSlope: -0.09231278 + outSlope: -0.09186575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.21765171 + inSlope: -0.09007761 + outSlope: -0.09007761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.22348896 + inSlope: -0.082925044 + outSlope: -0.083149895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.22868896 + inSlope: -0.0768913 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.63071185 + inSlope: 0 + outSlope: -0.11354655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.6230143 + inSlope: -0.081360124 + outSlope: -0.08225449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.6199414 + inSlope: -0.023245834 + outSlope: -0.025033886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.6199414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.6199414 + inSlope: 0.008940705 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.62115574 + inSlope: 0.03397468 + outSlope: 0.033974558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.6244684 + inSlope: 0.061690647 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.6293249 + inSlope: 0.081360415 + outSlope: 0.079572275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.63514435 + inSlope: 0.090301126 + outSlope: 0.0903008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.6413728 + inSlope: 0.092983 + outSlope: 0.092089266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.6475255 + inSlope: 0.08761891 + outSlope: 0.08851298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.65321636 + inSlope: 0.079572275 + outSlope: 0.077784136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.65817267 + inSlope: 0.06794936 + outSlope: 0.065267146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.6622373 + inSlope: 0.052750163 + outSlope: 0.05185572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.66535425 + inSlope: 0.038444757 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.66754085 + inSlope: 0.025928045 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.6688448 + inSlope: 0.0125169875 + outSlope: 0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.66928816 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.6688448 + inSlope: -0.014305129 + outSlope: -0.012516898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.66754085 + inSlope: -0.02592786 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.66535425 + inSlope: -0.040233172 + outSlope: -0.039339103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.66224855 + inSlope: -0.053644232 + outSlope: -0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.6581727 + inSlope: -0.06705529 + outSlope: -0.06884343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.65323305 + inSlope: -0.080466345 + outSlope: -0.080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6475255 + inSlope: -0.091195196 + outSlope: -0.089408495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.64139235 + inSlope: -0.09566709 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.14765109 + inSlope: 0 + outSlope: -0.10527643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.15460214 + inSlope: -0.07152539 + outSlope: -0.07130212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.15717062 + inSlope: -0.019222517 + outSlope: -0.019222448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.15717062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.15717062 + inSlope: 0.007376082 + outSlope: 0.0075995997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.15616845 + inSlope: 0.028833775 + outSlope: 0.028610155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.15334797 + inSlope: 0.053867556 + outSlope: 0.05386775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.14896318 + inSlope: 0.075325444 + outSlope: 0.07554896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.1432595 + inSlope: 0.09320685 + outSlope: 0.092983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.13649967 + inSlope: 0.10684104 + outSlope: 0.10661791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.12898052 + inSlope: 0.115782134 + outSlope: 0.1153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.12104233 + inSlope: 0.11891138 + outSlope: 0.11902314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.11307067 + inSlope: 0.11622917 + outSlope: 0.11622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.105492234 + inSlope: 0.10695319 + outSlope: 0.10717594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.09876589 + inSlope: 0.090635754 + outSlope: 0.09085992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.093370065 + inSlope: 0.06727881 + outSlope: 0.06705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.08978875 + inSlope: 0.036433373 + outSlope: 0.036433373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.08849444 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.08978874 + inSlope: -0.03654513 + outSlope: -0.036768388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.093370065 + inSlope: -0.067278326 + outSlope: -0.06750233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.098765865 + inSlope: -0.09097168 + outSlope: -0.09097168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.10546969 + inSlope: -0.1077355 + outSlope: -0.10751198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.11307067 + inSlope: -0.11689972 + outSlope: -0.11712324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.121017255 + inSlope: -0.11947017 + outSlope: -0.11991721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.12898052 + inSlope: -0.11622917 + outSlope: -0.11645456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.1364772 + inSlope: -0.112431176 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.6592223 + inSlope: 0 + outSlope: -0.20027108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.6458093 + inSlope: -0.1394745 + outSlope: -0.14036907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.6406803 + inSlope: -0.038445033 + outSlope: -0.038444895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.6406803 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.6406803 + inSlope: 0.015199199 + outSlope: 0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.6426931 + inSlope: 0.05632644 + outSlope: 0.05722031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.64827865 + inSlope: 0.106394015 + outSlope: 0.10460625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.65674025 + inSlope: 0.14305128 + outSlope: 0.14394535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.6673711 + inSlope: 0.16897933 + outSlope: 0.172555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.6794685 + inSlope: 0.18775414 + outSlope: 0.18686074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.6923442 + inSlope: 0.1940133 + outSlope: 0.19311923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.70533717 + inSlope: 0.19043702 + outSlope: 0.19222516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.7178216 + inSlope: 0.18060225 + outSlope: 0.17792003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.7292105 + inSlope: 0.15914455 + outSlope: 0.15824935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.73895645 + inSlope: 0.13053337 + outSlope: 0.12964022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.7465429 + inSlope: 0.092983335 + outSlope: 0.094771475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.7514697 + inSlope: 0.05096202 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.75322956 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.7514697 + inSlope: -0.04917388 + outSlope: -0.050961655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.7465429 + inSlope: -0.0947708 + outSlope: -0.092983335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.73895645 + inSlope: -0.12874615 + outSlope: -0.12874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.7292439 + inSlope: -0.15735641 + outSlope: -0.16003862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.7178216 + inSlope: -0.17792003 + outSlope: -0.18060225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.70537734 + inSlope: -0.19043702 + outSlope: -0.19311923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.6923442 + inSlope: -0.19311923 + outSlope: -0.19401643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.67950785 + inSlope: -0.19491051 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.06283197 + inSlope: 0 + outSlope: -0.118687436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.07075674 + inSlope: -0.08236595 + outSlope: -0.08191921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.07383148 + inSlope: -0.023022316 + outSlope: -0.023022234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.07383148 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.07383148 + inSlope: 0.009052464 + outSlope: 0.008717188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.07262196 + inSlope: 0.0341982 + outSlope: 0.034198076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.06928508 + inSlope: 0.062361196 + outSlope: 0.06303197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.06428554 + inSlope: 0.084601425 + outSlope: 0.08415439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.05810172 + inSlope: 0.09829188 + outSlope: 0.09868268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.051202048 + inSlope: 0.10611462 + outSlope: 0.106506154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.04402549 + inSlope: 0.10767962 + outSlope: 0.107232586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.036967013 + inSlope: 0.103097506 + outSlope: 0.103097506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.030367773 + inSlope: 0.09410092 + outSlope: 0.093933284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.02451232 + inSlope: 0.08102514 + outSlope: 0.081136316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.019633088 + inSlope: 0.06487553 + outSlope: 0.06493187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.015922807 + inSlope: 0.045765236 + outSlope: 0.045709357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.013556093 + inSlope: 0.023972265 + outSlope: 0.024028145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0127190575 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.013556082 + inSlope: -0.023748748 + outSlope: -0.023972094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.015922807 + inSlope: -0.045373753 + outSlope: -0.04542996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.019633114 + inSlope: -0.06398192 + outSlope: -0.0637584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.024495497 + inSlope: -0.07996343 + outSlope: -0.08001931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.030367773 + inSlope: -0.09264806 + outSlope: -0.092983335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.036945503 + inSlope: -0.101532884 + outSlope: -0.1020358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.04402549 + inSlope: -0.10589148 + outSlope: -0.106172584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.051179826 + inSlope: -0.106675506 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.7346273 + inSlope: 0 + outSlope: 0.14841518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.7443266 + inSlope: 0.10013554 + outSlope: 0.09834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.7479138 + inSlope: 0.026822116 + outSlope: 0.02682202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.7479138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.7479138 + inSlope: -0.010728846 + outSlope: -0.009834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.7465139 + inSlope: -0.040233172 + outSlope: -0.03933896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.7425758 + inSlope: -0.07420759 + outSlope: -0.07510193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.73645747 + inSlope: -0.106394395 + outSlope: -0.106394395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.7285029 + inSlope: -0.12964022 + outSlope: -0.12963976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.71907496 + inSlope: -0.14930925 + outSlope: -0.14930978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.70857984 + inSlope: -0.16182676 + outSlope: -0.16182676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.69748235 + inSlope: -0.16719119 + outSlope: -0.16719119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.6863127 + inSlope: -0.16450898 + outSlope: -0.1636149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.67566454 + inSlope: -0.15109792 + outSlope: -0.15109684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.66618556 + inSlope: -0.12874523 + outSlope: -0.12874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.65856063 + inSlope: -0.095665544 + outSlope: -0.094771475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.65348876 + inSlope: -0.05185609 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.6516534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.65348876 + inSlope: 0.05096202 + outSlope: 0.05185572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.65856063 + inSlope: 0.0947708 + outSlope: 0.095665544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.66618556 + inSlope: 0.12785208 + outSlope: 0.12695801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.6756327 + inSlope: 0.15020385 + outSlope: 0.15288606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.6863127 + inSlope: 0.1636149 + outSlope: 0.16450898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.6974473 + inSlope: 0.16629712 + outSlope: 0.16629712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.70857984 + inSlope: 0.16182676 + outSlope: 0.16182937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7190436 + inSlope: 0.15557078 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + m_EulerEditorCurves: + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -90 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -90 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -90 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -90 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -90 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -90 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000050089557 + inSlope: 0.00001878358 + outSlope: 0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000050089557 + inSlope: 0.00001878358 + outSlope: 0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000050089557 + inSlope: 0.00001878358 + outSlope: 0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 142.65065 + inSlope: -0.000057220444 + outSlope: -0.000057220444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 142.65065 + inSlope: -0.000057220444 + outSlope: -0.000057220444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 142.65065 + inSlope: -0.000057220444 + outSlope: -0.000057220444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000050089557 + inSlope: -0.00001878358 + outSlope: -0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000050089557 + inSlope: -0.00001878358 + outSlope: -0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.0000050089557 + inSlope: -0.00001878358 + outSlope: -0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone18" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000105442126 + inSlope: 0.0000047448834 + outSlope: 0.0000047448834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.000000105442126 + inSlope: 0.0000047448834 + outSlope: 0.0000047448834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.000000105442176 + inSlope: 0.0000047449025 + outSlope: 0.0000047449025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.000000105442176 + inSlope: 0.0000047448852 + outSlope: 0.0000047448852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000000105442176 + inSlope: 0.0000047449025 + outSlope: 0.0000047449025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00000010544217 + inSlope: 0.0000047449025 + outSlope: 0.0000047449025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0000001054421 + inSlope: 0.000004744882 + outSlope: 0.000004744882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.000000105441984 + inSlope: 0.000004744894 + outSlope: 0.000004744894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.00000010544216 + inSlope: 0.000004744902 + outSlope: 0.000004744902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.00000010544215 + inSlope: 0.000004744884 + outSlope: 0.000004744884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.00000010544202 + inSlope: 0.0000047448957 + outSlope: 0.0000047448957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.000000105442304 + inSlope: 0.0000047449084 + outSlope: 0.0000047449084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000010544194 + inSlope: 0.000004744892 + outSlope: 0.000004744892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.000000105442034 + inSlope: 0.000004744896 + outSlope: 0.000004744896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.00000010544197 + inSlope: 0.000004744859 + outSlope: 0.000004744859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.00000010544208 + inSlope: 0.000004744898 + outSlope: 0.000004744898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.00000010544184 + inSlope: 0.0000047448875 + outSlope: 0.0000047448875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.00000010544182 + inSlope: 0.0000047448866 + outSlope: 0.0000047448866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.00000010544184 + inSlope: 0.0000047448875 + outSlope: 0.0000047448875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.00000010544208 + inSlope: 0.0000047448643 + outSlope: 0.0000047448643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.00000010544197 + inSlope: 0.000004744893 + outSlope: 0.000004744893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.00000010544197 + inSlope: 0.000004744893 + outSlope: 0.000004744893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.00000010544194 + inSlope: 0.000004744892 + outSlope: 0.000004744892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.00000010544235 + inSlope: 0.0000047449103 + outSlope: 0.0000047449103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000010544202 + inSlope: 0.0000047448957 + outSlope: 0.0000047448957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00000010544221 + inSlope: 0.0000047448702 + outSlope: 0.0000047448702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -91.589134 + inSlope: 8.495156 + outSlope: 8.495156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -91.022736 + inSlope: 5.8598175 + outSlope: 5.8598175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -90.80789 + inSlope: 1.6108719 + outSlope: 1.6108719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -90.80789 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -90.80789 + inSlope: -0.63171446 + outSlope: -0.63171446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -90.8921 + inSlope: -2.3895288 + outSlope: -2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -91.12651 + inSlope: -4.437092 + outSlope: -4.437092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -91.48382 + inSlope: -6.0768185 + outSlope: -6.0768185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -91.93671 + inSlope: -7.3052287 + outSlope: -7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -92.45787 + inSlope: -8.124369 + outSlope: -8.124369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -93.02 + inSlope: -8.535012 + outSlope: -8.535012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -93.59578 + inSlope: -8.533639 + outSlope: -8.533639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -94.15791 + inSlope: -8.125084 + outSlope: -8.125084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -94.679085 + inSlope: -7.3052287 + outSlope: -7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -95.13197 + inSlope: -6.076775 + outSlope: -6.076775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -95.48928 + inSlope: -4.438481 + outSlope: -4.438481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -95.72369 + inSlope: -2.3895288 + outSlope: -2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -95.8079 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -95.72369 + inSlope: 2.3895288 + outSlope: 2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -95.48928 + inSlope: 4.4377623 + outSlope: 4.4377623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -95.13197 + inSlope: 6.064459 + outSlope: 6.064459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -94.68062 + inSlope: 7.3059154 + outSlope: 7.3059154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -94.15791 + inSlope: 8.122337 + outSlope: 8.122337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -93.59757 + inSlope: 8.533639 + outSlope: 8.533639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -93.02 + inSlope: 8.535012 + outSlope: 8.535012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -92.45957 + inSlope: 8.405862 + outSlope: 8.405862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.9083327e-14 + inSlope: -8.587475e-13 + outSlope: -8.587475e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -5.0888872e-14 + inSlope: 2.2899933e-12 + outSlope: 2.2899933e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 1.8447216e-13 + inSlope: -8.301255e-12 + outSlope: -8.301255e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 1.8447216e-13 + inSlope: -8.301225e-12 + outSlope: -8.301225e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 1.8447216e-13 + inSlope: -8.301255e-12 + outSlope: -8.301255e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 6.99722e-14 + inSlope: -3.1487519e-12 + outSlope: -3.1487519e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -1.01777744e-13 + inSlope: 4.5799866e-12 + outSlope: 4.5799866e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 2.3536105e-13 + inSlope: -1.0591257e-11 + outSlope: -1.0591257e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 6.997219e-14 + inSlope: -3.1487517e-12 + outSlope: -3.1487517e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -1.2086106e-13 + inSlope: 5.4387332e-12 + outSlope: 5.4387332e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -6.361109e-14 + inSlope: 2.8625017e-12 + outSlope: 2.8625017e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -2.1309713e-13 + inSlope: 9.5893805e-12 + outSlope: 9.5893805e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -1.4948606e-13 + inSlope: 6.726879e-12 + outSlope: 6.726879e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 6.361109e-15 + inSlope: -2.862502e-13 + outSlope: -2.862502e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 2.2263882e-13 + inSlope: -1.0018685e-11 + outSlope: -1.0018685e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 1.1131941e-13 + inSlope: -5.0093783e-12 + outSlope: -5.0093783e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 1.1768052e-13 + inSlope: -5.2956285e-12 + outSlope: -5.2956285e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -5.4069427e-14 + inSlope: 2.4331264e-12 + outSlope: 2.4331264e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 1.1768052e-13 + inSlope: -5.2956285e-12 + outSlope: -5.2956285e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 1.1131941e-13 + inSlope: -5.0093423e-12 + outSlope: -5.0093423e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 2.2263882e-13 + inSlope: -1.0018757e-11 + outSlope: -1.0018757e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -7.951386e-14 + inSlope: 3.5781272e-12 + outSlope: 3.5781272e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -1.4948606e-13 + inSlope: 6.726879e-12 + outSlope: 6.726879e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 2.0673605e-13 + inSlope: -9.303131e-12 + outSlope: -9.303131e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -6.361109e-14 + inSlope: 2.8625017e-12 + outSlope: 2.8625017e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.269442e-14 + inSlope: 3.7212256e-12 + outSlope: 3.7212256e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000006990613 + inSlope: 0.000002621479 + outSlope: 0.000002621479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000006990613 + inSlope: 0.000002621479 + outSlope: 0.000002621479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000006990613 + inSlope: 0.000002621479 + outSlope: 0.000002621479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 57.3945 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 57.3945 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 57.3945 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.798888e-13 + inSlope: 1.0495827e-12 + outSlope: 1.0495827e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.798888e-13 + inSlope: 1.0495827e-12 + outSlope: 1.0495827e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.798888e-13 + inSlope: 1.0495827e-12 + outSlope: 1.0495827e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone18/Bone19/Bone20" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000050089557 + inSlope: 0.00001878358 + outSlope: 0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000050089557 + inSlope: 0.00001878358 + outSlope: 0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000050089557 + inSlope: 0.00001878358 + outSlope: 0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 143.1301 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 143.1301 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 143.1301 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.0000050089557 + inSlope: -0.00001878358 + outSlope: -0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.0000050089557 + inSlope: -0.00001878358 + outSlope: -0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.0000050089557 + inSlope: -0.00001878358 + outSlope: -0.00001878358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone15" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000014118875 + inSlope: 0.0000063534767 + outSlope: 0.0000063534767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.00000014118858 + inSlope: 0.000006353469 + outSlope: 0.000006353469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.00000014118861 + inSlope: 0.0000063534935 + outSlope: 0.0000063534935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.00000014118861 + inSlope: 0.000006353471 + outSlope: 0.000006353471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.00000014118861 + inSlope: 0.0000063534935 + outSlope: 0.0000063534935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00000014118876 + inSlope: 0.0000063535003 + outSlope: 0.0000063535003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.00000014118861 + inSlope: 0.000006353471 + outSlope: 0.000006353471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.00000014118855 + inSlope: 0.0000063534912 + outSlope: 0.0000063534912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.00000014118876 + inSlope: 0.0000063535003 + outSlope: 0.0000063535003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.00000014118883 + inSlope: 0.0000063534812 + outSlope: 0.0000063534812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.00000014118899 + inSlope: 0.000006353511 + outSlope: 0.000006353511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.00000014118861 + inSlope: 0.0000063534935 + outSlope: 0.0000063534935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000014118902 + inSlope: 0.000006353512 + outSlope: 0.000006353512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.00000014118869 + inSlope: 0.000006353497 + outSlope: 0.000006353497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.00000014118868 + inSlope: 0.000006353451 + outSlope: 0.000006353451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.00000014118875 + inSlope: 0.0000063534994 + outSlope: 0.0000063534994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.00000014118876 + inSlope: 0.0000063535003 + outSlope: 0.0000063535003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0000001411888 + inSlope: 0.000006353502 + outSlope: 0.000006353502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.00000014118876 + inSlope: 0.0000063535003 + outSlope: 0.0000063535003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.00000014118875 + inSlope: 0.000006353454 + outSlope: 0.000006353454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.00000014118868 + inSlope: 0.0000063534967 + outSlope: 0.0000063534967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.0000001411889 + inSlope: 0.0000063535067 + outSlope: 0.0000063535067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.00000014118902 + inSlope: 0.000006353512 + outSlope: 0.000006353512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.00000014118886 + inSlope: 0.000006353505 + outSlope: 0.000006353505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000014118899 + inSlope: 0.000006353511 + outSlope: 0.000006353511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00000014118882 + inSlope: 0.0000063534576 + outSlope: 0.0000063534576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -90.12455 + inSlope: -8.49653 + outSlope: -8.49653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -90.690956 + inSlope: -5.8598175 + outSlope: -5.8598175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -90.90579 + inSlope: -1.6115586 + outSlope: -1.6115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -90.90579 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -90.90579 + inSlope: 0.63171446 + outSlope: 0.63171446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -90.821594 + inSlope: 2.3895288 + outSlope: 2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -90.58718 + inSlope: 4.4377785 + outSlope: 4.4377785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -90.22988 + inSlope: 6.0768185 + outSlope: 6.0768185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -89.776985 + inSlope: 7.3052287 + outSlope: 7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -89.25583 + inSlope: 8.125055 + outSlope: 8.125055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -88.69369 + inSlope: 8.534326 + outSlope: 8.534326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -88.117905 + inSlope: 8.534326 + outSlope: 8.534326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -87.55577 + inSlope: 8.124397 + outSlope: 8.124397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -87.0346 + inSlope: 7.3052287 + outSlope: 7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -86.58172 + inSlope: 6.076775 + outSlope: 6.076775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -86.22441 + inSlope: 4.438481 + outSlope: 4.438481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -85.98999 + inSlope: 2.3895288 + outSlope: 2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -85.90579 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -85.98999 + inSlope: -2.3902154 + outSlope: -2.3902154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -86.22441 + inSlope: -4.4377623 + outSlope: -4.4377623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -86.58172 + inSlope: -6.0651455 + outSlope: -6.0651455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -87.03307 + inSlope: -7.3052287 + outSlope: -7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -87.55577 + inSlope: -8.123024 + outSlope: -8.123024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -88.11611 + inSlope: -8.535012 + outSlope: -8.535012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -88.69369 + inSlope: -8.535012 + outSlope: -8.535012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -89.25411 + inSlope: -8.4065485 + outSlope: -8.4065485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 3.9438876e-13 + inSlope: -1.7747448e-11 + outSlope: -1.7747448e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 3.562221e-13 + inSlope: -1.6029953e-11 + outSlope: -1.6029953e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 3.8802766e-13 + inSlope: -1.746126e-11 + outSlope: -1.746126e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 3.8802766e-13 + inSlope: -1.7461197e-11 + outSlope: -1.7461197e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 3.8802766e-13 + inSlope: -1.746126e-11 + outSlope: -1.746126e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 2.6716655e-13 + inSlope: -1.2022506e-11 + outSlope: -1.2022506e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 2.2263882e-13 + inSlope: -1.001872e-11 + outSlope: -1.001872e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 4.643609e-13 + inSlope: -2.089626e-11 + outSlope: -2.089626e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 3.6258317e-13 + inSlope: -1.6316257e-11 + outSlope: -1.6316257e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 1.5902773e-13 + inSlope: -7.1562287e-12 + outSlope: -7.1562287e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 2.7352767e-13 + inSlope: -1.2308757e-11 + outSlope: -1.2308757e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 6.361109e-13 + inSlope: -2.8625017e-11 + outSlope: -2.8625017e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 6.2974967e-13 + inSlope: -2.8338762e-11 + outSlope: -2.8338762e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 1.9719438e-13 + inSlope: -8.873756e-12 + outSlope: -8.873756e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 5.4705535e-13 + inSlope: -2.4617338e-11 + outSlope: -2.4617338e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 1.8447213e-13 + inSlope: -8.301254e-12 + outSlope: -8.301254e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 2.798888e-13 + inSlope: -1.25950075e-11 + outSlope: -1.25950075e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 3.2441655e-13 + inSlope: -1.459876e-11 + outSlope: -1.459876e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 2.798888e-13 + inSlope: -1.25950075e-11 + outSlope: -1.25950075e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 1.8447213e-13 + inSlope: -8.301195e-12 + outSlope: -8.301195e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 5.4705535e-13 + inSlope: -2.4617515e-11 + outSlope: -2.4617515e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 6.869998e-13 + inSlope: -3.091502e-11 + outSlope: -3.091502e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 6.2974967e-13 + inSlope: -2.8338762e-11 + outSlope: -2.8338762e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 3.6258323e-13 + inSlope: -1.631626e-11 + outSlope: -1.631626e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 2.7352767e-13 + inSlope: -1.2308757e-11 + outSlope: -1.2308757e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 7.5061084e-13 + inSlope: -3.3777276e-11 + outSlope: -3.3777276e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000027404158 + inSlope: 0.0000010276557 + outSlope: 0.0000010276557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000027404158 + inSlope: 0.0000010276557 + outSlope: 0.0000010276557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00000027404158 + inSlope: 0.0000010276557 + outSlope: 0.0000010276557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 47.873215 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 47.873215 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 47.873215 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -6.1066647e-13 + inSlope: 2.2899987e-12 + outSlope: 2.2899987e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -6.1066647e-13 + inSlope: 2.2899987e-12 + outSlope: 2.2899987e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -6.1066647e-13 + inSlope: 2.2899987e-12 + outSlope: 2.2899987e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone15/Bone16/Bone17" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000050159197 + inSlope: 0.00022571579 + outSlope: 0.00022571579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0000052293635 + inSlope: 0.00023532074 + outSlope: 0.00023532074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0000051226416 + inSlope: 0.00023051909 + outSlope: 0.00023051909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0000051226416 + inSlope: 0.00023051827 + outSlope: 0.00023051827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.000004695755 + inSlope: 0.00021130916 + outSlope: 0.00021130916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.000005336085 + inSlope: 0.00024012319 + outSlope: 0.00024012319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0000051226416 + inSlope: 0.00023051909 + outSlope: 0.00023051909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.000004695755 + inSlope: 0.00021130916 + outSlope: 0.00021130916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.000004909198 + inSlope: 0.00022091335 + outSlope: 0.00022091335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000051226416 + inSlope: 0.00023051909 + outSlope: 0.00023051909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.0000051226416 + inSlope: 0.00023051909 + outSlope: 0.00023051909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.000004909198 + inSlope: 0.00022091255 + outSlope: 0.00022091255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0000051226416 + inSlope: 0.00023051909 + outSlope: 0.00023051909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0000051226416 + inSlope: 0.00023051909 + outSlope: 0.00023051909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.000004909198 + inSlope: 0.00022091255 + outSlope: 0.00022091255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.000004909198 + inSlope: 0.00022091414 + outSlope: 0.00022091414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000051226416 + inSlope: 0.00023051909 + outSlope: 0.00023051909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.000005336085 + inSlope: 0.00024012233 + outSlope: 0.00024012233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 150.78125 + inSlope: -8.49653 + outSlope: -8.49653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 150.21484 + inSlope: -5.8598175 + outSlope: -5.8598175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 149.99998 + inSlope: -1.6115586 + outSlope: -1.6115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 149.99998 + inSlope: -332.65622 + outSlope: -332.65622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 105.00001 + inSlope: -323.7224 + outSlope: -323.7224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 105.08421 + inSlope: 2.3902154 + outSlope: 2.3902154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 105.31862 + inSlope: 4.4377785 + outSlope: 4.4377785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 105.67593 + inSlope: 6.077162 + outSlope: 6.077162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 106.128815 + inSlope: 7.304542 + outSlope: 7.304542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 106.64998 + inSlope: 8.125055 + outSlope: 8.125055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 107.212105 + inSlope: 8.534669 + outSlope: 8.534669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 107.787895 + inSlope: 8.533982 + outSlope: 8.533982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 108.35002 + inSlope: 8.125084 + outSlope: 8.125084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 108.87119 + inSlope: 7.305572 + outSlope: 7.305572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 109.32408 + inSlope: 6.0760884 + outSlope: 6.0760884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 109.68139 + inSlope: 4.437451 + outSlope: 4.437451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 109.9158 + inSlope: 2.3895288 + outSlope: 2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 110 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 109.9158 + inSlope: -2.3895288 + outSlope: -2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 109.68139 + inSlope: -4.4381056 + outSlope: -4.4381056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 109.32408 + inSlope: -6.0651455 + outSlope: -6.0651455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 108.87273 + inSlope: -7.3052287 + outSlope: -7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 108.35002 + inSlope: -8.123711 + outSlope: -8.123711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 107.78968 + inSlope: -8.533982 + outSlope: -8.533982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 107.212105 + inSlope: -8.535356 + outSlope: -8.535356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 106.65168 + inSlope: -8.406205 + outSlope: -8.406205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -4.999994 + inSlope: -0.000278949 + outSlope: -0.000278949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -4.9999943 + inSlope: -0.0002574914 + outSlope: -0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -4.9999943 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -4.9999943 + inSlope: -0.0002574914 + outSlope: -0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -4.999994 + inSlope: -0.000278949 + outSlope: -0.000278949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -4.999994 + inSlope: -0.000278949 + outSlope: -0.000278949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -4.999994 + inSlope: -0.00027894802 + outSlope: -0.00027894802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -4.999994 + inSlope: -0.00027894802 + outSlope: -0.00027894802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -4.999994 + inSlope: -0.00027895 + outSlope: -0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -4.999994 + inSlope: -0.00027894802 + outSlope: -0.00027894802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone24" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.9215503 + inSlope: 2.244445 + outSlope: 2.244445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -1.7718635 + inSlope: 1.6334181 + outSlope: 1.6334181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -1.7038239 + inSlope: 0.510044 + outSlope: 0.510044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -1.7038239 + inSlope: -0.0001341101 + outSlope: -0.0001341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -1.7038242 + inSlope: 0.24157606 + outSlope: 0.24157606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -1.6716079 + inSlope: 0.84628606 + outSlope: 0.84628606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -1.5910668 + inSlope: 1.3891875 + outSlope: 1.3891875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -1.486364 + inSlope: 1.5706012 + outSlope: 1.5706012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -1.3816608 + inSlope: 1.388758 + outSlope: 1.388758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -1.3011198 + inSlope: 0.84538716 + outSlope: 0.84538716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -1.2689031 + inSlope: 0.12211037 + outSlope: 0.12211037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -1.284797 + inSlope: -0.44120234 + outSlope: -0.44120234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -1.3277997 + inSlope: -0.79604286 + outSlope: -0.79604286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -1.3908932 + inSlope: -1.0446784 + outSlope: -1.0446784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -1.4670602 + inSlope: -1.1877123 + outSlope: -1.1877123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -1.5492824 + inSlope: -1.2265056 + outSlope: -1.2265056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -1.6305432 + inSlope: -1.1588656 + outSlope: -1.1588656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -1.703824 + inSlope: -1.140648 + outSlope: -1.140648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -1.7825737 + inSlope: -1.2931263 + outSlope: -1.2931263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -1.8762319 + inSlope: -1.4187832 + outSlope: -1.4187832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -1.9717638 + inSlope: -1.3475324 + outSlope: -1.3475324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -2.0559049 + inSlope: -1.0843645 + outSlope: -1.0843645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -2.116319 + inSlope: -0.62479436 + outSlope: -0.62479436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -2.1392765 + inSlope: 0.008668908 + outSlope: 0.008668908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.1151555 + inSlope: 0.64532936 + outSlope: 0.64532936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.0531852 + inSlope: 0.9294011 + outSlope: 0.9294011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 10.011397 + inSlope: -25.685925 + outSlope: -25.685925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 8.299041 + inSlope: -18.678726 + outSlope: -18.678726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 7.5207057 + inSlope: -5.8371577 + outSlope: -5.8371577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 7.5207057 + inSlope: 0.000021457616 + outSlope: 0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 7.5207057 + inSlope: -2.766476 + outSlope: -2.766476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 7.151804 + inSlope: -9.683514 + outSlope: -9.683514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 6.229541 + inSlope: -15.908977 + outSlope: -15.908977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 5.03058 + inSlope: -17.984015 + outSlope: -17.984015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 3.8315969 + inSlope: -15.908583 + outSlope: -15.908583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 2.9092846 + inSlope: -9.68365 + outSlope: -9.68365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 2.540358 + inSlope: -1.4013804 + outSlope: -1.4013804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 2.7224116 + inSlope: 5.0592303 + outSlope: 5.0592303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 3.2149637 + inSlope: 9.113951 + outSlope: 9.113951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 3.9375954 + inSlope: 11.961891 + outSlope: 11.961891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 4.809889 + inSlope: 13.603823 + outSlope: 13.603823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 5.751438 + inSlope: 14.039682 + outSlope: 14.039682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 6.681842 + inSlope: 13.269308 + outSlope: 13.269308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 7.520706 + inSlope: 13.04971 + outSlope: 13.04971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 8.421844 + inSlope: 14.794521 + outSlope: 14.794521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 9.493326 + inSlope: 16.232456 + outSlope: 16.232456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 10.586124 + inSlope: 15.413661 + outSlope: 15.413661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 11.548555 + inSlope: 12.4007435 + outSlope: 12.4007435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 12.239569 + inSlope: 7.151849 + outSlope: 7.151849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 12.502136 + inSlope: -0.10025034 + outSlope: -0.10025034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 12.226194 + inSlope: -7.386167 + outSlope: -7.386167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 11.517272 + inSlope: -10.633284 + outSlope: -10.633284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.31756362 + inSlope: 0.088680305 + outSlope: 0.088680305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.3219718 + inSlope: 0.02901472 + outSlope: 0.02901472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.32397613 + inSlope: 0.010917942 + outSlope: 0.010917942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.32397613 + inSlope: -0.00006839615 + outSlope: -0.00006839615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.32397574 + inSlope: -0.013097239 + outSlope: -0.013097239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.32211986 + inSlope: -0.046312407 + outSlope: -0.046312407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.31748116 + inSlope: -0.081329726 + outSlope: -0.081329726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.31145203 + inSlope: -0.0963504 + outSlope: -0.0963504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.30542454 + inSlope: -0.08809858 + outSlope: -0.08809858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.3007889 + inSlope: -0.053902872 + outSlope: -0.053902872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.29893497 + inSlope: -0.004121218 + outSlope: -0.004121218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.30032033 + inSlope: 0.037907697 + outSlope: 0.037907697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.30389357 + inSlope: 0.06387955 + outSlope: 0.06387955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.3087806 + inSlope: 0.0753621 + outSlope: 0.0753621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.31410745 + inSlope: 0.07391988 + outSlope: 0.07391988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.31899855 + inSlope: 0.060501304 + outSlope: 0.060501304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.32257992 + inSlope: 0.03392193 + outSlope: 0.03392193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.32397598 + inSlope: 0.0013116015 + outSlope: 0.0013116015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.32303384 + inSlope: -0.027016576 + outSlope: -0.027016576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.3206614 + inSlope: -0.045225788 + outSlope: -0.045225788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.3175732 + inSlope: -0.05182569 + outSlope: -0.05182569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.31449234 + inSlope: -0.04571025 + outSlope: -0.04571025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.31210557 + inSlope: -0.028255757 + outSlope: -0.028255757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.3111544 + inSlope: -0.0019325335 + outSlope: -0.0019325335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.3118642 + inSlope: 0.020371396 + outSlope: 0.020371396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.31368816 + inSlope: 0.02000379 + outSlope: 0.02000379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone24/Bone25/Bone26" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.03962769 + inSlope: -0.000027660208 + outSlope: -0.000027660208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.03962769 + inSlope: -0.000027660208 + outSlope: -0.000027660208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.03962769 + inSlope: -0.000027660308 + outSlope: -0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.03962769 + inSlope: -0.000027660208 + outSlope: -0.000027660208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.03962769 + inSlope: -0.000027660308 + outSlope: -0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.039627906 + inSlope: -0.000037383325 + outSlope: -0.000037383325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.03962769 + inSlope: -0.000027660208 + outSlope: -0.000027660208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.039627265 + inSlope: -0.000008549549 + outSlope: -0.000008549549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.03962769 + inSlope: -0.000027660308 + outSlope: -0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.03962769 + inSlope: -0.000027660208 + outSlope: -0.000027660208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.03962769 + inSlope: -0.000027660308 + outSlope: -0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.039627906 + inSlope: -0.000037383325 + outSlope: -0.000037383325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.039627478 + inSlope: -0.000018104927 + outSlope: -0.000018104927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.039627478 + inSlope: -0.000018104927 + outSlope: -0.000018104927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.03962769 + inSlope: -0.00002766011 + outSlope: -0.00002766011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.03962769 + inSlope: -0.000027660308 + outSlope: -0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.039627478 + inSlope: -0.000018104927 + outSlope: -0.000018104927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.039627906 + inSlope: -0.000037383325 + outSlope: -0.000037383325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.039627478 + inSlope: -0.000018104927 + outSlope: -0.000018104927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.03962769 + inSlope: -0.00002766011 + outSlope: -0.00002766011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.03962769 + inSlope: -0.000027660308 + outSlope: -0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.039627478 + inSlope: -0.000018104927 + outSlope: -0.000018104927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.039627478 + inSlope: -0.000018104927 + outSlope: -0.000018104927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.039627478 + inSlope: -0.000018104927 + outSlope: -0.000018104927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.03962769 + inSlope: -0.000027660308 + outSlope: -0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.03962769 + inSlope: -0.00002766011 + outSlope: -0.00002766011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 153.76575 + inSlope: 8.495156 + outSlope: 8.495156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 154.33214 + inSlope: 5.859131 + outSlope: 5.859131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 154.547 + inSlope: 1.6108719 + outSlope: 1.6108719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 154.547 + inSlope: -296.60263 + outSlope: -296.60263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 114.547 + inSlope: -291.33435 + outSlope: -291.33435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 114.46279 + inSlope: -2.3891854 + outSlope: -2.3891854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 114.228386 + inSlope: -4.438122 + outSlope: -4.438122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 113.87108 + inSlope: -6.077505 + outSlope: -6.077505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 113.41819 + inSlope: -7.3062587 + outSlope: -7.3062587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 112.897026 + inSlope: -8.124025 + outSlope: -8.124025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 112.33489 + inSlope: -8.534669 + outSlope: -8.534669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 111.75911 + inSlope: -8.534326 + outSlope: -8.534326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 111.196976 + inSlope: -8.125084 + outSlope: -8.125084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 110.67581 + inSlope: -7.304542 + outSlope: -7.304542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 110.222916 + inSlope: -6.0760884 + outSlope: -6.0760884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 109.865616 + inSlope: -4.4391675 + outSlope: -4.4391675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 109.6312 + inSlope: -2.389872 + outSlope: -2.389872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 109.547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 109.6312 + inSlope: 2.3891854 + outSlope: 2.3891854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 109.865616 + inSlope: 4.4377623 + outSlope: 4.4377623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 110.222916 + inSlope: 6.0651455 + outSlope: 6.0651455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 110.67427 + inSlope: 7.3052287 + outSlope: 7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 111.196976 + inSlope: 8.123711 + outSlope: 8.123711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 111.75732 + inSlope: 8.535356 + outSlope: 8.535356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 112.33489 + inSlope: 8.533982 + outSlope: 8.533982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 112.89531 + inSlope: 8.405175 + outSlope: 8.405175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 4.9998636 + inSlope: -0.00004291523 + outSlope: -0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 4.9998636 + inSlope: -0.00004291523 + outSlope: -0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 4.9998636 + inSlope: -0.00004291523 + outSlope: -0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 4.9998636 + inSlope: -0.00004291523 + outSlope: -0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 4.9998636 + inSlope: -0.00004291523 + outSlope: -0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 4.9998636 + inSlope: -0.00004291508 + outSlope: -0.00004291508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 4.9998636 + inSlope: -0.00004291508 + outSlope: -0.00004291508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 4.9998636 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 4.9998636 + inSlope: -0.00004291508 + outSlope: -0.00004291508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone21" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 2.434397 + inSlope: 1.39688 + outSlope: 1.39688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 2.5274582 + inSlope: 1.0138295 + outSlope: 1.0138295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 2.5697591 + inSlope: 0.3174129 + outSlope: 0.3174129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 2.5697591 + inSlope: 0.00018238973 + outSlope: 0.00018238973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 2.5697596 + inSlope: 0.35447034 + outSlope: 0.35447034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 2.616943 + inSlope: 1.2401044 + outSlope: 1.2401044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 2.7349024 + inSlope: 2.0341392 + outSlope: 2.0341392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 2.8882492 + inSlope: 2.2966275 + outSlope: 2.2966275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 3.041596 + inSlope: 2.0303912 + outSlope: 2.0303912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 3.1595547 + inSlope: 1.2362484 + outSlope: 1.2362484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.2067373 + inSlope: 0.3304592 + outSlope: 0.3304592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 3.203676 + inSlope: -0.09826551 + outSlope: -0.09826551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 3.1936808 + inSlope: -0.21084328 + outSlope: -0.21084328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 3.1755352 + inSlope: -0.3425506 + outSlope: -0.3425506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 3.1480236 + inSlope: -0.49223596 + outSlope: -0.49223596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 3.1099284 + inSlope: -0.6600494 + outSlope: -0.6600494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 3.060034 + inSlope: -0.8462163 + outSlope: -0.8462163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 2.9971237 + inSlope: -1.2232602 + outSlope: -1.2232602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 2.8969252 + inSlope: -1.8229705 + outSlope: -1.8229705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 2.7540727 + inSlope: -2.2603586 + outSlope: -2.2603586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 2.5957112 + inSlope: -2.2868965 + outSlope: -2.2868965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 2.4494 + inSlope: -1.9122237 + outSlope: -1.9122237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 2.3410475 + inSlope: -1.1294578 + outSlope: -1.1294578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 2.2990348 + inSlope: -0.20224948 + outSlope: -0.20224948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 2.3140314 + inSlope: 0.40144125 + outSlope: 0.40144125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.3525586 + inSlope: 0.5772722 + outSlope: 0.5772722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 14.593863 + inSlope: 16.058279 + outSlope: 16.058279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 15.6644745 + inSlope: 11.67981 + outSlope: 11.67981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 16.151127 + inSlope: 3.6500394 + outSlope: 3.6500394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 16.151127 + inSlope: -0.00017166093 + outSlope: -0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 16.15113 + inSlope: 4.153866 + outSlope: 4.153866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 16.705 + inSlope: 14.539132 + outSlope: 14.539132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 18.089762 + inSlope: 23.887905 + outSlope: 23.887905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 19.89012 + inSlope: 27.006567 + outSlope: 27.006567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 21.690662 + inSlope: 23.892368 + outSlope: 23.892368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 23.075827 + inSlope: 14.5442295 + outSlope: 14.5442295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 23.629917 + inSlope: 3.8683927 + outSlope: 3.8683927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 23.59158 + inSlope: -1.2124455 + outSlope: -1.2124455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 23.46819 + inSlope: -2.5833344 + outSlope: -2.5833344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 23.2472 + inSlope: -4.1408195 + outSlope: -4.1408195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 22.916054 + inSlope: -5.887605 + outSlope: -5.887605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 22.46221 + inSlope: -7.8225307 + outSlope: -7.8225307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 21.87312 + inSlope: -9.944525 + outSlope: -9.944525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 21.13624 + inSlope: -14.270996 + outSlope: -14.270996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 19.970259 + inSlope: -21.18295 + outSlope: -21.18295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 18.311762 + inSlope: -26.212273 + outSlope: -26.212273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 16.475008 + inSlope: -26.49364 + outSlope: -26.49364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 14.778968 + inSlope: -22.135714 + outSlope: -22.135714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 13.523397 + inSlope: -13.066447 + outSlope: -13.066447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 13.036675 + inSlope: -2.3562691 + outSlope: -2.3562691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 13.209187 + inSlope: 4.6175237 + outSlope: 4.6175237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 13.65239 + inSlope: 6.648061 + outSlope: 6.648061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.29707527 + inSlope: 0.15114744 + outSlope: 0.15114744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.28640953 + inSlope: 0.1236884 + outSlope: 0.1236884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.28156063 + inSlope: 0.038010962 + outSlope: 0.038010962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.28156063 + inSlope: 0.00024542148 + outSlope: 0.00024542148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.28156036 + inSlope: 0.079884306 + outSlope: 0.079884306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.2707927 + inSlope: 0.2771784 + outSlope: 0.2771784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.24386927 + inSlope: 0.46637994 + outSlope: 0.46637994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.20886236 + inSlope: 0.53696 + outSlope: 0.53696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.17384791 + inSlope: 0.4815428 + outSlope: 0.4815428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.1469079 + inSlope: 0.29508916 + outSlope: 0.29508916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.1361301 + inSlope: 0.07032759 + outSlope: 0.07032759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.1378376 + inSlope: -0.04852858 + outSlope: -0.04852858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.14265007 + inSlope: -0.09220639 + outSlope: -0.09220639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.15010111 + inSlope: -0.12838472 + outSlope: -0.12838472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.15972441 + inSlope: -0.15744738 + outSlope: -0.15744738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.1710548 + inSlope: -0.17904499 + outSlope: -0.17904499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.18362531 + inSlope: -0.19358727 + outSlope: -0.19358727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.19697028 + inSlope: -0.23645036 + outSlope: -0.23645036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.2149649 + inSlope: -0.3158988 + outSlope: -0.3158988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.23901936 + inSlope: -0.36709693 + outSlope: -0.36709693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.2649689 + inSlope: -0.35705465 + outSlope: -0.35705465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.28858614 + inSlope: -0.29128817 + outSlope: -0.29128817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.30591106 + inSlope: -0.16947286 + outSlope: -0.16947286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.31258819 + inSlope: -0.035857145 + outSlope: -0.035857145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.3108695 + inSlope: 0.04541655 + outSlope: 0.04541655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.3064546 + inSlope: 0.069219336 + outSlope: 0.069219336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone21/Bone22/Bone23" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 6.694762 + inSlope: 7.333398 + outSlope: 7.333398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 7.1772137 + inSlope: 0.00008583046 + outSlope: 0.00008583046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 6.694762 + inSlope: -13.105972 + outSlope: -13.105972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 5.39099 + inSlope: -23.485897 + outSlope: -23.485897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 3.556367 + inSlope: -28.802103 + outSlope: -28.802103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 1.6047202 + inSlope: -27.321613 + outSlope: -27.321613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.012640972 + inSlope: -18.430506 + outSlope: -18.430506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.7319805 + inSlope: -3.5018444 + outSlope: -3.5018444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.3443597 + inSlope: 13.458922 + outSlope: 13.458922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 1.1699663 + inSlope: 28.160004 + outSlope: 28.160004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.526277 + inSlope: 36.59268 + outSlope: 36.59268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 6.195721 + inSlope: 37.287098 + outSlope: 37.287098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 8.655825 + inSlope: 30.376453 + outSlope: 30.376453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 10.388112 + inSlope: 17.24765 + outSlope: 17.24765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 11.035553 + inSlope: 4.77353 + outSlope: 4.77353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 11.035553 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 11.035553 + inSlope: -19.563923 + outSlope: -19.563923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 8.284971 + inSlope: -59.939316 + outSlope: -59.939316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 2.6792674 + inSlope: -69.48823 + outSlope: -69.48823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.68772256 + inSlope: -15.227241 + outSlope: -15.227241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 1.0037886 + inSlope: 38.75617 + outSlope: 38.75617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 5.11255 + inSlope: 38.79409 + outSlope: 38.79409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 7.1772137 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 5.112548 + inSlope: -43.529892 + outSlope: -43.529892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.0037937 + inSlope: -46.395737 + outSlope: -46.395737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.68772256 + inSlope: -39.464993 + outSlope: -39.464993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -101.95011 + inSlope: -9.642537 + outSlope: -9.642537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -102.598045 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -101.95011 + inSlope: 17.628954 + outSlope: 17.628954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -100.27814 + inSlope: 29.021683 + outSlope: 29.021683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -98.08205 + inSlope: 32.727615 + outSlope: 32.727615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -95.84975 + inSlope: 30.5791 + outSlope: 30.5791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -93.874405 + inSlope: 25.794458 + outSlope: 25.794458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -92.239685 + inSlope: 22.337973 + outSlope: 22.337973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -90.74856 + inSlope: 22.711508 + outSlope: 22.711508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -89.14496 + inSlope: 26.733099 + outSlope: 26.733099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -87.2215 + inSlope: 31.743652 + outSlope: 31.743652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -85.04292 + inSlope: 33.81389 + outSlope: 33.81389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -82.87874 + inSlope: 29.753065 + outSlope: 29.753065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -81.229034 + inSlope: 17.876833 + outSlope: 17.876833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -80.58151 + inSlope: 4.9451904 + outSlope: 4.9451904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -80.58151 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -80.58151 + inSlope: -20.934467 + outSlope: -20.934467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -83.21745 + inSlope: -57.71673 + outSlope: -57.71673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -87.89808 + inSlope: -55.258537 + outSlope: -55.258537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -91.489746 + inSlope: -43.92719 + outSlope: -43.92719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -95.14834 + inSlope: -62.1662 + outSlope: -62.1662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -99.934395 + inSlope: -60.86981 + outSlope: -60.86981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -102.598045 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -99.934395 + inSlope: 57.837578 + outSlope: 57.837578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -95.148346 + inSlope: 56.964165 + outSlope: 56.964165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -91.489746 + inSlope: 44.954403 + outSlope: 44.954403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -149.07275 + inSlope: -25.771112 + outSlope: -25.771112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -150.79326 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -149.07275 + inSlope: 48.88234 + outSlope: 48.88234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -144.28801 + inSlope: 90.51681 + outSlope: 90.51681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -136.99498 + inSlope: 123.65467 + outSlope: 123.65467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -127.756096 + inSlope: 149.44373 + outSlope: 149.44373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -117.00034 + inSlope: 166.94917 + outSlope: 166.94917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -105.42209 + inSlope: 175.70657 + outSlope: 175.70657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -93.505165 + inSlope: 174.8723 + outSlope: 174.8723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -82.04395 + inSlope: 164.74368 + outSlope: 164.74368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -71.49201 + inSlope: 146.5708 + outSlope: 146.5708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -62.488487 + inSlope: 120.99392 + outSlope: 120.99392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -55.388645 + inSlope: 88.34613 + outSlope: 88.34613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -50.76444 + inSlope: 47.56415 + outSlope: 47.56415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -49.088116 + inSlope: 12.619608 + outSlope: 12.619608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -49.088116 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -49.088116 + inSlope: -55.499035 + outSlope: -55.499035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -56.411938 + inSlope: -193.63919 + outSlope: -193.63919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -74.856026 + inSlope: -318.404 + outSlope: -318.404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -99.43724 + inSlope: -365.77655 + outSlope: -365.77655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -124.284874 + inSlope: -324.70157 + outSlope: -324.70157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -143.23203 + inSlope: -199.25784 + outSlope: -199.25784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -150.79326 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -143.23203 + inSlope: 198.83968 + outSlope: 198.83968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -124.28486 + inSlope: 324.62228 + outSlope: 324.62228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -99.43724 + inSlope: 364.99033 + outSlope: 364.99033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone29" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 9.410997 + inSlope: 16.396278 + outSlope: 16.396278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 10.49062 + inSlope: -11.641529 + outSlope: -11.641529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 7.7517724 + inSlope: -74.797844 + outSlope: -74.797844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.28095898 + inSlope: -130.09352 + outSlope: -130.09352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -9.120717 + inSlope: -122.735725 + outSlope: -122.735725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -15.708541 + inSlope: -57.10772 + outSlope: -57.10772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -17.381805 + inSlope: -2.6724174 + outSlope: -2.6724174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -17.025501 + inSlope: 1.5691582 + outSlope: 1.5691582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -17.315233 + inSlope: -5.1168013 + outSlope: -5.1168013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -17.66752 + inSlope: 0.5710301 + outSlope: 0.5710301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -17.254175 + inSlope: 15.297532 + outSlope: 15.297532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -15.7244625 + inSlope: 29.302883 + outSlope: 29.302883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -13.453159 + inSlope: 32.926228 + outSlope: 32.926228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -11.380186 + inSlope: 22.167599 + outSlope: 22.167599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -10.490616 + inSlope: 6.645314 + outSlope: 6.645314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -10.490616 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -10.490616 + inSlope: 0.19569416 + outSlope: 0.19569416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -10.466369 + inSlope: 1.1548959 + outSlope: 1.1548959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -10.338529 + inSlope: 1.7556255 + outSlope: 1.7556255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -10.22416 + inSlope: 34.003548 + outSlope: 34.003548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -5.499089 + inSlope: 117.46681 + outSlope: 117.46681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 5.1015997 + inSlope: 118.260765 + outSlope: 118.260765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 10.490619 + inSlope: -29.19289 + outSlope: -29.19289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.28095996 + inSlope: -211.15468 + outSlope: -211.15468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -15.721124 + inSlope: -113.68419 + outSlope: -113.68419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -17.025494 + inSlope: 13.239645 + outSlope: 13.239645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 17.030502 + inSlope: -13.542674 + outSlope: -13.542674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 16.110264 + inSlope: 14.967975 + outSlope: 14.967975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 18.918463 + inSlope: 58.743694 + outSlope: 58.743694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 23.498758 + inSlope: 37.907795 + outSlope: 37.907795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 24.226612 + inSlope: -38.774395 + outSlope: -38.774395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 19.463612 + inSlope: -93.53648 + outSlope: -93.53648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 12.965307 + inSlope: -72.45765 + outSlope: -72.45765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 10.020367 + inSlope: -17.170103 + outSlope: -17.170103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 10.654781 + inSlope: 16.57169 + outSlope: 16.57169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 12.2367 + inSlope: 26.619545 + outSlope: 26.619545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 14.158377 + inSlope: 25.918575 + outSlope: 25.918575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 15.661297 + inSlope: 15.632359 + outSlope: 15.632359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 16.311811 + inSlope: 3.341306 + outSlope: 3.341306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 16.259787 + inSlope: -2.4254918 + outSlope: -2.4254918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 16.110264 + inSlope: -1.2711446 + outSlope: -1.2711446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 16.110264 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 16.110264 + inSlope: 0.66450185 + outSlope: 0.66450185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 16.199417 + inSlope: 1.7907732 + outSlope: 1.7907732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 16.35273 + inSlope: 1.7876832 + outSlope: 1.7876832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 16.432028 + inSlope: 27.768202 + outSlope: 27.768202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 19.61174 + inSlope: 28.391445 + outSlope: 28.391445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 19.511072 + inSlope: -42.43722 + outSlope: -42.43722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 16.110264 + inSlope: 37.89926 + outSlope: 37.89926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 23.498758 + inSlope: 34.34973 + outSlope: 34.34973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 19.442999 + inSlope: -145.45045 + outSlope: -145.45045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 10.020333 + inSlope: -141.37776 + outSlope: -141.37776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -14.561009 + inSlope: -38.322056 + outSlope: -38.322056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -17.124567 + inSlope: 22.297123 + outSlope: 22.297123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -11.656985 + inSlope: 141.77539 + outSlope: 141.77539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 1.6528757 + inSlope: 226.28284 + outSlope: 226.28284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 19.065418 + inSlope: 267.01868 + outSlope: 267.01868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 37.555885 + inSlope: 253.65361 + outSlope: 253.65361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 52.464104 + inSlope: 156.42328 + outSlope: 156.42328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 58.321392 + inSlope: 26.840483 + outSlope: 26.840483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 56.06058 + inSlope: -61.19133 + outSlope: -61.19133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 50.157864 + inSlope: -106.13984 + outSlope: -106.13984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 41.924892 + inSlope: -128.27151 + outSlope: -128.27151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 33.049618 + inSlope: -126.33997 + outSlope: -126.33997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 25.021671 + inSlope: -102.45945 + outSlope: -102.45945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 19.321043 + inSlope: -59.015778 + outSlope: -59.015778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 17.124569 + inSlope: -16.453814 + outSlope: -16.453814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 17.124569 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 17.124569 + inSlope: 21.604807 + outSlope: 21.604807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 20.00526 + inSlope: 61.69876 + outSlope: 61.69876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 25.352085 + inSlope: 61.637993 + outSlope: 61.637993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 28.228283 + inSlope: -69.36021 + outSlope: -69.36021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 16.262516 + inSlope: -248.80298 + outSlope: -248.80298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -5.2953935 + inSlope: -248.96422 + outSlope: -248.96422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -17.124567 + inSlope: 56.029385 + outSlope: 56.029385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 1.6528754 + inSlope: 393.42706 + outSlope: 393.42706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 37.611164 + inSlope: 432.0781 + outSlope: 432.0781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 58.321453 + inSlope: 308.18607 + outSlope: 308.18607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 13.794929 + inSlope: -51.79864 + outSlope: -51.79864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 10.032035 + inSlope: -56.63742 + outSlope: -56.63742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 6.674665 + inSlope: -24.643623 + outSlope: -24.643623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 6.674665 + inSlope: 0.00010728808 + outSlope: 0.00010728808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 6.674665 + inSlope: -1.7020886 + outSlope: -1.7020886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 6.437828 + inSlope: -6.8276663 + outSlope: -6.8276663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 5.7323523 + inSlope: -13.762013 + outSlope: -13.762013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 4.629119 + inSlope: -17.957127 + outSlope: -17.957127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 3.4043882 + inSlope: -16.765142 + outSlope: -16.765142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 2.4415662 + inSlope: -10.15854 + outSlope: -10.15854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 2.062639 + inSlope: -2.6210034 + outSlope: -2.6210034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 2.0941641 + inSlope: 0.93099564 + outSlope: 0.93099564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 2.1856241 + inSlope: 1.7975967 + outSlope: 1.7975967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 2.3318918 + inSlope: 2.6100385 + outSlope: 2.6100385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 2.5332618 + inSlope: 5.1197042 + outSlope: 5.1197042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 3.0094159 + inSlope: 13.119695 + outSlope: 13.119695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 4.2767367 + inSlope: 27.423811 + outSlope: 27.423811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 6.674664 + inSlope: 42.794685 + outSlope: 42.794685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 10.0696945 + inSlope: 45.262684 + outSlope: 45.262684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 12.835786 + inSlope: 23.329967 + outSlope: 23.329967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 13.3201 + inSlope: -12.448937 + outSlope: -12.448937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 11.391343 + inSlope: -36.565323 + outSlope: -36.565323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 8.6102 + inSlope: -31.388012 + outSlope: -31.388012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 7.260432 + inSlope: 0.7933124 + outSlope: 0.7933124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 8.704745 + inSlope: 33.20814 + outSlope: 33.20814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 11.622558 + inSlope: 41.044025 + outSlope: 41.044025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -15.253159 + inSlope: 43.298378 + outSlope: 43.298378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -12.852394 + inSlope: 7.5602903 + outSlope: 7.5602903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -13.4093275 + inSlope: -6.5707316 + outSlope: -6.5707316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -13.4093275 + inSlope: -0.00021457615 + outSlope: -0.00021457615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -13.4093275 + inSlope: 3.466662 + outSlope: 3.466662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -12.952222 + inSlope: 11.159245 + outSlope: 11.159245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -11.94584 + inSlope: 14.94038 + outSlope: 14.94038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -10.95613 + inSlope: 11.505401 + outSlope: 11.505401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -10.348358 + inSlope: 5.4210715 + outSlope: 5.4210715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -10.134496 + inSlope: 1.4922913 + outSlope: 1.4922913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -10.07646 + inSlope: 0.6487948 + outSlope: 0.6487948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -10.037947 + inSlope: 0.19217509 + outSlope: 0.19217509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -10.052587 + inSlope: -0.74960303 + outSlope: -0.74960303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -10.138516 + inSlope: -2.0092554 + outSlope: -2.0092554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -10.318501 + inSlope: -4.7980347 + outSlope: -4.7980347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -10.78413 + inSlope: -10.343809 + outSlope: -10.343809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -11.724659 + inSlope: -19.559631 + outSlope: -19.559631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -13.4093275 + inSlope: -25.726099 + outSlope: -25.726099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -15.14063 + inSlope: -27.731363 + outSlope: -27.731363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -16.89939 + inSlope: -32.080307 + outSlope: -32.080307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -19.036036 + inSlope: -30.448895 + outSlope: -30.448895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -20.780254 + inSlope: -18.02738 + outSlope: -18.02738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -21.60478 + inSlope: -5.6573634 + outSlope: -5.6573634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -21.763853 + inSlope: 3.250497 + outSlope: 3.250497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -21.166334 + inSlope: 17.125557 + outSlope: 17.125557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -19.37474 + inSlope: 31.07807 + outSlope: 31.07807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -49.887615 + inSlope: 324.81595 + outSlope: 324.81595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -28.36052 + inSlope: 228.77527 + outSlope: 228.77527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -18.896494 + inSlope: 70.68928 + outSlope: 70.68928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -18.896494 + inSlope: -0.0002574914 + outSlope: -0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -18.896494 + inSlope: 22.29789 + outSlope: 22.29789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -15.924631 + inSlope: 77.92172 + outSlope: 77.92172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -8.509345 + inSlope: 127.53476 + outSlope: 127.53476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 1.0987277 + inSlope: 143.57552 + outSlope: 143.57552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 10.675828 + inSlope: 126.695786 + outSlope: 126.695786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 18.028791 + inSlope: 77.0834 + outSlope: 77.0834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 20.968126 + inSlope: 10.712281 + outSlope: 10.712281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 19.458048 + inSlope: -40.495388 + outSlope: -40.495388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 15.568138 + inSlope: -68.97739 + outSlope: -68.97739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 10.258626 + inSlope: -83.05213 + outSlope: -83.05213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 4.4896183 + inSlope: -92.26098 + outSlope: -92.26098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -2.0507998 + inSlope: -108.492004 + outSlope: -108.492004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -9.993057 + inSlope: -126.105316 + outSlope: -126.105316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -18.896494 + inSlope: -149.13087 + outSlope: -149.13087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -29.895823 + inSlope: -183.20157 + outSlope: -183.20157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -43.303463 + inSlope: -204.29448 + outSlope: -204.29448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -57.077213 + inSlope: -190.91699 + outSlope: -190.91699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -68.76105 + inSlope: -145.51543 + outSlope: -145.51543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -76.57996 + inSlope: -79.16275 + outSlope: -79.16275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -79.386154 + inSlope: 1.016923 + outSlope: 1.016923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -76.43808 + inSlope: 81.93199 + outSlope: 81.93199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -68.41609 + inSlope: 121.82664 + outSlope: 121.82664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone31" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -17.374918 + inSlope: 15.056466 + outSlope: 15.056466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -16.374445 + inSlope: 10.298025 + outSlope: 10.298025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -15.995716 + inSlope: 2.8332736 + outSlope: 2.8332736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -15.995716 + inSlope: 0.00017166093 + outSlope: 0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -15.995716 + inSlope: -1.1115085 + outSlope: -1.1115085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -16.144083 + inSlope: -4.210085 + outSlope: -4.210085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -16.557568 + inSlope: -7.8340898 + outSlope: -7.8340898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -17.188745 + inSlope: -10.743524 + outSlope: -10.743524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -17.989298 + inSlope: -12.916759 + outSlope: -12.916759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -18.909412 + inSlope: -14.32871 + outSlope: -14.32871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -19.897848 + inSlope: -14.964509 + outSlope: -14.964509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -20.902857 + inSlope: -14.827695 + outSlope: -14.827695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -21.873552 + inSlope: -13.941578 + outSlope: -13.941578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -22.761423 + inSlope: -12.355768 + outSlope: -12.355768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -23.52145 + inSlope: -10.123323 + outSlope: -10.123323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -24.112288 + inSlope: -7.294328 + outSlope: -7.294328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -24.495232 + inSlope: -3.8908806 + outSlope: -3.8908806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -24.631832 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -24.49523 + inSlope: 3.894228 + outSlope: 3.894228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -24.112288 + inSlope: 7.3030305 + outSlope: 7.3030305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -23.52145 + inSlope: 10.1154995 + outSlope: 10.1154995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -22.76402 + inSlope: 12.365725 + outSlope: 12.365725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -21.873549 + inSlope: 13.941578 + outSlope: 13.941578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -20.905966 + inSlope: 14.820142 + outSlope: 14.820142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -19.897844 + inSlope: 14.947 + outSlope: 14.947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -18.912422 + inSlope: 14.730171 + outSlope: 14.730171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -94.92994 + inSlope: -4.4563174 + outSlope: -4.4563174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -95.23838 + inSlope: -3.4620576 + outSlope: -3.4620576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -95.37174 + inSlope: -1.0217295 + outSlope: -1.0217295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -95.37174 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -95.37174 + inSlope: 0.40237466 + outSlope: 0.40237466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -95.31842 + inSlope: 1.4721694 + outSlope: 1.4721694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -95.17716 + inSlope: 2.5254755 + outSlope: 2.5254755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -94.98252 + inSlope: 3.0260496 + outSlope: 3.0260496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -94.77207 + inSlope: 2.9759245 + outSlope: 2.9759245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -94.58094 + inSlope: 2.4506314 + outSlope: 2.4506314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -94.43711 + inSlope: 1.5888993 + outSlope: 1.5888993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -94.35802 + inSlope: 0.56579643 + outSlope: 0.56579643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -94.348564 + inSlope: -0.42297405 + outSlope: -0.42297405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -94.40056 + inSlope: -1.1878979 + outSlope: -1.1878979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -94.49378 + inSlope: -1.5737817 + outSlope: -1.5737817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -94.5992 + inSlope: -1.484529 + outSlope: -1.484529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -94.68372 + inSlope: -0.9132394 + outSlope: -0.9132394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -94.71707 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -94.68372 + inSlope: 0.89813316 + outSlope: 0.89813316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -94.5992 + inSlope: 1.4309604 + outSlope: 1.4309604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -94.49378 + inSlope: 1.472856 + outSlope: 1.472856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -94.40078 + inSlope: 1.0491953 + outSlope: 1.0491953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -94.348564 + inSlope: 0.2526858 + outSlope: 0.2526858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -94.35787 + inSlope: -0.7498176 + outSlope: -0.7498176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -94.4371 + inSlope: -1.7701738 + outSlope: -1.7701738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -94.58043 + inSlope: -2.4980009 + outSlope: -2.4980009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -21.85933 + inSlope: -29.276428 + outSlope: -29.276428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -23.809546 + inSlope: -20.127329 + outSlope: -20.127329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -24.545849 + inSlope: -5.52012 + outSlope: -5.52012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -24.545849 + inSlope: -0.00017166093 + outSlope: -0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -24.545849 + inSlope: 2.1627638 + outSlope: 2.1627638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -24.25747 + inSlope: 8.1927185 + outSlope: 8.1927185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -23.453247 + inSlope: 15.2565365 + outSlope: 15.2565365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -22.223042 + inSlope: 20.98339 + outSlope: 20.98339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -20.655441 + inSlope: 25.384623 + outSlope: 25.384623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -18.838743 + inSlope: 28.45855 + outSlope: 28.45855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -16.862104 + inSlope: 30.18076 + outSlope: 30.18076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -14.816897 + inSlope: 30.506445 + outSlope: 30.506445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -12.798067 + inSlope: 29.372063 + outSlope: 29.372063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -10.905086 + inSlope: 26.705515 + outSlope: 26.705515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -9.242274 + inSlope: 22.437849 + outSlope: 22.437849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -7.9180593 + inSlope: 16.520664 + outSlope: 16.520664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -7.0431547 + inSlope: 8.942322 + outSlope: 8.942322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -6.7276535 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -7.0431547 + inSlope: -8.934511 + outSlope: -8.934511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -7.9180593 + inSlope: -16.495913 + outSlope: -16.495913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -9.242272 + inSlope: -22.352007 + outSlope: -22.352007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -10.899478 + inSlope: -26.647236 + outSlope: -26.647236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -12.798072 + inSlope: -29.300264 + outSlope: -29.300264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -14.810503 + inSlope: -30.443745 + outSlope: -30.443745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -16.862099 + inSlope: -30.12969 + outSlope: -30.12969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -18.83277 + inSlope: -29.466265 + outSlope: -29.466265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone30/Bone32" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 7.638474 + inSlope: 3.8094778 + outSlope: 3.8094778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 7.903915 + inSlope: 2.8832383 + outSlope: 2.8832383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 8.002863 + inSlope: 0.763808 + outSlope: 0.763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 8.002863 + inSlope: 0.0002574914 + outSlope: 0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 8.002863 + inSlope: -0.29225376 + outSlope: -0.29225376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 7.964198 + inSlope: -1.1155854 + outSlope: -1.1155854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 7.855774 + inSlope: -2.0750372 + outSlope: -2.0750372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 7.688332 + inSlope: -2.8616192 + outSlope: -2.8616192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 7.472421 + inSlope: -3.4817038 + outSlope: -3.4817038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 7.219099 + inSlope: -3.9295762 + outSlope: -3.9295762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 6.940307 + inSlope: -4.19264 + outSlope: -4.19264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 6.6491084 + inSlope: -4.2599316 + outSlope: -4.2599316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 6.3596454 + inSlope: -4.1162505 + outSlope: -4.1162505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 6.0870113 + inSlope: -3.7520921 + outSlope: -3.7520921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 5.846971 + inSlope: -3.1572409 + outSlope: -3.1572409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 5.655664 + inSlope: -2.3274515 + outSlope: -2.3274515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 5.529278 + inSlope: -1.2625706 + outSlope: -1.2625706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 5.483717 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 5.529278 + inSlope: 1.2766469 + outSlope: 1.2766469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 5.655664 + inSlope: 2.3767443 + outSlope: 2.3767443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 5.846971 + inSlope: 3.2429655 + outSlope: 3.2429655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 6.0862026 + inSlope: 3.8813534 + outSlope: 3.8813534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 6.359646 + inSlope: 4.278664 + outSlope: 4.278664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 6.648195 + inSlope: 4.4349833 + outSlope: 4.4349833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 6.940308 + inSlope: 4.371168 + outSlope: 4.371168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 7.218259 + inSlope: 4.508615 + outSlope: 4.508615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -84.22294 + inSlope: 26.971365 + outSlope: 26.971365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -82.4261 + inSlope: 18.546246 + outSlope: 18.546246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -81.747475 + inSlope: 5.0866747 + outSlope: 5.0866747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -81.747475 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -81.747475 + inSlope: -1.9933338 + outSlope: -1.9933338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -82.01329 + inSlope: -7.551048 + outSlope: -7.551048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -82.75447 + inSlope: -14.05903 + outSlope: -14.05903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -83.88797 + inSlope: -19.32497 + outSlope: -19.32497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -85.3311 + inSlope: -23.348717 + outSlope: -23.348717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -87.0008 + inSlope: -26.116493 + outSlope: -26.116493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -88.81263 + inSlope: -27.603176 + outSlope: -27.603176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -90.68031 + inSlope: -27.778957 + outSlope: -27.778957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -92.515366 + inSlope: -26.610971 + outSlope: -26.610971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -94.2271 + inSlope: -24.065575 + outSlope: -24.065575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -95.72274 + inSlope: -20.117216 + outSlope: -20.117216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -96.90814 + inSlope: -14.74916 + outSlope: -14.74916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -97.688385 + inSlope: -7.9609756 + outSlope: -7.9609756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -97.969185 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -97.688385 + inSlope: 7.9596024 + outSlope: 7.9596024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -96.90814 + inSlope: 14.742874 + outSlope: 14.742874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -95.72274 + inSlope: 20.067234 + outSlope: 20.067234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -94.23216 + inSlope: 24.048409 + outSlope: 24.048409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -92.515366 + inSlope: 26.584192 + outSlope: 26.584192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -90.68615 + inSlope: 27.756985 + outSlope: 27.756985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -88.81263 + inSlope: 27.58395 + outSlope: 27.58395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -87.00628 + inSlope: 27.048172 + outSlope: 27.048172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -16.864208 + inSlope: -16.619696 + outSlope: -16.619696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -17.969666 + inSlope: -11.403092 + outSlope: -11.403092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -18.38944 + inSlope: -3.1432087 + outSlope: -3.1432087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -18.38944 + inSlope: 0.0002574914 + outSlope: 0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -18.38944 + inSlope: 1.2341607 + outSlope: 1.2341607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -18.22488 + inSlope: 4.665589 + outSlope: 4.665589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -17.766998 + inSlope: 8.662697 + outSlope: 8.662697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -17.069647 + inSlope: 11.85383 + outSlope: 11.85383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -16.186743 + inSlope: 14.237865 + outSlope: 14.237865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -15.172131 + inSlope: 15.816667 + outSlope: 15.816667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -14.079386 + inSlope: 16.593233 + outSlope: 16.593233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -12.961805 + inSlope: 16.572119 + outSlope: 16.572119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -11.87235 + inSlope: 15.758058 + outSlope: 15.758058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -10.863668 + inSlope: 14.152721 + outSlope: 14.152721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -9.988171 + inSlope: 11.759933 + outSlope: 11.759933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -9.298118 + inSlope: 8.582691 + outSlope: 8.582691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -8.845708 + inSlope: 4.6185966 + outSlope: 4.6185966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -8.683259 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -8.845708 + inSlope: -4.614734 + outSlope: -4.614734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -9.298118 + inSlope: -8.568982 + outSlope: -8.568982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -9.988171 + inSlope: -11.715042 + outSlope: -11.715042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -10.860699 + inSlope: -14.119677 + outSlope: -14.119677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -11.87235 + inSlope: -15.7129965 + outSlope: -15.7129965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -12.958329 + inSlope: -16.528904 + outSlope: -16.528904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -14.079387 + inSlope: -16.55182 + outSlope: -16.55182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -15.168808 + inSlope: -16.254858 + outSlope: -16.254858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone29/Bone33" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 7.12819 + inSlope: 7.7940497 + outSlope: 7.7940497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 7.640946 + inSlope: -0.000021457616 + outSlope: -0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 7.12819 + inSlope: -13.930034 + outSlope: -13.930034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 5.7421618 + inSlope: -24.972073 + outSlope: -24.972073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 3.7910082 + inSlope: -30.63782 + outSlope: -30.63782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 1.7146009 + inSlope: -29.07197 + outSlope: -29.07197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.020640831 + inSlope: -19.604856 + outSlope: -19.604856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.7703985 + inSlope: -3.6977022 + outSlope: -3.6977022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.35472813 + inSlope: 14.369076 + outSlope: 14.369076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 1.2605686 + inSlope: 30.003841 + outSlope: 30.003841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.770309 + inSlope: 38.943844 + outSlope: 38.943844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 6.6104875 + inSlope: 39.64976 + outSlope: 39.64976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 9.225829 + inSlope: 32.28271 + outSlope: 32.28271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 11.066443 + inSlope: 18.324226 + outSlope: 18.324226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 11.754191 + inSlope: 5.0703735 + outSlope: 5.0703735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 11.754191 + inSlope: 0.00021457692 + outSlope: 0.00021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 11.7541895 + inSlope: -20.785852 + outSlope: -20.785852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 8.831685 + inSlope: -63.717545 + outSlope: -63.717545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 2.8684976 + inSlope: -73.9613 + outSlope: -73.9613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.72190857 + inSlope: -16.29537 + outSlope: -16.29537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 1.0751741 + inSlope: 41.1702 + outSlope: 41.1702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 5.4460945 + inSlope: 41.20615 + outSlope: 41.20615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 7.640946 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 5.4460945 + inSlope: -46.27463 + outSlope: -46.27463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.0751741 + inSlope: -49.340065 + outSlope: -49.340065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.72190857 + inSlope: -42.03755 + outSlope: -42.03755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 77.25472 + inSlope: -10.282833 + outSlope: -10.282833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 76.56368 + inSlope: 0.00034332185 + outSlope: 0.00034332185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 77.25472 + inSlope: 18.802088 + outSlope: 18.802088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 79.03783 + inSlope: 30.951838 + outSlope: 30.951838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 81.38 + inSlope: 34.90257 + outSlope: 34.90257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 83.760765 + inSlope: 32.60917 + outSlope: 32.60917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 85.86733 + inSlope: 27.50317 + outSlope: 27.50317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 87.61053 + inSlope: 23.824219 + outSlope: 23.824219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 89.20163 + inSlope: 24.249596 + outSlope: 24.249596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 90.91466 + inSlope: 28.565065 + outSlope: 28.565065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 92.96987 + inSlope: 33.908302 + outSlope: 33.908302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 95.296234 + inSlope: 36.094242 + outSlope: 36.094242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 97.605415 + inSlope: 31.743309 + outSlope: 31.743309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 99.364784 + inSlope: 19.067822 + outSlope: 19.067822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 100.05521 + inSlope: 5.274778 + outSlope: 5.274778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 100.05521 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 100.05521 + inSlope: -22.33248 + outSlope: -22.33248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 97.2441 + inSlope: -61.594563 + outSlope: -61.594563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 92.24702 + inSlope: -59.03406 + outSlope: -59.03406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 88.41055 + inSlope: -46.859146 + outSlope: -46.859146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 84.50881 + inSlope: -66.280235 + outSlope: -66.280235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 79.40444 + inSlope: -64.93029 + outSlope: -64.93029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 76.56368 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 79.40444 + inSlope: 61.685886 + outSlope: 61.685886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 84.50881 + inSlope: 60.73145 + outSlope: 60.73145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 88.41055 + inSlope: 47.917946 + outSlope: 47.917946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 30.824211 + inSlope: -25.842178 + outSlope: -25.842178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 29.098625 + inSlope: 0.00034332185 + outSlope: 0.00034332185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 30.824211 + inSlope: 49.033745 + outSlope: 49.033745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 35.622284 + inSlope: 90.76263 + outSlope: 90.76263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 42.93529 + inSlope: 123.98478 + outSlope: 123.98478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 52.202408 + inSlope: 149.91133 + outSlope: 149.91133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 62.998 + inSlope: 167.57677 + outSlope: 167.57677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 74.62519 + inSlope: 176.41142 + outSlope: 176.41142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 86.590256 + inSlope: 175.469 + outSlope: 175.469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 98.084984 + inSlope: 165.08871 + outSlope: 165.08871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 108.65022 + inSlope: 146.67517 + outSlope: 146.67517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 117.65164 + inSlope: 120.97469 + outSlope: 120.97469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 124.744125 + inSlope: 88.317116 + outSlope: 88.317116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 129.36302 + inSlope: 47.555054 + outSlope: 47.555054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 131.03767 + inSlope: 12.614286 + outSlope: 12.614286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 131.03767 + inSlope: -0.00068664615 + outSlope: -0.00068664615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 131.03767 + inSlope: -55.51603 + outSlope: -55.51603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 123.72202 + inSlope: -193.63869 + outSlope: -193.63869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 105.28394 + inSlope: -318.53687 + outSlope: -318.53687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 80.63522 + inSlope: -366.80923 + outSlope: -366.80923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 55.685665 + inSlope: -325.7633 + outSlope: -325.7633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 36.681145 + inSlope: -200.05264 + outSlope: -200.05264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 29.098625 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 36.68113 + inSlope: 199.48547 + outSlope: 199.48547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 55.685665 + inSlope: 325.54874 + outSlope: 325.54874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 80.63522 + inSlope: 366.26132 + outSlope: 366.26132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone34" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -9.812954 + inSlope: -17.057089 + outSlope: -17.057089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -10.936378 + inSlope: 14.7150755 + outSlope: 14.7150755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -7.7133236 + inSlope: 87.55039 + outSlope: 87.55039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 1.0283505 + inSlope: 150.45396 + outSlope: 150.45396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 11.756567 + inSlope: 135.27042 + outSlope: 135.27042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 18.60282 + inSlope: 50.50806 + outSlope: 50.50806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 19.377644 + inSlope: -10.494834 + outSlope: -10.494834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 18.39782 + inSlope: -4.5274014 + outSlope: -4.5274014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 18.937181 + inSlope: 10.673142 + outSlope: 10.673142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 19.763062 + inSlope: 4.7474546 + outSlope: 4.7474546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 19.587336 + inSlope: -15.882555 + outSlope: -15.882555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 17.789991 + inSlope: -36.677807 + outSlope: -36.677807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 14.859479 + inSlope: -43.009327 + outSlope: -43.009327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 12.1189165 + inSlope: -29.28224 + outSlope: -29.28224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 10.936361 + inSlope: -8.817418 + outSlope: -8.817418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 10.936361 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 10.936361 + inSlope: -0.38340604 + outSlope: -0.38340604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 10.88715 + inSlope: -1.7106073 + outSlope: -1.7106073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 10.710389 + inSlope: -2.32434 + outSlope: -2.32434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 10.56858 + inSlope: -35.587543 + outSlope: -35.587543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 5.6535797 + inSlope: -121.85978 + outSlope: -121.85978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -5.337807 + inSlope: -122.71017 + outSlope: -122.71017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -10.936378 + inSlope: 38.51703 + outSlope: 38.51703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 1.0283508 + inSlope: 240.56992 + outSlope: 240.56992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 18.61394 + inSlope: 108.17209 + outSlope: 108.17209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 18.397806 + inSlope: -42.48086 + outSlope: -42.48086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -17.589735 + inSlope: 13.923676 + outSlope: 13.923676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -16.643427 + inSlope: -19.05462 + outSlope: -19.05462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -19.99122 + inSlope: -69.51082 + outSlope: -69.51082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -25.375204 + inSlope: -42.732327 + outSlope: -42.732327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -26.005392 + inSlope: 50.939102 + outSlope: 50.939102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -20.002047 + inSlope: 114.046524 + outSlope: 114.046524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -12.26866 + inSlope: 83.377686 + outSlope: 83.377686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -8.927141 + inSlope: 18.668621 + outSlope: 18.668621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -9.718764 + inSlope: -21.004549 + outSlope: -21.004549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -11.750654 + inSlope: -34.96261 + outSlope: -34.96261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -14.301692 + inSlope: -34.774723 + outSlope: -34.774723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -16.309229 + inSlope: -20.366869 + outSlope: -20.366869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -17.103933 + inSlope: -2.8136184 + outSlope: -2.8136184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -16.909512 + inSlope: 4.800172 + outSlope: 4.800172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -16.643417 + inSlope: 2.214418 + outSlope: 2.214418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -16.643417 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -16.643417 + inSlope: -0.6674201 + outSlope: -0.6674201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -16.733423 + inSlope: -1.8473357 + outSlope: -1.8473357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -16.894299 + inSlope: -1.9193476 + outSlope: -1.9193476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -16.98098 + inSlope: -28.589338 + outSlope: -28.589338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -20.246092 + inSlope: -29.085732 + outSlope: -29.085732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -20.138603 + inSlope: 43.620914 + outSlope: 43.620914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -16.643429 + inSlope: -49.839695 + outSlope: -49.839695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -25.375204 + inSlope: -35.70122 + outSlope: -35.70122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -19.97677 + inSlope: 177.35152 + outSlope: 177.35152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.927107 + inSlope: 157.54631 + outSlope: 157.54631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -14.30404 + inSlope: -38.02663 + outSlope: -38.02663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -16.848486 + inSlope: 24.667933 + outSlope: 24.667933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -11.112608 + inSlope: 148.55376 + outSlope: 148.55376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 2.7966924 + inSlope: 236.8069 + outSlope: 236.8069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 21.211132 + inSlope: 285.9883 + outSlope: 285.9883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 41.21508 + inSlope: 275.09277 + outSlope: 275.09277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 57.247093 + inSlope: 166.01706 + outSlope: 166.01706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 63.375854 + inSlope: 26.911722 + outSlope: 26.911722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 60.88447 + inSlope: -68.124054 + outSlope: -68.124054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 54.277794 + inSlope: -120.068924 + outSlope: -120.068924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 44.911243 + inSlope: -146.3945 + outSlope: -146.3945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 34.77211 + inSlope: -143.61067 + outSlope: -143.61067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 25.676908 + inSlope: -115.28849 + outSlope: -115.28849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 19.291924 + inSlope: -65.90807 + outSlope: -65.90807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 16.84849 + inSlope: -18.304226 + outSlope: -18.304226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 16.84849 + inSlope: 0.0002574923 + outSlope: 0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 16.84849 + inSlope: 21.87955 + outSlope: 21.87955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 19.765781 + inSlope: 62.47227 + outSlope: 62.47227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 25.179134 + inSlope: 62.395023 + outSlope: 62.395023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 28.090317 + inSlope: -68.48079 + outSlope: -68.48079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 16.218847 + inSlope: -246.35036 + outSlope: -246.35036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -5.120888 + inSlope: -246.65941 + outSlope: -246.65941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -16.848486 + inSlope: 65.09363 + outSlope: 65.09363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 2.796692 + inSlope: 412.68396 + outSlope: 412.68396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 41.27512 + inSlope: 467.2653 + outSlope: 467.2653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 63.375908 + inSlope: 323.04172 + outSlope: 323.04172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -10.726702 + inSlope: 29.426203 + outSlope: 29.426203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -8.498104 + inSlope: 36.559486 + outSlope: 36.559486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -6.2561297 + inSlope: 16.622137 + outSlope: 16.622137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -6.2561297 + inSlope: -0.00019311854 + outSlope: -0.00019311854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -6.2561297 + inSlope: 0.653494 + outSlope: 0.653494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -6.1605315 + inSlope: 3.077269 + outSlope: 3.077269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -5.8163466 + inSlope: 7.5414724 + outSlope: 7.5414724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -5.173971 + inSlope: 11.483041 + outSlope: 11.483041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -4.348545 + inSlope: 12.372162 + outSlope: 12.372162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -3.5852203 + inSlope: 9.364447 + outSlope: 9.364447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -3.128333 + inSlope: 4.625549 + outSlope: 4.625549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -2.9708629 + inSlope: 1.4525785 + outSlope: 1.4525785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.9337785 + inSlope: 0.09757885 + outSlope: 0.09757885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -2.956284 + inSlope: -0.408533 + outSlope: -0.408533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -2.9880102 + inSlope: -3.0972776 + outSlope: -3.0972776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -3.3636875 + inSlope: -11.140405 + outSlope: -11.140405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -4.469073 + inSlope: -21.520758 + outSlope: -21.520758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -6.2561283 + inSlope: -29.861126 + outSlope: -29.861126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -8.531897 + inSlope: -29.039383 + outSlope: -29.039383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -10.231823 + inSlope: -11.850913 + outSlope: -11.850913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -10.233995 + inSlope: 14.153236 + outSlope: 14.153236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -8.512523 + inSlope: 30.883757 + outSlope: 30.883757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -6.2424173 + inSlope: 25.474615 + outSlope: 25.474615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -5.1586514 + inSlope: -0.5943781 + outSlope: -0.5943781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -6.313123 + inSlope: -26.775875 + outSlope: -26.775875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.678625 + inSlope: -33.36776 + outSlope: -33.36776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 18.139141 + inSlope: -35.946312 + outSlope: -35.946312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 16.018991 + inSlope: -11.14397 + outSlope: -11.14397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 16.160673 + inSlope: 2.6821258 + outSlope: 2.6821258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 16.160673 + inSlope: 0.00008583046 + outSlope: 0.00008583046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 16.160673 + inSlope: -2.9469995 + outSlope: -2.9469995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 15.769755 + inSlope: -9.847665 + outSlope: -9.847665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 14.859784 + inSlope: -14.39467 + outSlope: -14.39467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 13.852184 + inSlope: -13.090051 + outSlope: -13.090051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 13.079958 + inSlope: -8.377169 + outSlope: -8.377169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 12.669988 + inSlope: -3.4293132 + outSlope: -3.4293132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 12.565193 + inSlope: -0.5070882 + outSlope: -0.5070882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 12.587137 + inSlope: 0.5461412 + outSlope: 0.5461412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 12.640328 + inSlope: 1.3021815 + outSlope: 1.3021815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 12.763341 + inSlope: 2.663286 + outSlope: 2.663286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 12.995576 + inSlope: 5.8254213 + outSlope: 5.8254213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 13.553751 + inSlope: 11.816065 + outSlope: 11.816065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 14.598655 + inSlope: 19.554008 + outSlope: 19.554008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 16.160673 + inSlope: 23.387941 + outSlope: 23.387941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 17.69026 + inSlope: 24.122652 + outSlope: 24.122652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 19.22929 + inSlope: 26.255274 + outSlope: 26.255274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 20.946198 + inSlope: 23.696846 + outSlope: 23.696846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 22.299526 + inSlope: 13.845705 + outSlope: 13.845705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 22.938793 + inSlope: 4.3109365 + outSlope: 4.3109365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 23.063173 + inSlope: -2.3580287 + outSlope: -2.3580287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 22.62065 + inSlope: -12.739261 + outSlope: -12.739261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 21.279558 + inSlope: -23.50931 + outSlope: -23.50931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -49.717533 + inSlope: 318.7031 + outSlope: 318.7031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -28.518526 + inSlope: 227.51743 + outSlope: 227.51743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -19.034512 + inSlope: 70.83974 + outSlope: 70.83974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -19.034512 + inSlope: -0.00017166093 + outSlope: -0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -19.034512 + inSlope: 22.321321 + outSlope: 22.321321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -16.0586 + inSlope: 78.07193 + outSlope: 78.07193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -8.624478 + inSlope: 127.99369 + outSlope: 127.99369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 1.0231538 + inSlope: 144.28604 + outSlope: 144.28604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 10.648724 + inSlope: 127.349686 + outSlope: 127.349686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 18.037855 + inSlope: 77.42054 + outSlope: 77.42054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 20.98755 + inSlope: 10.745927 + outSlope: 10.745927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 19.47236 + inSlope: -40.5874 + outSlope: -40.5874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 15.575228 + inSlope: -69.12338 + outSlope: -69.12338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 10.253258 + inSlope: -83.2967 + outSlope: -83.2967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 4.4639273 + inSlope: -92.56057 + outSlope: -92.56057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -2.096876 + inSlope: -108.89394 + outSlope: -108.89394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -10.072387 + inSlope: -126.86547 + outSlope: -126.86547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -19.03452 + inSlope: -149.71753 + outSlope: -149.71753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -30.04976 + inSlope: -181.93575 + outSlope: -181.93575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -43.29701 + inSlope: -200.67245 + outSlope: -200.67245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -56.80543 + inSlope: -188.04166 + outSlope: -188.04166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -68.41033 + inSlope: -146.41356 + outSlope: -146.41356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -76.40926 + inSlope: -81.72119 + outSlope: -81.72119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -79.35461 + inSlope: 1.1247264 + outSlope: 1.1247264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -76.255714 + inSlope: 84.63738 + outSlope: 84.63738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -68.039856 + inSlope: 124.04586 + outSlope: 124.04586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone36" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 17.698275 + inSlope: -18.870428 + outSlope: -18.870428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 16.451088 + inSlope: -12.740331 + outSlope: -12.740331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 15.979843 + inSlope: -3.512195 + outSlope: -3.512195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 15.979843 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 15.979843 + inSlope: 1.3815321 + outSlope: 1.3815321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 16.164392 + inSlope: 5.232501 + outSlope: 5.232501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 16.679134 + inSlope: 9.757379 + outSlope: 9.757379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 17.46597 + inSlope: 13.411744 + outSlope: 13.411744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 18.46544 + inSlope: 16.157385 + outSlope: 16.157385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 19.615507 + inSlope: 17.948265 + outSlope: 17.948265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 20.851562 + inSlope: 18.752306 + outSlope: 18.752306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 22.107735 + inSlope: 18.566568 + outSlope: 18.566568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 23.319117 + inSlope: 17.424591 + outSlope: 17.424591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 24.424252 + inSlope: 15.396838 + outSlope: 15.396838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 25.367056 + inSlope: 12.570084 + outSlope: 12.570084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 26.097305 + inSlope: 9.02665 + outSlope: 9.02665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 26.5691 + inSlope: 4.80206 + outSlope: 4.80206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 26.737072 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 26.569096 + inSlope: -4.800515 + outSlope: -4.800515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 26.097305 + inSlope: -9.017659 + outSlope: -9.017659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 25.367054 + inSlope: -12.523911 + outSlope: -12.523911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 24.427473 + inSlope: -15.353322 + outSlope: -15.353322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 23.31911 + inSlope: -17.348974 + outSlope: -17.348974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 22.111622 + inSlope: -18.47164 + outSlope: -18.47164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 20.851562 + inSlope: -18.638323 + outSlope: -18.638323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 19.61927 + inSlope: -18.237535 + outSlope: -18.237535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 95.61114 + inSlope: 13.119358 + outSlope: 13.119358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 96.50059 + inSlope: 9.568724 + outSlope: 9.568724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 96.861305 + inSlope: 2.7325084 + outSlope: 2.7325084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 96.861305 + inSlope: -0.00034332185 + outSlope: -0.00034332185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 96.861305 + inSlope: -1.074258 + outSlope: -1.074258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 96.718414 + inSlope: -3.993534 + outSlope: -3.993534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 96.330925 + inSlope: -7.1228986 + outSlope: -7.1228986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 95.769714 + inSlope: -9.137887 + outSlope: -9.137887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 95.11025 + inSlope: -10.039797 + outSlope: -10.039797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 94.424644 + inSlope: -9.932645 + outSlope: -9.932645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 93.77501 + inSlope: -9.010858 + outSlope: -9.010858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 93.20857 + inSlope: -7.523582 + outSlope: -7.523582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 92.75444 + inSlope: -5.756155 + outSlope: -5.756155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 92.42244 + inSlope: -3.9887276 + outSlope: -3.9887276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 92.20472 + inSlope: -2.454399 + outSlope: -2.454399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 92.08001 + inSlope: -1.2974179 + outSlope: -1.2974179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 92.02094 + inSlope: -0.52906084 + outSlope: -0.52906084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 92.004135 + inSlope: 0.00068664615 + outSlope: 0.00068664615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 92.02094 + inSlope: 0.5489736 + outSlope: 0.5489736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 92.08001 + inSlope: 1.369506 + outSlope: 1.369506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 92.20472 + inSlope: 2.5814462 + outSlope: 2.5814462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 92.421585 + inSlope: 4.1768684 + outSlope: 4.1768684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 92.75443 + inSlope: 5.9830914 + outSlope: 5.9830914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 93.20697 + inSlope: 7.768715 + outSlope: 7.768715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 93.77501 + inSlope: 9.248437 + outSlope: 9.248437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 94.42252 + inSlope: 10.168814 + outSlope: 10.168814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -21.517866 + inSlope: -33.05992 + outSlope: -33.05992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -23.723719 + inSlope: -22.807129 + outSlope: -22.807129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -24.555805 + inSlope: -6.244875 + outSlope: -6.244875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -24.555805 + inSlope: 0.00017166093 + outSlope: 0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -24.555805 + inSlope: 2.444632 + outSlope: 2.444632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -24.22995 + inSlope: 9.26423 + outSlope: 9.26423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -23.320951 + inSlope: 17.252523 + outSlope: 17.252523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -21.929512 + inSlope: 23.743195 + outSlope: 23.743195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -20.154343 + inSlope: 28.76086 + outSlope: 28.76086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -18.093313 + inSlope: 32.30959 + outSlope: 32.30959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -15.845116 + inSlope: 34.360806 + outSlope: 34.360806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -13.511395 + inSlope: 34.85403 + outSlope: 34.85403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -11.199023 + inSlope: 33.691795 + outSlope: 33.691795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -9.021963 + inSlope: 30.759258 + outSlope: 30.759258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -7.101947 + inSlope: 25.942808 + outSlope: 25.942808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -5.5674872 + inSlope: 19.160753 + outSlope: 19.160753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -4.550961 + inSlope: 10.392926 + outSlope: 10.392926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -4.1838427 + inSlope: 0.00021457692 + outSlope: 0.00021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -4.55096 + inSlope: -10.38503 + outSlope: -10.38503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -5.5674896 + inSlope: -19.133945 + outSlope: -19.133945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -7.101951 + inSlope: -25.848473 + outSlope: -25.848473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -9.015504 + inSlope: -30.704027 + outSlope: -30.704027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -11.199026 + inSlope: -33.6303 + outSlope: -33.6303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -13.504082 + inSlope: -34.81193 + outSlope: -34.81193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -15.845114 + inSlope: -34.34029 + outSlope: -34.34029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -18.086527 + inSlope: -33.590748 + outSlope: -33.590748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone35/Bone37" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -7.706382 + inSlope: -3.87237 + outSlope: -3.87237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -7.9759965 + inSlope: -2.92654 + outSlope: -2.92654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -8.076512 + inSlope: -0.7750089 + outSlope: -0.7750089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -8.076512 + inSlope: 0.00021457615 + outSlope: 0.00021457615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -8.076512 + inSlope: 0.2968457 + outSlope: 0.2968457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -8.037232 + inSlope: 1.1330091 + outSlope: 1.1330091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -7.927094 + inSlope: 2.107331 + outSlope: 2.107331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -7.7570157 + inSlope: 2.9071097 + outSlope: 2.9071097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -7.537734 + inSlope: 3.5368714 + outSlope: 3.5368714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -7.2804785 + inSlope: 3.9910736 + outSlope: 3.9910736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -6.997405 + inSlope: 4.258537 + outSlope: 4.258537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -6.7017655 + inSlope: 4.3258066 + outSlope: 4.3258066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -6.4079237 + inSlope: 4.180087 + outSlope: 4.180087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -6.1311955 + inSlope: 3.8095343 + outSlope: 3.8095343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -5.887574 + inSlope: 3.2052844 + outSlope: 3.2052844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -5.6934266 + inSlope: 2.363715 + outSlope: 2.363715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -5.56517 + inSlope: 1.2812603 + outSlope: 1.2812603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -5.5189333 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -5.5651703 + inSlope: -1.2957013 + outSlope: -1.2957013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -5.6934266 + inSlope: -2.4118917 + outSlope: -2.4118917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -5.887571 + inSlope: -3.2912023 + outSlope: -3.2912023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -6.1303725 + inSlope: -3.9392247 + outSlope: -3.9392247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -6.4079237 + inSlope: -4.342565 + outSlope: -4.342565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -6.7008376 + inSlope: -4.500901 + outSlope: -4.500901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -6.997405 + inSlope: -4.436464 + outSlope: -4.436464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -7.279628 + inSlope: -4.572559 + outSlope: -4.572559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 84.948814 + inSlope: -26.950422 + outSlope: -26.950422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 83.15346 + inSlope: -18.530455 + outSlope: -18.530455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 82.47543 + inSlope: -5.082555 + outSlope: -5.082555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 82.47543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 82.47543 + inSlope: 1.9912739 + outSlope: 1.9912739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 82.740974 + inSlope: 7.5445247 + outSlope: 7.5445247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 83.48154 + inSlope: 14.047357 + outSlope: 14.047357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 84.61409 + inSlope: 19.31055 + outSlope: 19.31055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 86.05613 + inSlope: 23.331894 + outSlope: 23.331894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 87.7247 + inSlope: 26.099327 + outSlope: 26.099327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 89.53545 + inSlope: 27.588413 + outSlope: 27.588413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 91.40221 + inSlope: 27.765911 + outSlope: 27.765911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 93.23653 + inSlope: 26.599985 + outSlope: 26.599985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 94.94769 + inSlope: 24.058708 + outSlope: 24.058708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 96.442986 + inSlope: 20.112066 + outSlope: 20.112066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 97.62814 + inSlope: 14.746413 + outSlope: 14.746413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 98.4083 + inSlope: 7.9606323 + outSlope: 7.9606323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 98.689064 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 98.4083 + inSlope: -7.9585724 + outSlope: -7.9585724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 97.62814 + inSlope: -14.740814 + outSlope: -14.740814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 96.442986 + inSlope: -20.063457 + outSlope: -20.063457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 94.95275 + inSlope: -24.040512 + outSlope: -24.040512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 93.23653 + inSlope: -26.573893 + outSlope: -26.573893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 91.408035 + inSlope: -27.743938 + outSlope: -27.743938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 89.53545 + inSlope: -27.5685 + outSlope: -27.5685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 87.73018 + inSlope: -27.03238 + outSlope: -27.03238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -16.8341 + inSlope: -16.607422 + outSlope: -16.607422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -17.938663 + inSlope: -11.393308 + outSlope: -11.393308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -18.358118 + inSlope: -3.1409771 + outSlope: -3.1409771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -18.358118 + inSlope: -0.0002574914 + outSlope: -0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -18.358118 + inSlope: 1.2322724 + outSlope: 1.2322724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -18.193687 + inSlope: 4.661984 + outSlope: 4.661984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -17.736158 + inSlope: 8.655745 + outSlope: 8.655745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -17.03937 + inSlope: 11.844046 + outSlope: 11.844046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -16.157202 + inSlope: 14.226192 + outSlope: 14.226192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -15.143464 + inSlope: 15.803148 + outSlope: 15.803148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -14.051703 + inSlope: 16.578686 + outSlope: 16.578686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -12.935176 + inSlope: 16.556885 + outSlope: 16.556885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -11.846784 + inSlope: 15.741921 + outSlope: 15.741921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -10.83912 + inSlope: 14.138431 + outSlope: 14.138431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -9.964541 + inSlope: 11.748561 + outSlope: 11.748561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -9.275213 + inSlope: 8.573722 + outSlope: 8.573722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -8.82329 + inSlope: 4.6136613 + outSlope: 4.6136613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -8.661012 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -8.823289 + inSlope: -4.6100993 + outSlope: -4.6100993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -9.275213 + inSlope: -8.560099 + outSlope: -8.560099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -9.964542 + inSlope: -11.702339 + outSlope: -11.702339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -10.83616 + inSlope: -14.105386 + outSlope: -14.105386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -11.846784 + inSlope: -15.69686 + outSlope: -15.69686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -12.931704 + inSlope: -16.513067 + outSlope: -16.513067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -14.051703 + inSlope: -16.535513 + outSlope: -16.535513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -15.140143 + inSlope: -16.23808 + outSlope: -16.23808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone34/Bone38" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.0000069184384 + inSlope: 0.0003113289 + outSlope: 0.0003113289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.0000069184375 + inSlope: 0.00031132888 + outSlope: 0.00031132888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0000069184375 + inSlope: 0.00031133 + outSlope: 0.00031133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0000069184375 + inSlope: 0.00031132888 + outSlope: 0.00031132888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0000069184375 + inSlope: 0.00031133 + outSlope: 0.00031133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.0000069184375 + inSlope: 0.00031133 + outSlope: 0.00031133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0000069184375 + inSlope: 0.00031132888 + outSlope: 0.00031132888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0000069184375 + inSlope: 0.00031133 + outSlope: 0.00031133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0000069184384 + inSlope: 0.00031133002 + outSlope: 0.00031133002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.0000069184375 + inSlope: 0.00031132888 + outSlope: 0.00031132888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000069184384 + inSlope: 0.00031133002 + outSlope: 0.00031133002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.0000069184384 + inSlope: 0.00031133002 + outSlope: 0.00031133002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.0000069184366 + inSlope: 0.00031132993 + outSlope: 0.00031132993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.0000069184366 + inSlope: 0.00031132993 + outSlope: 0.00031132993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.0000069184375 + inSlope: 0.00031132778 + outSlope: 0.00031132778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.0000069184366 + inSlope: 0.00031132993 + outSlope: 0.00031132993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0000069184384 + inSlope: 0.00031133002 + outSlope: 0.00031133002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0000069184375 + inSlope: 0.00031133 + outSlope: 0.00031133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0000069184384 + inSlope: 0.00031133002 + outSlope: 0.00031133002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.0000069184366 + inSlope: 0.00031132772 + outSlope: 0.00031132772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.0000069184375 + inSlope: 0.00031133 + outSlope: 0.00031133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.0000069184375 + inSlope: 0.00031133 + outSlope: 0.00031133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0000069184366 + inSlope: 0.00031132993 + outSlope: 0.00031132993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.0000069184366 + inSlope: 0.00031132993 + outSlope: 0.00031132993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000069184384 + inSlope: 0.00031133002 + outSlope: 0.00031133002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0000069184384 + inSlope: 0.0003113278 + outSlope: 0.0003113278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -14.473866 + inSlope: -8.495628 + outSlope: -8.495628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -15.040274 + inSlope: -5.8588734 + outSlope: -5.8588734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -15.255119 + inSlope: -1.6112152 + outSlope: -1.6112152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -15.255119 + inSlope: -0.00034332185 + outSlope: -0.00034332185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -15.255119 + inSlope: 0.63137114 + outSlope: 0.63137114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -15.170912 + inSlope: 2.389443 + outSlope: 2.389443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -14.9365015 + inSlope: 4.437478 + outSlope: 4.437478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -14.579195 + inSlope: 6.0769043 + outSlope: 6.0769043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -14.126306 + inSlope: 7.3049283 + outSlope: 7.3049283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -13.60514 + inSlope: 8.124669 + outSlope: 8.124669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -13.04301 + inSlope: 8.534111 + outSlope: 8.534111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -12.467224 + inSlope: 8.534326 + outSlope: 8.534326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -11.905096 + inSlope: 8.124655 + outSlope: 8.124655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -11.38393 + inSlope: 7.3054004 + outSlope: 7.3054004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -10.931039 + inSlope: 6.075788 + outSlope: 6.075788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -10.573734 + inSlope: 4.437966 + outSlope: 4.437966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -10.339324 + inSlope: 2.3894858 + outSlope: 2.3894858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -10.255117 + inSlope: 0.0002574923 + outSlope: 0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -10.339324 + inSlope: -2.3895717 + outSlope: -2.3895717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -10.573734 + inSlope: -4.4375906 + outSlope: -4.4375906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -10.931039 + inSlope: -6.065446 + outSlope: -6.065446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -11.382394 + inSlope: -7.305529 + outSlope: -7.305529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -11.905096 + inSlope: -8.1227665 + outSlope: -8.1227665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -12.465433 + inSlope: -8.534583 + outSlope: -8.534583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -13.04301 + inSlope: -8.535227 + outSlope: -8.535227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -13.603435 + inSlope: -8.406076 + outSlope: -8.406076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 2.0355549e-13 + inSlope: -9.159973e-12 + outSlope: -9.159973e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 2.0355549e-13 + inSlope: -9.160006e-12 + outSlope: -9.160006e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -2.0355549e-13 + inSlope: 9.159973e-12 + outSlope: 9.159973e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -5.0888865e-14 + inSlope: 2.290001e-12 + outSlope: 2.290001e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 1.01777744e-13 + inSlope: -4.5799866e-12 + outSlope: -4.5799866e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 5.0888865e-14 + inSlope: -2.290001e-12 + outSlope: -2.290001e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.01777744e-13 + inSlope: -4.580003e-12 + outSlope: -4.580003e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -5.0888872e-14 + inSlope: 2.2900015e-12 + outSlope: 2.2900015e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 1.01777744e-13 + inSlope: -4.580003e-12 + outSlope: -4.580003e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 5.0888865e-14 + inSlope: -2.290001e-12 + outSlope: -2.290001e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -1.5266662e-13 + inSlope: 6.870004e-12 + outSlope: 6.870004e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 5.0888865e-14 + inSlope: -2.290001e-12 + outSlope: -2.290001e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 1.01777744e-13 + inSlope: -4.57997e-12 + outSlope: -4.57997e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -1.01777744e-13 + inSlope: 4.580003e-12 + outSlope: 4.580003e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 1.01777744e-13 + inSlope: -4.580003e-12 + outSlope: -4.580003e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 5.0888872e-14 + inSlope: -2.2900015e-12 + outSlope: -2.2900015e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.0355546e-13 + inSlope: -9.159938e-12 + outSlope: -9.159938e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone01" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.00000017010031 + inSlope: 0.000007654494 + outSlope: 0.000007654494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.00000017010056 + inSlope: 0.000007654505 + outSlope: 0.000007654505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.00000017010048 + inSlope: 0.000007654529 + outSlope: 0.000007654529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.00000017010048 + inSlope: 0.000007654502 + outSlope: 0.000007654502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.00000017010048 + inSlope: 0.000007654529 + outSlope: 0.000007654529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00000017010036 + inSlope: 0.000007654524 + outSlope: 0.000007654524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.00000017010052 + inSlope: 0.000007654503 + outSlope: 0.000007654503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.00000017010022 + inSlope: 0.0000076545175 + outSlope: 0.0000076545175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.00000017010026 + inSlope: 0.000007654518 + outSlope: 0.000007654518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.00000017010018 + inSlope: 0.000007654488 + outSlope: 0.000007654488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000001701005 + inSlope: 0.00000765453 + outSlope: 0.00000765453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.00000017010022 + inSlope: 0.0000076545175 + outSlope: 0.0000076545175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.00000017010059 + inSlope: 0.000007654534 + outSlope: 0.000007654534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.00000017010046 + inSlope: 0.000007654528 + outSlope: 0.000007654528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.00000017010024 + inSlope: 0.000007654463 + outSlope: 0.000007654463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.00000017010052 + inSlope: 0.000007654531 + outSlope: 0.000007654531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.00000017010038 + inSlope: 0.000007654524 + outSlope: 0.000007654524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.00000017010021 + inSlope: 0.0000076545175 + outSlope: 0.0000076545175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.00000017010038 + inSlope: 0.000007654524 + outSlope: 0.000007654524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.00000017010052 + inSlope: 0.000007654476 + outSlope: 0.000007654476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.00000017010031 + inSlope: 0.000007654521 + outSlope: 0.000007654521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.00000017010012 + inSlope: 0.000007654513 + outSlope: 0.000007654513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.00000017010059 + inSlope: 0.000007654534 + outSlope: 0.000007654534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.00000017010035 + inSlope: 0.000007654523 + outSlope: 0.000007654523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000001701005 + inSlope: 0.00000765453 + outSlope: 0.00000765453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00000017010022 + inSlope: 0.000007654462 + outSlope: 0.000007654462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 18.593723 + inSlope: 8.496358 + outSlope: 8.496358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 19.16013 + inSlope: 5.858959 + outSlope: 5.858959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 19.374975 + inSlope: 1.6106144 + outSlope: 1.6106144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 19.374975 + inSlope: -0.0002574914 + outSlope: -0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 19.374975 + inSlope: -0.63197196 + outSlope: -0.63197196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 19.290768 + inSlope: -2.389357 + outSlope: -2.389357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 19.056358 + inSlope: -4.438122 + outSlope: -4.438122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 18.699053 + inSlope: -6.0769043 + outSlope: -6.0769043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 18.246162 + inSlope: -7.3048854 + outSlope: -7.3048854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 17.725 + inSlope: -8.124111 + outSlope: -8.124111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 17.162868 + inSlope: -8.534154 + outSlope: -8.534154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 16.587082 + inSlope: -8.534326 + outSlope: -8.534326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 16.024952 + inSlope: -8.124569 + outSlope: -8.124569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 15.503789 + inSlope: -7.3054433 + outSlope: -7.3054433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 15.050897 + inSlope: -6.0764747 + outSlope: -6.0764747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 14.69359 + inSlope: -4.43788 + outSlope: -4.43788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 14.459182 + inSlope: -2.3894858 + outSlope: -2.3894858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 14.374976 + inSlope: -0.0003004077 + outSlope: -0.0003004077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 14.459182 + inSlope: 2.3895717 + outSlope: 2.3895717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 14.69359 + inSlope: 4.4376764 + outSlope: 4.4376764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 15.050899 + inSlope: 6.06536 + outSlope: 6.06536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 15.502253 + inSlope: 7.305486 + outSlope: 7.305486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 16.024952 + inSlope: 8.122852 + outSlope: 8.122852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 16.585289 + inSlope: 8.533982 + outSlope: 8.533982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 17.162868 + inSlope: 8.535184 + outSlope: 8.535184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 17.723291 + inSlope: 8.406119 + outSlope: 8.406119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -8.269442e-14 + inSlope: 3.7212386e-12 + outSlope: 3.7212386e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 1.4312496e-13 + inSlope: -6.4406063e-12 + outSlope: -6.4406063e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -2.862499e-14 + inSlope: 1.2881259e-12 + outSlope: 1.2881259e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -2.862499e-14 + inSlope: 1.2881212e-12 + outSlope: 1.2881212e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -2.862499e-14 + inSlope: 1.2881259e-12 + outSlope: 1.2881259e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 3.49861e-14 + inSlope: -1.5743759e-12 + outSlope: -1.5743759e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 1.5266662e-13 + inSlope: -6.86998e-12 + outSlope: -6.86998e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 6.361109e-14 + inSlope: -2.8625017e-12 + outSlope: -2.8625017e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 2.289999e-13 + inSlope: -1.0305006e-11 + outSlope: -1.0305006e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 3.1805545e-14 + inSlope: -1.4312457e-12 + outSlope: -1.4312457e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 1.9560407e-13 + inSlope: -8.802192e-12 + outSlope: -8.802192e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 2.8624992e-13 + inSlope: -1.28812586e-11 + outSlope: -1.28812586e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -1.5743742e-13 + inSlope: 7.0846905e-12 + outSlope: 7.0846905e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 4.7708313e-15 + inSlope: -2.146876e-13 + outSlope: -2.146876e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 2.2899992e-13 + inSlope: -1.0304933e-11 + outSlope: -1.0304933e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -1.9083327e-14 + inSlope: 8.587505e-13 + outSlope: 8.587505e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 6.361109e-14 + inSlope: -2.8625017e-12 + outSlope: -2.8625017e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 2.623957e-13 + inSlope: -1.1807819e-11 + outSlope: -1.1807819e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 6.361109e-14 + inSlope: -2.8625017e-12 + outSlope: -2.8625017e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -1.9083327e-14 + inSlope: 8.587444e-13 + outSlope: 8.587444e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 1.5266662e-13 + inSlope: -6.870004e-12 + outSlope: -6.870004e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 8.4284684e-14 + inSlope: -3.7928146e-12 + outSlope: -3.7928146e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -1.5743742e-13 + inSlope: 7.0846905e-12 + outSlope: 7.0846905e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 1.7652077e-13 + inSlope: -7.943442e-12 + outSlope: -7.943442e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.9560407e-13 + inSlope: -8.802192e-12 + outSlope: -8.802192e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 1.4630551e-13 + inSlope: -6.583707e-12 + outSlope: -6.583707e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000005008955 + inSlope: 0.0002254024 + outSlope: 0.0002254024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.000005008955 + inSlope: 0.0002254024 + outSlope: 0.0002254024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.000005008955 + inSlope: 0.0002254032 + outSlope: 0.0002254032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.000005008955 + inSlope: 0.0002254024 + outSlope: 0.0002254024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000005008955 + inSlope: 0.0002254032 + outSlope: 0.0002254032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.000005008956 + inSlope: 0.00022540323 + outSlope: 0.00022540323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.0000050089557 + inSlope: 0.00022540241 + outSlope: 0.00022540241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.0000050089548 + inSlope: 0.00022540319 + outSlope: 0.00022540319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0000050089548 + inSlope: 0.00022540319 + outSlope: 0.00022540319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.000005008955 + inSlope: 0.0002254024 + outSlope: 0.0002254024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.000005008955 + inSlope: 0.0002254032 + outSlope: 0.0002254032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.000005008953 + inSlope: 0.0002254031 + outSlope: 0.0002254031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000005008956 + inSlope: 0.00022540323 + outSlope: 0.00022540323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.0000050089557 + inSlope: 0.00022540322 + outSlope: 0.00022540322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.0000050089548 + inSlope: 0.00022540157 + outSlope: 0.00022540157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.000005008955 + inSlope: 0.0002254032 + outSlope: 0.0002254032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.0000050089557 + inSlope: 0.00022540322 + outSlope: 0.00022540322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.0000050089566 + inSlope: 0.00022540326 + outSlope: 0.00022540326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.0000050089557 + inSlope: 0.00022540322 + outSlope: 0.00022540322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.000005008955 + inSlope: 0.0002254016 + outSlope: 0.0002254016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.000005008956 + inSlope: 0.00022540323 + outSlope: 0.00022540323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.0000050089557 + inSlope: 0.00022540322 + outSlope: 0.00022540322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.000005008956 + inSlope: 0.00022540323 + outSlope: 0.00022540323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.000005008956 + inSlope: 0.00022540323 + outSlope: 0.00022540323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000005008955 + inSlope: 0.0002254032 + outSlope: 0.0002254032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.000005008956 + inSlope: 0.00022540161 + outSlope: 0.00022540161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -145.5684 + inSlope: 8.495843 + outSlope: 8.495843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -145.00201 + inSlope: 5.8598175 + outSlope: 5.8598175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -144.78716 + inSlope: 1.6108719 + outSlope: 1.6108719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -144.78716 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -144.78716 + inSlope: -0.6324011 + outSlope: -0.6324011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -144.87138 + inSlope: -2.388842 + outSlope: -2.388842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -145.10579 + inSlope: -4.4377785 + outSlope: -4.4377785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -145.46309 + inSlope: -6.0768185 + outSlope: -6.0768185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -145.91599 + inSlope: -7.3052287 + outSlope: -7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -146.43715 + inSlope: -8.124369 + outSlope: -8.124369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -146.99927 + inSlope: -8.535012 + outSlope: -8.535012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -147.57506 + inSlope: -8.533639 + outSlope: -8.533639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -148.13719 + inSlope: -8.124397 + outSlope: -8.124397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -148.65836 + inSlope: -7.3059154 + outSlope: -7.3059154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -149.11125 + inSlope: -6.0760884 + outSlope: -6.0760884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -149.46857 + inSlope: -4.4371076 + outSlope: -4.4371076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -149.70296 + inSlope: -2.3902154 + outSlope: -2.3902154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -149.78717 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -149.70296 + inSlope: 2.3895288 + outSlope: 2.3895288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -149.46857 + inSlope: 4.438449 + outSlope: 4.438449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -149.11125 + inSlope: 6.0651455 + outSlope: 6.0651455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -148.6599 + inSlope: 7.3052287 + outSlope: 7.3052287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -148.13719 + inSlope: 8.123024 + outSlope: 8.123024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -147.57686 + inSlope: 8.534326 + outSlope: 8.534326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -146.99927 + inSlope: 8.535012 + outSlope: 8.535012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -146.43886 + inSlope: 8.4065485 + outSlope: 8.4065485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000018669334 + inSlope: 0.00015347413 + outSlope: 0.00015347413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.000018669334 + inSlope: 0.00015347413 + outSlope: 0.00015347413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.000018669334 + inSlope: 0.00015347413 + outSlope: 0.00015347413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.000018669334 + inSlope: 0.00015347413 + outSlope: 0.00015347413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.000018669332 + inSlope: 0.0001534746 + outSlope: 0.0001534746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.000018669334 + inSlope: 0.00015347413 + outSlope: 0.00015347413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.000018669336 + inSlope: 0.00015347476 + outSlope: 0.00015347476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.000018669334 + inSlope: 0.00015347358 + outSlope: 0.00015347358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.000018669334 + inSlope: 0.00015347358 + outSlope: 0.00015347358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000018669334 + inSlope: 0.00015347467 + outSlope: 0.00015347467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.000018669334 + inSlope: 0.00015347358 + outSlope: 0.00015347358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: -0.00000982026 + inSlope: -0.00024473405 + outSlope: -0.00024473405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666851 + value: -0.000009820261 + inSlope: -0.00024473402 + outSlope: -0.00024473402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333535 + value: -0.00000982026 + inSlope: -0.00024473318 + outSlope: -0.00024473318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000196 + value: -0.000009820261 + inSlope: -0.00024473402 + outSlope: -0.00024473402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666688 + value: -0.000009820261 + inSlope: -0.00024473315 + outSlope: -0.00024473315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333354 + value: -0.00000982026 + inSlope: -0.00024473405 + outSlope: -0.00024473405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000224 + value: -0.00000982026 + inSlope: -0.00024473318 + outSlope: -0.00024473318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666884 + value: -0.000009820261 + inSlope: -0.00024473402 + outSlope: -0.00024473402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333545 + value: -0.00000982026 + inSlope: -0.00024473405 + outSlope: -0.00024473405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000023 + value: -0.00000982026 + inSlope: -0.00024473318 + outSlope: -0.00024473318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666689 + value: -0.00000982026 + inSlope: -0.00024473405 + outSlope: -0.00024473405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333573 + value: -0.00000982026 + inSlope: -0.00024473318 + outSlope: -0.00024473318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.80000234 + value: -0.000009820261 + inSlope: -0.00024473402 + outSlope: -0.00024473402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666894 + value: -0.000009820261 + inSlope: -0.00024473402 + outSlope: -0.00024473402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.933336 + value: -0.000009820261 + inSlope: -0.00024473228 + outSlope: -0.00024473228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000026 + value: -0.000009820263 + inSlope: -0.0002447339 + outSlope: -0.0002447339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666692 + value: -0.000009820263 + inSlope: -0.0002447339 + outSlope: -0.0002447339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333358 + value: -0.000009820264 + inSlope: -0.00024473388 + outSlope: -0.00024473388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2000024 + value: -0.000009820264 + inSlope: -0.00024473388 + outSlope: -0.00024473388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666695 + value: -0.000009820263 + inSlope: -0.00024473216 + outSlope: -0.00024473216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333361 + value: -0.000009820263 + inSlope: -0.0002447339 + outSlope: -0.0002447339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000027 + value: -0.000009820262 + inSlope: -0.00024473396 + outSlope: -0.00024473396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666693 + value: -0.000009820261 + inSlope: -0.00024473402 + outSlope: -0.00024473402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333364 + value: -0.00000982026 + inSlope: -0.0002447323 + outSlope: -0.0002447323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.600003 + value: -0.00000982026 + inSlope: -0.00024473405 + outSlope: -0.00024473405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00000982026 + inSlope: -0.00024473405 + outSlope: -0.00024473405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: 13.041423 + inSlope: -31.923338 + outSlope: -31.923338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666851 + value: 10.913141 + inSlope: -30.609741 + outSlope: -30.609741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333535 + value: 8.95979 + inSlope: -25.363117 + outSlope: -25.363117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000196 + value: 7.531217 + inSlope: -14.868528 + outSlope: -14.868528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666688 + value: 6.97728 + inSlope: -4.154216 + outSlope: -4.154216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333354 + value: 6.9772773 + inSlope: 0.00010728846 + outSlope: 0.00010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000224 + value: 6.977284 + inSlope: -0.00019311854 + outSlope: -0.00019311854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666884 + value: 6.977284 + inSlope: -0.00019311924 + outSlope: -0.00019311924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333545 + value: 6.977284 + inSlope: -0.00019311924 + outSlope: -0.00019311924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000023 + value: 6.977283 + inSlope: -0.00015020331 + outSlope: -0.00015020331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666689 + value: 6.977282 + inSlope: 4.154102 + outSlope: 4.154102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333573 + value: 7.5312204 + inSlope: 14.827341 + outSlope: 14.827341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.80000234 + value: 8.954324 + inSlope: 25.363636 + outSlope: 25.363636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666894 + value: 10.913143 + inSlope: 30.602617 + outSlope: 30.602617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.933336 + value: 13.034864 + inSlope: 30.610554 + outSlope: 30.610554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000026 + value: 14.9947815 + inSlope: 25.38737 + outSlope: 25.38737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666692 + value: 16.420063 + inSlope: 14.867778 + outSlope: 14.867778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333358 + value: 16.977283 + inSlope: 4.1787567 + outSlope: 4.1787567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2000024 + value: 16.977283 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666695 + value: 16.977283 + inSlope: -0.00017166031 + outSlope: -0.00017166031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333361 + value: 16.977283 + inSlope: -19.443932 + outSlope: -19.443932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000027 + value: 14.384686 + inSlope: -55.5468 + outSlope: -55.5468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666693 + value: 9.569875 + inSlope: -55.53547 + outSlope: -55.53547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333364 + value: 6.9772806 + inSlope: -19.441603 + outSlope: -19.441603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.600003 + value: 6.9772816 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.9772797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.0000019073486 + value: -6.1066647e-13 + inSlope: 2.7480017e-11 + outSlope: 2.7480017e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666851 + value: -7.124442e-13 + inSlope: 3.206002e-11 + outSlope: 3.206002e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333535 + value: -4.5799985e-13 + inSlope: 2.0609939e-11 + outSlope: 2.0609939e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000196 + value: -7.124442e-13 + inSlope: 3.206002e-11 + outSlope: 3.206002e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666688 + value: 2.5444436e-13 + inSlope: -1.1449966e-11 + outSlope: -1.1449966e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333354 + value: 4.5799985e-13 + inSlope: -2.0610014e-11 + outSlope: -2.0610014e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000224 + value: -2.0355549e-13 + inSlope: 9.159973e-12 + outSlope: 9.159973e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666884 + value: -5.597776e-13 + inSlope: 2.5190015e-11 + outSlope: 2.5190015e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333545 + value: -6.1066647e-13 + inSlope: 2.7480017e-11 + outSlope: 2.7480017e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000023 + value: -3.562221e-13 + inSlope: 1.6029953e-11 + outSlope: 1.6029953e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666689 + value: -4.0711098e-13 + inSlope: 1.8320012e-11 + outSlope: 1.8320012e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333573 + value: -7.124442e-13 + inSlope: 3.2059907e-11 + outSlope: 3.2059907e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.80000234 + value: 5.0888872e-14 + inSlope: -2.2900015e-12 + outSlope: -2.2900015e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666894 + value: -6.1066647e-13 + inSlope: 2.7480017e-11 + outSlope: 2.7480017e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.933336 + value: -4.0711098e-13 + inSlope: 1.831988e-11 + outSlope: 1.831988e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000026 + value: -1.1195551e-12 + inSlope: 5.0380027e-11 + outSlope: 5.0380027e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666692 + value: -2.0355546e-13 + inSlope: 9.160004e-12 + outSlope: 9.160004e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333358 + value: -6.106664e-13 + inSlope: 2.7480013e-11 + outSlope: 2.7480013e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2000024 + value: -6.106664e-13 + inSlope: 2.7480013e-11 + outSlope: 2.7480013e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666695 + value: -7.124441e-13 + inSlope: 3.205979e-11 + outSlope: 3.205979e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333361 + value: -7.124441e-13 + inSlope: 3.2060018e-11 + outSlope: 3.2060018e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000027 + value: -6.106664e-13 + inSlope: 2.7480013e-11 + outSlope: 2.7480013e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666693 + value: -5.0888867e-13 + inSlope: 2.2900012e-11 + outSlope: 2.2900012e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333364 + value: -4.0711098e-13 + inSlope: 1.831988e-11 + outSlope: 1.831988e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.600003 + value: -5.088887e-13 + inSlope: 2.2900013e-11 + outSlope: 2.2900013e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -5.0888872e-14 + inSlope: 2.2900015e-12 + outSlope: 2.2900015e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone01/Bone02/Bone27/Bone28" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000010017913 + inSlope: -0.00001965328 + outSlope: -0.00001965328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000010017913 + inSlope: -0.00001965328 + outSlope: -0.00001965328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000010017913 + inSlope: -0.00001965328 + outSlope: -0.00001965328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 172.68094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 172.68094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 172.68094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000001487338 + inSlope: 0.000005577516 + outSlope: 0.000005577516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000001487338 + inSlope: 0.000005577516 + outSlope: 0.000005577516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.000001487338 + inSlope: 0.000005577516 + outSlope: 0.000005577516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.6424213e-13 + inSlope: 9.909078e-13 + outSlope: 9.909078e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.6424213e-13 + inSlope: 9.909078e-13 + outSlope: 9.909078e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.6424213e-13 + inSlope: 9.909078e-13 + outSlope: 9.909078e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.7080022 + inSlope: 0.000021010632 + outSlope: 0.000021010632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 1.7080022 + inSlope: 0.000021010632 + outSlope: 0.000021010632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 1.7080022 + inSlope: 0.000021010632 + outSlope: 0.000021010632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.1103338e-14 + inSlope: 7.9137495e-14 + outSlope: 7.9137495e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.1103338e-14 + inSlope: 7.9137495e-14 + outSlope: 7.9137495e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.1103338e-14 + inSlope: 7.9137495e-14 + outSlope: 7.9137495e-14 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -89.85872 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -89.86011 + inSlope: 0.1853938 + outSlope: 0.1853938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -89.857346 + inSlope: -0.061798155 + outSlope: -0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -89.857346 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -89.857346 + inSlope: -0.061798155 + outSlope: -0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -89.85598 + inSlope: -0.31311065 + outSlope: -0.31311065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -89.857346 + inSlope: 0.06179793 + outSlope: 0.06179793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -89.85872 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -89.85872 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -89.86011 + inSlope: 0.12428251 + outSlope: 0.12428251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -89.857346 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -89.86152 + inSlope: 0.18814105 + outSlope: 0.18814105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -89.85872 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -89.85872 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -89.857346 + inSlope: 0.12222214 + outSlope: 0.12222214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -89.85872 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -89.857346 + inSlope: 0.12222302 + outSlope: 0.12222302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -89.857346 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -89.857346 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -89.85872 + inSlope: 0.123595424 + outSlope: 0.123595424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -89.857346 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -89.85872 + inSlope: -0.1263429 + outSlope: -0.1263429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -89.85872 + inSlope: 0.12359631 + outSlope: 0.12359631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -89.85872 + inSlope: 0.12359631 + outSlope: 0.12359631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -89.857346 + inSlope: -0.061798155 + outSlope: -0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -89.86011 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 88.1024 + inSlope: 18.770779 + outSlope: 18.770779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 89.353546 + inSlope: 18.701427 + outSlope: 18.701427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 90.60439 + inSlope: 9.274186 + outSlope: 9.274186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 90.60439 + inSlope: 0.00034332185 + outSlope: 0.00034332185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 90.60439 + inSlope: -5.768858 + outSlope: -5.768858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 89.83253 + inSlope: -11.537373 + outSlope: -11.537373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 89.0627 + inSlope: -11.56926 + outSlope: -11.56926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 88.294075 + inSlope: -11.573078 + outSlope: -11.573078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 87.52515 + inSlope: -11.579601 + outSlope: -11.579601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 86.756454 + inSlope: -11.463516 + outSlope: -11.463516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 85.98718 + inSlope: -11.473857 + outSlope: -11.473857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 85.21859 + inSlope: -11.546299 + outSlope: -11.546299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 84.44773 + inSlope: -11.563465 + outSlope: -11.563465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 83.677956 + inSlope: -11.454974 + outSlope: -11.454974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 82.90911 + inSlope: -11.473432 + outSlope: -11.473432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 82.14037 + inSlope: -11.587498 + outSlope: -11.587498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 81.370834 + inSlope: -11.578915 + outSlope: -11.578915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 80.60254 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 81.370834 + inSlope: 11.572048 + outSlope: 11.572048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 82.14037 + inSlope: 11.548276 + outSlope: 11.548276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 82.90911 + inSlope: 11.589558 + outSlope: 11.589558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 83.67791 + inSlope: 11.449481 + outSlope: 11.449481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 84.44773 + inSlope: 11.555912 + outSlope: 11.555912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 85.21375 + inSlope: 11.48038 + outSlope: 11.48038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 85.98718 + inSlope: 11.593334 + outSlope: 11.593334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 86.75301 + inSlope: 11.553769 + outSlope: 11.553769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -89.991035 + inSlope: -0.03158561 + outSlope: -0.03158561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -89.99242 + inSlope: 0.030898966 + outSlope: 0.030898966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -89.9931 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -89.9931 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -89.9931 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -89.991035 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -89.99035 + inSlope: 0.03158561 + outSlope: 0.03158561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -89.991035 + inSlope: 0.030899078 + outSlope: 0.030899078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -89.991035 + inSlope: 0.030899078 + outSlope: 0.030899078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -89.99173 + inSlope: -0.06179793 + outSlope: -0.06179793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -89.99173 + inSlope: -0.061798155 + outSlope: -0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -89.99242 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -89.99035 + inSlope: 0.031585723 + outSlope: 0.031585723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -89.99035 + inSlope: -0.061798155 + outSlope: -0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -89.991035 + inSlope: -0.031585496 + outSlope: -0.031585496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -89.991035 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -89.99035 + inSlope: 0.031585723 + outSlope: 0.031585723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -89.991035 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -89.99035 + inSlope: -0.030899078 + outSlope: -0.030899078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -89.991035 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -89.991035 + inSlope: -0.031585723 + outSlope: -0.031585723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -89.99242 + inSlope: 0.09338388 + outSlope: 0.09338388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -89.99035 + inSlope: -0.030899078 + outSlope: -0.030899078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -89.989655 + inSlope: 0.061798155 + outSlope: 0.061798155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -89.99173 + inSlope: -0.030899078 + outSlope: -0.030899078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -89.991035 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000015558022 + inSlope: 0.000013465443 + outSlope: 0.000013465443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.00001542462 + inSlope: 0.0000074624118 + outSlope: 0.0000074624118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.000015261203 + inSlope: 0.00000010862106 + outSlope: 0.00000010862106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.000015261203 + inSlope: 0.00000010862067 + outSlope: 0.00000010862067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000015261203 + inSlope: 0.00000010862106 + outSlope: 0.00000010862106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.00001537793 + inSlope: 0.0000053613126 + outSlope: 0.0000053613126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.000015451302 + inSlope: 0.000008663051 + outSlope: 0.000008663051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.000015541347 + inSlope: 0.00001271513 + outSlope: 0.00001271513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.000015608048 + inSlope: 0.000015716656 + outSlope: 0.000015716656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.000015671414 + inSlope: 0.000018568076 + outSlope: 0.000018568076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.000015726442 + inSlope: 0.000021044409 + outSlope: 0.000021044409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.00001574812 + inSlope: 0.000022019953 + outSlope: 0.000022019953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000015778971 + inSlope: 0.000023408205 + outSlope: 0.000023408205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.000015782722 + inSlope: 0.00002357699 + outSlope: 0.00002357699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.000015792622 + inSlope: 0.000024022353 + outSlope: 0.000024022353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.000015786474 + inSlope: 0.000023745855 + outSlope: 0.000023745855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.000015761461 + inSlope: 0.000022620274 + outSlope: 0.000022620274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.000015729778 + inSlope: 0.00002119453 + outSlope: 0.00002119453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.000015760626 + inSlope: 0.000022582703 + outSlope: 0.000022582703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.000015787307 + inSlope: 0.000023783175 + outSlope: 0.000023783175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.000015789808 + inSlope: 0.000023895896 + outSlope: 0.000023895896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.000015795646 + inSlope: 0.000024158568 + outSlope: 0.000024158568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.000015779804 + inSlope: 0.000023445695 + outSlope: 0.000023445695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.000015746453 + inSlope: 0.000021944892 + outSlope: 0.000021944892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.00001572811 + inSlope: 0.00002111947 + outSlope: 0.00002111947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00001566808 + inSlope: 0.000018417972 + outSlope: 0.000018417972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.42809567 + inSlope: -0.00022128166 + outSlope: -0.00022128166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.42809638 + inSlope: -0.00018909524 + outSlope: -0.00018909524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.428097 + inSlope: -0.0001609327 + outSlope: -0.0001609327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.428097 + inSlope: -0.00016093212 + outSlope: -0.00016093212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.428097 + inSlope: -0.0001609327 + outSlope: -0.0001609327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.4280966 + inSlope: -0.00017970818 + outSlope: -0.00017970818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.42809626 + inSlope: -0.00019445964 + outSlope: -0.00019445964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.42809582 + inSlope: -0.00021457692 + outSlope: -0.00021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.4280954 + inSlope: -0.0002333524 + outSlope: -0.0002333524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.42809498 + inSlope: -0.00025212698 + outSlope: -0.00025212698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.42809454 + inSlope: -0.00027224448 + outSlope: -0.00027224448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.42809412 + inSlope: -0.00029101997 + outSlope: -0.00029101997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.4280937 + inSlope: -0.00030979543 + outSlope: -0.00030979543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.4280933 + inSlope: -0.00032722982 + outSlope: -0.00032722982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.42809287 + inSlope: 0.00033929734 + outSlope: 0.00033929734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.4280925 + inSlope: 0.0003232065 + outSlope: 0.0003232065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.42809197 + inSlope: 0.0002990666 + outSlope: 0.0002990666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.42809162 + inSlope: 0.0002829733 + outSlope: 0.0002829733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -0.42809197 + inSlope: 0.0002990666 + outSlope: 0.0002990666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.4280925 + inSlope: 0.00032320418 + outSlope: 0.00032320418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.42809287 + inSlope: 0.00033929976 + outSlope: 0.00033929976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.42809325 + inSlope: -0.00032991203 + outSlope: -0.00032991203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.4280937 + inSlope: -0.00030979543 + outSlope: -0.00030979543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.42809412 + inSlope: -0.00029101997 + outSlope: -0.00029101997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.42809454 + inSlope: -0.00027224448 + outSlope: -0.00027224448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.42809492 + inSlope: -0.00025480828 + outSlope: -0.00025480828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 9.999991 + inSlope: 37.498684 + outSlope: 37.498684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 12.49999 + inSlope: 37.495983 + outSlope: 37.495983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 14.9999895 + inSlope: 18.747286 + outSlope: 18.747286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 14.9999895 + inSlope: -0.00021457615 + outSlope: -0.00021457615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 14.9999895 + inSlope: -11.538617 + outSlope: -11.538617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 13.461529 + inSlope: -23.075947 + outSlope: -23.075947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 11.923069 + inSlope: -23.076206 + outSlope: -23.076206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 10.384608 + inSlope: -23.075903 + outSlope: -23.075903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 8.846147 + inSlope: -23.07616 + outSlope: -23.07616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 7.307684 + inSlope: -23.076292 + outSlope: -23.076292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 5.7692223 + inSlope: -23.075947 + outSlope: -23.075947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 4.2307596 + inSlope: -23.07616 + outSlope: -23.07616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 2.692299 + inSlope: -23.075775 + outSlope: -23.075775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 1.1538385 + inSlope: -23.07609 + outSlope: -23.07609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.38462383 + inSlope: -23.076153 + outSlope: -23.076153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -1.9230856 + inSlope: -23.075888 + outSlope: -23.075888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -3.4615467 + inSlope: -23.076172 + outSlope: -23.076172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -5.000006 + inSlope: 0.00027895 + outSlope: 0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -3.461546 + inSlope: 23.076033 + outSlope: 23.076033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -1.9230856 + inSlope: 23.076183 + outSlope: 23.076183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.38462263 + inSlope: 23.03947 + outSlope: 23.03947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 1.1490307 + inSlope: 23.076204 + outSlope: 23.076204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 2.692299 + inSlope: 23.076462 + outSlope: 23.076462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 4.2259536 + inSlope: 23.076054 + outSlope: 23.076054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 5.7692227 + inSlope: 23.076267 + outSlope: 23.076267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 7.3028755 + inSlope: 23.002996 + outSlope: 23.002996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.000000010005159 + inSlope: 0.000000450231 + outSlope: 0.000000450231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.000000010005159 + inSlope: 0.000000450231 + outSlope: 0.000000450231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.000000010005159 + inSlope: 0.0000004502326 + outSlope: 0.0000004502326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.000000010005159 + inSlope: 0.000000450231 + outSlope: 0.000000450231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000000010005159 + inSlope: 0.0000004502326 + outSlope: 0.0000004502326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.000000005836343 + inSlope: 0.0000002626357 + outSlope: 0.0000002626357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.000000005836343 + inSlope: 0.00000026263476 + outSlope: 0.00000026263476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.000000011672686 + inSlope: 0.0000005252714 + outSlope: 0.0000005252714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.0000000133402125 + inSlope: 0.00000060031016 + outSlope: 0.00000060031016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.0000000066701062 + inSlope: 0.00000030015508 + outSlope: 0.00000030015508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.0000000033350531 + inSlope: 0.00000015007754 + outSlope: 0.00000015007754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.000000010005159 + inSlope: 0.0000004502326 + outSlope: 0.0000004502326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.000000020010319 + inSlope: -0.0000009004652 + outSlope: -0.0000009004652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.0000000033350531 + inSlope: -0.00000015007754 + outSlope: -0.00000015007754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.0000000033350531 + inSlope: -0.00000015007754 + outSlope: -0.00000015007754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.0000000066701062 + inSlope: 0.00000030015292 + outSlope: 0.00000030015292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.000000011255804 + inSlope: 0.0000005065117 + outSlope: 0.0000005065117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.0000000041688164 + inSlope: 0.00000018759691 + outSlope: 0.00000018759691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.0000000050025797 + inSlope: 0.0000002251163 + outSlope: 0.0000002251163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.000000016675266 + inSlope: 0.00000075038764 + outSlope: 0.00000075038764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.0000000066701062 + inSlope: 0.00000030015508 + outSlope: 0.00000030015508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.000000016675266 + inSlope: 0.0000007503823 + outSlope: 0.0000007503823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.28613025 + inSlope: 0.00011533468 + outSlope: 0.00011533468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.28613025 + inSlope: 0.00011533468 + outSlope: 0.00011533468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.28613025 + inSlope: 0.0001153351 + outSlope: 0.0001153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.28613025 + inSlope: 0.00011533468 + outSlope: 0.00011533468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.28613025 + inSlope: 0.0001153351 + outSlope: 0.0001153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.28613028 + inSlope: 0.00011399399 + outSlope: 0.00011399399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.28613025 + inSlope: 0.00011533468 + outSlope: 0.00011533468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.28613025 + inSlope: 0.0001153351 + outSlope: 0.0001153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.2861303 + inSlope: 0.00011265289 + outSlope: 0.00011265289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.28613028 + inSlope: 0.000113993585 + outSlope: 0.000113993585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 0.2861303 + inSlope: 0.00011265289 + outSlope: 0.00011265289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.2861303 + inSlope: 0.00011265289 + outSlope: 0.00011265289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.28613028 + inSlope: 0.00011399399 + outSlope: 0.00011399399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.28613025 + inSlope: 0.0001153351 + outSlope: 0.0001153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.28613028 + inSlope: 0.00011399318 + outSlope: 0.00011399318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.2861303 + inSlope: 0.00011265289 + outSlope: 0.00011265289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 0.28613028 + inSlope: 0.00011399399 + outSlope: 0.00011399399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 0.28613025 + inSlope: 0.0001153351 + outSlope: 0.0001153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.28613025 + inSlope: 0.0001153351 + outSlope: 0.0001153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.28613028 + inSlope: 0.00011399318 + outSlope: 0.00011399318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.28613022 + inSlope: 0.0001166762 + outSlope: 0.0001166762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.2861303 + inSlope: 0.00011265289 + outSlope: 0.00011265289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.28613025 + inSlope: 0.0001153351 + outSlope: 0.0001153351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.28613028 + inSlope: 0.00011399399 + outSlope: 0.00011399399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.28613028 + inSlope: 0.00011399399 + outSlope: 0.00011399399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.28613028 + inSlope: 0.00011399318 + outSlope: 0.00011399318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -12.604166 + inSlope: 19.530636 + outSlope: 19.530636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -11.302083 + inSlope: 19.531109 + outSlope: 19.531109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -9.999999 + inSlope: 9.765439 + outSlope: 9.765439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -9.999999 + inSlope: -0.00004291523 + outSlope: -0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -9.999999 + inSlope: 40.61645 + outSlope: 40.61645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -4.583333 + inSlope: 81.21329 + outSlope: 81.21329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.8333336 + inSlope: 81.21254 + outSlope: 81.21254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 6.2499995 + inSlope: 81.2131 + outSlope: 81.2131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 11.666668 + inSlope: 81.21325 + outSlope: 81.21325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 17.08333 + inSlope: 81.2127 + outSlope: 81.2127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 22.499998 + inSlope: 37.923553 + outSlope: 37.923553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 22.142857 + inSlope: -5.357385 + outSlope: -5.357385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 21.785713 + inSlope: -5.357557 + outSlope: -5.357557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 21.428568 + inSlope: -5.356956 + outSlope: -5.356956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 21.071424 + inSlope: -5.357089 + outSlope: -5.357089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 20.714285 + inSlope: -5.357471 + outSlope: -5.357471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 20.357143 + inSlope: -5.357042 + outSlope: -5.357042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 19.999998 + inSlope: -46.678806 + outSlope: -46.678806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 14.131943 + inSlope: -87.97379 + outSlope: -87.97379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 8.263888 + inSlope: -87.973976 + outSlope: -87.973976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 2.3958328 + inSlope: -87.83666 + outSlope: -87.83666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -3.4538844 + inSlope: -87.97395 + outSlope: -87.97395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -9.340275 + inSlope: -87.97362 + outSlope: -87.97362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -15.189995 + inSlope: -38.40172 + outSlope: -38.40172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -14.464286 + inSlope: 11.005865 + outSlope: 11.005865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -13.722561 + inSlope: 11.125477 + outSlope: 11.125477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 72.235146 + inSlope: 37.498642 + outSlope: 37.498642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 74.73513 + inSlope: 37.49521 + outSlope: 37.49521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 77.23512 + inSlope: 18.7475 + outSlope: 18.7475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 77.23512 + inSlope: -0.0006866437 + outSlope: -0.0006866437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 77.23512 + inSlope: 24.998726 + outSlope: 24.998726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 80.56847 + inSlope: 49.988525 + outSlope: 49.988525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 83.90175 + inSlope: 49.98835 + outSlope: 49.98835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 87.23515 + inSlope: 49.983032 + outSlope: 49.983032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 89.43111 + inSlope: -49.9693 + outSlope: -49.9693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 86.09816 + inSlope: -49.993843 + outSlope: -49.993843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 82.764854 + inSlope: -46.422432 + outSlope: -46.422432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 79.90768 + inSlope: -42.849125 + outSlope: -42.849125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 77.05054 + inSlope: -42.85084 + outSlope: -42.85084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 74.19341 + inSlope: -42.853245 + outSlope: -42.853245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 71.33625 + inSlope: -42.850876 + outSlope: -42.850876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 68.47913 + inSlope: -42.851185 + outSlope: -42.851185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 65.622 + inSlope: -42.85187 + outSlope: -42.85187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 62.764847 + inSlope: 41.0326 + outSlope: 41.0326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 71.09819 + inSlope: 124.86386 + outSlope: 124.86386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 79.431496 + inSlope: 124.85988 + outSlope: 124.85988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 87.7648 + inSlope: 76.449814 + outSlope: 76.449814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 83.92781 + inSlope: -124.86592 + outSlope: -124.86592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 75.5685 + inSlope: -124.86592 + outSlope: -124.86592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 67.26117 + inSlope: -51.707203 + outSlope: -51.707203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 68.66371 + inSlope: 21.199514 + outSlope: 21.199514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 70.087814 + inSlope: 21.35935 + outSlope: 21.35935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -90.086655 + inSlope: -0.17646743 + outSlope: -0.17646743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -90.09971 + inSlope: -0.24238522 + outSlope: -0.24238522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -90.11801 + inSlope: -0.16891496 + outSlope: -0.16891496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -90.11801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -90.11801 + inSlope: -0.22865318 + outSlope: -0.22865318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -90.15767 + inSlope: -0.9132394 + outSlope: -0.9132394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -90.240906 + inSlope: -2.3641143 + outSlope: -2.3641143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -90.52541 + inSlope: -15.73587 + outSlope: -15.73587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 92.52771 + inSlope: -75.3498 + outSlope: -75.3498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 90.36515 + inSlope: -3.6766338 + outSlope: -3.6766338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 90.19538 + inSlope: -1.1140834 + outSlope: -1.1140834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 90.13922 + inSlope: -0.55069023 + outSlope: -0.55069023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 90.107925 + inSlope: -0.33988985 + outSlope: -0.33988985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 90.088036 + inSlope: -0.2289965 + outSlope: -0.2289965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 90.07429 + inSlope: -0.16513722 + outSlope: -0.16513722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 90.064285 + inSlope: -0.124282956 + outSlope: -0.124282956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 90.05665 + inSlope: -0.09647378 + outSlope: -0.09647378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 90.05069 + inSlope: 0.07827766 + outSlope: 0.07827766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 90.07335 + inSlope: 0.580216 + outSlope: 0.580216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 90.132805 + inSlope: 2.1756227 + outSlope: 2.1756227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 90.640236 + inSlope: 7949.9985 + outSlope: 7949.9985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -90.24191 + inSlope: 3.3384736 + outSlope: 3.3384736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -90.1051 + inSlope: 0.7154853 + outSlope: 0.7154853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -90.0693 + inSlope: 0.13320936 + outSlope: 0.13320936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -90.07336 + inSlope: -0.06591803 + outSlope: -0.06591803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -90.07806 + inSlope: -0.07759046 + outSlope: -0.07759046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -90.07845 + inSlope: -0.1853938 + outSlope: -0.1853938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -90.09209 + inSlope: -0.25062495 + outSlope: -0.25062495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -90.11095 + inSlope: -0.17303483 + outSlope: -0.17303483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -90.11095 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -90.11095 + inSlope: -0.23414634 + outSlope: -0.23414634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -90.15133 + inSlope: -0.92422575 + outSlope: -0.92422575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -90.23531 + inSlope: -2.3757873 + outSlope: -2.3757873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -90.52056 + inSlope: -15.74617 + outSlope: -15.74617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 92.53184 + inSlope: -75.35701 + outSlope: -75.35701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 90.36857 + inSlope: -3.68762 + outSlope: -3.68762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 90.19804 + inSlope: -1.1236964 + outSlope: -1.1236964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 90.14124 + inSlope: -0.5606466 + outSlope: -0.5606466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 90.10934 + inSlope: -0.34847292 + outSlope: -0.34847292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 90.088806 + inSlope: -0.23895286 + outSlope: -0.23895286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 90.0744 + inSlope: -0.17440687 + outSlope: -0.17440687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 90.06376 + inSlope: -0.13355269 + outSlope: -0.13355269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 90.05547 + inSlope: -0.10677348 + outSlope: -0.10677348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 90.04886 + inSlope: 0.089264 + outSlope: 0.089264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 90.073425 + inSlope: 0.6069952 + outSlope: 0.6069952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 90.134735 + inSlope: 2.2027452 + outSlope: 2.2027452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 90.64409 + inSlope: 7950.023 + outSlope: 7950.023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -90.236336 + inSlope: 3.366626 + outSlope: 3.366626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -90.09767 + inSlope: 0.74295115 + outSlope: 0.74295115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -90.05998 + inSlope: 0.14419569 + outSlope: 0.14419569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -90.06436 + inSlope: -0.0714112 + outSlope: -0.0714112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -90.06939 + inSlope: -0.08239695 + outSlope: -0.08239695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone04/Bone41/Bone42/Bone43/Bone44" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -61.07371 + inSlope: 8.366582 + outSlope: 8.366582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -60.515835 + inSlope: 5.7731285 + outSlope: 5.7731285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -60.304146 + inSlope: 1.5882126 + outSlope: 1.5882126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -60.304146 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -60.304146 + inSlope: -0.6227881 + outSlope: -0.6227881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -60.387135 + inSlope: -2.354338 + outSlope: -2.354338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -60.618095 + inSlope: -4.371174 + outSlope: -4.371174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -60.969994 + inSlope: -5.9820614 + outSlope: -5.9820614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -61.41583 + inSlope: -7.1900434 + outSlope: -7.1900434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -61.92856 + inSlope: -7.989786 + outSlope: -7.989786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -62.481174 + inSlope: -8.384464 + outSlope: -8.384464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -63.046726 + inSlope: -8.376911 + outSlope: -8.376911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -63.598354 + inSlope: -7.968014 + outSlope: -7.968014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -64.10934 + inSlope: -7.1575994 + outSlope: -7.1575994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -64.55298 + inSlope: -5.9483733 + outSlope: -5.9483733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -64.90271 + inSlope: -4.3423505 + outSlope: -4.3423505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -65.131996 + inSlope: -2.3366568 + outSlope: -2.3366568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -65.21434 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -65.131996 + inSlope: 2.3373435 + outSlope: 2.3373435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -64.90271 + inSlope: 4.343693 + outSlope: 4.343693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -64.55298 + inSlope: 5.9394894 + outSlope: 5.9394894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -64.11084 + inSlope: 7.160346 + outSlope: 7.160346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -63.598354 + inSlope: 7.9676704 + outSlope: 7.9676704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -63.04848 + inSlope: 8.380001 + outSlope: 8.380001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -62.481174 + inSlope: 8.388241 + outSlope: 8.388241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -61.930237 + inSlope: 8.266474 + outSlope: 8.266474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 87.078835 + inSlope: 2.6693275 + outSlope: 2.6693275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 87.25444 + inSlope: 1.7708541 + outSlope: 1.7708541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 87.319016 + inSlope: 0.47996566 + outSlope: 0.47996566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 87.319016 + inSlope: 0.0006866437 + outSlope: 0.0006866437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 87.319016 + inSlope: -0.1888277 + outSlope: -0.1888277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 87.29382 + inSlope: -0.7196052 + outSlope: -0.7196052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 87.222855 + inSlope: -1.3602412 + outSlope: -1.3602412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 87.11211 + inSlope: -1.9205493 + outSlope: -1.9205493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 86.967125 + inSlope: -2.3946786 + outSlope: -2.3946786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 86.79361 + inSlope: -2.780907 + outSlope: -2.780907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 86.59802 + inSlope: -3.0610685 + outSlope: -3.0610685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 86.38802 + inSlope: -3.2117875 + outSlope: -3.2117875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 86.17294 + inSlope: -3.2052643 + outSlope: -3.2052643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 85.9641 + inSlope: -3.0112867 + outSlope: -3.0112867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 85.7748 + inSlope: -2.6034002 + outSlope: -2.6034002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 85.62004 + inSlope: -1.9603748 + outSlope: -1.9603748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 85.51584 + inSlope: -1.0752879 + outSlope: -1.0752879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 85.47786 + inSlope: -0.00068664615 + outSlope: -0.00068664615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 85.51584 + inSlope: 1.0711681 + outSlope: 1.0711681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 85.62004 + inSlope: 1.9438814 + outSlope: 1.9438814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 85.7748 + inSlope: 2.5711465 + outSlope: 2.5711465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 85.96348 + inSlope: 2.9742079 + outSlope: 2.9742079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 86.17294 + inSlope: 3.1599457 + outSlope: 3.1599457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 86.38734 + inSlope: 3.1650956 + outSlope: 3.1650956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 86.59802 + inSlope: 3.0184965 + outSlope: 3.0184965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 86.79303 + inSlope: 2.8454413 + outSlope: 2.8454413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -89.72997 + inSlope: -2.9971998 + outSlope: -2.9971998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -89.92744 + inSlope: -1.9953866 + outSlope: -1.9953866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -90.00001 + inSlope: -0.5397039 + outSlope: -0.5397039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -90.00001 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -90.00001 + inSlope: 0.21148703 + outSlope: 0.21148703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -89.97171 + inSlope: 0.8088692 + outSlope: 0.8088692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -89.89192 + inSlope: 1.5312154 + outSlope: 1.5312154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -89.76738 + inSlope: 2.1588156 + outSlope: 2.1588156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -89.604294 + inSlope: 2.6943996 + outSlope: 2.6943996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -89.409035 + inSlope: 3.1283488 + outSlope: 3.1283488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -89.18894 + inSlope: 3.4414706 + outSlope: 3.4414706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -88.952705 + inSlope: 3.6083255 + outSlope: 3.6083255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -88.7109 + inSlope: 3.5987124 + outSlope: 3.5987124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -88.47631 + inSlope: 3.3782992 + outSlope: 3.3782992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -88.26389 + inSlope: 2.9175386 + outSlope: 2.9175386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -88.09039 + inSlope: 2.1945212 + outSlope: 2.1945212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -87.97365 + inSlope: 1.2030041 + outSlope: 1.2030041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -87.93113 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -87.97365 + inSlope: -1.1988842 + outSlope: -1.1988842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -88.09039 + inSlope: -2.1787126 + outSlope: -2.1787126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -88.26389 + inSlope: -2.8852873 + outSlope: -2.8852873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -88.47563 + inSlope: -3.3405335 + outSlope: -3.3405335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -88.7109 + inSlope: -3.5540805 + outSlope: -3.5540805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -88.95194 + inSlope: -3.5630069 + outSlope: -3.5630069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -89.18894 + inSlope: -3.3988986 + outSlope: -3.3988986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -89.40839 + inSlope: -3.2121077 + outSlope: -3.2121077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.4818171 + inSlope: -15.498487 + outSlope: -15.498487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.4398029 + inSlope: -11.225886 + outSlope: -11.225886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.0000049678742 + inSlope: -3.319024 + outSlope: -3.319024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.0000049678742 + inSlope: 0.00022355375 + outSlope: 0.00022355375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.0000049678742 + inSlope: 0.8015396 + outSlope: 0.8015396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.107510604 + inSlope: 2.9444656 + outSlope: 2.9444656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.39542395 + inSlope: 5.285437 + outSlope: 5.285437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.8115929 + inSlope: 6.8544106 + outSlope: 6.8544106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 1.3036225 + inSlope: 7.623693 + outSlope: 7.623693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 1.819234 + inSlope: 7.5865064 + outSlope: 7.5865064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 2.3068433 + inSlope: 7.70947 + outSlope: 7.70947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 2.8435698 + inSlope: 8.892626 + outSlope: 8.892626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 3.4922366 + inSlope: 10.019391 + outSlope: 10.019391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 4.1809363 + inSlope: 10.075267 + outSlope: 10.075267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 4.8384514 + inSlope: 9.0727625 + outSlope: 9.0727625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 5.3943634 + inSlope: 7.025077 + outSlope: 7.025077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 5.7789335 + inSlope: 3.9391603 + outSlope: 3.9391603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 5.9226336 + inSlope: 0.31193048 + outSlope: 0.31193048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 5.822968 + inSlope: -2.774072 + outSlope: -2.774072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 5.5540977 + inSlope: -4.9474864 + outSlope: -4.9474864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 5.1609845 + inSlope: -6.429948 + outSlope: -6.429948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 4.691196 + inSlope: -7.2470136 + outSlope: -7.2470136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 4.187885 + inSlope: -7.3410845 + outSlope: -7.3410845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 3.7064276 + inSlope: -7.654345 + outSlope: -7.654345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 3.1643758 + inSlope: -8.992682 + outSlope: -8.992682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.5069482 + inSlope: -9.948992 + outSlope: -9.948992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 4.3351808 + inSlope: 25.215338 + outSlope: 25.215338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 6.010604 + inSlope: 18.122631 + outSlope: 18.122631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 6.7613773 + inSlope: 5.619083 + outSlope: 5.619083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 6.7613773 + inSlope: 0.0002574914 + outSlope: 0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 6.7613773 + inSlope: 2.8223732 + outSlope: 2.8223732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 7.137467 + inSlope: 9.843738 + outSlope: 9.843738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 8.073063 + inSlope: 16.048752 + outSlope: 16.048752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 9.277381 + inSlope: 17.908117 + outSlope: 17.908117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 10.462465 + inSlope: 15.504385 + outSlope: 15.504385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 11.347601 + inSlope: 8.960443 + outSlope: 8.960443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 11.660727 + inSlope: 0.52708673 + outSlope: 0.52708673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 11.420159 + inSlope: -5.939189 + outSlope: -5.939189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 10.870218 + inSlope: -10.011044 + outSlope: -10.011044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 10.087762 + inSlope: -12.886675 + outSlope: -12.886675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 9.155109 + inSlope: -14.486242 + outSlope: -14.486242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 8.159552 + inSlope: -14.745297 + outSlope: -14.745297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 7.1917796 + inSlope: -13.635741 + outSlope: -13.635741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 6.343127 + inSlope: -12.913861 + outSlope: -12.913861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 5.4700704 + inSlope: -14.12399 + outSlope: -14.12399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 4.459028 + inSlope: -15.204877 + outSlope: -15.204877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 3.4424908 + inSlope: -14.266501 + outSlope: -14.266501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 2.5579367 + inSlope: -11.287046 + outSlope: -11.287046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 1.9398296 + inSlope: -6.118479 + outSlope: -6.118479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 1.745347 + inSlope: 1.0367928 + outSlope: 1.0367928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 2.0801866 + inSlope: 8.081063 + outSlope: 8.081063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.8243256 + inSlope: 11.079643 + outSlope: 11.079643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.2625113 + inSlope: 13.645627 + outSlope: 13.645627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.36303332 + inSlope: 9.334751 + outSlope: 9.334751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.000027587283 + inSlope: 2.6979647 + outSlope: 2.6979647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.000027587283 + inSlope: 0.00013186295 + outSlope: 0.00013186295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.000027587283 + inSlope: -1.8929516 + outSlope: -1.8929516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.25208896 + inSlope: -6.8205233 + outSlope: -6.8205233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.9081308 + inSlope: -11.740054 + outSlope: -11.740054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -1.8177301 + inSlope: -14.399823 + outSlope: -14.399823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -2.8306491 + inSlope: -14.809981 + outSlope: -14.809981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -3.79664 + inSlope: -12.976472 + outSlope: -12.976472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -4.565193 + inSlope: -10.609714 + outSlope: -10.609714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -5.2136993 + inSlope: -9.93165 + outSlope: -9.93165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -5.889968 + inSlope: -10.019584 + outSlope: -10.019584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -6.548508 + inSlope: -9.420764 + outSlope: -9.420764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -7.1432176 + inSlope: -8.120971 + outSlope: -8.120971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -7.627172 + inSlope: -6.1040483 + outSlope: -6.1040483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -7.9527006 + inSlope: -3.3623774 + outSlope: -3.3623774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -8.07182 + inSlope: 0.96941566 + outSlope: 0.96941566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -7.8214483 + inSlope: 6.760332 + outSlope: 6.760332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -7.1699204 + inSlope: 11.665284 + outSlope: 11.665284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -6.2667966 + inSlope: 14.306809 + outSlope: 14.306809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -5.2643766 + inSlope: 14.760275 + outSlope: 14.760275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -4.3015285 + inSlope: 12.974844 + outSlope: 12.974844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -3.5371053 + inSlope: 10.653819 + outSlope: 10.653819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.8830202 + inSlope: 10.015153 + outSlope: 10.015153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.202434 + inSlope: 10.118839 + outSlope: 10.118839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone05/Bone06" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -60.4718 + inSlope: 8.366067 + outSlope: 8.366067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -59.913937 + inSlope: 5.772442 + outSlope: 5.772442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -59.70223 + inSlope: 1.5883843 + outSlope: 1.5883843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -59.70223 + inSlope: 0.00017166093 + outSlope: 0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -59.70223 + inSlope: -0.62192976 + outSlope: -0.62192976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -59.785217 + inSlope: -2.3551962 + outSlope: -2.3551962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -60.016167 + inSlope: -4.3718605 + outSlope: -4.3718605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -60.3681 + inSlope: -5.9836063 + outSlope: -5.9836063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -60.813957 + inSlope: -7.1884985 + outSlope: -7.1884985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -61.326694 + inSlope: -7.988928 + outSlope: -7.988928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -61.879326 + inSlope: -8.386009 + outSlope: -8.386009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -62.444946 + inSlope: -8.377769 + outSlope: -8.377769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -62.996643 + inSlope: -7.9692154 + outSlope: -7.9692154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -63.50764 + inSlope: -7.1591444 + outSlope: -7.1591444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -63.95135 + inSlope: -5.9499183 + outSlope: -5.9499183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -64.30114 + inSlope: -4.3423505 + outSlope: -4.3423505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -64.530464 + inSlope: -2.3387167 + outSlope: -2.3387167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -64.61282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -64.530464 + inSlope: 2.3373435 + outSlope: 2.3373435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -64.30114 + inSlope: 4.343693 + outSlope: 4.343693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -63.95135 + inSlope: 5.9393177 + outSlope: 5.9393177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -63.509167 + inSlope: 7.1622343 + outSlope: 7.1622343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -62.996643 + inSlope: 7.9692154 + outSlope: 7.9692154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -62.446693 + inSlope: 8.381203 + outSlope: 8.381203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -61.879326 + inSlope: 8.388069 + outSlope: 8.388069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -61.32836 + inSlope: 8.267847 + outSlope: 8.267847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -92.915146 + inSlope: 2.6023796 + outSlope: 2.6023796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -92.743935 + inSlope: 1.7262223 + outSlope: 1.7262223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -92.680954 + inSlope: 0.46829268 + outSlope: 0.46829268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -92.680954 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -92.680954 + inSlope: -0.18402117 + outSlope: -0.18402117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -92.705505 + inSlope: -0.7010657 + outSlope: -0.7010657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -92.77474 + inSlope: -1.327969 + outSlope: -1.327969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -92.88273 + inSlope: -1.8717974 + outSlope: -1.8717974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -93.024025 + inSlope: -2.3345969 + outSlope: -2.3345969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -93.193016 + inSlope: -2.7081227 + outSlope: -2.7081227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -93.38342 + inSlope: -2.9779844 + outSlope: -2.9779844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -93.58771 + inSlope: -3.1214933 + outSlope: -3.1214933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -93.796776 + inSlope: -3.1139402 + outSlope: -3.1139402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -93.99966 + inSlope: -2.9237394 + outSlope: -2.9237394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -94.18342 + inSlope: -2.5268397 + outSlope: -2.5268397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -94.33354 + inSlope: -1.9006366 + outSlope: -1.9006366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -94.43462 + inSlope: -1.0423288 + outSlope: -1.0423288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -94.47143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -94.43462 + inSlope: 1.038209 + outSlope: 1.038209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -94.33354 + inSlope: 1.8855169 + outSlope: 1.8855169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -94.18342 + inSlope: 2.4952722 + outSlope: 2.4952722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -94.00025 + inSlope: 2.8880339 + outSlope: 2.8880339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -93.796776 + inSlope: 3.0713682 + outSlope: 3.0713682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -93.58837 + inSlope: 3.0782347 + outSlope: 3.0782347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -93.38342 + inSlope: 2.9374723 + outSlope: 2.9374723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -93.19357 + inSlope: 2.771284 + outSlope: 2.771284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 90.26472 + inSlope: -2.9378052 + outSlope: -2.9378052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 90.071144 + inSlope: -1.9572779 + outSlope: -1.9572779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 89.99997 + inSlope: -0.5300908 + outSlope: -0.5300908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 89.99997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 89.99997 + inSlope: 0.20736714 + outSlope: 0.20736714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 90.02771 + inSlope: 0.7923897 + outSlope: 0.7923897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 90.105965 + inSlope: 1.5006598 + outSlope: 1.5006598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 90.22806 + inSlope: 2.1162434 + outSlope: 2.1162434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 90.38789 + inSlope: 2.6401546 + outSlope: 2.6401546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 90.579094 + inSlope: 3.0627742 + outSlope: 3.0627742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 90.79455 + inSlope: 3.3662827 + outSlope: 3.3662827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 91.02561 + inSlope: 3.5276446 + outSlope: 3.5276446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 91.261955 + inSlope: 3.5159717 + outSlope: 3.5159717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 91.49108 + inSlope: 3.2976182 + outSlope: 3.2976182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 91.69843 + inSlope: 2.8464713 + outSlope: 2.8464713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 91.86766 + inSlope: 2.1402762 + outSlope: 2.1402762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 91.98151 + inSlope: 1.1727916 + outSlope: 1.1727916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 92.02296 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 91.98151 + inSlope: -1.1686717 + outSlope: -1.1686717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 91.86766 + inSlope: -2.1251547 + outSlope: -2.1251547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 91.69843 + inSlope: -2.8155925 + outSlope: -2.8155925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 91.491776 + inSlope: -3.262256 + outSlope: -3.262256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 91.261955 + inSlope: -3.472713 + outSlope: -3.472713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 91.02637 + inSlope: -3.4840426 + outSlope: -3.4840426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 90.79455 + inSlope: -3.3257706 + outSlope: -3.3257706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 90.57974 + inSlope: -3.1461902 + outSlope: -3.1461902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.4644804 + inSlope: 15.314343 + outSlope: 15.314343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.43481225 + inSlope: 11.094689 + outSlope: 11.094689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.000004845163 + inSlope: 3.2817 + outSlope: 3.2817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.000004845163 + inSlope: 0.00021803177 + outSlope: 0.00021803177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.000004845163 + inSlope: -0.7756921 + outSlope: -0.7756921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.1041595 + inSlope: -2.8535664 + outSlope: -2.8535664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.3833298 + inSlope: -5.1286087 + outSlope: -5.1286087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.78738236 + inSlope: -6.662603 + outSlope: -6.662603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -1.2659374 + inSlope: -7.426438 + outSlope: -7.426438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -1.768723 + inSlope: -7.414357 + outSlope: -7.414357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -2.2461452 + inSlope: -7.568643 + outSlope: -7.568643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -2.7742853 + inSlope: -8.761906 + outSlope: -8.761906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -3.4140027 + inSlope: -9.886965 + outSlope: -9.886965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -4.093991 + inSlope: -9.950339 + outSlope: -9.950339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -4.743639 + inSlope: -8.965389 + outSlope: -8.965389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -5.293147 + inSlope: -6.9442673 + outSlope: -6.9442673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -5.673406 + inSlope: -3.894421 + outSlope: -3.894421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -5.8155284 + inSlope: -0.3237751 + outSlope: -0.3237751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -5.7190695 + inSlope: 2.6868036 + outSlope: 2.6868036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -5.4585657 + inSlope: 4.7965755 + outSlope: 4.7965755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -5.0771093 + inSlope: 6.2460337 + outSlope: 6.2460337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -4.6203384 + inSlope: 7.056319 + outSlope: 7.056319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -4.1296167 + inSlope: 7.1717186 + outSlope: 7.1717186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -3.6582541 + inSlope: 7.5135183 + outSlope: 7.5135183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -3.1249747 + inSlope: 8.857971 + outSlope: 8.857971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.476767 + inSlope: 9.809636 + outSlope: 9.809636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -3.0337822 + inSlope: -24.59973 + outSlope: -24.59973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -4.6681294 + inSlope: -17.673843 + outSlope: -17.673843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -5.400199 + inSlope: -5.4777627 + outSlope: -5.4777627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -5.400199 + inSlope: 0.00030040662 + outSlope: 0.00030040662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -5.400199 + inSlope: -2.820442 + outSlope: -2.820442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -5.776092 + inSlope: -9.839661 + outSlope: -9.839661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -6.7113247 + inSlope: -16.044546 + outSlope: -16.044546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -7.9154572 + inSlope: -17.908827 + outSlope: -17.908827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -9.100776 + inSlope: -15.511037 + outSlope: -15.511037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -9.986536 + inSlope: -8.971944 + outSlope: -8.971944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -10.300497 + inSlope: -0.5312066 + outSlope: -0.5312066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -10.059583 + inSlope: 5.9565268 + outSlope: 5.9565268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -9.50765 + inSlope: 10.045891 + outSlope: 10.045891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -8.722662 + inSlope: 12.920878 + outSlope: 12.920878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -7.788051 + inSlope: 14.50167 + outSlope: 14.50167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -6.7922974 + inSlope: 14.725814 + outSlope: 14.725814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -5.8273 + inSlope: 13.5625925 + outSlope: 13.5625925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -4.985576 + inSlope: 12.748766 + outSlope: 12.748766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -4.1275744 + inSlope: 13.837787 + outSlope: 13.837787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -3.1396704 + inSlope: 14.832438 + outSlope: 14.832438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -2.1496904 + inSlope: 13.878568 + outSlope: 13.878568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -1.2902621 + inSlope: 10.95655 + outSlope: 10.95655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.6910861 + inSlope: 5.92165 + outSlope: 5.92165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.503877 + inSlope: -1.0408993 + outSlope: -1.0408993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.8319172 + inSlope: -7.902935 + outSlope: -7.902935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -1.5590231 + inSlope: -10.824116 + outSlope: -10.824116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.2812537 + inSlope: 13.838097 + outSlope: 13.838097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -0.368585 + inSlope: 9.480206 + outSlope: 9.480206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 0.000027099148 + inSlope: 2.7405586 + outSlope: 2.7405586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 0.000027099148 + inSlope: 0.00015382897 + outSlope: 0.00015382897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 0.000027099148 + inSlope: -1.9032294 + outSlope: -1.9032294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.25348532 + inSlope: -6.858624 + outSlope: -6.858624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.91327083 + inSlope: -11.808818 + outSlope: -11.808818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -1.8282827 + inSlope: -14.48869 + outSlope: -14.48869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -2.8475995 + inSlope: -14.908955 + outSlope: -14.908955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -3.8202965 + inSlope: -13.075102 + outSlope: -13.075102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -4.5951967 + inSlope: -10.709749 + outSlope: -10.709749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -5.2507095 + inSlope: -10.048037 + outSlope: -10.048037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -5.935455 + inSlope: -10.150025 + outSlope: -10.150025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -6.6029963 + inSlope: -9.552643 + outSlope: -9.552643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -7.2063 + inSlope: -8.239652 + outSlope: -8.239652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -7.6975245 + inSlope: -6.1963162 + outSlope: -6.1963162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -8.028081 + inSlope: -3.4137902 + outSlope: -3.4137902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -8.149085 + inSlope: 0.9670982 + outSlope: 0.9670982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -7.897341 + inSlope: 6.7985697 + outSlope: 6.7985697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -7.2421217 + inSlope: 11.733111 + outSlope: 11.733111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -6.3336143 + inSlope: 14.393991 + outSlope: 14.393991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -5.324787 + inSlope: 14.857821 + outSlope: 14.857821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -4.355136 + inSlope: 13.073185 + outSlope: 13.073185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -3.584323 + inSlope: 10.754381 + outSlope: 10.754381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.9232123 + inSlope: 10.13053 + outSlope: 10.13053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.2342033 + inSlope: 10.248635 + outSlope: 10.248635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone07/Bone08" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 4.275358 + inSlope: 0.00008583046 + outSlope: 0.00008583046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 4.2753577 + inSlope: 0.00010728808 + outSlope: 0.00010728808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 4.2753587 + inSlope: 0.000064373075 + outSlope: 0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 4.2753587 + inSlope: 0.00006437285 + outSlope: 0.00006437285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 4.2753587 + inSlope: 0.000064373075 + outSlope: 0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 4.275358 + inSlope: 0.00008583046 + outSlope: 0.00008583046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 4.275359 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 4.2753577 + inSlope: 0.00010728808 + outSlope: 0.00010728808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 4.2753587 + inSlope: 0.000064373075 + outSlope: 0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 4.2753587 + inSlope: 0.000064373075 + outSlope: 0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 4.275358 + inSlope: 0.00008583016 + outSlope: 0.00008583016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 4.2753577 + inSlope: 0.00010728846 + outSlope: 0.00010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 4.2753577 + inSlope: 0.00010728846 + outSlope: 0.00010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 4.275358 + inSlope: 0.00008583016 + outSlope: 0.00008583016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 4.275358 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 4.2753587 + inSlope: 0.000064373075 + outSlope: 0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 4.275358 + inSlope: 0.00008583016 + outSlope: 0.00008583016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.42284253 + inSlope: -25.487936 + outSlope: -25.487936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -2.1220605 + inSlope: -17.577145 + outSlope: -17.577145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -2.766592 + inSlope: -4.8337317 + outSlope: -4.8337317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -2.766592 + inSlope: 0.0002574914 + outSlope: 0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -2.766592 + inSlope: 1.8947142 + outSlope: 1.8947142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -2.513975 + inSlope: 7.1684895 + outSlope: 7.1684895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -1.8107432 + inSlope: 13.313244 + outSlope: 13.313244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.7388277 + inSlope: 18.228954 + outSlope: 18.228954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.61984324 + inSlope: 21.915653 + outSlope: 21.915653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 2.183339 + inSlope: 24.37289 + outSlope: 24.37289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.8697293 + inSlope: 25.60258 + outSlope: 25.60258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 5.5970855 + inSlope: 25.601881 + outSlope: 25.601881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 7.2834744 + inSlope: 24.373343 + outSlope: 24.373343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 8.846971 + inSlope: 21.914955 + outSlope: 21.914955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 10.205642 + inSlope: 18.228994 + outSlope: 18.228994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 11.277557 + inSlope: 13.313382 + outSlope: 13.313382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 11.980788 + inSlope: 7.1686287 + outSlope: 7.1686287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 12.233406 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 11.980788 + inSlope: -7.168543 + outSlope: -7.168543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 11.277557 + inSlope: -13.313287 + outSlope: -13.313287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 10.205641 + inSlope: -18.194664 + outSlope: -18.194664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 8.851578 + inSlope: -21.915686 + outSlope: -21.915686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 7.2834735 + inSlope: -24.367506 + outSlope: -24.367506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 5.6024604 + inSlope: -25.602182 + outSlope: -25.602182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 3.8697288 + inSlope: -25.603352 + outSlope: -25.603352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.1884596 + inSlope: -25.216825 + outSlope: -25.216825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 9.048397 + inSlope: 0.00017166093 + outSlope: 0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 9.048398 + inSlope: 0.0001287457 + outSlope: 0.0001287457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 9.048398 + inSlope: 0.00012874615 + outSlope: 0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 9.048398 + inSlope: 0.0001287457 + outSlope: 0.0001287457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 9.048398 + inSlope: 0.00012874615 + outSlope: 0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 9.048397 + inSlope: 0.00017166093 + outSlope: 0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 9.048396 + inSlope: 0.00021457615 + outSlope: 0.00021457615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 9.048397 + inSlope: 0.00017166031 + outSlope: 0.00017166031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 9.048397 + inSlope: 0.00017166031 + outSlope: 0.00017166031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 9.048398 + inSlope: 0.00012874615 + outSlope: 0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 9.048397 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 9.048395 + inSlope: 0.00025749046 + outSlope: 0.00025749046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 4.554583 + inSlope: -4.2394457 + outSlope: -4.2394457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 4.27291 + inSlope: -3.0606713 + outSlope: -3.0606713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 4.144853 + inSlope: -0.95793575 + outSlope: -0.95793575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 4.144853 + inSlope: -0.00006437285 + outSlope: -0.00006437285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 4.144853 + inSlope: -0.44020456 + outSlope: -0.44020456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 4.0862193 + inSlope: -1.5418425 + outSlope: -1.5418425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 3.93962 + inSlope: -2.5281792 + outSlope: -2.5281792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 3.749007 + inSlope: -2.855021 + outSlope: -2.855021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 3.5583577 + inSlope: -2.5231028 + outSlope: -2.5231028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 3.4116795 + inSlope: -1.5352173 + outSlope: -1.5352173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.353002 + inSlope: -0.22476932 + outSlope: -0.22476932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 3.3816962 + inSlope: 0.7973035 + outSlope: 0.7973035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 3.4594202 + inSlope: 1.4395108 + outSlope: 1.4395108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 3.573641 + inSlope: 1.8936735 + outSlope: 1.8936735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 3.7118213 + inSlope: 2.160227 + outSlope: 2.160227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 3.8614314 + inSlope: 2.2386274 + outSlope: 2.2386274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 4.0099473 + inSlope: 2.1286676 + outSlope: 2.1286676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 4.144853 + inSlope: 2.114119 + outSlope: 2.114119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 4.291618 + inSlope: 2.4207926 + outSlope: 2.4207926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 4.467458 + inSlope: 2.6715066 + outSlope: 2.6715066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 4.647495 + inSlope: 2.545247 + outSlope: 2.545247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 4.8064184 + inSlope: 2.052085 + outSlope: 2.052085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 4.9206996 + inSlope: 1.1851727 + outSlope: 1.1851727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 4.964169 + inSlope: -0.014269366 + outSlope: -0.014269366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 4.9188 + inSlope: -1.2156856 + outSlope: -1.2156856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 4.802232 + inSlope: -1.743425 + outSlope: -1.743425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 6.149266 + inSlope: -25.280354 + outSlope: -25.280354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 4.463952 + inSlope: -18.385958 + outSlope: -18.385958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 3.6975691 + inSlope: -5.74784 + outSlope: -5.74784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 3.6975691 + inSlope: 0.000075101656 + outSlope: 0.000075101656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 3.6975691 + inSlope: -2.720417 + outSlope: -2.720417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 3.3348773 + inSlope: -9.522077 + outSlope: -9.522077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 2.4279218 + inSlope: -15.648803 + outSlope: -15.648803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 1.2483764 + inSlope: -17.696653 + outSlope: -17.696653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.06825789 + inSlope: -15.661952 + outSlope: -15.661952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.8399168 + inSlope: -9.53694 + outSlope: -9.53694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -1.2032864 + inSlope: -1.3811351 + outSlope: -1.3811351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -1.0240386 + inSlope: 4.9811993 + outSlope: 4.9811993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.53912765 + inSlope: 8.971904 + outSlope: 8.971904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.17216727 + inSlope: 11.772443 + outSlope: 11.772443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 1.030612 + inSlope: 13.385942 + outSlope: 13.385942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 1.9570239 + inSlope: 13.812907 + outSlope: 13.812907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 2.8723063 + inSlope: 13.053509 + outSlope: 13.053509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 3.697569 + inSlope: 12.840369 + outSlope: 12.840369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 4.5843606 + inSlope: 14.559881 + outSlope: 14.559881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 5.638854 + inSlope: 15.973378 + outSlope: 15.973378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 6.7141604 + inSlope: 15.165804 + outSlope: 15.165804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 7.6609764 + inSlope: 12.199127 + outSlope: 12.199127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 8.340642 + inSlope: 7.0337887 + outSlope: 7.0337887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 8.598871 + inSlope: -0.09793291 + outSlope: -0.09793291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 8.327579 + inSlope: -7.2627854 + outSlope: -7.2627854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 7.630506 + inSlope: -10.4553795 + outSlope: -10.4553795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -3.2059617 + inSlope: 1.4391408 + outSlope: 1.4391408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -3.1072335 + inSlope: 1.1121268 + outSlope: 1.1121268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -3.0624065 + inSlope: 0.3439239 + outSlope: 0.3439239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -3.0624065 + inSlope: -0.00008583046 + outSlope: -0.00008583046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -3.0624065 + inSlope: 0.19698162 + outSlope: 0.19698162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -3.0359762 + inSlope: 0.68921036 + outSlope: 0.68921036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -2.9699311 + inSlope: 1.1407942 + outSlope: 1.1407942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -2.8841355 + inSlope: 1.2961841 + outSlope: 1.2961841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -2.7984097 + inSlope: 1.1505293 + outSlope: 1.1505293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -2.7325115 + inSlope: 0.70166403 + outSlope: 0.70166403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -2.7061636 + inSlope: 0.09622702 + outSlope: 0.09622702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -2.7198255 + inSlope: -0.37869608 + outSlope: -0.37869608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.7565491 + inSlope: -0.676207 + outSlope: -0.676207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -2.809949 + inSlope: -0.87628925 + outSlope: -0.87628925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -2.8736365 + inSlope: -0.9800838 + outSlope: -0.9800838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -2.941216 + inSlope: -0.98909235 + outSlope: -0.98909235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -3.0062807 + inSlope: -0.90252125 + outSlope: -0.90252125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -3.0624063 + inSlope: -0.8343716 + outSlope: -0.8343716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -3.1180546 + inSlope: -0.8852049 + outSlope: -0.8852049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -3.1808705 + inSlope: -0.93072075 + outSlope: -0.93072075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -3.243179 + inSlope: -0.8617517 + outSlope: -0.8617517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -3.2971232 + inSlope: -0.68165725 + outSlope: -0.68165725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -3.33541 + inSlope: -0.38902795 + outSlope: -0.38902795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -3.3498445 + inSlope: 0.011951935 + outSlope: 0.011951935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -3.3338878 + inSlope: 0.42412204 + outSlope: 0.42412204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -3.292911 + inSlope: 0.6291136 + outSlope: 0.6291136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -0.9021895 + inSlope: -2.94715 + outSlope: -2.94715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -1.0964137 + inSlope: -2.089752 + outSlope: -2.089752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -1.1846819 + inSlope: -0.6555325 + outSlope: -0.6555325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -1.1846819 + inSlope: 0.00021457615 + outSlope: 0.00021457615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -1.1846819 + inSlope: -0.7489164 + outSlope: -0.7489164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -1.2832211 + inSlope: -2.6235516 + outSlope: -2.6235516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -1.5294545 + inSlope: -4.2295 + outSlope: -4.2295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -1.8492603 + inSlope: -4.70756 + outSlope: -4.70756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -2.1686552 + inSlope: -4.1164546 + outSlope: -4.1164546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -2.4140093 + inSlope: -2.4880428 + outSlope: -2.4880428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -2.5120604 + inSlope: -0.31009585 + outSlope: -0.31009585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -2.4565105 + inSlope: 1.5091624 + outSlope: 1.5091624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -2.3088014 + inSlope: 2.6920714 + outSlope: 2.6920714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -2.097318 + inSlope: 3.4612653 + outSlope: 3.4612653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -1.8505197 + inSlope: 3.8003232 + outSlope: 3.8003232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -1.5969943 + inSlope: 3.6993866 + outSlope: 3.6993866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -1.3654569 + inSlope: 3.1514215 + outSlope: 3.1514215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -1.1846825 + inSlope: 2.4646144 + outSlope: 2.4646144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -1.0415759 + inSlope: 2.0865245 + outSlope: 2.0865245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -0.9085785 + inSlope: 1.8776902 + outSlope: 1.8776902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.79278994 + inSlope: 1.5609398 + outSlope: 1.5609398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -0.7015461 + inSlope: 1.1408787 + outSlope: 1.1408787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -0.64121664 + inSlope: 0.6164527 + outSlope: 0.6164527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -0.61961395 + inSlope: -0.073457725 + outSlope: -0.073457725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -0.65092266 + inSlope: -0.8405461 + outSlope: -0.8405461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.7313542 + inSlope: -1.194737 + outSlope: -1.194737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.7996943 + inSlope: -25.450289 + outSlope: -25.450289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 0.10268702 + inSlope: -18.51926 + outSlope: -18.51926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.6691892 + inSlope: -5.789811 + outSlope: -5.789811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.6691892 + inSlope: -0.000010728808 + outSlope: -0.000010728808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.6691892 + inSlope: -8.220538 + outSlope: -8.220538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -1.7653905 + inSlope: -28.78858 + outSlope: -28.78858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -4.5083823 + inSlope: -47.351402 + outSlope: -47.351402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -8.079587 + inSlope: -53.610714 + outSlope: -53.610714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -11.656803 + inSlope: -47.500637 + outSlope: -47.500637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -14.412597 + inSlope: -28.949629 + outSlope: -28.949629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -15.515911 + inSlope: -3.4910808 + outSlope: -3.4910808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -14.877941 + inSlope: 17.463987 + outSlope: 17.463987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -13.187591 + inSlope: 30.728746 + outSlope: 30.728746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -10.780585 + inSlope: 38.95923 + outSlope: 38.95923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -7.9921646 + inSlope: 42.1711 + outSlope: 42.1711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -5.1562324 + inSlope: 40.391853 + outSlope: 40.391853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -2.6050086 + inSlope: 33.642807 + outSlope: 33.642807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.669189 + inSlope: 25.16144 + outSlope: 25.16144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 0.75057155 + inSlope: 19.71261 + outSlope: 19.71261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 1.9595007 + inSlope: 16.392986 + outSlope: 16.392986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 2.9365323 + inSlope: 12.743755 + outSlope: 12.743755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 3.6587546 + inSlope: 8.804768 + outSlope: 8.804768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 4.1105976 + inSlope: 4.548945 + outSlope: 4.548945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 4.265324 + inSlope: -0.88733995 + outSlope: -0.88733995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 3.9923272 + inSlope: -7.308769 + outSlope: -7.308769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 3.2907836 + inSlope: -10.524011 + outSlope: -10.524011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 0.9372724 + inSlope: 3.368615 + outSlope: 3.368615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 1.1637987 + inSlope: 2.4961483 + outSlope: 2.4961483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 1.2667785 + inSlope: 0.7775624 + outSlope: 0.7775624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 1.2667785 + inSlope: 0.000278949 + outSlope: 0.000278949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 1.2667785 + inSlope: 1.2341821 + outSlope: 1.2341821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 1.4321162 + inSlope: 4.317518 + outSlope: 4.317518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 1.8455336 + inSlope: 7.138423 + outSlope: 7.138423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 2.3831747 + inSlope: 8.11222 + outSlope: 8.11222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 2.9210837 + inSlope: 7.2048817 + outSlope: 7.2048817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 3.3350723 + inSlope: 4.397749 + outSlope: 4.397749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.500726 + inSlope: 0.52351403 + outSlope: 0.52351403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 3.4041314 + inSlope: -2.6512482 + outSlope: -2.6512482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 3.148372 + inSlope: -4.6470175 + outSlope: -4.6470175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 2.7844963 + inSlope: -5.8699665 + outSlope: -5.8699665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 2.3635094 + inSlope: -6.3301134 + outSlope: -6.3301134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 1.9363378 + inSlope: -6.0334473 + outSlope: -6.0334473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 1.5538268 + inSlope: -4.9840856 + outSlope: -4.9840856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 1.2667793 + inSlope: -3.654776 + outSlope: -3.654776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 1.0635352 + inSlope: -2.7526572 + outSlope: -2.7526572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 0.8982697 + inSlope: -2.1883283 + outSlope: -2.1883283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 0.770525 + inSlope: -1.6294972 + outSlope: -1.6294972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.68006843 + inSlope: -1.0814435 + outSlope: -1.0814435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 0.62576556 + inSlope: -0.5398219 + outSlope: -0.5398219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 0.60784024 + inSlope: 0.13841553 + outSlope: 0.13841553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 0.64433444 + inSlope: 0.97496784 + outSlope: 0.97496784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7380938 + inSlope: 1.4160501 + outSlope: 1.4160501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -83.85876 + inSlope: 13.397792 + outSlope: 13.397792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -82.966385 + inSlope: 9.713262 + outSlope: 9.713262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -82.56085 + inSlope: 3.0363493 + outSlope: 3.0363493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -82.56085 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -82.56085 + inSlope: 1.3904585 + outSlope: 1.3904585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -82.37578 + inSlope: 4.876561 + outSlope: 4.876561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -81.911766 + inSlope: 8.021372 + outSlope: 8.021372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -81.306015 + inSlope: 9.085702 + outSlope: 9.085702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -80.698 + inSlope: 8.0522995 + outSlope: 8.0522995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -80.22905 + inSlope: 4.906756 + outSlope: 4.906756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -80.041176 + inSlope: 0.7147986 + outSlope: 0.7147986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -80.133385 + inSlope: -2.5584435 + outSlope: -2.5584435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -80.382774 + inSlope: -4.608769 + outSlope: -4.608769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -80.748184 + inSlope: -6.0479794 + outSlope: -6.0479794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -81.18881 + inSlope: -6.877399 + outSlope: -6.877399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -81.66414 + inSlope: -7.102668 + outSlope: -7.102668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -82.13448 + inSlope: -6.7359986 + outSlope: -6.7359986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -82.56085 + inSlope: -6.6845 + outSlope: -6.6845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -83.02495 + inSlope: -7.6615977 + outSlope: -7.6615977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -83.581604 + inSlope: -8.456674 + outSlope: -8.456674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -84.15226 + inSlope: -8.057106 + outSlope: -8.057106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -84.65627 + inSlope: -6.493613 + outSlope: -6.493613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -85.018974 + inSlope: -3.7552679 + outSlope: -3.7552679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -85.15697 + inSlope: 0.04531865 + outSlope: 0.04531865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -85.01323 + inSlope: 3.8548315 + outSlope: 3.8548315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -84.64361 + inSlope: 5.5343285 + outSlope: 5.5343285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -139.85725 + inSlope: -75.84323 + outSlope: -75.84323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -144.70198 + inSlope: -50.552082 + outSlope: -50.552082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -146.92267 + inSlope: -16.156097 + outSlope: -16.156097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -146.92267 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -146.92267 + inSlope: -5.2054644 + outSlope: -5.2054644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -147.61383 + inSlope: -18.856676 + outSlope: -18.856676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -149.42242 + inSlope: -32.331993 + outSlope: -32.331993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -151.92216 + inSlope: -38.336143 + outSlope: -38.336143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -154.56036 + inSlope: -35.232502 + outSlope: -35.232502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -156.66809 + inSlope: -21.95612 + outSlope: -21.95612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -157.52797 + inSlope: -3.4922824 + outSlope: -3.4922824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -157.13872 + inSlope: 10.778285 + outSlope: 10.778285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -156.0864 + inSlope: 19.382648 + outSlope: 19.382648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -154.55347 + inSlope: 25.287119 + outSlope: 25.287119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -152.72142 + inSlope: 28.591742 + outSlope: 28.591742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -150.75618 + inSlope: 29.62329 + outSlope: 29.62329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -148.79236 + inSlope: 28.925655 + outSlope: 28.925655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -146.92287 + inSlope: 31.199142 + outSlope: 31.199142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -144.64005 + inSlope: 39.138832 + outSlope: 39.138832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -141.71593 + inSlope: 45.678123 + outSlope: 45.678123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -138.6169 + inSlope: 45.12707 + outSlope: 45.12707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -135.81429 + inSlope: 37.40505 + outSlope: 37.40505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -133.75685 + inSlope: 22.066061 + outSlope: 22.066061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -132.9615 + inSlope: 0.33988985 + outSlope: 0.33988985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -133.7131 + inSlope: -20.499134 + outSlope: -20.499134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -135.66037 + inSlope: -27.99917 + outSlope: -27.99917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 149.884 + inSlope: -0.38040063 + outSlope: -0.38040063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 149.6453 + inSlope: -4.916369 + outSlope: -4.916369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 149.55324 + inSlope: -1.1927044 + outSlope: -1.1927044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 149.55324 + inSlope: -0.0006866437 + outSlope: -0.0006866437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 149.55324 + inSlope: -3.01369 + outSlope: -3.01369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 149.14851 + inSlope: -9.917231 + outSlope: -9.917231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 148.21594 + inSlope: -14.97158 + outSlope: -14.97158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 147.14914 + inSlope: -15.184493 + outSlope: -15.184493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 146.21732 + inSlope: -12.157757 + outSlope: -12.157757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 145.57655 + inSlope: -6.912442 + outSlope: -6.912442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 145.33643 + inSlope: -0.68664616 + outSlope: -0.68664616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 145.48996 + inSlope: 4.302525 + outSlope: 4.302525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 145.90572 + inSlope: 7.7735214 + outSlope: 7.7735214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 146.52571 + inSlope: 10.334711 + outSlope: 10.334711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 147.29088 + inSlope: 11.890567 + outSlope: 11.890567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 148.12721 + inSlope: 12.128231 + outSlope: 12.128231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 148.92998 + inSlope: 10.511867 + outSlope: 10.511867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 149.55344 + inSlope: 7.568214 + outSlope: 7.568214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 149.9475 + inSlope: 4.787984 + outSlope: 4.787984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 150.20451 + inSlope: 2.4835813 + outSlope: 2.4835813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 150.34766 + inSlope: 0.57678276 + outSlope: 0.57678276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 150.3985 + inSlope: -0.65643376 + outSlope: -0.65643376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 150.38873 + inSlope: -0.8789071 + outSlope: -0.8789071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 150.37114 + inSlope: -0.6337744 + outSlope: -0.6337744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 150.3055 + inSlope: -1.3808454 + outSlope: -1.3808454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 150.15236 + inSlope: -3.5080502 + outSlope: -3.5080502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone09/Bone10/Bone11/Bone40" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -4.275529 + inSlope: 0.00004291523 + outSlope: 0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -4.275529 + inSlope: 0.00004291523 + outSlope: 0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -4.2755284 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -4.2755284 + inSlope: 0.000021457616 + outSlope: 0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -4.2755284 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -4.2755294 + inSlope: 0.00006437285 + outSlope: 0.00006437285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -4.275529 + inSlope: 0.00004291523 + outSlope: 0.00004291523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -4.2755294 + inSlope: 0.000064372616 + outSlope: 0.000064372616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -4.275529 + inSlope: 0.00004291508 + outSlope: 0.00004291508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -4.2755294 + inSlope: 0.000064373075 + outSlope: 0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -4.2755294 + inSlope: 0.000064373075 + outSlope: 0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -4.275529 + inSlope: 0.000042915384 + outSlope: 0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -4.2755284 + inSlope: 0.00002145754 + outSlope: 0.00002145754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 9.888526 + inSlope: 25.487913 + outSlope: 25.487913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 11.587746 + inSlope: 17.577736 + outSlope: 17.577736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 12.232276 + inSlope: 4.8336887 + outSlope: 4.8336887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 12.232276 + inSlope: -0.00030040662 + outSlope: -0.00030040662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 12.232276 + inSlope: -1.8947572 + outSlope: -1.8947572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 11.979658 + inSlope: -7.1685 + outSlope: -7.1685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 11.276427 + inSlope: -13.313292 + outSlope: -13.313292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 10.204511 + inSlope: -18.228954 + outSlope: -18.228954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 8.8458395 + inSlope: -21.915642 + outSlope: -21.915642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 7.282345 + inSlope: -24.372932 + outSlope: -24.372932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 5.595954 + inSlope: -25.602589 + outSlope: -25.602589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 3.8685975 + inSlope: -25.601881 + outSlope: -25.601881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 2.182207 + inSlope: -24.373278 + outSlope: -24.373278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.618712 + inSlope: -21.915625 + outSlope: -21.915625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.73995864 + inSlope: -18.229 + outSlope: -18.229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -1.8118751 + inSlope: -13.313351 + outSlope: -13.313351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -2.5151064 + inSlope: -7.1685753 + outSlope: -7.1685753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -2.7677243 + inSlope: -0.00028967884 + outSlope: -0.00028967884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -2.515106 + inSlope: 7.1685753 + outSlope: 7.1685753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -1.8118747 + inSlope: 13.313303 + outSlope: 13.313303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -0.73995864 + inSlope: 18.194702 + outSlope: 18.194702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 0.6141051 + inSlope: 21.915691 + outSlope: 21.915691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 2.1822083 + inSlope: 24.36756 + outSlope: 24.36756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 3.863222 + inSlope: 25.602213 + outSlope: 25.602213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 5.5959544 + inSlope: 25.60334 + outSlope: 25.60334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 7.2772236 + inSlope: 25.216814 + outSlope: 25.216814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -9.048323 + inSlope: -0.00008583046 + outSlope: -0.00008583046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -9.048323 + inSlope: -0.00008583046 + outSlope: -0.00008583046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -9.048321 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -9.048321 + inSlope: -0.00017166093 + outSlope: -0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -9.048321 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -9.048322 + inSlope: -0.0001287457 + outSlope: -0.0001287457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -9.048323 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -9.048323 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -9.048322 + inSlope: -0.0001287457 + outSlope: -0.0001287457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -9.048323 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -9.048322 + inSlope: -0.00012874523 + outSlope: -0.00012874523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -9.048323 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -9.048323 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -9.048323 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -9.048322 + inSlope: -0.00012874523 + outSlope: -0.00012874523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -9.048323 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -9.048322 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -9.048322 + inSlope: -0.00012874523 + outSlope: -0.00012874523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -2.9766126 + inSlope: -3.8917034 + outSlope: -3.8917034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -3.2374983 + inSlope: -2.8642054 + outSlope: -2.8642054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -3.356056 + inSlope: -0.89299405 + outSlope: -0.89299405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -3.356056 + inSlope: 0.00033259304 + outSlope: 0.00033259304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -3.356056 + inSlope: -0.43912095 + outSlope: -0.43912095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -3.4147615 + inSlope: -1.5389028 + outSlope: -1.5389028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -3.5615122 + inSlope: -2.531473 + outSlope: -2.531473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -3.7522569 + inSlope: -2.8654387 + outSlope: -2.8654387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -3.9429638 + inSlope: -2.5364172 + outSlope: -2.5364172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -4.089636 + inSlope: -1.5440042 + outSlope: -1.5440042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -4.148297 + inSlope: -0.22125027 + outSlope: -0.22125027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -4.119029 + inSlope: 0.8127745 + outSlope: 0.8127745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -4.039958 + inSlope: 1.4616551 + outSlope: 1.4616551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -3.924179 + inSlope: 1.9129962 + outSlope: 1.9129962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -3.7847936 + inSlope: 2.1678874 + outSlope: 2.1678874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -3.6349034 + inSlope: 2.2261283 + outSlope: 2.2261283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -3.4876192 + inSlope: 2.0878227 + outSlope: 2.0878227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -3.3560557 + inSlope: 2.027988 + outSlope: 2.027988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -3.2169774 + inSlope: 2.2692475 + outSlope: 2.2692475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -3.0532305 + inSlope: 2.4702027 + outSlope: 2.4702027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -2.8870754 + inSlope: 2.3348544 + outSlope: 2.3348544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -2.741195 + inSlope: 1.8731385 + outSlope: 1.8731385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -2.6366699 + inSlope: 1.077895 + outSlope: 1.077895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -2.5970092 + inSlope: -0.01813175 + outSlope: -0.01813175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.6390715 + inSlope: -1.1245977 + outSlope: -1.1245977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.7471259 + inSlope: -1.6282731 + outSlope: -1.6282731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -3.587333 + inSlope: 25.268799 + outSlope: 25.268799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -1.9028481 + inSlope: 18.37119 + outSlope: 18.37119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -1.1376107 + inSlope: 5.7393 + outSlope: 5.7393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -1.1376107 + inSlope: 0.00031113543 + outSlope: 0.00031113543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -1.1376107 + inSlope: 2.7256098 + outSlope: 2.7256098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -0.77424455 + inSlope: 9.536754 + outSlope: 9.536754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.13393581 + inSlope: 15.662606 + outSlope: 15.662606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 1.3140644 + inSlope: 17.697258 + outSlope: 17.697258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 2.4936225 + inSlope: 15.648634 + outSlope: 15.648634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 3.4005854 + inSlope: 9.522536 + outSlope: 9.522536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.763276 + inSlope: 1.3773693 + outSlope: 1.3773693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 3.5842035 + inSlope: -4.977058 + outSlope: -4.977058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 3.0996897 + inSlope: -8.965721 + outSlope: -8.965721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 2.3887498 + inSlope: -11.769877 + outSlope: -11.769877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 1.5304067 + inSlope: -13.387262 + outSlope: -13.387262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.60375184 + inSlope: -13.8183975 + outSlope: -13.8183975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -0.31202185 + inSlope: -13.060241 + outSlope: -13.060241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -1.1376103 + inSlope: -12.840674 + outSlope: -12.840674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -2.024137 + inSlope: -14.554259 + outSlope: -14.554259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -3.0782254 + inSlope: -15.970879 + outSlope: -15.970879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -4.1535563 + inSlope: -15.169752 + outSlope: -15.169752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -5.100907 + inSlope: -12.207861 + outSlope: -12.207861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -5.781285 + inSlope: -7.04205 + outSlope: -7.04205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -6.0398498 + inSlope: 0.099284746 + outSlope: 0.099284746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -5.7680063 + inSlope: 7.275746 + outSlope: 7.275746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -5.0697703 + inSlope: 10.472974 + outSlope: 10.472974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 2.491492 + inSlope: 2.2120764 + outSlope: 2.2120764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 2.6364617 + inSlope: 1.5482743 + outSlope: 1.5482743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 2.7023983 + inSlope: 0.4872613 + outSlope: 0.4872613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 2.7023983 + inSlope: -0.0002574914 + outSlope: -0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 2.7023983 + inSlope: 0.19818325 + outSlope: 0.19818325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 2.7286816 + inSlope: 0.69497174 + outSlope: 0.69497174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 2.7944143 + inSlope: 1.1324579 + outSlope: 1.1324579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 2.879926 + inSlope: 1.27316 + outSlope: 1.27316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 2.9655075 + inSlope: 1.1223232 + outSlope: 1.1223232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 3.0313873 + inSlope: 0.6818372 + outSlope: 0.6818372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 3.0577526 + inSlope: 0.1037694 + outSlope: 0.1037694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 3.045375 + inSlope: -0.34380588 + outSlope: -0.34380588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 3.0116599 + inSlope: -0.6270045 + outSlope: -0.6270045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 2.9617388 + inSlope: -0.8332558 + outSlope: -0.8332558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 2.9007387 + inSlope: -0.9639156 + outSlope: -0.9639156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 2.833782 + inSlope: -1.0167406 + outSlope: -1.0167406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 2.7659712 + inSlope: -0.99198914 + outSlope: -0.99198914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 2.7023988 + inSlope: -1.0268149 + outSlope: -1.0268149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 2.629652 + inSlope: -1.2214577 + outSlope: -1.2214577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 2.5399363 + inSlope: -1.378958 + outSlope: -1.378958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 2.4467416 + inSlope: -1.3304843 + outSlope: -1.3304843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 2.3637636 + inSlope: -1.0811995 + outSlope: -1.0811995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 2.3037539 + inSlope: -0.62746584 + outSlope: -0.62746584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 2.2808404 + inSlope: 0.0033259424 + outSlope: 0.0033259424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 2.3041666 + inSlope: 0.6270045 + outSlope: 0.6270045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.364105 + inSlope: 0.88577795 + outSlope: 0.88577795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 1.6635687 + inSlope: -4.7650604 + outSlope: -4.7650604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 1.3359803 + inSlope: -3.6988156 + outSlope: -3.6988156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 1.1869885 + inSlope: -1.1442797 + outSlope: -1.1442797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 1.1869885 + inSlope: -0.00032722866 + outSlope: -0.00032722866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 1.1869885 + inSlope: -0.65538764 + outSlope: -0.65538764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 1.0991015 + inSlope: -2.2925184 + outSlope: -2.2925184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 0.87934804 + inSlope: -3.7957342 + outSlope: -3.7957342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 0.5936025 + inSlope: -4.3171725 + outSlope: -4.3171725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 0.30780733 + inSlope: -3.835922 + outSlope: -3.835922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 0.08794639 + inSlope: -2.3405316 + outSlope: -2.3405316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.00000023820729 + inSlope: -0.32133967 + outSlope: -0.32133967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 0.04559299 + inSlope: 1.2655011 + outSlope: 1.2655011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 0.16812994 + inSlope: 2.2559323 + outSlope: 2.2559323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 0.34624222 + inSlope: 2.9221394 + outSlope: 2.9221394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 0.5585582 + inSlope: 3.2672644 + outSlope: 3.2672644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 0.7837016 + inSlope: 3.293383 + outSlope: 3.293383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 1.0002979 + inSlope: 3.0023444 + outSlope: 3.0023444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 1.186988 + inSlope: 2.7737448 + outSlope: 2.7737448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 1.3719231 + inSlope: 2.9392908 + outSlope: 2.9392908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 1.5804137 + inSlope: 3.0843978 + outSlope: 3.0843978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 1.786887 + inSlope: 2.8492866 + outSlope: 2.8492866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 1.9653459 + inSlope: 2.2522638 + outSlope: 2.2522638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 2.0918243 + inSlope: 1.2841678 + outSlope: 1.2841678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 2.1394637 + inSlope: -0.03769044 + outSlope: -0.03769044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 2.0867815 + inSlope: -1.4009727 + outSlope: -1.4009727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 1.9513879 + inSlope: -2.081317 + outSlope: -2.081317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -5.5688844 + inSlope: 50.972588 + outSlope: 50.972588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -2.1717324 + inSlope: 37.023594 + outSlope: 37.023594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -0.6294584 + inSlope: 11.563937 + outSlope: 11.563937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -0.6294584 + inSlope: 0.0001287457 + outSlope: 0.0001287457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -0.6294584 + inSlope: 5.493298 + outSlope: 5.493298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 0.10285286 + inSlope: 19.215405 + outSlope: 19.215405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 1.9323721 + inSlope: 31.536215 + outSlope: 31.536215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 4.308063 + inSlope: 35.6052 + outSlope: 35.6052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 6.6807117 + inSlope: 31.459295 + outSlope: 31.459295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 8.503762 + inSlope: 19.133627 + outSlope: 19.133627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 9.232477 + inSlope: 2.7667549 + outSlope: 2.7667549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 8.872708 + inSlope: -10.000186 + outSlope: -10.000186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 7.8990517 + inSlope: -18.021887 + outSlope: -18.021887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 6.46979 + inSlope: -23.668114 + outSlope: -23.668114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 4.7432675 + inSlope: -26.936787 + outSlope: -26.936787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 2.8782299 + inSlope: -27.820618 + outSlope: -27.820618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 1.034001 + inSlope: -26.309732 + outSlope: -26.309732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -0.62945795 + inSlope: -25.8789 + outSlope: -25.8789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -2.4164305 + inSlope: -29.344381 + outSlope: -29.344381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -4.542134 + inSlope: -32.21564 + outSlope: -32.21564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -6.7117944 + inSlope: -30.616758 + outSlope: -30.616758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -8.624155 + inSlope: -24.650167 + outSlope: -24.650167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -9.998111 + inSlope: -14.223746 + outSlope: -14.223746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -10.520371 + inSlope: 0.20191689 + outSlope: 0.20191689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -9.971222 + inSlope: 14.695601 + outSlope: 14.695601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.56107 + inSlope: 21.145332 + outSlope: 21.145332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -1.9893817 + inSlope: 7.5717006 + outSlope: 7.5717006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -1.4910645 + inSlope: 5.3492336 + outSlope: 5.3492336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -1.2646191 + inSlope: 1.6802768 + outSlope: 1.6802768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -1.2646191 + inSlope: 0.00005364404 + outSlope: 0.00005364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -1.2646191 + inSlope: 0.7066125 + outSlope: 0.7066125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -1.1709082 + inSlope: 2.4730527 + outSlope: 2.4730527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -0.9366637 + inSlope: 4.0348496 + outSlope: 4.0348496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -0.63220817 + inSlope: 4.5355687 + outSlope: 4.5355687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -0.3277987 + inSlope: 3.9967031 + outSlope: 3.9967031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -0.09365584 + inSlope: 2.4271681 + outSlope: 2.4271681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -0.00000028570747 + inSlope: 0.3653086 + outSlope: 0.3653086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -0.044484906 + inSlope: -1.2364006 + outSlope: -1.2364006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -0.16548702 + inSlope: -2.2471476 + outSlope: -2.2471476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -0.34432587 + inSlope: -2.9822826 + outSlope: -2.9822826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -0.5623315 + inSlope: -3.4366689 + outSlope: -3.4366689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -0.8008343 + inSlope: -3.6093717 + outSlope: -3.6093717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -1.0411594 + inSlope: -3.4988592 + outSlope: -3.4988592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -1.2646195 + inSlope: -3.58079 + outSlope: -3.58079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -1.5169821 + inSlope: -4.2194834 + outSlope: -4.2194834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -1.8260369 + inSlope: -4.736344 + outSlope: -4.736344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -2.1460915 + inSlope: -4.557099 + outSlope: -4.557099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -2.4306154 + inSlope: -3.6970317 + outSlope: -3.6970317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -2.6361911 + inSlope: -2.1434197 + outSlope: -2.1434197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -2.7146313 + inSlope: 0.01515986 + outSlope: 0.01515986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -2.6342561 + inSlope: 2.1578608 + outSlope: 2.1578608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.4277947 + inSlope: 3.0630744 + outSlope: 3.0630744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -79.98038 + inSlope: -12.927441 + outSlope: -12.927441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -80.84703 + inSlope: -9.496283 + outSlope: -9.496283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -81.23951 + inSlope: -2.957385 + outSlope: -2.957385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -81.23951 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -81.23951 + inSlope: -1.441957 + outSlope: -1.441957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -81.43176 + inSlope: -5.0461626 + outSlope: -5.0461626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -81.912544 + inSlope: -8.290536 + outSlope: -8.290536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -82.53772 + inSlope: -9.374093 + outSlope: -9.374093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -83.16309 + inSlope: -8.298805 + outSlope: -8.298805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -83.644356 + inSlope: -5.048891 + outSlope: -5.048891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -83.83687 + inSlope: -0.7223518 + outSlope: -0.7223518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -83.740944 + inSlope: 2.6600673 + outSlope: 2.6600673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -83.482025 + inSlope: 4.7886705 + outSlope: 4.7886705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -83.10269 + inSlope: 6.2690797 + outSlope: 6.2690797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -82.646 + inSlope: 7.1094837 + outSlope: 7.1094837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -82.15469 + inSlope: 7.3059154 + outSlope: 7.3059154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -81.6717 + inSlope: 6.860282 + outSlope: 6.860282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -81.23951 + inSlope: 6.681067 + outSlope: 6.681067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -80.78077 + inSlope: 7.507789 + outSlope: 7.507789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -80.238106 + inSlope: 8.20399 + outSlope: 8.20399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -79.685074 + inSlope: 7.787941 + outSlope: 7.787941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -79.19752 + inSlope: 6.266333 + outSlope: 6.266333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -78.847115 + inSlope: 3.6165652 + outSlope: 3.6165652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -78.713844 + inSlope: -0.05767828 + outSlope: -0.05767828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -78.85445 + inSlope: -3.7573278 + outSlope: -3.7573278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -79.215324 + inSlope: -5.435452 + outSlope: -5.435452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: 28.479265 + inSlope: 55.8419 + outSlope: 55.8419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: 32.275177 + inSlope: 41.806988 + outSlope: 41.806988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: 33.91708 + inSlope: 12.501252 + outSlope: 12.501252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: 33.91708 + inSlope: 0.00017166093 + outSlope: 0.00017166093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: 33.91708 + inSlope: 8.035992 + outSlope: 8.035992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: 34.998177 + inSlope: 28.068378 + outSlope: 28.068378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: 37.698307 + inSlope: 46.640102 + outSlope: 46.640102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: 41.20213 + inSlope: 53.22486 + outSlope: 53.22486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: 44.69747 + inSlope: 47.439354 + outSlope: 47.439354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: 47.379017 + inSlope: 29.021511 + outSlope: 29.021511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: 48.44961 + inSlope: 3.7348402 + outSlope: 3.7348402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: 47.86499 + inSlope: -16.177383 + outSlope: -16.177383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: 46.310486 + inSlope: -28.390072 + outSlope: -28.390072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: 44.08154 + inSlope: -36.170288 + outSlope: -36.170288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: 41.461887 + inSlope: -39.834976 + outSlope: -39.834976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: 38.721058 + inSlope: -39.605923 + outSlope: -39.605923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: 36.119934 + inSlope: -35.579258 + outSlope: -35.579258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: 33.917107 + inSlope: -32.186882 + outSlope: -32.186882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: 31.793102 + inSlope: -33.818523 + outSlope: -33.818523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: 29.387833 + inSlope: -36.1393 + outSlope: -36.1393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: 26.945675 + inSlope: -34.33008 + outSlope: -34.33008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: 24.776043 + inSlope: -27.825478 + outSlope: -27.825478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: 23.204115 + inSlope: -16.138159 + outSlope: -16.138159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: 22.604752 + inSlope: 0.50811815 + outSlope: 0.50811815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: 23.272593 + inSlope: 17.660797 + outSlope: 17.660797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 24.970266 + inSlope: 25.888865 + outSlope: 25.888865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00000071525574 + value: -38.242744 + inSlope: 20.587296 + outSlope: 20.587296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666756 + value: -36.94519 + inSlope: 13.689615 + outSlope: 13.689615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333416 + value: -36.274178 + inSlope: 4.8384523 + outSlope: 4.8384523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.200001 + value: -36.274178 + inSlope: 0.00034332185 + outSlope: 0.00034332185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2666676 + value: -36.274178 + inSlope: 0.18848437 + outSlope: 0.18848437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3333342 + value: -36.258755 + inSlope: 0.7063872 + outSlope: 0.7063872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000105 + value: -36.218945 + inSlope: 0.59377515 + outSlope: 0.59377515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666765 + value: -36.163784 + inSlope: 0.11793148 + outSlope: 0.11793148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333426 + value: -36.103416 + inSlope: -0.29285458 + outSlope: -0.29285458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6000011 + value: -36.05206 + inSlope: -0.3400603 + outSlope: -0.3400603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666677 + value: -36.03005 + inSlope: 0.41490594 + outSlope: 0.41490594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7333343 + value: -35.984676 + inSlope: 1.1897862 + outSlope: 1.1897862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000009 + value: -35.889458 + inSlope: 1.3811888 + outSlope: 1.3811888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666675 + value: -35.802406 + inSlope: 0.70621556 + outSlope: 0.70621556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333346 + value: -35.76971 + inSlope: -0.5213324 + outSlope: -0.5213324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0000012 + value: -35.82303 + inSlope: -2.0709248 + outSlope: -2.0709248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666678 + value: -35.984726 + inSlope: -3.834232 + outSlope: -3.834232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333344 + value: -36.274208 + inSlope: -6.592833 + outSlope: -6.592833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.200001 + value: -36.828705 + inSlope: -10.167856 + outSlope: -10.167856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666681 + value: -37.610256 + inSlope: -12.155782 + outSlope: -12.155782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333347 + value: -38.42084 + inSlope: -11.567757 + outSlope: -11.567757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000013 + value: -39.118076 + inSlope: -9.126042 + outSlope: -9.126042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666679 + value: -39.60577 + inSlope: -5.18435 + outSlope: -5.18435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333345 + value: -39.78927 + inSlope: -0.20908375 + outSlope: -0.20908375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000011 + value: -39.634243 + inSlope: 4.361405 + outSlope: 4.361405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -39.21868 + inSlope: 5.7921624 + outSlope: 5.7921624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: "Box01/\u7F6E\u5FC3/Bone03/Bone12/Bone13/Bone14/Bone39" + classID: 4 + script: {fileID: 0} + flags: 0 + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim.meta new file mode 100644 index 0000000000..5c0c75d34a --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/火凤凰/tcks_火凤凰/飞行悬停.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f768e98f6054bb4f85ebfd11057f03f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫.meta new file mode 100644 index 0000000000..e35f2fe275 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 650e8662b407a1e4a9a6c7569a19d011 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫.meta new file mode 100644 index 0000000000..eacc8ef315 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 094632c987e9d2d469c0f07f29f1e29d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller new file mode 100644 index 0000000000..461ac4ce82 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "tcks_\u72EE\u9E6B" + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 3207566677519965009} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &1244501168431863817 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u524D\u8FDB" + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 467ec75d29ed28247b2596e806f7937e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &3207566677519965009 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1244501168431863817} + m_Position: {x: 223.5, y: 310, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1244501168431863817} diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller.meta new file mode 100644 index 0000000000..ddae936c1a --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/tcks_狮鹫.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3d4d34f2799ece1438e0fcc98a15f247 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim new file mode 100644 index 0000000000..82a0494711 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim @@ -0,0 +1,9171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u524D\u8FDB" + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5093465, y: -0.49047625, z: -0.50934565, w: 0.49047554} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.49365142, y: 0.50626826, z: 0.4936521, w: 0.506269} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0014126388, y: 0.11211994, z: 0.012537156, w: 0.99361455} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000000017024523, y: -0.10509991, z: 0.00000029446952, w: 0.99446166} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -8.445503e-10, y: -0.078644454, z: 0.0000002205362, w: 0.9969027} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.022889795, y: 0.115349256, z: -0.0022049476, w: 0.9930588} + inSlope: {x: -0.00033735894, y: -0.14471707, z: -0.003331825, w: 0.016097952} + outSlope: {x: -0.00033735894, y: -0.14471707, z: -0.003331825, w: 0.016097952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.022867318, y: 0.10570748, z: -0.0024269305, w: 0.9941313} + inSlope: {x: -0.00036611286, y: -0.14953414, z: -0.0034389743, w: 0.015851928} + outSlope: {x: -0.00036611286, y: -0.14953414, z: -0.0034389743, w: 0.015851928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.02284101, y: 0.09542383, z: -0.002663191, w: 0.99517107} + inSlope: {x: -0.00041871425, y: -0.15632693, z: -0.003587479, w: 0.014969824} + outSlope: {x: -0.00041871425, y: -0.15632693, z: -0.003587479, w: 0.014969824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.022811525, y: 0.08487692, z: -0.002904962, w: 0.99612606} + inSlope: {x: -0.00045881877, y: -0.15742336, z: -0.0036046237, w: 0.013423905} + outSlope: {x: -0.00045881877, y: -0.15742336, z: -0.0036046237, w: 0.013423905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.022779873, y: 0.07444717, z: -0.003143507, w: 0.9969598} + inSlope: {x: -0.00048093288, y: -0.15280193, z: -0.0034911665, w: 0.01144946} + outSlope: {x: -0.00048093288, y: -0.15280193, z: -0.0034911665, w: 0.01144946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.02274744, y: 0.06451606, z: -0.00337016, w: 0.9976517} + inSlope: {x: -0.0004797587, y: -0.14244823, z: -0.003247887, w: 0.009275064} + outSlope: {x: -0.0004797587, y: -0.14244823, z: -0.003247887, w: 0.009275064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.022715945, y: 0.055465944, z: -0.003576288, w: 0.9981957} + inSlope: {x: -0.00045080908, y: -0.1263521, z: -0.0028754699, w: 0.0071011167} + outSlope: {x: -0.00045080908, y: -0.1263521, z: -0.0028754699, w: 0.0071011167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.02268737, y: 0.047679644, z: -0.0037533164, w: 0.9985979} + inSlope: {x: -0.00039085496, y: -0.10451241, z: -0.0023745862, w: 0.0050765714} + outSlope: {x: -0.00039085496, y: -0.10451241, z: -0.0023745862, w: 0.0050765714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.022663863, y: 0.041539665, z: -0.0038927016, w: 0.99887216} + inSlope: {x: -0.00017578059, y: -0.04591453, z: -0.0010422985, w: 0.002051384} + outSlope: {x: -0.00017578059, y: -0.04591453, z: -0.0010422985, w: 0.002051384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.022663947, y: 0.041561533, z: -0.0038922026, w: 0.99887127} + inSlope: {x: 0.00020787539, y: 0.054480214, z: 0.0012369397, w: -0.0024638078} + outSlope: {x: 0.00020787539, y: 0.054480214, z: 0.0012369397, w: -0.0024638078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.022691563, y: 0.048799153, z: -0.0037278794, w: 0.99854386} + inSlope: {x: 0.0004694984, y: 0.12667534, z: 0.0028790133, w: -0.006343813} + outSlope: {x: 0.0004694984, y: 0.12667534, z: 0.0028790133, w: -0.006343813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.022726508, y: 0.05844102, z: -0.003508574, w: 0.99802595} + inSlope: {x: 0.000518032, y: 0.14753886, z: 0.0033593662, w: -0.0086676115} + outSlope: {x: 0.000518032, y: 0.14753886, z: 0.0033593662, w: -0.0086676115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.02276059, y: 0.068458706, z: -0.0032802438, w: 0.9973889} + inSlope: {x: 0.00052200194, y: 0.15939629, z: 0.0036374857, w: -0.011037931} + outSlope: {x: 0.00052200194, y: 0.15939629, z: 0.0036374857, w: -0.011037931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.022796065, y: 0.07968058, z: -0.0030238791, w: 0.99655515} + inSlope: {x: 0.00052517507, y: 0.17354682, z: 0.0039696987, w: -0.013936975} + outSlope: {x: 0.00052517507, y: 0.17354682, z: 0.0039696987, w: -0.013936975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.02283057, y: 0.09158382, z: -0.0027512815, w: 0.9955318} + inSlope: {x: 0.0004966588, y: 0.1798574, z: 0.004124246, w: -0.016561368} + outSlope: {x: 0.0004966588, y: 0.1798574, z: 0.004124246, w: -0.016561368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.022862244, y: 0.10364658, z: -0.0024743234, w: 0.99434835} + inSlope: {x: 0.00044446278, y: 0.17835225, z: 0.0041000666, w: -0.018559076} + outSlope: {x: 0.00044446278, y: 0.17835225, z: 0.0041000666, w: -0.018559076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.022889795, y: 0.115349256, z: -0.0022049476, w: 0.9930588} + inSlope: {x: 0.0004135142, y: 0.17564997, z: 0.0040431633, w: -0.019355295} + outSlope: {x: 0.0004135142, y: 0.17564997, z: 0.0040431633, w: -0.019355295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.033524018, y: 0.440844, z: -0.025036233, w: 0.896608} + inSlope: {x: 0.0005873238, y: 0.28071395, z: -0.00078584754, w: -0.14169489} + outSlope: {x: 0.0005873238, y: 0.28071395, z: -0.00078584754, w: -0.14169489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.033484887, y: 0.45954657, z: -0.02508859, w: 0.8871676} + inSlope: {x: 0.0006071454, y: 0.2882284, z: -0.0008110649, w: -0.14955106} + outSlope: {x: 0.0006071454, y: 0.2882284, z: -0.0008110649, w: -0.14955106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.033443116, y: 0.47925043, z: -0.025144307, w: 0.8766803} + inSlope: {x: 0.0006353542, y: 0.29751372, z: -0.0008459694, w: -0.1627464} + outSlope: {x: 0.0006353542, y: 0.29751372, z: -0.0008459694, w: -0.1627464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.033400226, y: 0.49919027, z: -0.025201315, w: 0.8654816} + inSlope: {x: 0.00064069405, y: 0.29556257, z: -0.00085002324, w: -0.17042008} + outSlope: {x: 0.00064069405, y: 0.29556257, z: -0.00085002324, w: -0.17042008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.033357743, y: 0.51863414, z: -0.025257573, w: 0.85397184} + inSlope: {x: 0.0006228294, y: 0.2829116, z: -0.0008233521, w: -0.17160591} + outSlope: {x: 0.0006228294, y: 0.2829116, z: -0.0008233521, w: -0.17160591} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.033317234, y: 0.53688824, z: -0.025311027, w: 0.8426151} + inSlope: {x: 0.000581341, y: 0.26013076, z: -0.0007661098, w: -0.16539586} + outSlope: {x: 0.000581341, y: 0.26013076, z: -0.0007661098, w: -0.16539586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.03328028, y: 0.55329657, z: -0.025359657, w: 0.83193284} + inSlope: {x: 0.0005162568, y: 0.22776042, z: -0.0006784501, w: -0.15102676} + outSlope: {x: 0.0005162568, y: 0.22776042, z: -0.0006784501, w: -0.15102676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.033248443, y: 0.5672373, z: -0.02540143, w: 0.8224908} + inSlope: {x: 0.0004276326, y: 0.18624204, z: -0.0005604151, w: -0.12795384} + outSlope: {x: 0.0004276326, y: 0.18624204, z: -0.0005604151, w: -0.12795384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.033223297, y: 0.5781133, z: -0.025434332, w: 0.814883} + inSlope: {x: 0.00018803979, y: 0.081331156, z: -0.00024600895, w: -0.05688855} + outSlope: {x: 0.00018803979, y: 0.081331156, z: -0.00024600895, w: -0.05688855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.033223387, y: 0.5780747, z: -0.02543421, w: 0.8149104} + inSlope: {x: -0.00022304215, y: -0.09658815, z: 0.00029199847, w: 0.067389704} + outSlope: {x: -0.00022304215, y: -0.09658815, z: 0.00029199847, w: 0.067389704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.033253018, y: 0.56524295, z: -0.025395423, w: 0.8238627} + inSlope: {x: -0.0005182137, y: -0.22625074, z: 0.0006794287, w: 0.15436283} + outSlope: {x: -0.0005182137, y: -0.22625074, z: 0.0006794287, w: 0.15436283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.03329244, y: 0.5479268, z: -0.025343677, w: 0.83547926} + inSlope: {x: -0.0006027282, y: -0.26694697, z: 0.00079255726, w: 0.17491245} + outSlope: {x: -0.0006027282, y: -0.26694697, z: 0.00079255726, w: 0.17491245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.03333333, y: 0.52967227, z: -0.025289815, w: 0.84716976} + inSlope: {x: -0.00065011554, y: -0.2927919, z: 0.00085793505, w: 0.18252665} + outSlope: {x: -0.00065011554, y: -0.2927919, z: 0.00085793505, w: 0.18252665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.033379067, y: 0.50891227, z: -0.025229357, w: 0.85980093} + inSlope: {x: -0.0007067568, y: -0.3236776, z: 0.0009361033, w: 0.19125554} + outSlope: {x: -0.0007067568, y: -0.3236776, z: 0.0009361033, w: 0.19125554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.033427507, y: 0.48654222, z: -0.02516508, w: 0.87265456} + inSlope: {x: -0.00073138706, y: -0.34068698, z: 0.00097254536, w: 0.18986395} + outSlope: {x: -0.00073138706, y: -0.34068698, z: 0.00097254536, w: 0.18986395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.033476524, y: 0.46351573, z: -0.025099766, w: 0.8851003} + inSlope: {x: -0.0007242859, y: -0.34295106, z: 0.0009669539, w: 0.17976314} + outSlope: {x: -0.0007242859, y: -0.34295106, z: 0.0009669539, w: 0.17976314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.033524018, y: 0.440844, z: -0.025036233, w: 0.896608} + inSlope: {x: -0.0007128514, y: -0.34028864, z: 0.00095359044, w: 0.17272331} + outSlope: {x: -0.0007128514, y: -0.34028864, z: 0.00095359044, w: 0.17272331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12843807, y: 0.74396414, z: 0.6434319, w: 0.12655562} + inSlope: {x: 0.25300997, y: 0.042851828, z: 0.04274, w: -0.24619682} + outSlope: {x: 0.25300997, y: 0.042851828, z: 0.04274, w: -0.24619682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.11158128, y: 0.74681914, z: 0.64627945, w: 0.11015276} + inSlope: {x: 0.25619423, y: 0.0402498, z: 0.040158547, w: -0.24991149} + outSlope: {x: 0.25619423, y: 0.0402498, z: 0.040158547, w: -0.24991149} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.09430019, y: 0.7493274, z: 0.648783, w: 0.09325492} + inSlope: {x: 0.260945, y: 0.034631528, z: 0.03457293, w: -0.25539714} + outSlope: {x: 0.260945, y: 0.034631528, z: 0.03457293, w: -0.25539714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.07681036, y: 0.7514338, z: 0.6508863, w: 0.07612109} + inSlope: {x: 0.25973147, y: 0.028139208, z: 0.028102975, w: -0.25462693} + outSlope: {x: 0.25973147, y: 0.028139208, z: 0.028102975, w: -0.25462693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.05969097, y: 0.753077, z: 0.65252775, w: 0.059325878} + inSlope: {x: 0.25416738, y: 0.021387443, z: 0.021369997, w: -0.24899215} + outSlope: {x: 0.25416738, y: 0.021387443, z: 0.021369997, w: -0.24899215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.042942557, y: 0.75428367, z: 0.65373385, w: 0.04294289} + inSlope: {x: 0.23379076, y: 0.014507301, z: 0.014504617, w: -0.22942017} + outSlope: {x: 0.23379076, y: 0.014507301, z: 0.014504617, w: -0.22942017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.028538356, y: 0.75501007, z: 0.6544605, w: 0.02875564} + inSlope: {x: 0.18712796, y: 0.008078946, z: 0.00807984, w: -0.18596375} + outSlope: {x: 0.18712796, y: 0.008078946, z: 0.00807984, w: -0.18596375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.018007757, y: 0.7553602, z: 0.6548105, w: 0.01816322} + inSlope: {x: 0.11895541, y: 0.003529758, z: 0.0035311, w: -0.122765474} + outSlope: {x: 0.11895541, y: 0.003529758, z: 0.0035311, w: -0.122765474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.012687547, y: 0.7554804, z: 0.654931, w: 0.012397141} + inSlope: {x: -0.0025404654, y: 0.000029970077, z: 0.000069333764, w: -0.006427165} + outSlope: {x: -0.0025404654, y: 0.000029970077, z: 0.000069333764, w: -0.006427165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.018346274, y: 0.7553642, z: 0.6548197, w: 0.0173068} + inSlope: {x: -0.14310157, y: -0.0043241885, z: -0.0042476975, w: 0.13428955} + outSlope: {x: -0.14310157, y: -0.0043241885, z: -0.0042476975, w: 0.13428955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.03175583, y: 0.7549042, z: 0.654365, w: 0.030291222} + inSlope: {x: -0.21179041, y: -0.009487539, z: -0.009429388, w: 0.2073921} + outSlope: {x: -0.21179041, y: -0.009487539, z: -0.009429388, w: 0.2073921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.046567347, y: 0.75409997, z: 0.65356326, w: 0.044941794} + inSlope: {x: -0.22749542, y: -0.014838761, z: -0.014796266, w: 0.22490588} + outSlope: {x: -0.22749542, y: -0.014838761, z: -0.014796266, w: 0.22490588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.062069595, y: 0.75292695, z: 0.6523934, w: 0.06025993} + inSlope: {x: -0.23839435, y: -0.020832773, z: -0.020800568, w: 0.23654771} + outSlope: {x: -0.23839435, y: -0.020832773, z: -0.020800568, w: 0.23654771} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.07833339, y: 0.751324, z: 0.6507916, w: 0.07646178} + inSlope: {x: -0.24777769, y: -0.027432898, z: -0.027424399, w: 0.24729195} + outSlope: {x: -0.24777769, y: -0.027432898, z: -0.027424399, w: 0.24729195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.09508597, y: 0.7492715, z: 0.6487391, w: 0.093211584} + inSlope: {x: -0.25190634, y: -0.03395698, z: -0.03395832, w: 0.25199234} + outSlope: {x: -0.25190634, y: -0.03395698, z: -0.03395832, w: 0.25199234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.11189991, y: 0.74679923, z: 0.64626664, w: 0.110039756} + inSlope: {x: -0.2502972, y: -0.039830215, z: -0.039828874, w: 0.2502367} + outSlope: {x: -0.2502972, y: -0.039830215, z: -0.039828874, w: 0.2502367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.12843807, y: 0.74396414, z: 0.6434319, w: 0.12655562} + inSlope: {x: -0.24822752, y: -0.04255302, z: -0.04254765, w: 0.24789293} + outSlope: {x: -0.24822752, y: -0.04255302, z: -0.04254765, w: 0.24789293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5823904, y: 0.40540373, z: 0.32634398, w: 0.62447476} + inSlope: {x: -0.006690034, y: 0.0537994, z: 0.033449277, w: -0.046499226} + outSlope: {x: -0.006690034, y: 0.0537994, z: 0.033449277, w: -0.046499226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.5819447, y: 0.40898812, z: 0.32857254, w: 0.62137675} + inSlope: {x: -0.0066144383, y: 0.053274028, z: 0.033636257, w: -0.046654448} + outSlope: {x: -0.0066144383, y: 0.053274028, z: 0.033636257, w: -0.046654448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.58150905, y: 0.4125025, z: 0.330826, w: 0.61825806} + inSlope: {x: -0.0064882953, y: 0.05231767, z: 0.034073506, w: -0.04703556} + outSlope: {x: -0.0064882953, y: 0.05231767, z: 0.034073506, w: -0.04703556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.58108014, y: 0.41595945, z: 0.33311284, w: 0.61510926} + inSlope: {x: -0.0063017653, y: 0.05068654, z: 0.034047335, w: -0.04675062} + outSlope: {x: -0.0063017653, y: 0.05068654, z: 0.034047335, w: -0.04675062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.58066934, y: 0.41925648, z: 0.33536282, w: 0.61202854} + inSlope: {x: -0.0061201556, y: 0.04893016, z: 0.033909563, w: -0.04629033} + outSlope: {x: -0.0061201556, y: 0.04893016, z: 0.033909563, w: -0.04629033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.5802646, y: 0.4224794, z: 0.3376313, w: 0.6089411} + inSlope: {x: -0.0055350685, y: 0.043876402, z: 0.031281814, w: -0.042462215} + outSlope: {x: -0.0055350685, y: 0.043876402, z: 0.031281814, w: -0.042462215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.5799318, y: 0.425103, z: 0.33953112, w: 0.60637045} + inSlope: {x: -0.0040938216, y: 0.032150947, z: 0.023475954, w: -0.03170699} + outSlope: {x: -0.0040938216, y: 0.032150947, z: 0.023475954, w: -0.03170699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.5797191, y: 0.4267635, z: 0.34075946, w: 0.6047161} + inSlope: {x: -0.001976235, y: 0.015417138, z: 0.011427093, w: -0.015384037} + outSlope: {x: -0.001976235, y: 0.015417138, z: 0.011427093, w: -0.015384037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.57966846, y: 0.42715734, z: 0.34105378, w: 0.6043205} + inSlope: {x: 0.0012788719, y: -0.009980479, z: -0.0073947785, w: 0.009955877} + outSlope: {x: 0.0012788719, y: -0.009980479, z: -0.0073947785, w: 0.009955877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.57988954, y: 0.4254336, z: 0.3397741, w: 0.60604274} + inSlope: {x: 0.0042119124, y: -0.03303171, z: -0.02419971, w: 0.03266111} + outSlope: {x: 0.0042119124, y: -0.03303171, z: -0.02419971, w: 0.03266111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.5802297, y: 0.42275587, z: 0.33782917, w: 0.6086726} + inSlope: {x: 0.00506673, y: -0.040077806, z: -0.028736148, w: 0.038960192} + outSlope: {x: 0.00506673, y: -0.040077806, z: -0.028736148, w: 0.038960192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.5805647, y: 0.42009324, z: 0.335945, w: 0.6112342} + inSlope: {x: 0.0051799007, y: -0.04133319, z: -0.028856698, w: 0.039335936} + outSlope: {x: 0.0051799007, y: -0.04133319, z: -0.028856698, w: 0.039335936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.5809199, y: 0.41724822, z: 0.33398402, w: 0.61391413} + inSlope: {x: 0.005354801, y: -0.04298848, z: -0.029237587, w: 0.04005611} + outSlope: {x: 0.005354801, y: -0.04298848, z: -0.029237587, w: 0.04005611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.5812782, y: 0.41436502, z: 0.3320491, w: 0.61657166} + inSlope: {x: 0.0054308446, y: -0.04375518, z: -0.028976133, w: 0.039888367} + outSlope: {x: 0.0054308446, y: -0.04375518, z: -0.028976133, w: 0.039888367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.5816436, y: 0.41141784, z: 0.33012295, w: 0.61922926} + inSlope: {x: 0.0055212015, y: -0.044528138, z: -0.028721165, w: 0.039710335} + outSlope: {x: 0.0055212015, y: -0.044528138, z: -0.028721165, w: 0.039710335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.5820139, y: 0.40843165, z: 0.328222, w: 0.62186307} + inSlope: {x: 0.005604849, y: -0.045134023, z: -0.028359957, w: 0.039365903} + outSlope: {x: 0.005604849, y: -0.045134023, z: -0.028359957, w: 0.039365903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.5823904, y: 0.40540373, z: 0.32634398, w: 0.62447476} + inSlope: {x: 0.00565137, y: -0.045447145, z: -0.028187966, w: 0.039199952} + outSlope: {x: 0.00565137, y: -0.045447145, z: -0.028187966, w: 0.039199952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000000040652868, y: 0.12570287, z: -3.6715425e-10, w: 0.99206793} + inSlope: {x: 0.00000000930778, y: -0.20511279, z: 0.00000002382398, w: 0.024556667} + outSlope: {x: 0.00000000930778, y: -0.20511279, z: 0.00000002382398, w: 0.024556667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.000000003445156, y: 0.112037234, z: 0.0000000012201182, w: 0.993704} + inSlope: {x: -0.000000012692544, y: -0.20477752, z: -0.0000000073579756, w: 0.023094844} + outSlope: {x: -0.000000012692544, y: -0.20477752, z: -0.0000000073579756, w: 0.023094844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.000000005756568, y: 0.09841627, z: -0.0000000013476046, w: 0.9951453} + inSlope: {x: 0.0000000023023379, y: -0.20445752, z: 0.00000000163209, w: 0.020221744} + outSlope: {x: 0.0000000023023379, y: -0.20445752, z: 0.00000000163209, w: 0.020221744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.0000000031383693, y: 0.08479327, z: 0.0000000014375943, w: 0.99639857} + inSlope: {x: 0.000000037458822, y: -0.20137519, z: 0.000000015164835, w: 0.0171809} + outSlope: {x: 0.000000037458822, y: -0.20137519, z: 0.000000015164835, w: 0.0171809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -7.651802e-10, y: 0.071583025, z: 6.7310973e-10, w: 0.9974347} + inSlope: {x: 0.000000028504061, y: -0.19766471, z: -0.0000000101617506, w: 0.014195075} + outSlope: {x: 0.000000028504061, y: -0.19766471, z: -0.0000000101617506, w: 0.014195075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 6.5979655e-10, y: 0.058454446, z: 8.354103e-11, w: 0.99829006} + inSlope: {x: 0.00000002261385, y: -0.17996174, z: -0.000000008760265, w: 0.010744045} + outSlope: {x: 0.00000002261385, y: -0.17996174, z: -0.000000008760265, w: 0.010744045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.0000000022481152, y: 0.047603123, z: -4.9419563e-10, w: 0.9988663} + inSlope: {x: -0.000000025265823, y: -0.13357031, z: 0.0000000010225936, w: 0.0066278577} + outSlope: {x: -0.000000025265823, y: -0.13357031, z: 0.0000000010225936, w: 0.0066278577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.0000000027068745, y: 0.0406562, z: 2.1980161e-10, w: 0.9991732} + inSlope: {x: -0.00000003730324, y: -0.06456984, z: 0.0000000026818232, w: 0.0027988465} + outSlope: {x: -0.00000003730324, y: -0.06456984, z: 0.0000000026818232, w: 0.0027988465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.0000000027225415, y: 0.038999192, z: -1.3684272e-10, w: 0.99923927} + inSlope: {x: 0.00000002086911, y: 0.0417932, z: 0.0000000011560073, w: -0.0018174384} + outSlope: {x: 0.00000002086911, y: 0.0417932, z: 0.0000000011560073, w: -0.0018174384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 7.3934484e-11, y: 0.046225145, z: 3.7383957e-10, w: 0.99893105} + inSlope: {x: 0.0000000168967, y: 0.137477, z: 0.000000009682151, w: -0.0066287527} + outSlope: {x: 0.0000000168967, y: 0.137477, z: 0.000000009682151, w: -0.0066287527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -4.710563e-10, y: 0.057318002, z: 0.0000000011533039, w: 0.998356} + inSlope: {x: -0.000000029243346, y: 0.16487484, z: 0.0000000036617, w: -0.009448622} + outSlope: {x: -0.000000029243346, y: 0.16487484, z: 0.0000000036617, w: -0.009448622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.0000000038227412, y: 0.06819472, z: 8.617611e-10, w: 0.997672} + inSlope: {x: -0.000000017706071, y: 0.16762874, z: -0.0000000093143555, w: -0.011508058} + outSlope: {x: -0.000000017706071, y: 0.16762874, z: -0.0000000093143555, w: -0.011508058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.0000000028303901, y: 0.07965453, z: -8.783394e-11, w: 0.99682254} + inSlope: {x: -0.000000018397726, y: 0.17192653, z: -0.0000000093289145, w: -0.013738368} + outSlope: {x: -0.000000018397726, y: 0.17192653, z: -0.0000000093289145, w: -0.013738368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.000000006274238, y: 0.09110393, z: -3.8131664e-10, w: 0.9958414} + inSlope: {x: -0.000000016173987, y: 0.17252408, z: 0.000000010047417, w: -0.015791988} + outSlope: {x: -0.000000016173987, y: 0.17252408, z: 0.000000010047417, w: -0.015791988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.0000000049855737, y: 0.10264336, z: 0.0000000012509844, w: 0.99471825} + inSlope: {x: 0.000000005592851, y: 0.17312571, z: 0.000000006380074, w: -0.017864844} + outSlope: {x: 0.000000005592851, y: 0.17312571, z: 0.000000006380074, w: -0.017864844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.0000000055289906, y: 0.11417293, z: 4.6882825e-10, w: 0.9934609} + inSlope: {x: 0.000000004380723, y: 0.17305449, z: -0.000000021675561, w: -0.019889835} + outSlope: {x: 0.000000004380723, y: 0.17305449, z: -0.000000021675561, w: -0.019889835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.0000000044018424, y: 0.12570287, z: -0.0000000016372842, w: 0.99206793} + inSlope: {x: 0.000000016917797, y: 0.17305733, z: -0.000000031611442, w: -0.020907477} + outSlope: {x: 0.000000016917797, y: 0.17305733, z: -0.000000031611442, w: -0.020907477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.034724545, y: 0.26539654, z: 0.018245416, w: 0.96334106} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5554025, y: 0.076132886, z: 0.82488245, w: -0.07280605} + inSlope: {x: 0.6410883, y: 0.056018304, z: -0.45667133, w: 0.061758913} + outSlope: {x: 0.6410883, y: 0.056018304, z: -0.45667133, w: 0.061758913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.598115, y: 0.079865105, z: 0.7944567, w: -0.068691365} + inSlope: {x: 0.58966863, y: 0.05105546, z: -0.44080865, w: 0.058954366} + outSlope: {x: 0.58966863, y: 0.05105546, z: -0.44080865, w: 0.058954366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.63397586, y: 0.082936026, z: 0.7661447, w: -0.064950384} + inSlope: {x: 0.44881517, y: 0.038169786, z: -0.36602306, w: 0.048029378} + outSlope: {x: 0.44881517, y: 0.038169786, z: -0.36602306, w: 0.048029378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.65791965, y: 0.08495123, z: 0.74568415, w: -0.06229145} + inSlope: {x: 0.25029612, y: 0.021003481, z: -0.21664691, w: 0.028081002} + outSlope: {x: 0.25029612, y: 0.021003481, z: -0.21664691, w: 0.028081002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.6673278, y: 0.08573474, z: 0.7372765, w: -0.06120859} + inSlope: {x: -0.038291007, y: -0.0032037776, z: 0.03355261, w: -0.00433839} + outSlope: {x: -0.038291007, y: -0.0032037776, z: 0.03355261, w: -0.00433839} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.65281737, y: 0.084524326, z: 0.75015503, w: -0.06286954} + inSlope: {x: -0.30121437, y: -0.025328675, z: 0.25840414, w: -0.03355389} + outSlope: {x: -0.30121437, y: -0.025328675, z: 0.25840414, w: -0.03355389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.627191, y: 0.082359694, z: 0.77170885, w: -0.06567965} + inSlope: {x: -0.44214883, y: -0.03770335, z: 0.3561486, w: -0.046856686} + outSlope: {x: -0.44214883, y: -0.03770335, z: 0.3561486, w: -0.046856686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.59390104, y: 0.079500355, z: 0.79761183, w: -0.069113195} + inSlope: {x: -0.4102079, y: -0.035429314, z: 0.31053552, w: -0.0414141} + outSlope: {x: -0.4102079, y: -0.035429314, z: 0.31053552, w: -0.0414141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.5725308, y: 0.07763874, z: 0.8130877, w: -0.071198076} + inSlope: {x: 0.014517143, y: 0.0012571774, z: -0.010837086, w: 0.0014498588} + outSlope: {x: 0.014517143, y: 0.0012571774, z: -0.010837086, w: 0.0014498588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.59583545, y: 0.07966787, z: 0.7961678, w: -0.06892} + inSlope: {x: 0.43881187, y: 0.03786131, z: -0.3339005, w: 0.04447899} + outSlope: {x: 0.43881187, y: 0.03786131, z: -0.3339005, w: 0.04447899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.6310025, y: 0.08268376, z: 0.76859546, w: -0.06527125} + inSlope: {x: 0.4992825, y: 0.042432696, z: -0.40847546, w: 0.053564195} + outSlope: {x: 0.4992825, y: 0.042432696, z: -0.40847546, w: 0.053564195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.66236484, y: 0.08532203, z: 0.74173844, w: -0.061782572} + inSlope: {x: 0.33125108, y: 0.027752224, z: -0.28868732, w: 0.037367135} + outSlope: {x: 0.33125108, y: 0.027752224, z: -0.28868732, w: 0.037367135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.6751417, y: 0.08638174, z: 0.7301279, w: -0.06029208} + inSlope: {x: -0.20654565, y: -0.01735485, z: 0.17777216, w: -0.023068648} + outSlope: {x: -0.20654565, y: -0.01735485, z: 0.17777216, w: -0.023068648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.63484263, y: 0.0830095, z: 0.7654266, w: -0.06485647} + inSlope: {x: -0.6887895, y: -0.058515377, z: 0.5645421, w: -0.07400085} + outSlope: {x: -0.6887895, y: -0.058515377, z: 0.5645421, w: -0.07400085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.5833605, y: 0.07858457, z: 0.8053531, w: -0.07015269} + inSlope: {x: -0.5232416, y: -0.045183897, z: 0.39646283, w: -0.052862726} + outSlope: {x: -0.5232416, y: -0.045183897, z: 0.39646283, w: -0.052862726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.5651207, y: 0.07698874, z: 0.81825525, w: -0.07190043} + inSlope: {x: -0.20981595, y: -0.018399049, z: 0.14656168, w: -0.019912649} + outSlope: {x: -0.20981595, y: -0.018399049, z: 0.14656168, w: -0.019912649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.5554025, y: 0.07613289, z: 0.82488245, w: -0.07280605} + inSlope: {x: -0.14586386, y: -0.012845752, z: 0.0994702, w: -0.013592878} + outSlope: {x: -0.14586386, y: -0.012845752, z: 0.0994702, w: -0.013592878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.11307944, y: -0.573759, z: -0.20321591, w: 0.78531325} + inSlope: {x: 0.24266751, y: 0.9440052, z: -0.122902766, w: 0.6348054} + outSlope: {x: 0.24266751, y: 0.9440052, z: -0.122902766, w: 0.6348054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.09691172, y: -0.5108647, z: -0.21140431, w: 0.82760715} + inSlope: {x: 0.20679592, y: 0.8079686, z: -0.097908184, w: 0.5126326} + outSlope: {x: 0.20679592, y: 0.8079686, z: -0.097908184, w: 0.5126326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.08552389, y: -0.4660972, z: -0.21626218, w: 0.85362154} + inSlope: {x: 0.051554106, y: 0.20233774, z: -0.022634335, w: 0.12043539} + outSlope: {x: 0.051554106, y: 0.20233774, z: -0.022634335, w: 0.12043539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.09004214, y: -0.48390317, z: -0.21442033, w: 0.84365517} + inSlope: {x: -0.10635616, y: -0.41767648, z: 0.046202548, w: -0.24641657} + outSlope: {x: -0.10635616, y: -0.41767648, z: 0.046202548, w: -0.24641657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.09969585, y: -0.5217526, z: -0.21010569, w: 0.82078654} + inSlope: {x: -0.11968702, y: -0.46813732, z: 0.05567477, w: -0.29258075} + outSlope: {x: -0.11968702, y: -0.46813732, z: 0.05567477, w: -0.29258075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.10599043, y: -0.5462825, z: -0.20700167, w: 0.8046688} + inSlope: {x: -0.10043976, y: -0.3902921, z: 0.051705856, w: -0.26621604} + outSlope: {x: -0.10043976, y: -0.3902921, z: 0.051705856, w: -0.26621604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.11307944, y: -0.573759, z: -0.20321588, w: 0.78531325} + inSlope: {x: -0.13273999, y: -0.512137, z: 0.075470775, w: -0.3814496} + outSlope: {x: -0.13273999, y: -0.512137, z: 0.075470775, w: -0.3814496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.123678036, y: -0.6145247, z: -0.19694519, w: 0.7538406} + inSlope: {x: -0.1501394, y: -0.57492113, z: 0.093821175, w: -0.4665534} + outSlope: {x: -0.1501394, y: -0.57492113, z: 0.093821175, w: -0.4665534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.13308552, y: -0.65036726, z: -0.19071421, w: 0.723145} + inSlope: {x: -0.104196355, y: -0.39606962, z: 0.07080204, w: -0.34740406} + outSlope: {x: -0.104196355, y: -0.39606962, z: 0.07080204, w: -0.34740406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.1375622, y: -0.667301, z: -0.18751082, w: 0.70754904} + inSlope: {x: -0.041451287, y: -0.1567063, z: 0.029837102, w: -0.14513831} + outSlope: {x: -0.041451287, y: -0.1567063, z: 0.029837102, w: -0.14513831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.1386089, y: -0.6712484, z: -0.18673842, w: 0.7038053} + inSlope: {x: 0.016401118, y: 0.06196244, z: -0.011886263, w: 0.057762153} + outSlope: {x: 0.016401118, y: 0.06196244, z: -0.011886263, w: 0.057762153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.13537675, y: -0.6590445, z: -0.18909466, w: 0.71524584} + inSlope: {x: 0.06139692, y: 0.23244023, z: -0.04355098, w: 0.2123066} + outSlope: {x: 0.06139692, y: 0.23244023, z: -0.04355098, w: 0.2123066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.13042776, y: -0.6402757, z: -0.19254158, w: 0.7320952} + inSlope: {x: 0.06632722, y: 0.2520478, z: -0.04521499, w: 0.22174494} + outSlope: {x: 0.06632722, y: 0.2520478, z: -0.04521499, w: 0.22174494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.12653865, y: -0.62545913, z: -0.19511956, w: 0.74479336} + inSlope: {x: 0.059473246, y: 0.22702637, z: -0.03854911, w: 0.19055727} + outSlope: {x: 0.059473246, y: 0.22702637, z: -0.03854911, w: 0.19055727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.12250295, y: -0.61002445, z: -0.19767825, w: 0.75748694} + inSlope: {x: 0.06480149, y: 0.24837312, z: -0.040043473, w: 0.1994991} + outSlope: {x: 0.06480149, y: 0.24837312, z: -0.040043473, w: 0.1994991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.11790385, y: -0.5923634, z: -0.20045535, w: 0.7713766} + inSlope: {x: 0.070720464, y: 0.27216083, z: -0.041558415, w: 0.20882784} + outSlope: {x: 0.070720464, y: 0.27216083, z: -0.041558415, w: 0.20882784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.11307945, y: -0.573759, z: -0.20321591, w: 0.78531325} + inSlope: {x: 0.072411254, y: 0.2792405, z: -0.041434288, w: 0.20918033} + outSlope: {x: 0.072411254, y: 0.2792405, z: -0.041434288, w: 0.20918033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.054592844, y: -0.6179469, z: 0.06839291, w: 0.7813345} + inSlope: {x: -0.032196295, y: 0.36777654, z: 0.024893159, w: 0.2817186} + outSlope: {x: -0.032196295, y: 0.36777654, z: 0.024893159, w: 0.2817186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.052447766, y: -0.5934438, z: 0.07005142, w: 0.800104} + inSlope: {x: -0.02684851, y: 0.30666578, z: 0.020326413, w: 0.23000772} + outSlope: {x: -0.02684851, y: 0.30666578, z: 0.020326413, w: 0.23000772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.05101528, y: -0.5770837, z: 0.071101405, w: 0.81198305} + inSlope: {x: -0.005942069, y: 0.067865655, z: 0.004396877, w: 0.049747173} + outSlope: {x: -0.005942069, y: 0.067865655, z: 0.004396877, w: 0.049747173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.051655985, y: -0.5844007, z: 0.0706373, w: 0.80673283} + inSlope: {x: 0.018040553, y: -0.20604867, z: -0.013417698, w: -0.15181583} + outSlope: {x: 0.018040553, y: -0.20604867, z: -0.013417698, w: -0.15181583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.053419184, y: -0.6045397, z: 0.0693135, w: 0.7917536} + inSlope: {x: 0.03465873, y: -0.39592424, z: -0.027174965, w: -0.30756757} + outSlope: {x: 0.03465873, y: -0.39592424, z: -0.027174965, w: -0.30756757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.05627426, y: -0.6371576, z: 0.06701624, w: 0.76574945} + inSlope: {x: 0.03929615, y: -0.44899943, z: -0.032803748, w: -0.37140292} + outSlope: {x: 0.03929615, y: -0.44899943, z: -0.032803748, w: -0.37140292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.058655396, y: -0.66436887, z: 0.0649424, w: 0.74226415} + inSlope: {x: 0.019957408, y: -0.22807533, z: -0.017457452, w: -0.19770135} + outSlope: {x: 0.019957408, y: -0.22807533, z: -0.017457452, w: -0.19770135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.058933586, y: -0.66754866, z: 0.06469003, w: 0.73940575} + inSlope: {x: -0.0059363097, y: 0.06784596, z: 0.00529665, w: 0.059989784} + outSlope: {x: -0.0059363097, y: 0.06784596, z: 0.00529665, w: 0.059989784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.057864383, y: -0.6553284, z: 0.065648176, w: 0.7502578} + inSlope: {x: -0.03036018, y: 0.34693214, z: 0.026012452, w: 0.2945534} + outSlope: {x: -0.03036018, y: 0.34693214, z: 0.026012452, w: 0.2945534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.054888092, y: -0.62131995, z: 0.06815619, w: 0.778655} + inSlope: {x: -0.044779304, y: 0.5115855, z: 0.036111243, w: 0.4087747} + outSlope: {x: -0.044779304, y: 0.5115855, z: 0.036111243, w: 0.4087747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.05189754, y: -0.58715963, z: 0.07046, w: 0.804727} + inSlope: {x: -0.026481517, y: 0.30248562, z: 0.020240417, w: 0.22904734} + outSlope: {x: -0.026481517, y: 0.30248562, z: 0.020240417, w: 0.22904734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.05135943, y: -0.58101374, z: 0.070853226, w: 0.80917555} + inSlope: {x: -0.0007459526, y: 0.00852089, z: 0.00054885494, w: 0.0062078293} + outSlope: {x: -0.0007459526, y: 0.00852089, z: 0.00054885494, w: 0.0062078293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.051798142, y: -0.5860242, z: 0.070533134, w: 0.8055542} + inSlope: {x: 0.008729396, y: -0.09970012, z: -0.006438364, w: -0.072843365} + outSlope: {x: 0.008729396, y: -0.09970012, z: -0.006438364, w: -0.072843365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.052522622, y: -0.5942988, z: 0.069995314, w: 0.7994692} + inSlope: {x: 0.012048135, y: -0.1376118, z: -0.00906259, w: -0.10254504} + outSlope: {x: 0.012048135, y: -0.1376118, z: -0.00906259, w: -0.10254504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.053403556, y: -0.604361, z: 0.069325544, w: 0.7918901} + inSlope: {x: 0.011272463, y: -0.1287608, z: -0.008650725, w: -0.097896546} + outSlope: {x: 0.011272463, y: -0.1287608, z: -0.008650725, w: -0.097896546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.054024678, y: -0.61145616, z: 0.068842605, w: 0.78642446} + inSlope: {x: 0.008925181, y: -0.10195817, z: -0.0069991285, w: -0.07921626} + outSlope: {x: 0.008925181, y: -0.10195817, z: -0.0069991285, w: -0.07921626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.054592837, y: -0.6179469, z: 0.06839291, w: 0.7813345} + inSlope: {x: 0.008527714, y: -0.0974224, z: -0.006749639, w: -0.07639683} + outSlope: {x: 0.008527714, y: -0.0974224, z: -0.006749639, w: -0.07639683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1710026, y: -0.6072202, z: 0.20980953, w: 0.74700856} + inSlope: {x: 0.079259194, y: -0.2822035, z: -0.06629468, w: -0.2354171} + outSlope: {x: 0.079259194, y: -0.2822035, z: -0.06629468, w: -0.2354171} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.17628324, y: -0.626022, z: 0.20539264, w: 0.7313239} + inSlope: {x: 0.07632716, y: -0.27177078, z: -0.065418616, w: -0.23231542} + outSlope: {x: 0.07632716, y: -0.27177078, z: -0.065418616, w: -0.23231542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.18117319, y: -0.64343363, z: 0.2010925, w: 0.71605253} + inSlope: {x: 0.06967582, y: -0.24810159, z: -0.06264884, w: -0.22249597} + outSlope: {x: 0.06967582, y: -0.24810159, z: -0.06264884, w: -0.22249597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.18556754, y: -0.6590815, z: 0.19704469, w: 0.7016763} + inSlope: {x: 0.057052717, y: -0.20316395, z: -0.053425223, w: -0.18975033} + outSlope: {x: 0.057052717, y: -0.20316395, z: -0.053425223, w: -0.18975033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.18877546, y: -0.6705052, z: 0.19397359, w: 0.6907683} + inSlope: {x: 0.036876824, y: -0.13132346, z: -0.03561786, w: -0.12650812} + outSlope: {x: 0.036876824, y: -0.13132346, z: -0.03561786, w: -0.12650812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.19048138, y: -0.67658037, z: 0.1922986, w: 0.6848191} + inSlope: {x: 0.006053059, y: -0.021555185, z: -0.0059155095, w: -0.02101036} + outSlope: {x: 0.006053059, y: -0.021555185, z: -0.0059155095, w: -0.02101036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.18958203, y: -0.67337745, z: 0.19318534, w: 0.6879687} + inSlope: {x: -0.051984865, y: 0.18512331, z: 0.04970155, w: 0.1765295} + outSlope: {x: -0.051984865, y: 0.18512331, z: 0.04970155, w: 0.1765295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.1835544, y: -0.6519127, z: 0.19892134, w: 0.70834166} + inSlope: {x: -0.10413222, y: 0.37080216, z: 0.09531689, w: 0.3385244} + outSlope: {x: -0.10413222, y: 0.37080216, z: 0.09531689, w: 0.3385244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.17570642, y: -0.62396806, z: 0.20588632, w: 0.73307705} + inSlope: {x: -0.10792388, y: 0.3842753, z: 0.09280119, w: 0.329558} + outSlope: {x: -0.10792388, y: 0.3842753, z: 0.09280119, w: 0.329558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.16917354, y: -0.600708, z: 0.2112871, w: 0.75225526} + inSlope: {x: -0.09509748, y: 0.33858034, z: 0.07634461, w: 0.27108955} + outSlope: {x: -0.09509748, y: 0.33858034, z: 0.07634461, w: 0.27108955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.16303468, y: -0.57885224, z: 0.21605924, w: 0.7691997} + inSlope: {x: -0.09632625, y: 0.3429336, z: 0.07254143, w: 0.2575565} + outSlope: {x: -0.09632625, y: 0.3429336, z: 0.07254143, w: 0.2575565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.15633807, y: -0.5550121, z: 0.22095324, w: 0.78657466} + inSlope: {x: -0.08055338, y: 0.286767, z: 0.057755113, w: 0.20503864} + outSlope: {x: -0.08055338, y: 0.286767, z: 0.057755113, w: 0.20503864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.15230094, y: -0.54064053, z: 0.2237551, w: 0.7965211} + inSlope: {x: -0.006922189, y: 0.024642557, z: 0.0048760623, w: 0.017310623} + outSlope: {x: -0.006922189, y: 0.024642557, z: 0.0048760623, w: 0.017310623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.15541568, y: -0.5517285, z: 0.22160298, w: 0.7888813} + inSlope: {x: 0.06602159, y: -0.23503196, z: -0.046890743, w: -0.16646671} + outSlope: {x: 0.06602159, y: -0.23503196, z: -0.046890743, w: -0.16646671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.16109832, y: -0.57195854, z: 0.21750692, w: 0.77433944} + inSlope: {x: 0.07949582, y: -0.28301, z: -0.05868776, w: -0.20836219} + outSlope: {x: 0.07949582, y: -0.28301, z: -0.05868776, w: -0.20836219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.1660085, y: -0.5894396, z: 0.21378283, w: 0.76111704} + inSlope: {x: 0.07432856, y: -0.26462764, z: -0.05776663, w: -0.20510976} + outSlope: {x: 0.07432856, y: -0.26462764, z: -0.05776663, w: -0.20510976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.1710026, y: -0.6072202, z: 0.20980951, w: 0.74700856} + inSlope: {x: 0.074958265, y: -0.26687583, z: -0.059637077, w: -0.21175954} + outSlope: {x: 0.074958265, y: -0.26687583, z: -0.059637077, w: -0.21175954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0522769, y: 0.72214204, z: -0.6867525, w: 0.064412855} + inSlope: {x: -0.1567718, y: 0.012301146, z: -0.011491507, w: -0.15915206} + outSlope: {x: -0.1567718, y: 0.012301146, z: -0.011491507, w: -0.15915206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.041831978, y: 0.7229616, z: -0.6875181, w: 0.05380935} + inSlope: {x: -0.16026679, y: 0.011329132, z: -0.010470736, w: -0.16281143} + outSlope: {x: -0.16026679, y: 0.011329132, z: -0.010470736, w: -0.16281143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.03092135, y: 0.72365165, z: -0.6881477, w: 0.04271823} + inSlope: {x: -0.16486707, y: 0.009118952, z: -0.008192116, w: -0.1676595} + outSlope: {x: -0.16486707, y: 0.009118952, z: -0.008192116, w: -0.1676595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.019863442, y: 0.7241767, z: -0.6886097, w: 0.03146872} + inSlope: {x: -0.1646756, y: 0.0065263174, z: -0.0055874046, w: -0.16755389} + outSlope: {x: -0.1646756, y: 0.0065263174, z: -0.0055874046, w: -0.16755389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.008978327, y: 0.7245213, z: -0.68889225, w: 0.020391677} + inSlope: {x: -0.16065064, y: 0.00385093, z: -0.0029683786, w: -0.16340391} + outSlope: {x: -0.16065064, y: 0.00385093, z: -0.0029683786, w: -0.16340391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.0015432556, y: 0.72468984, z: -0.68900526, w: 0.009695148} + inSlope: {x: -0.14823623, y: 0.0014148555, z: -0.0005828507, w: -0.150877} + outSlope: {x: -0.14823623, y: 0.0014148555, z: -0.0005828507, w: -0.150877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.010774151, y: 0.7247098, z: -0.6889699, w: 0.00028731787} + inSlope: {x: -0.12488922, y: -0.00036098273, z: 0.0011862778, w: -0.12755579} + outSlope: {x: -0.12488922, y: -0.00036098273, z: 0.0011862778, w: -0.12755579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.018184744, y: 0.72464174, z: -0.6888472, w: -0.00730166} + inSlope: {x: -0.08997214, y: -0.0010310598, z: 0.0019006389, w: -0.09283641} + outSlope: {x: -0.08997214, y: -0.0010310598, z: 0.0019006389, w: -0.09283641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.02276294, y: 0.7245724, z: -0.68871665, w: -0.012083134} + inSlope: {x: -0.019598842, y: -0.00007828002, z: 0.00075059355, w: -0.021843541} + outSlope: {x: -0.019598842, y: -0.00007828002, z: 0.00075059355, w: -0.021843541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.02079629, y: 0.7246313, z: -0.68874717, w: -0.0102123115} + inSlope: {x: 0.074617036, y: 0.0012967645, z: -0.0013338916, w: 0.074740484} + outSlope: {x: 0.074617036, y: 0.0012967645, z: -0.0013338916, w: 0.074740484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.01282022, y: 0.7247452, z: -0.6888944, w: -0.002123965} + inSlope: {x: 0.13310055, y: 0.00090357516, z: -0.0015888608, w: 0.13538791} + outSlope: {x: 0.13310055, y: 0.00090357516, z: -0.0015888608, w: 0.13538791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.0030606405, y: 0.7247517, z: -0.6889589, w: 0.007828127} + inSlope: {x: 0.14803421, y: -0.0009854336, z: 0.00006843911, w: 0.15104485} + outSlope: {x: 0.14803421, y: -0.0009854336, z: 0.00006843911, w: 0.15104485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.006905338, y: 0.7246139, z: -0.6888853, w: 0.018002762} + inSlope: {x: 0.15713355, y: -0.0034416371, z: 0.0023868699, w: 0.16052434} + outSlope: {x: 0.15713355, y: -0.0034416371, z: 0.0023868699, w: 0.16052434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.017877404, y: 0.7242931, z: -0.68864083, w: 0.029217994} + inSlope: {x: 0.16831365, y: -0.0063433656, z: 0.0051253284, w: 0.17214091} + outSlope: {x: 0.16831365, y: -0.0063433656, z: 0.0051253284, w: 0.17214091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.029333131, y: 0.72376865, z: -0.6882023, w: 0.040940538} + inSlope: {x: 0.17300668, y: -0.0093882345, z: 0.008071789, w: 0.17704096} + outSlope: {x: 0.17300668, y: -0.0093882345, z: 0.008071789, w: 0.17704096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.040930543, y: 0.72304213, z: -0.68756527, w: 0.052808702} + inSlope: {x: 0.17218587, y: -0.01220721, z: 0.010880476, w: 0.17615247} + outSlope: {x: 0.17218587, y: -0.01220721, z: 0.010880476, w: 0.17615247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.0522769, y: 0.72214204, z: -0.6867525, w: 0.064412855} + inSlope: {x: 0.17030177, y: -0.0135097895, z: 0.012199159, w: 0.17417115} + outSlope: {x: 0.17030177, y: -0.0135097895, z: 0.012199159, w: 0.17417115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.6576765, y: 0.21830228, z: -0.14327884, w: 0.7065953} + inSlope: {x: -0.0036545587, y: 0.014894899, z: -0.006525199, w: -0.009344398} + outSlope: {x: -0.0036545587, y: 0.014894899, z: -0.006525199, w: -0.009344398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.65792, y: 0.21929465, z: -0.14371358, w: 0.70597273} + inSlope: {x: -0.003681845, y: 0.014891656, z: -0.0065776464, w: -0.009396287} + outSlope: {x: -0.003681845, y: 0.014891656, z: -0.0065776464, w: -0.009396287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.6581671, y: 0.2202866, z: -0.14415531, w: 0.70534325} + inSlope: {x: -0.0037091312, y: 0.014777703, z: -0.006634008, w: -0.009431625} + outSlope: {x: -0.0037091312, y: 0.014777703, z: -0.006634008, w: -0.009431625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.65841424, y: 0.22126378, z: -0.14459756, w: 0.70471597} + inSlope: {x: -0.0036800557, y: 0.014452841, z: -0.0065935263, w: -0.009328742} + outSlope: {x: -0.0036800557, y: 0.014452841, z: -0.0065935263, w: -0.009328742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.6586575, y: 0.22221243, z: -0.1450339, w: 0.7041002} + inSlope: {x: -0.0036590318, y: 0.014167342, z: -0.006567694, w: -0.009246884} + outSlope: {x: -0.0036590318, y: 0.014167342, z: -0.006567694, w: -0.009246884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.6589018, y: 0.22315158, z: -0.1454727, w: 0.7034838} + inSlope: {x: -0.0033383076, y: 0.012761209, z: -0.0060008345, w: -0.008412642} + outSlope: {x: -0.0033383076, y: 0.012761209, z: -0.0060008345, w: -0.008412642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.6591023, y: 0.22391286, z: -0.1458335, w: 0.7029792} + inSlope: {x: -0.0025389567, y: 0.009603057, z: -0.0045714416, w: -0.006384519} + outSlope: {x: -0.0025389567, y: 0.009603057, z: -0.0045714416, w: -0.006384519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.6592401, y: 0.22443119, z: -0.14608185, w: 0.7026331} + inSlope: {x: -0.0012090908, y: 0.004544826, z: -0.0021790923, w: -0.0030368175} + outSlope: {x: -0.0012090908, y: 0.004544826, z: -0.0021790923, w: -0.0030368175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.65926343, y: 0.22451846, z: -0.14612387, w: 0.70257455} + inSlope: {x: 0.0008163488, y: -0.0030686888, z: 0.0014716644, w: 0.002050042} + outSlope: {x: 0.0008163488, y: -0.0030686888, z: 0.0014716644, w: 0.002050042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.65913135, y: 0.22402228, z: -0.14588575, w: 0.70290625} + inSlope: {x: 0.0024986984, y: -0.009437105, z: 0.0045002066, w: 0.006281636} + outSlope: {x: 0.0024986984, y: -0.009437105, z: 0.0045002066, w: 0.006281636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.6589305, y: 0.22326097, z: -0.14552422, w: 0.7034116} + inSlope: {x: 0.0030649984, y: -0.011684636, z: 0.0055113607, w: 0.007719752} + outSlope: {x: 0.0030649984, y: -0.011684636, z: 0.0055113607, w: 0.007719752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.65872294, y: 0.2224653, z: -0.14515136, w: 0.7039349} + inSlope: {x: 0.0030752865, y: -0.011859871, z: 0.005521425, w: 0.007764931} + outSlope: {x: 0.0030752865, y: -0.011859871, z: 0.005521425, w: 0.007764931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.6585207, y: 0.22168064, z: -0.14478849, w: 0.70444626} + inSlope: {x: 0.0031092823, y: -0.012136535, z: 0.005574097, w: 0.007870944} + outSlope: {x: 0.0031092823, y: -0.012136535, z: 0.005574097, w: 0.007870944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.6583086, y: 0.22084811, z: -0.14440861, w: 0.7049837} + inSlope: {x: 0.0031759324, y: -0.012547057, z: 0.005685702, w: 0.008060606} + outSlope: {x: 0.0031759324, y: -0.012547057, z: 0.005685702, w: 0.008060606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.6580975, y: 0.22000875, z: -0.14403087, w: 0.70552033} + inSlope: {x: 0.0031710118, y: -0.012688073, z: 0.005670269, w: 0.008071789} + outSlope: {x: 0.0031710118, y: -0.012688073, z: 0.005670269, w: 0.008071789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.6578861, y: 0.21915743, z: -0.14365305, w: 0.7060593} + inSlope: {x: 0.0031593817, y: -0.012806499, z: 0.005643766, w: 0.008067315} + outSlope: {x: 0.0031593817, y: -0.012806499, z: 0.005643766, w: 0.008067315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.6576765, y: 0.21830228, z: -0.14327884, w: 0.7065953} + inSlope: {x: 0.003145515, y: -0.01283524, z: 0.0056167035, w: 0.008045397} + outSlope: {x: 0.003145515, y: -0.01283524, z: 0.0056167035, w: 0.008045397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000005406281, y: 0.24950312, z: 0.000000007213082, w: 0.968374} + inSlope: {x: -0.000000049219288, y: 0.059745327, z: -0.0000000273268, w: -0.015524494} + outSlope: {x: -0.000000049219288, y: 0.059745327, z: -0.0000000273268, w: -0.015524494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.000000008685516, y: 0.25348365, z: 0.000000005392434, w: 0.9673397} + inSlope: {x: -0.00000001050786, y: 0.059856594, z: -0.000000017242883, w: -0.015685527} + outSlope: {x: -0.00000001050786, y: 0.059856594, z: -0.000000017242883, w: -0.015685527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.0000000068064536, y: 0.257479, z: 0.000000004915468, w: 0.9662839} + inSlope: {x: -0.0000000025658595, y: 0.05964602, z: -0.00000001652236, w: -0.015892185} + outSlope: {x: -0.0000000025658595, y: 0.05964602, z: -0.00000001652236, w: -0.015892185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.000000009027417, y: 0.2614315, z: 0.0000000031908296, w: 0.96522206} + inSlope: {x: -0.000000015529015, y: 0.058575824, z: 0.000000011402558, w: -0.015862215} + outSlope: {x: -0.000000015529015, y: 0.058575824, z: 0.000000011402558, w: -0.015862215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.000000008875695, y: 0.26528424, z: 0.000000006434859, w: 0.9641703} + inSlope: {x: -0.000000012605562, y: 0.05766084, z: 0.000000019536742, w: -0.015864452} + outSlope: {x: -0.000000012605562, y: 0.05766084, z: 0.000000019536742, w: -0.015864452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.000000010707108, y: 0.2691148, z: 0.0000000057941003, w: 0.9631081} + inSlope: {x: 0.000000011478438, y: 0.05214031, z: 0.000000012097517, w: -0.0145489015} + outSlope: {x: 0.000000011478438, y: 0.05214031, z: 0.000000012097517, w: -0.0145489015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.000000007346193, y: 0.27223194, z: 0.000000008046853, w: 0.96223164} + inSlope: {x: 0.000000015653082, y: 0.039366577, z: -0.000000005072332, w: -0.011115763} + outSlope: {x: 0.000000015653082, y: 0.039366577, z: -0.000000005072332, w: -0.011115763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.000000008621335, y: 0.2743604, z: 0.000000005118212, w: 0.96162695} + inSlope: {x: -0.000000019467144, y: 0.018666208, z: -0.0000000115630066, w: -0.005306938} + outSlope: {x: -0.000000019467144, y: 0.018666208, z: -0.0000000115630066, w: -0.005306938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.00000000994019, y: 0.2747192, z: 0.0000000065060823, w: 0.9615245} + inSlope: {x: -0.0000000014631709, y: -0.012601965, z: 0.0000000030611362, w: 0.003583436} + outSlope: {x: -0.0000000014631709, y: -0.012601965, z: 0.0000000030611362, w: 0.003583436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.000000008816302, y: 0.27268118, z: 0.0000000055261085, w: 0.96210444} + inSlope: {x: 0.000000025880155, y: -0.03870075, z: -0.0000000050189177, w: 0.010945337} + outSlope: {x: 0.000000025880155, y: -0.03870075, z: -0.0000000050189177, w: 0.010945337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.0000000064916597, y: 0.26956233, z: 0.0000000058373115, w: 0.96298295} + inSlope: {x: 0.000000019571168, y: -0.047782123, z: -0.000000008357116, w: 0.013372017} + outSlope: {x: 0.000000019571168, y: -0.047782123, z: -0.000000008357116, w: 0.013372017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.0000000062084444, y: 0.2663142, z: 0.000000004412523, w: 0.96388626} + inSlope: {x: 1.130771e-10, y: -0.04832986, z: 0.000000005517361, w: 0.013354572} + outSlope: {x: 1.130771e-10, y: -0.04832986, z: 0.000000005517361, w: 0.013354572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.000000006476592, y: 0.26312238, z: 0.0000000065725, w: 0.96476245} + inSlope: {x: -0.000000012839354, y: -0.04928018, z: 0.0000000027811016, w: 0.013435536} + outSlope: {x: -0.000000012839354, y: -0.04928018, z: 0.0000000027811016, w: 0.013435536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.000000007919288, y: 0.25974762, z: 0.0000000047831046, w: 0.96567655} + inSlope: {x: 2.256213e-10, y: -0.050764147, z: 0.000000019410548, w: 0.013654273} + outSlope: {x: 2.256213e-10, y: -0.050764147, z: 0.000000019410548, w: 0.013654273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.000000006446528, y: 0.25635806, z: 0.000000009158955, w: 0.9665819} + inSlope: {x: 0.000000011345648, y: -0.05114772, z: 0.00000002971419, w: 0.013564362} + outSlope: {x: 0.000000011345648, y: -0.05114772, z: 0.00000002971419, w: 0.013564362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.0000000064074808, y: 0.2529322, z: 0.0000000087425205, w: 0.967484} + inSlope: {x: -0.0000000142173375, y: -0.05144429, z: -0.0000000146031764, w: 0.0134494025} + outSlope: {x: -0.0000000142173375, y: -0.05144429, z: -0.0000000146031764, w: 0.0134494025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.000000008340988, y: 0.2495031, z: 0.000000007213082, w: 0.968374} + inSlope: {x: -0.000000029020752, y: -0.051468443, z: -0.000000022955923, w: 0.013358598} + outSlope: {x: -0.000000029020752, y: -0.051468443, z: -0.000000022955923, w: 0.013358598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.036586117, y: 0.15158108, z: -0.013994633, w: 0.98766834} + inSlope: {x: 0.0031655882, y: 0.22077963, z: -0.008340638, w: -0.03557402} + outSlope: {x: 0.0031655882, y: 0.22077963, z: -0.008340638, w: -0.03557402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.03637521, y: 0.16629052, z: -0.014550328, w: 0.9852982} + inSlope: {x: 0.0032346984, y: 0.22103259, z: -0.008336214, w: -0.03731586} + outSlope: {x: 0.0032346984, y: 0.22103259, z: -0.008336214, w: -0.03731586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.036155093, y: 0.18103367, z: -0.015105434, w: 0.982696} + inSlope: {x: 0.0033481764, y: 0.21992269, z: -0.008266775, w: -0.040502086} + outSlope: {x: 0.0033481764, y: 0.21992269, z: -0.008266775, w: -0.040502086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.035929065, y: 0.19559522, z: -0.015651876, w: 0.9799013} + inSlope: {x: 0.0034080325, y: 0.21559839, z: -0.008077407, w: -0.042998545} + outSlope: {x: 0.0034080325, y: 0.21559839, z: -0.008077407, w: -0.042998545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.035700973, y: 0.20976216, z: -0.016181748, w: 0.97696644} + inSlope: {x: 0.003471775, y: 0.21181892, z: -0.007909274, w: -0.045475774} + outSlope: {x: 0.003471775, y: 0.21181892, z: -0.007909274, w: -0.045475774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.03546645, y: 0.22382009, z: -0.016705787, w: 0.97384167} + inSlope: {x: 0.0032345864, y: 0.19117883, z: -0.007117136, w: -0.043673992} + outSlope: {x: 0.0032345864, y: 0.19117883, z: -0.007117136, w: -0.043673992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.035269964, y: 0.23523673, z: -0.017130107, w: 0.9711469} + inSlope: {x: 0.0025031157, y: 0.14408545, z: -0.005350132, w: -0.03462079} + outSlope: {x: 0.0025031157, y: 0.14408545, z: -0.005350132, w: -0.03462079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.03513291, y: 0.24301948, z: -0.017418692, w: 0.96922845} + inSlope: {x: 0.0012036113, y: 0.068248436, z: -0.002530346, w: -0.016871804} + outSlope: {x: 0.0012036113, y: 0.068248436, z: -0.002530346, w: -0.016871804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.035109583, y: 0.24433084, z: -0.017467275, w: 0.9688987} + inSlope: {x: -0.0008130778, y: -0.046076294, z: 0.00170807, w: 0.011398913} + outSlope: {x: -0.0008130778, y: -0.046076294, z: 0.00170807, w: 0.011398913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.035241254, y: 0.23687981, z: -0.017191092, w: 0.97074735} + inSlope: {x: -0.0024681692, y: -0.14161316, z: 0.005256294, w: 0.034253996} + outSlope: {x: -0.0024681692, y: -0.14161316, z: 0.005256294, w: 0.034253996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.035438467, y: 0.22546089, z: -0.016766874, w: 0.97346306} + inSlope: {x: -0.0029820495, y: -0.17511678, z: 0.0065150363, w: 0.040518187} + outSlope: {x: -0.0029820495, y: -0.17511678, z: 0.0065150363, w: 0.040518187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.03563861, y: 0.2135455, z: -0.016322963, w: 0.9761464} + inSlope: {x: -0.0029374019, y: -0.17744526, z: 0.006619918, w: 0.038842995} + outSlope: {x: -0.0029374019, y: -0.17744526, z: 0.006619918, w: 0.038842995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.035829876, y: 0.2018163, z: -0.01588477, w: 0.9786389} + inSlope: {x: -0.0029095286, y: -0.1812405, z: 0.006780714, w: 0.037315417} + outSlope: {x: -0.0029095286, y: -0.1812405, z: 0.006780714, w: 0.037315417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.036026306, y: 0.1893952, z: -0.015419433, w: 0.9811187} + inSlope: {x: -0.0029100599, y: -0.18698916, z: 0.0070153996, w: 0.03609559} + outSlope: {x: -0.0029100599, y: -0.18698916, z: 0.0070153996, w: 0.03609559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.03621764, y: 0.1769, z: -0.014949968, w: 0.9834486} + inSlope: {x: -0.0028410335, y: -0.18867633, z: 0.0070990054, w: 0.03392969} + outSlope: {x: -0.0028410335, y: -0.18867633, z: 0.0070990054, w: 0.03392969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.036404874, y: 0.16425408, z: -0.01447349, w: 0.9856398} + inSlope: {x: -0.0027653258, y: -0.19001077, z: 0.0071694925, w: 0.031667624} + outSlope: {x: -0.0027653258, y: -0.19001077, z: 0.0071694925, w: 0.031667624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.03658612, y: 0.15158106, z: -0.013994633, w: 0.98766834} + inSlope: {x: -0.0027203986, y: -0.19021419, z: 0.00718735, w: 0.030446904} + outSlope: {x: -0.0027203986, y: -0.19021419, z: 0.00718735, w: 0.030446904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.577059, y: -0.078034796, z: 0.80988026, w: 0.07076377} + inSlope: {x: 0.2315344, y: -0.020154199, z: -0.16834499, w: -0.02265804} + outSlope: {x: 0.2315344, y: -0.020154199, z: -0.16834499, w: -0.02265804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.59248495, y: -0.07937757, z: 0.7986643, w: 0.069254175} + inSlope: {x: 0.2331416, y: -0.020214083, z: -0.17305431, w: -0.023181621} + outSlope: {x: 0.2331416, y: -0.020214083, z: -0.17305431, w: -0.023181621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.6081251, y: -0.08072832, z: 0.78682077, w: 0.067674816} + inSlope: {x: 0.22658533, y: -0.019493291, z: -0.17492677, w: -0.023227192} + outSlope: {x: 0.22658533, y: -0.019493291, z: -0.17492677, w: -0.023227192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.62267745, y: -0.08197505, z: 0.7753553, w: 0.06615915} + inSlope: {x: 0.20104814, y: -0.01716502, z: -0.16100545, w: -0.021209022} + outSlope: {x: 0.20104814, y: -0.01716502, z: -0.16100545, w: -0.021209022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.63491476, y: -0.08301556, z: 0.7653668, w: 0.06484871} + inSlope: {x: 0.14610988, y: -0.012397431, z: -0.12041928, w: -0.015766378} + outSlope: {x: 0.14610988, y: -0.012397431, z: -0.12041928, w: -0.015766378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.6421466, y: -0.08362701, z: 0.7593094, w: 0.06405828} + inSlope: {x: 0.059218615, y: -0.0050058397, z: -0.04964519, w: -0.006477001} + outSlope: {x: 0.059218615, y: -0.0050058397, z: -0.04964519, w: -0.006477001} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.64280564, y: -0.08368259, z: 0.7587516, w: 0.06398565} + inSlope: {x: -0.03452462, y: 0.0029166017, z: 0.029019075, w: 0.0037838884} + outSlope: {x: -0.03452462, y: 0.0029166017, z: 0.029019075, w: 0.0037838884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.6375462, y: -0.08323837, z: 0.7631762, w: 0.064562485} + inSlope: {x: -0.13482593, y: 0.011430672, z: 0.111534715, w: 0.014591787} + outSlope: {x: -0.13482593, y: 0.011430672, z: 0.111534715, w: 0.014591787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.6248401, y: -0.08215945, z: 0.7736136, w: 0.06593001} + inSlope: {x: -0.28761244, y: 0.024597652, z: 0.2284882, w: 0.030150555} + outSlope: {x: -0.28761244, y: 0.024597652, z: 0.2284882, w: 0.030150555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.5992218, y: -0.07996073, z: 0.79362226, w: 0.06858005} + inSlope: {x: -0.4186402, y: 0.036211833, z: 0.3145184, w: 0.042016577} + outSlope: {x: -0.4186402, y: 0.036211833, z: 0.3145184, w: 0.042016577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.5690563, y: -0.077334225, z: 0.81552315, w: 0.07152872} + inSlope: {x: -0.34331426, y: 0.03000423, z: 0.2443124, w: 0.0330477} + outSlope: {x: -0.34331426, y: 0.03000423, z: 0.2443124, w: 0.0330477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.5534752, y: -0.07596267, z: 0.8261769, w: 0.07298365} + inSlope: {x: 0.11412109, y: -0.009973042, z: -0.08123454, w: -0.010987552} + outSlope: {x: 0.11412109, y: -0.009973042, z: -0.08123454, w: -0.010987552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.5842629, y: -0.07866313, z: 0.80469865, w: 0.07006463} + inSlope: {x: 0.47849, y: -0.041629873, z: -0.34882742, w: -0.046920992} + outSlope: {x: 0.47849, y: -0.041629873, z: -0.34882742, w: -0.046920992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.617234, y: -0.08150985, z: 0.77969563, w: 0.06673143} + inSlope: {x: 0.20756373, y: -0.017946087, z: -0.15629388, w: -0.020868951} + outSlope: {x: 0.20756373, y: -0.017946087, z: -0.15629388, w: -0.020868951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.6119208, y: -0.08105445, z: 0.7838725, w: 0.06728384} + inSlope: {x: -0.16962028, y: 0.014605766, z: 0.13036665, w: 0.017327506} + outSlope: {x: -0.16962028, y: 0.014605766, z: 0.13036665, w: 0.017327506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.5946321, y: -0.07956363, z: 0.797067, w: 0.06904032} + inSlope: {x: -0.2616266, y: 0.022661451, z: 0.19517983, w: 0.02611578} + outSlope: {x: -0.2616266, y: 0.022661451, z: 0.19517983, w: 0.02611578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.57705903, y: -0.07803481, z: 0.8098802, w: 0.07076377} + inSlope: {x: -0.26376075, y: 0.02294667, z: 0.19231836, w: 0.025867857} + outSlope: {x: -0.26376075, y: 0.02294667, z: 0.19231836, w: 0.025867857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.11014093, y: -0.5623891, z: 0.20482345, w: 0.79349536} + inSlope: {x: -0.12377659, y: 0.48113316, z: 0.06341331, w: 0.32680076} + outSlope: {x: -0.12377659, y: 0.48113316, z: 0.06341331, w: 0.32680076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.10189431, y: -0.5303336, z: 0.20904836, w: 0.81526846} + inSlope: {x: -0.12723422, y: 0.49625865, z: 0.061906077, w: 0.32232136} + outSlope: {x: -0.12723422, y: 0.49625865, z: 0.061906077, w: 0.32232136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.09318697, y: -0.4962626, z: 0.21307243, w: 0.8364447} + inSlope: {x: -0.1273182, y: 0.4996956, z: 0.055895627, w: 0.29741848} + outSlope: {x: -0.1273182, y: 0.4996956, z: 0.055895627, w: 0.29741848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.08492916, y: -0.46374914, z: 0.21649645, w: 0.85489947} + inSlope: {x: -0.11333454, y: 0.44729787, z: 0.044919424, w: 0.24467695} + outSlope: {x: -0.11333454, y: 0.44729787, z: 0.044919424, w: 0.24467695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.07808514, y: -0.43666017, z: 0.21905795, w: 0.8690479} + inSlope: {x: -0.08107808, y: 0.32133725, z: 0.029514812, w: 0.16416529} + outSlope: {x: -0.08107808, y: 0.32133725, z: 0.029514812, w: 0.16416529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.074125506, y: -0.42093095, z: 0.2204293, w: 0.8767745} + inSlope: {x: -0.013346799, y: 0.052981034, z: 0.004696578, w: 0.02635219} + outSlope: {x: -0.013346799, y: 0.052981034, z: 0.004696578, w: 0.02635219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.07630668, y: -0.42960045, z: 0.21968377, w: 0.8725593} + inSlope: {x: 0.11014793, y: -0.43597275, z: -0.04122092, w: -0.2276893} + outSlope: {x: 0.11014793, y: -0.43597275, z: -0.04122092, w: -0.2276893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.08880272, y: -0.47902432, z: 0.21493661, w: 0.8464349} + inSlope: {x: 0.20186746, y: -0.79432726, z: -0.08465, w: -0.45507264} + outSlope: {x: 0.20186746, y: -0.79432726, z: -0.08465, w: -0.45507264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.10320552, y: -0.53544456, z: 0.20840415, w: 0.8119209} + inSlope: {x: 0.17659944, y: -0.68934524, z: -0.08486315, w: -0.44297144} + outSlope: {x: 0.17659944, y: -0.68934524, z: -0.08486315, w: -0.44297144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.112334594, y: -0.5708796, z: 0.2036286, w: 0.78740895} + inSlope: {x: 0.12718311, y: -0.492036, z: -0.06970802, w: -0.35467607} + outSlope: {x: 0.12718311, y: -0.492036, z: -0.06970802, w: -0.35467607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.12015267, y: -0.60100836, z: 0.19911556, w: 0.7646603} + inSlope: {x: 0.122678995, y: -0.47092366, z: -0.074413545, w: -0.37189138} + outSlope: {x: 0.122678995, y: -0.47092366, z: -0.074413545, w: -0.37189138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.12868157, y: -0.63363016, z: 0.193713, w: 0.7378544} + inSlope: {x: 0.1720615, y: -0.653262, z: -0.11842593, w: -0.5799391} + outSlope: {x: 0.1720615, y: -0.653262, z: -0.11842593, w: -0.5799391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.14307986, y: -0.6880555, z: 0.1833353, w: 0.6873834} + inSlope: {x: 0.16554368, y: -0.6229627, z: -0.124746814, w: -0.6028224} + outSlope: {x: 0.16554368, y: -0.6229627, z: -0.124746814, w: -0.6028224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.15074027, y: -0.71663994, z: 0.17709048, w: 0.65752834} + inSlope: {x: -0.006876562, y: 0.02579707, z: 0.005338922, w: 0.02569373} + outSlope: {x: -0.006876562, y: 0.02579707, z: 0.005338922, w: 0.02569373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.14216356, y: -0.68461806, z: 0.18404672, w: 0.6908071} + inSlope: {x: -0.18132102, y: 0.68312114, z: 0.13510484, w: 0.6539209} + outSlope: {x: -0.18132102, y: 0.68312114, z: 0.13510484, w: 0.6539209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.12657924, y: -0.62561405, z: 0.1950932, w: 0.7446633} + inSlope: {x: -0.24031983, y: 0.9172907, z: 0.15592295, w: 0.7706436} + outSlope: {x: -0.24031983, y: 0.9172907, z: 0.15592295, w: 0.7706436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.11014094, y: -0.5623891, z: 0.20482345, w: 0.79349536} + inSlope: {x: -0.24672867, y: 0.9489677, z: 0.14604503, w: 0.732939} + outSlope: {x: -0.24672867, y: 0.9489677, z: 0.14604503, w: 0.732939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0536021, y: -0.60662967, z: -0.06917211, w: 0.79015344} + inSlope: {x: 0.022632264, y: 0.25851014, z: -0.017149588, w: 0.194062} + outSlope: {x: 0.022632264, y: 0.25851014, z: -0.017149588, w: 0.194062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.052094225, y: -0.58940643, z: -0.0703147, w: 0.8030828} + inSlope: {x: 0.024035964, y: 0.27451864, z: -0.017765261, w: 0.20099716} + outSlope: {x: 0.024035964, y: 0.27451864, z: -0.017765261, w: 0.20099716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.050399307, y: -0.57005006, z: -0.07153933, w: 0.8169363} + inSlope: {x: 0.023175247, y: 0.26465133, z: -0.016405871, w: 0.18556839} + outSlope: {x: 0.023175247, y: 0.26465133, z: -0.016405871, w: 0.18556839} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.049006123, y: -0.55414164, z: -0.07250078, w: 0.8278098} + inSlope: {x: 0.01480088, y: 0.16900164, z: -0.010127646, w: 0.11452859} + outSlope: {x: 0.01480088, y: 0.16900164, z: -0.010127646, w: 0.11452859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.04842709, y: -0.5475306, z: -0.072888836, w: 0.83219725} + inSlope: {x: -0.009618882, y: -0.10983403, z: 0.006626963, w: -0.074946634} + outSlope: {x: -0.009618882, y: -0.10983403, z: 0.006626963, w: -0.074946634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.05028784, y: -0.568777, z: -0.07161774, w: 0.8178232} + inSlope: {x: -0.03883679, y: -0.44352075, z: 0.02789285, w: -0.31552574} + outSlope: {x: -0.03883679, y: -0.44352075, z: 0.02789285, w: -0.31552574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.053602092, y: -0.6066297, z: -0.069172114, w: 0.79015344} + inSlope: {x: -0.05264245, y: -0.6013516, z: 0.04111468, w: -0.46532598} + outSlope: {x: -0.05264245, y: -0.6013516, z: 0.04111468, w: -0.46532598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.057302445, y: -0.6489071, z: -0.06613921, w: 0.7558185} + inSlope: {x: -0.0487396, y: -0.5569561, z: 0.041734494, w: -0.4725832} + outSlope: {x: -0.0487396, y: -0.5569561, z: 0.041734494, w: -0.4725832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.060096644, y: -0.6808441, z: -0.06361099, w: 0.72718173} + inSlope: {x: -0.027293447, y: -0.31197408, z: 0.02502825, w: -0.28350967} + outSlope: {x: -0.027293447, y: -0.31197408, z: 0.02502825, w: -0.28350967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.060939297, y: -0.69047767, z: -0.06280419, w: 0.7180408} + inSlope: {x: -0.006436044, y: -0.07357517, z: 0.0061635454, w: -0.06982936} + outSlope: {x: -0.006436044, y: -0.07357517, z: 0.0061635454, w: -0.06982936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.060954247, y: -0.690648, z: -0.0627897, w: 0.717877} + inSlope: {x: 0.0066547524, y: 0.07607879, z: -0.0063671293, w: 0.0721384} + outSlope: {x: 0.0066547524, y: 0.07607879, z: -0.0063671293, w: 0.0721384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.06005255, y: -0.6803402, z: -0.06365261, w: 0.72765326} + inSlope: {x: 0.033830334, y: 0.38666663, z: -0.030631308, w: 0.34695274} + outSlope: {x: 0.033830334, y: 0.38666663, z: -0.030631308, w: 0.34695274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.056446355, y: -0.6391247, z: -0.06687132, w: 0.7641084} + inSlope: {x: 0.05474589, y: 0.6255629, z: -0.046271656, w: 0.5239242} + outSlope: {x: 0.05474589, y: 0.6255629, z: -0.046271656, w: 0.5239242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.05275766, y: -0.5969839, z: -0.06981831, w: 0.79746616} + inSlope: {x: 0.031031823, y: 0.35450694, z: -0.02463025, w: 0.27878603} + outSlope: {x: 0.031031823, y: 0.35450694, z: -0.02463025, w: 0.27878603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.052311365, y: -0.59188664, z: -0.0701533, w: 0.80125666} + inSlope: {x: -0.0015110283, y: -0.017260522, z: 0.0011452367, w: -0.012960488} + outSlope: {x: -0.0015110283, y: -0.017260522, z: 0.0011452367, w: -0.012960488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.052959006, y: -0.5992839, z: -0.06966571, w: 0.7957392} + inSlope: {x: -0.009686594, y: -0.11064233, z: 0.00736369, w: -0.083326176} + outSlope: {x: -0.009686594, y: -0.11064233, z: 0.00736369, w: -0.083326176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.053602103, y: -0.6066297, z: -0.06917209, w: 0.79015344} + inSlope: {x: -0.009652486, y: -0.11025674, z: 0.0074088685, w: -0.08383835} + outSlope: {x: -0.009652486, y: -0.11025674, z: 0.0074088685, w: -0.08383835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.16796303, y: -0.5963984, z: -0.2122506, w: 0.7556765} + inSlope: {x: -0.08089972, y: -0.2880347, z: 0.06572458, w: -0.23338182} + outSlope: {x: -0.08089972, y: -0.2880347, z: 0.06572458, w: -0.23338182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.17335297, y: -0.6155887, z: -0.2078717, w: 0.74012744} + inSlope: {x: -0.081505716, y: -0.29020107, z: 0.06803697, w: -0.24160525} + outSlope: {x: -0.081505716, y: -0.29020107, z: 0.06803697, w: -0.24160525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.17882366, y: -0.6350677, z: -0.20318468, w: 0.7234826} + inSlope: {x: -0.078304395, y: -0.27881956, z: 0.068782866, w: -0.24427259} + outSlope: {x: -0.078304395, y: -0.27881956, z: 0.068782866, w: -0.24427259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.18378703, y: -0.65274143, z: -0.19870639, w: 0.7075781} + inSlope: {x: -0.06665768, y: -0.23736203, z: 0.06135767, w: -0.21791592} + outSlope: {x: -0.06665768, y: -0.23736203, z: 0.06135767, w: -0.21791592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.1877058, y: -0.6666962, z: -0.19500877, w: 0.6944453} + inSlope: {x: -0.042019375, y: -0.14963293, z: 0.039992593, w: -0.1420447} + outSlope: {x: -0.042019375, y: -0.14963293, z: 0.039992593, w: -0.1420447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.18938611, y: -0.67268, z: -0.19337738, w: 0.68865067} + inSlope: {x: -0.003547539, y: -0.012633052, z: 0.0034226263, w: -0.012157559} + outSlope: {x: -0.003547539, y: -0.012633052, z: 0.0034226263, w: -0.012157559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.18817851, y: -0.66837955, z: -0.1945527, w: 0.6928253} + inSlope: {x: 0.040677205, y: 0.14485428, z: -0.038750287, w: 0.13763238} + outSlope: {x: 0.040677205, y: 0.14485428, z: -0.038750287, w: 0.13763238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.18396588, y: -0.6533782, z: -0.19854085, w: 0.7069902} + inSlope: {x: 0.0827847, y: 0.294786, z: -0.07575974, w: 0.2690659} + outSlope: {x: 0.0827847, y: 0.294786, z: -0.07575974, w: 0.2690659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.17714745, y: -0.6290993, z: -0.20464769, w: 0.72867835} + inSlope: {x: 0.11851819, y: 0.4219964, z: -0.101637326, w: 0.36093664} + outSlope: {x: 0.11851819, y: 0.4219964, z: -0.101637326, w: 0.36093664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.16817333, y: -0.59714717, z: -0.21208403, w: 0.755085} + inSlope: {x: 0.14461564, y: 0.514875, z: -0.11413284, w: 0.40525925} + outSlope: {x: 0.14461564, y: 0.514875, z: -0.11413284, w: 0.40525925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.15787742, y: -0.5604922, z: -0.21985589, w: 0.78267914} + inSlope: {x: 0.15085098, y: 0.537026, z: -0.108753994, w: 0.38609856} + outSlope: {x: 0.15085098, y: 0.537026, z: -0.108753994, w: 0.38609856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.14807244, y: -0.52558845, z: -0.2265755, w: 0.8065326} + inSlope: {x: 0.1515187, y: 0.53935426, z: -0.09888467, w: 0.35099244} + outSlope: {x: 0.1515187, y: 0.53935426, z: -0.09888467, w: 0.35099244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.13768755, y: -0.48862326, z: -0.23303227, w: 0.8294489} + inSlope: {x: 0.1069153, y: 0.38056168, z: -0.06525825, w: 0.23160376} + outSlope: {x: 0.1069153, y: 0.38056168, z: -0.06525825, w: 0.23160376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.13382597, y: -0.4748786, z: -0.23527116, w: 0.8373938} + inSlope: {x: -0.03435062, y: -0.12226803, z: 0.020756617, w: -0.07366419} + outSlope: {x: -0.03435062, y: -0.12226803, z: 0.020756617, w: -0.07366419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.14226477, y: -0.5049155, z: -0.23026645, w: 0.8196331} + inSlope: {x: -0.16172048, y: -0.57565564, z: 0.10236275, w: -0.36331683} + outSlope: {x: -0.16172048, y: -0.57565564, z: 0.10236275, w: -0.36331683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.15537523, y: -0.5515847, z: -0.22163132, w: 0.78898185} + inSlope: {x: -0.1928576, y: -0.6865516, z: 0.13520347, w: -0.47997463} + outSlope: {x: -0.1928576, y: -0.6865516, z: 0.13520347, w: -0.47997463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.16796304, y: -0.5963985, z: -0.21225059, w: 0.7556765} + inSlope: {x: -0.18893532, y: -0.6726267, z: 0.14079893, w: -0.49989265} + outSlope: {x: -0.18893532, y: -0.6726267, z: 0.14079893, w: -0.49989265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.68190813, y: 0.2153496, z: -0.64706624, w: -0.264445} + inSlope: {x: -0.07460847, y: 0.53913486, z: 0.33225352, w: -0.48542425} + outSlope: {x: -0.07460847, y: 0.53913486, z: 0.33225352, w: -0.48542425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.67693734, y: 0.25126946, z: -0.62492985, w: -0.2967864} + inSlope: {x: -0.16590221, y: 0.6204314, z: 0.38006964, w: -0.61648047} + outSlope: {x: -0.16590221, y: 0.6204314, z: 0.38006964, w: -0.61648047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.65980166, y: 0.2980221, z: -0.59642196, w: -0.34659103} + inSlope: {x: -0.54273593, y: 0.92871594, z: 0.5773339, w: -1.0738568} + outSlope: {x: -0.54273593, y: 0.92871594, z: 0.5773339, w: -1.0738568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.6046178, y: 0.37502086, z: -0.5480001, w: -0.4398778} + inSlope: {x: -8.833942, y: -5.630294, z: 8.034182, w: 6.732588} + outSlope: {x: -8.833942, y: -5.630294, z: 8.034182, w: 6.732588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.5173211, y: -0.45221454, z: 0.47413275, w: 0.5505263} + inSlope: {x: -7.503714, y: -6.614292, z: 6.807411, w: 8.382539} + outSlope: {x: -7.503714, y: -6.614292, z: 6.807411, w: 8.382539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.39525208, y: -0.5063336, z: 0.35908747, w: 0.67709553} + inSlope: {x: 1.8906748, y: -0.6230043, z: -1.7286608, w: 1.6019013} + outSlope: {x: 1.8906748, y: -0.6230043, z: -1.7286608, w: 1.6019013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.2653887, y: -0.53522986, z: 0.24378869, w: 0.7639797} + inSlope: {x: 1.8073684, y: -0.474279, z: -1.370829, w: 0.8309652} + outSlope: {x: 1.8073684, y: -0.474279, z: -1.370829, w: 0.8309652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.15442024, y: -0.56953126, z: 0.1764245, w: 0.78782165} + inSlope: {x: 1.0494921, y: -0.3669544, z: -0.4993554, w: 0.13568567} + outSlope: {x: 1.0494921, y: -0.3669544, z: -0.4993554, w: 0.13568567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.12554388, y: -0.58412653, z: 0.17724958, w: 0.7820598} + inSlope: {x: -1.0188574, y: 0.32692957, z: 0.8830707, w: -0.33328503} + outSlope: {x: -1.0188574, y: 0.32692957, z: 0.8830707, w: -0.33328503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.29018298, y: -0.5259679, z: 0.29409367, w: 0.7434114} + inSlope: {x: -2.6252482, y: 1.2293497, z: 1.9475923, w: -1.0837086} + outSlope: {x: -2.6252482, y: 1.2293497, z: 1.9475923, w: -1.0837086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.4753582, y: -0.42031568, z: 0.43676624, w: 0.6376556} + inSlope: {x: -1.9264152, y: 1.3765553, z: 2.0371857, w: -1.7249589} + outSlope: {x: -1.9264152, y: 1.3765553, z: 2.0371857, w: -1.7249589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.5468778, y: -0.3425419, z: 0.56554866, w: 0.51356065} + inSlope: {x: -0.81292504, y: 1.0687071, z: 1.6586435, w: -1.8845983} + outSlope: {x: -0.81292504, y: 1.0687071, z: 1.6586435, w: -1.8845983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.58368045, y: -0.27791047, z: 0.65778047, w: 0.3865329} + inSlope: {x: -0.72387326, y: 0.81808484, z: 0.813962, w: -1.7676479} + outSlope: {x: -0.72387326, y: 0.81808484, z: 0.813962, w: -1.7676479} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.6433339, y: -0.2335321, z: 0.6740091, w: 0.27802157} + inSlope: {x: 9.551196, y: 3.6552799, z: -9.899337, w: -4.478308} + outSlope: {x: 9.551196, y: 3.6552799, z: -9.899337, w: -4.478308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.6890163, y: 0.20915556, z: -0.6613061, w: -0.21020165} + inSlope: {x: 10.020836, y: 3.3086748, z: -9.971635, w: -3.757428} + outSlope: {x: 10.020836, y: 3.3086748, z: -9.971635, w: -3.757428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.69194233, y: 0.20734881, z: -0.6547112, w: -0.22265567} + inSlope: {x: -0.05334448, y: 0.04648413, z: 0.10686565, w: -0.40707937} + outSlope: {x: -0.05334448, y: 0.04648413, z: 0.10686565, w: -0.40707937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.68190813, y: 0.21534957, z: -0.64706624, w: -0.26444498} + inSlope: {x: -0.15060718, y: 0.120086476, z: 0.11474599, w: -0.62723166} + outSlope: {x: -0.15060718, y: 0.120086476, z: 0.11474599, w: -0.62723166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.001609074, y: -0.07362765, z: 0.074236885, w: 0.9945176} + inSlope: {x: 0.000046758334, y: -0.029235799, z: 0.034767065, w: -0.004830101} + outSlope: {x: 0.000046758334, y: -0.029235799, z: 0.034767065, w: -0.004830101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.0016121892, y: -0.075575486, z: 0.07655324, w: 0.9941958} + inSlope: {x: -0.0017241219, y: -0.058007732, z: 0.10843399, w: -0.013411381} + outSlope: {x: -0.0017241219, y: -0.058007732, z: 0.10843399, w: -0.013411381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.0013793347, y: -0.08135718, z: 0.08868571, w: 0.99273056} + inSlope: {x: -0.06010527, y: -0.10273974, z: 0.8361439, w: -0.120875984} + outSlope: {x: -0.06010527, y: -0.10273974, z: 0.8361439, w: -0.120875984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.006396838, y: -0.089265555, z: 0.18796942, w: 0.9780891} + inSlope: {x: -0.12804693, y: -0.13082515, z: 1.404383, w: -0.2757215} + outSlope: {x: -0.12804693, y: -0.13082515, z: 1.404383, w: -0.2757215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.015682917, y: -0.09878963, z: 0.27581975, w: 0.9559907} + inSlope: {x: -0.03736678, y: -0.22599068, z: 0.27900395, w: -0.08384416} + outSlope: {x: -0.03736678, y: -0.22599068, z: 0.27900395, w: -0.08384416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.011375961, y: -0.11937881, z: 0.2251467, w: 0.96691686} + inSlope: {x: 0.12483017, y: -0.28854495, z: -1.0498179, w: 0.18893577} + outSlope: {x: 0.12483017, y: -0.28854495, z: -1.0498179, w: 0.18893577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.000950703, y: -0.13723825, z: 0.1359315, w: 0.98116636} + inSlope: {x: 0.18732363, y: -0.1758436, z: -1.2739303, w: 0.15901268} + outSlope: {x: 0.18732363, y: -0.1758436, z: -1.2739303, w: 0.15901268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.013584912, y: -0.14280997, z: 0.05539547, w: 0.9881053} + inSlope: {x: 0.1895032, y: -0.060365193, z: -1.240564, w: 0.055839602} + outSlope: {x: 0.1895032, y: -0.060365193, z: -1.240564, w: 0.055839602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.026202003, y: -0.14528191, z: -0.029373648, w: 0.988607} + inSlope: {x: 0.18468153, y: 0.02520583, z: -1.3061606, w: -0.043172102} + outSlope: {x: 0.18468153, y: 0.02520583, z: -1.3061606, w: -0.043172102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.038193725, y: -0.1394513, z: -0.11865042, w: 0.9823526} + inSlope: {x: 0.15188806, y: 0.1384285, z: -1.2963942, w: -0.13962427} + outSlope: {x: 0.15188806, y: 0.1384285, z: -1.2963942, w: -0.13962427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.046441086, y: -0.12683631, z: -0.20211817, w: 0.97000206} + inSlope: {x: 0.0947195, y: 0.20385359, z: -1.2146261, w: -0.22847521} + outSlope: {x: 0.0947195, y: 0.20385359, z: -1.2146261, w: -0.22847521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.050815098, y: -0.112287804, z: -0.28049934, w: 0.9519083} + inSlope: {x: 0.023296777, y: 0.21360582, z: -0.90168554, w: -0.22351405} + outSlope: {x: 0.023296777, y: 0.21360582, z: -0.90168554, w: -0.22351405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.04954538, y: -0.09837334, z: -0.32226777, w: 0.9402188} + inSlope: {x: -0.09355732, y: 0.1677551, z: 0.37620866, w: 0.12210833} + outSlope: {x: -0.09355732, y: 0.1677551, z: 0.37620866, w: 0.12210833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.038348585, y: -0.08993444, z: -0.23036954, w: 0.9681792} + inSlope: {x: -0.1907041, y: 0.119974986, z: 1.7737005, w: 0.39307666} + outSlope: {x: -0.1907041, y: 0.119974986, z: 1.7737005, w: 0.39307666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.02413406, y: -0.08238667, z: -0.085922174, w: 0.99259627} + inSlope: {x: -0.21238822, y: 0.10378879, z: 1.8737144, w: 0.21525799} + outSlope: {x: -0.21238822, y: 0.10378879, z: 1.8737144, w: 0.21525799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.010047857, y: -0.07610458, z: 0.019302936, w: 0.99686235} + inSlope: {x: -0.16904303, y: 0.065733805, z: 1.2019441, w: 0.014419178} + outSlope: {x: -0.16904303, y: 0.065733805, z: 1.2019441, w: 0.014419178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.0016090765, y: -0.07362764, z: 0.074236885, w: 0.9945176} + inSlope: {x: -0.12666087, y: 0.037177306, z: 0.8245246, w: -0.03519291} + outSlope: {x: -0.12666087, y: 0.037177306, z: 0.8245246, w: -0.03519291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00027543012, y: 0.11332598, z: -0.15805174, w: 0.9809061} + inSlope: {x: 0.14299832, y: 0.020800903, z: 1.1863738, w: 0.1395451} + outSlope: {x: 0.14299832, y: 0.020800903, z: 1.1863738, w: 0.1395451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.0098026935, y: 0.11471184, z: -0.07900959, w: 0.9902033} + inSlope: {x: 0.18244497, y: 0.017320517, z: 1.5503569, w: 0.081761025} + outSlope: {x: 0.18244497, y: 0.017320517, z: 1.5503569, w: 0.081761025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.024586223, y: 0.11563394, z: 0.048533298, w: 0.9918008} + inSlope: {x: 0.21353292, y: 0.009586731, z: 1.7938935, w: -0.08011759} + outSlope: {x: 0.21353292, y: 0.009586731, z: 1.7938935, w: -0.08011759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.038255956, y: 0.115989275, z: 0.16002671, w: 0.97952765} + inSlope: {x: 0.16795354, y: 0.0035801367, z: 1.3086536, w: -0.1879311} + outSlope: {x: 0.16795354, y: 0.0035801367, z: 1.3086536, w: -0.1879311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.04696603, y: 0.116110995, z: 0.22291139, w: 0.96675897} + inSlope: {x: 0.07498175, y: 0.09700611, z: 0.27557933, w: -0.065920725} + outSlope: {x: 0.07498175, y: 0.09700611, z: 0.27557933, w: -0.065920725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.048247274, y: 0.12891534, z: 0.19674766, w: 0.9707437} + inSlope: {x: -0.016941808, y: 0.23387957, z: -0.63072854, w: 0.08644396} + outSlope: {x: -0.016941808, y: 0.23387957, z: -0.63072854, w: 0.08644396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.044708535, y: 0.14727545, z: 0.13886681, w: 0.9782776} + inSlope: {x: -0.09595341, y: 0.20001842, z: -0.9317323, w: 0.10335468} + outSlope: {x: -0.09595341, y: 0.20001842, z: -0.9317323, w: 0.10335468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.03546148, y: 0.1555678, z: 0.07259433, w: 0.9845157} + inSlope: {x: -0.19549854, y: 0.097026184, z: -1.2798338, w: 0.060950167} + outSlope: {x: -0.19549854, y: 0.097026184, z: -1.2798338, w: 0.060950167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.018658355, y: 0.16020419, z: -0.031671032, w: 0.98639923} + inSlope: {x: -0.39111263, y: 0.009694535, z: -2.4760923, w: -0.23383003} + outSlope: {x: -0.39111263, y: 0.009694535, z: -2.4760923, w: -0.23383003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.016654273, y: 0.15685959, z: -0.257345, w: 0.9533579} + inSlope: {x: -0.45279115, y: -0.10414486, z: -2.8134532, w: -0.6419087} + outSlope: {x: -0.45279115, y: -0.10414486, z: -2.8134532, w: -0.6419087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.041676067, y: 0.14632688, z: -0.40656367, w: 0.9008649} + inSlope: {x: -0.14879274, y: -0.09622986, z: -0.9297967, w: -0.30694628} + outSlope: {x: -0.14879274, y: -0.09622986, z: -0.9297967, w: -0.30694628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.036480907, y: 0.14403696, z: -0.3812404, w: 0.9124573} + inSlope: {x: 0.08266194, y: -0.056241065, z: 0.38215658, w: 0.171707} + outSlope: {x: 0.08266194, y: -0.056241065, z: 0.38215658, w: 0.171707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.030661363, y: 0.13883276, z: -0.3556413, w: 0.92374486} + inSlope: {x: 0.011030801, y: -0.09615728, z: -0.15977444, w: -0.05389692} + outSlope: {x: 0.011030801, y: -0.09615728, z: -0.15977444, w: -0.05389692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.035011053, y: 0.131224, z: -0.40253034, w: 0.9052755} + inSlope: {x: -0.057723016, y: -0.13069241, z: -0.6963949, w: -0.29302853} + outSlope: {x: -0.057723016, y: -0.13069241, z: -0.6963949, w: -0.29302853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.038352955, y: 0.121418, z: -0.44843593, w: 0.8846988} + inSlope: {x: 0.14583938, y: -0.09495657, z: 0.71460426, w: 0.2911051} + outSlope: {x: 0.14583938, y: -0.09495657, z: 0.71460426, w: 0.2911051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.015577957, y: 0.11857104, z: -0.30730933, w: 0.9440653} + inSlope: {x: 0.28989404, y: -0.060728073, z: 2.1792433, w: 0.7220062} + outSlope: {x: 0.28989404, y: -0.060728073, z: 2.1792433, w: 0.7220062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.00027542538, y: 0.11332598, z: -0.15805176, w: 0.9809061} + inSlope: {x: 0.23794946, y: -0.0787251, z: 2.2402637, w: 0.5529584} + outSlope: {x: 0.23794946, y: -0.0787251, z: 2.2402637, w: 0.5529584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.07539343, y: 0.14854637, z: -0.20769599, w: 0.9639047} + inSlope: {x: 0.23280713, y: 0.08504386, z: 1.6010209, w: 0.2570868} + outSlope: {x: 0.23280713, y: 0.08504386, z: 1.6010209, w: 0.2570868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.059882656, y: 0.15421242, z: -0.10102797, w: 0.9810331} + inSlope: {x: 0.30505908, y: 0.06084773, z: 1.9358709, w: 0.16403109} + outSlope: {x: 0.30505908, y: 0.06084773, z: 1.9358709, w: 0.16403109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.03474431, y: 0.15665433, z: 0.050258793, w: 0.9857618} + inSlope: {x: 0.25937277, y: -0.0060597695, z: 1.5677345, w: 0.0067414753} + outSlope: {x: 0.25937277, y: -0.0060597695, z: 1.5677345, w: 0.0067414753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.025321232, y: 0.15340495, z: 0.107872635, w: 0.9819314} + inSlope: {x: 0.11034404, y: -0.043995835, z: 0.67855847, w: -0.056001082} + outSlope: {x: 0.11034404, y: -0.043995835, z: 0.67855847, w: -0.056001082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.020040968, y: 0.15079188, z: 0.1406767, w: 0.9782997} + inSlope: {x: 0.0697853, y: -0.12450091, z: 0.5413307, w: -0.059726313} + outSlope: {x: 0.0697853, y: -0.12450091, z: 0.5413307, w: -0.059726313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.016022341, y: 0.1368152, z: 0.18000495, w: 0.97397286} + inSlope: {x: 0.024422249, y: -0.24637485, z: 0.44836974, w: -0.04399606} + outSlope: {x: 0.024422249, y: -0.24637485, z: 0.44836974, w: -0.04399606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.016786704, y: 0.117962435, z: 0.20042197, w: 0.9724372} + inSlope: {x: -0.05880686, y: -0.2140131, z: -0.24112807, w: 0.066014215} + outSlope: {x: -0.05880686, y: -0.2140131, z: -0.24112807, w: 0.066014215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.023858355, y: 0.10829796, z: 0.14787464, w: 0.98276925} + inSlope: {x: -0.13343614, y: -0.113595605, z: -1.1704397, w: 0.15509644} + outSlope: {x: -0.13343614, y: -0.113595605, z: -1.1704397, w: 0.15509644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.03456707, y: 0.10282582, z: 0.044460885, w: 0.9931038} + inSlope: {x: -0.19069831, y: -0.049762107, z: -1.7468505, w: 0.053997558} + outSlope: {x: -0.19069831, y: -0.049762107, z: -1.7468505, w: 0.053997558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.049268905, y: 0.10166716, z: -0.08489319, w: 0.9899644} + inSlope: {x: -0.21008448, y: 0.003973102, z: -1.8469024, w: -0.15852554} + outSlope: {x: -0.21008448, y: 0.003973102, z: -1.8469024, w: -0.15852554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.06256083, y: 0.10335524, z: -0.20163885, w: 0.9719803} + inSlope: {x: -0.14786483, y: 0.034200486, z: -1.2077593, w: -0.21734068} + outSlope: {x: -0.14786483, y: 0.034200486, z: -1.2077593, w: -0.21734068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.068971895, y: 0.10622437, z: -0.24582711, w: 0.9610038} + inSlope: {x: -0.0851548, y: 0.056979246, z: -0.48170552, w: -0.12924032} + outSlope: {x: -0.0851548, y: 0.056979246, z: -0.48170552, w: -0.12924032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.0739077, y: 0.11094772, z: -0.2658261, w: 0.954759} + inSlope: {x: -0.090275876, y: 0.0877268, z: -0.38480556, w: -0.12709455} + outSlope: {x: -0.090275876, y: 0.0877268, z: -0.38480556, w: -0.12709455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.081001155, y: 0.11791397, z: -0.29710245, w: 0.94406843} + inSlope: {x: -0.09652391, y: 0.11812125, z: -0.3602829, w: -0.13343298} + outSlope: {x: -0.09652391, y: 0.11812125, z: -0.3602829, w: -0.13343298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.086769514, y: 0.12668738, z: -0.3138338, w: 0.93697906} + inSlope: {x: -0.012018107, y: 0.16491538, z: 0.27201658, w: 0.056598693} + outSlope: {x: -0.012018107, y: 0.16491538, z: 0.27201658, w: 0.056598693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.08260257, y: 0.13988894, z: -0.26085624, w: 0.9516102} + inSlope: {x: 0.08537398, y: 0.16404484, z: 0.79653144, w: 0.20206848} + outSlope: {x: 0.08537398, y: 0.16404484, z: 0.79653144, w: 0.20206848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.07539343, y: 0.14854635, z: -0.20769599, w: 0.9639047} + inSlope: {x: 0.108204685, y: 0.12994237, z: 0.79790246, w: 0.1845324} + outSlope: {x: 0.108204685, y: 0.12994237, z: 0.79790246, w: 0.1845324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone16/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14566538, y: -0.46929017, z: -0.33826056, w: 0.80257595} + inSlope: {x: -1.8916602, y: -0.53514415, z: 3.1886635, w: 0.76745105} + outSlope: {x: -1.8916602, y: -0.53514415, z: 3.1886635, w: 0.76745105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.01963352, y: -0.50494415, z: -0.12581585, w: 0.8537074} + inSlope: {x: -1.9276376, y: -0.24074395, z: 3.395659, w: 0.35908476} + outSlope: {x: -1.9276376, y: -0.24074395, z: 3.395659, w: 0.35908476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.11119232, y: -0.5013693, z: 0.11421098, w: 0.850424} + inSlope: {x: -1.044314, y: 0.04201982, z: 1.9116527, w: -0.03996978} + outSlope: {x: -1.044314, y: 0.04201982, z: 1.9116527, w: -0.03996978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.11952133, y: -0.499345, z: 0.12891187, w: 0.8483814} + inSlope: {x: -0.10481477, y: 0.024787033, z: 0.17800497, w: -0.026442992} + outSlope: {x: -0.10481477, y: 0.024787033, z: 0.17800497, w: -0.026442992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.12515889, y: -0.49806643, z: 0.13793014, w: 0.84690046} + inSlope: {x: -0.19664797, y: 0.052019313, z: 0.3290995, w: -0.059122443} + outSlope: {x: -0.19664797, y: 0.052019313, z: 0.3290995, w: -0.059122443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.14572467, y: -0.49241343, z: 0.17276438, w: 0.84050333} + inSlope: {x: -0.2605726, y: 0.07532103, z: 0.44446325, w: -0.088544995} + outSlope: {x: -0.2605726, y: 0.07532103, z: 0.44446325, w: -0.088544995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.15988019, y: -0.4880299, z: 0.19715486, w: 0.83510184} + inSlope: {x: -0.06710097, y: -0.12962031, z: 0.1533839, w: -0.12387031} + outSlope: {x: -0.06710097, y: -0.12962031, z: 0.1533839, w: -0.12387031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.15466587, y: -0.50968534, z: 0.19320278, w: 0.8239976} + inSlope: {x: 0.22041619, y: -0.34279674, z: -0.2304924, w: -0.12239909} + outSlope: {x: 0.22041619, y: -0.34279674, z: -0.2304924, w: -0.12239909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.13050973, y: -0.53370756, z: 0.16644175, w: 0.81879216} + inSlope: {x: 0.6441188, y: -0.075280786, z: -0.8303793, w: 0.17675316} + outSlope: {x: 0.6441188, y: -0.075280786, z: -0.8303793, w: 0.17675316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.06883705, y: -0.5197165, z: 0.082554735, w: 0.84755} + inSlope: {x: 0.9734123, y: 0.25852492, z: -1.467399, w: 0.35400954} + outSlope: {x: 0.9734123, y: 0.25852492, z: -1.467399, w: 0.35400954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.00080255495, y: -0.4992591, z: -0.029089157, w: 0.86596394} + inSlope: {x: 0.9211538, y: 0.18127261, z: -1.5493307, w: 0.078419134} + outSlope: {x: 0.9211538, y: 0.18127261, z: -1.5493307, w: 0.078419134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.053906698, y: -0.49556193, z: -0.123893574, w: 0.8579993} + inSlope: {x: 0.7904565, y: 0.0830305, z: -1.3658991, w: -0.19226736} + outSlope: {x: 0.7904565, y: 0.0830305, z: -1.3658991, w: -0.19226736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.10452577, y: -0.4881953, z: -0.2110952, w: 0.8403443} + inSlope: {x: 0.7996255, y: 0.17030378, z: -1.3572469, w: -0.35245198} + outSlope: {x: 0.7996255, y: 0.17030378, z: -1.3572469, w: -0.35245198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.16045679, y: -0.47286895, z: -0.30474672, w: 0.8110351} + inSlope: {x: 0.6404193, y: 0.19846693, z: -1.098628, w: -0.38331848} + outSlope: {x: 0.6404193, y: 0.19846693, z: -1.098628, w: -0.38331848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.18986164, y: -0.46174958, z: -0.35748738, w: 0.7892671} + inSlope: {x: 0.047950536, y: 0.053757574, z: -0.3283431, w: -0.111828156} + outSlope: {x: 0.047950536, y: 0.053757574, z: -0.3283431, w: -0.111828156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.1668462, y: -0.46570575, z: -0.34849843, w: 0.796134} + inSlope: {x: -0.3316794, y: -0.05658952, z: 0.14429133, w: 0.099878594} + outSlope: {x: -0.3316794, y: -0.05658952, z: 0.14429133, w: 0.099878594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.14566536, y: -0.46929014, z: -0.33826056, w: 0.80257595} + inSlope: {x: -0.31791127, y: -0.0537994, z: 0.15366413, w: 0.09668969} + outSlope: {x: -0.31791127, y: -0.0537994, z: 0.15366413, w: 0.09668969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone16/Bone33 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08916445, y: -0.68918425, z: -0.31026408, w: 0.64869946} + inSlope: {x: -0.27406484, y: 0.068769224, z: 2.2491095, w: 0.81327486} + outSlope: {x: -0.27406484, y: 0.068769224, z: 2.2491095, w: 0.81327486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.10742402, y: -0.6846025, z: -0.16041715, w: 0.7028839} + inSlope: {x: -0.19750972, y: 0.35161507, z: 2.4312487, w: 0.8169111} + outSlope: {x: -0.19750972, y: 0.35161507, z: 2.4312487, w: 0.8169111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.11548262, y: -0.64233154, z: 0.013699796, w: 0.75755286} + inSlope: {x: -0.1576705, y: 0.3406675, z: 1.4239991, w: 0.41111863} + outSlope: {x: -0.1576705, y: 0.3406675, z: 1.4239991, w: 0.41111863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.12843361, y: -0.63920856, z: 0.029330702, w: 0.75766546} + inSlope: {x: -0.14770216, y: 0.02890501, z: 0.17463076, w: -0.0058428207} + outSlope: {x: -0.14770216, y: 0.02890501, z: 0.17463076, w: -0.0058428207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.13516393, y: -0.63847995, z: 0.036969345, w: 0.7567743} + inSlope: {x: -0.1954791, y: -0.21076874, z: 0.2756845, w: -0.24066722} + outSlope: {x: -0.1954791, y: -0.21076874, z: 0.2756845, w: -0.24066722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.1544812, y: -0.6672935, z: 0.06606566, w: 0.72559655} + inSlope: {x: -0.24528274, y: -0.43081477, z: 0.36199167, w: -0.4782766} + outSlope: {x: -0.24528274, y: -0.43081477, z: 0.36199167, w: -0.4782766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.16784786, y: -0.695886, z: 0.085204735, w: 0.69304395} + inSlope: {x: -0.065945774, y: -0.22939356, z: 0.11307181, w: -0.24731791} + outSlope: {x: -0.065945774, y: -0.22939356, z: 0.11307181, w: -0.24731791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.16326848, y: -0.6978602, z: 0.08113248, w: 0.69264144} + inSlope: {x: 0.17227063, y: -0.038567003, z: -0.17123485, w: 0.018202566} + outSlope: {x: 0.17227063, y: -0.038567003, z: -0.17123485, w: 0.018202566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.1448928, y: -0.70102507, z: 0.062387694, w: 0.69546944} + inSlope: {x: 0.47030288, y: -0.08112584, z: -0.47153908, w: 0.040897958} + outSlope: {x: 0.47030288, y: -0.08112584, z: -0.47153908, w: 0.040897958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.10060062, y: -0.7086702, z: 0.018299896, w: 0.6980911} + inSlope: {x: 0.70037985, y: -0.09724034, z: -0.6895401, w: 0.016281798} + outSlope: {x: 0.70037985, y: -0.09724034, z: -0.6895401, w: 0.016281798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.05156719, y: -0.71398234, z: -0.029493522, w: 0.697639} + inSlope: {x: 0.5772562, y: -0.042638905, z: -0.56355155, w: -0.0076164226} + outSlope: {x: 0.5772562, y: -0.042638905, z: -0.56355155, w: -0.0076164226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.02368124, y: -0.71435183, z: -0.056793343, w: 0.6970762} + inSlope: {x: 0.41914767, y: -0.013860038, z: -0.40772694, w: -0.033217568} + outSlope: {x: 0.41914767, y: -0.013860038, z: -0.40772694, w: -0.033217568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.004284239, y: -0.7158292, z: -0.08382314, w: 0.69321275} + inSlope: {x: 0.04567845, y: -0.018985813, z: -1.2744883, w: -0.28498805} + outSlope: {x: 0.04567845, y: -0.018985813, z: -1.2744883, w: -0.28498805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.017594587, y: -0.7168817, z: -0.22661892, w: 0.65910155} + inSlope: {x: -0.39544684, y: 0.16952501, z: -1.9821213, w: -0.47968343} + outSlope: {x: -0.39544684, y: 0.16952501, z: -1.9821213, w: -0.47968343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.048409052, y: -0.69324, z: -0.3479408, w: 0.62929493} + inSlope: {x: -0.38665733, y: 0.18997891, z: -0.7725433, w: -0.15069753} + outSlope: {x: -0.38665733, y: 0.18997891, z: -0.7725433, w: -0.15069753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.069116674, y: -0.691567, z: -0.3295603, w: 0.6390211} + inSlope: {x: -0.30585688, y: 0.030437509, z: 0.28275257, w: 0.145625} + outSlope: {x: -0.30585688, y: 0.030437509, z: 0.28275257, w: 0.145625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.08916448, y: -0.6891842, z: -0.31026402, w: 0.64869946} + inSlope: {x: -0.30090517, y: 0.035764575, z: 0.28962535, w: 0.14526625} + outSlope: {x: -0.30090517, y: 0.035764575, z: 0.28962535, w: 0.14526625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08688196, y: -0.78179187, z: -0.3222402, w: 0.5267012} + inSlope: {x: -0.2860492, y: 0.51210076, z: 2.370889, w: 1.620163} + outSlope: {x: -0.2860492, y: 0.51210076, z: 2.370889, w: 1.620163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.105939984, y: -0.74767315, z: -0.16427973, w: 0.63464457} + inSlope: {x: 0.15545088, y: 0.86572075, z: 2.7829638, w: 1.6084723} + outSlope: {x: 0.15545088, y: 0.86572075, z: 2.7829638, w: 1.6084723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.06616813, y: -0.6664346, z: 0.048589695, w: 0.74103016} + inSlope: {x: 0.4061474, y: 0.48424518, z: 1.991761, w: 0.6509709} + outSlope: {x: 0.4061474, y: 0.48424518, z: 1.991761, w: 0.6509709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.051820848, y: -0.6831475, z: 0.10112241, w: 0.72138643} + inSlope: {x: 0.06853114, y: -0.41246998, z: 0.51328236, w: -0.45663822} + outSlope: {x: 0.06853114, y: -0.41246998, z: 0.51328236, w: -0.45663822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.057036355, y: -0.7213962, z: 0.11698457, w: 0.6801831} + inSlope: {x: -0.20343375, y: -0.6298281, z: 0.35808346, w: -0.76803076} + outSlope: {x: -0.20343375, y: -0.6298281, z: 0.35808346, w: -0.76803076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.078928396, y: -0.7670721, z: 0.14883703, w: 0.61904633} + inSlope: {x: -0.31031787, y: -0.5449645, z: 0.3530112, w: -0.7741536} + outSlope: {x: -0.31031787, y: -0.5449645, z: 0.3530112, w: -0.7741536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.09838621, y: -0.7940127, z: 0.16402331, w: 0.57702714} + inSlope: {x: -0.044966787, y: -0.21388741, z: 0.04031589, w: -0.29515013} + outSlope: {x: -0.044966787, y: -0.21388741, z: 0.04031589, w: -0.29515013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.08492022, y: -0.7955726, z: 0.15420912, w: 0.5797176} + inSlope: {x: 0.30225968, y: -0.029712413, z: -0.22054614, w: 0.056704707} + outSlope: {x: 0.30225968, y: -0.029712413, z: -0.22054614, w: 0.056704707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.05811011, y: -0.7979719, z: 0.13463554, w: 0.58458304} + inSlope: {x: 0.44188607, y: -0.023372177, z: -0.3168489, w: 0.082122006} + outSlope: {x: 0.44188607, y: -0.023372177, z: -0.3168489, w: 0.082122006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.026038904, y: -0.7986869, z: 0.11198901, w: 0.59066033} + inSlope: {x: 0.4973337, y: -0.015545965, z: -0.3667121, w: 0.06859432} + outSlope: {x: 0.4973337, y: -0.015545965, z: -0.3667121, w: 0.06859432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.008159603, y: -0.8000434, z: 0.08577115, w: 0.59372324} + inSlope: {x: -0.08198917, y: -0.06456134, z: -1.1352282, w: -0.022326356} + outSlope: {x: -0.08198917, y: -0.06456134, z: -1.1352282, w: -0.022326356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.036963962, y: -0.8072897, z: -0.03928014, w: 0.58768535} + inSlope: {x: -0.8240924, y: 0.049125858, z: -2.2095962, w: -0.23375532} + outSlope: {x: -0.8240924, y: 0.049125858, z: -2.2095962, w: -0.23375532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.10165071, y: -0.7934974, z: -0.20865753, w: 0.56257534} + inSlope: {x: -0.22367, y: 0.14357674, z: -2.0810764, w: -0.48117968} + outSlope: {x: -0.22367, y: 0.14357674, z: -2.0810764, w: -0.48117968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.06676799, y: -0.7881581, z: -0.31658357, w: 0.52356815} + inSlope: {x: 0.94508946, y: 11.855365, z: 4.2916317, w: -7.96932} + outSlope: {x: 0.94508946, y: 11.855365, z: 4.2916317, w: -7.96932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.024282452, y: 0.78622997, z: 0.36320242, w: -0.49933642} + inSlope: {x: 0.08027774, y: 0.026690483, z: -0.20308876, w: -0.0793457} + outSlope: {x: 0.08027774, y: 0.026690483, z: -0.20308876, w: -0.0793457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.056070983, y: -0.7846016, z: -0.34364516, w: 0.5129954} + inSlope: {x: -0.8342542, y: -11.767518, z: -5.1440344, w: 7.7000947} + outSlope: {x: -0.8342542, y: -11.767518, z: -5.1440344, w: 7.7000947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.08688191, y: -0.78179187, z: -0.32224017, w: 0.5267012} + inSlope: {x: -0.46245298, y: 0.042172804, z: 0.32127553, w: 0.20571543} + outSlope: {x: -0.46245298, y: 0.042172804, z: 0.32127553, w: 0.20571543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone29 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.23839952, y: 0.6031391, z: -0.24606755, w: 0.72030526} + inSlope: {x: -0.45687598, y: 0.20510261, z: -0.23691694, w: -0.4264946} + outSlope: {x: -0.45687598, y: 0.20510261, z: -0.23691694, w: -0.4264946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.26883888, y: 0.61680406, z: -0.26185215, w: 0.69189006} + inSlope: {x: -0.622668, y: 0.09125169, z: -0.36738178, w: -0.47827035} + outSlope: {x: -0.622668, y: 0.09125169, z: -0.36738178, w: -0.47827035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.32137004, y: 0.6152984, z: -0.29502118, w: 0.65657574} + inSlope: {x: -1.2419593, y: -0.4153332, z: -0.8678588, w: -0.72970265} + outSlope: {x: -1.2419593, y: -0.4153332, z: -0.8678588, w: -0.72970265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.43432996, y: 0.5614609, z: -0.37749434, w: 0.5946572} + inSlope: {x: -1.764389, y: -1.0666201, z: -1.2513849, w: -1.1510031} + outSlope: {x: -1.764389, y: -1.0666201, z: -1.2513849, w: -1.1510031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.55647486, y: 0.47317126, z: -0.4617682, w: 0.5032046} + inSlope: {x: 8.24856, y: -6.9958644, z: 6.735202, w: -7.3715644} + outSlope: {x: 8.24856, y: -6.9958644, z: 6.735202, w: -7.3715644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.6647906, y: -0.37073797, z: 0.51997125, w: -0.3876038} + inSlope: {x: 9.730738, y: -5.5995708, z: 7.609399, w: -5.8007603} + outSlope: {x: 9.730738, y: -5.5995708, z: 7.609399, w: -5.8007603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.74014586, y: -0.27297154, z: 0.55218416, w: -0.26974678} + inSlope: {x: 0.8708988, y: 1.2496119, z: 0.36924687, w: 1.731178} + outSlope: {x: 0.8708988, y: 1.2496119, z: 0.36924687, w: 1.731178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.78083783, y: -0.20422718, z: 0.5691734, w: -0.1569243} + inSlope: {x: 0.36011225, y: 0.5804036, z: 0.12968987, w: 1.0666187} + outSlope: {x: 0.36011225, y: 0.5804036, z: 0.12968987, w: 1.0666187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.7881308, y: -0.19563276, z: 0.56946534, w: -0.12761985} + inSlope: {x: -0.38034248, y: -0.71173406, z: -0.2972744, w: -1.1595904} + outSlope: {x: -0.38034248, y: -0.71173406, z: -0.2972744, w: -1.1595904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.7301572, y: -0.29906574, z: 0.5295616, w: -0.31143972} + inSlope: {x: -10.402307, y: 4.661895, z: -7.6260047, w: 4.797466} + outSlope: {x: -10.402307, y: 4.661895, z: -7.6260047, w: 4.797466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.5979765, y: 0.42556477, z: -0.44669977, w: 0.51164246} + inSlope: {x: -9.005981, y: 6.323574, z: -6.864131, w: 6.683938} + outSlope: {x: -9.005981, y: 6.323574, z: -6.864131, w: 6.683938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.46988982, y: 0.54355055, z: -0.38508385, w: 0.57919496} + inSlope: {x: 1.8661668, y: 1.5421951, z: 0.8701012, w: 0.727314} + outSlope: {x: 1.8661668, y: 1.5421951, z: 0.8701012, w: 0.727314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.34930977, y: 0.63106227, z: -0.33075878, w: 0.60855705} + inSlope: {x: 1.650352, y: 0.78289145, z: 0.7759731, w: 0.62246037} + outSlope: {x: 1.650352, y: 0.78289145, z: 0.7759731, w: 0.62246037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.24998042, y: 0.64787084, z: -0.28168544, w: 0.6621378} + inSlope: {x: 1.1961814, y: 0.033151813, z: 0.61971843, w: 0.73163235} + outSlope: {x: 1.1961814, y: 0.033151813, z: 0.61971843, w: 0.73163235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.18991861, y: 0.63547975, z: -0.2481813, w: 0.70604706} + inSlope: {x: 0.36788043, y: -0.2009171, z: 0.29888353, w: 0.41834813} + outSlope: {x: 0.36788043, y: -0.2009171, z: 0.29888353, w: 0.41834813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.20096035, y: 0.62109864, z: -0.24185921, w: 0.7178827} + inSlope: {x: -0.36383447, y: -0.24270654, z: 0.01586311, w: 0.10700342} + outSlope: {x: -0.36383447, y: -0.24270654, z: 0.01586311, w: 0.10700342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.23839955, y: 0.6031391, z: -0.24606754, w: 0.72030526} + inSlope: {x: -0.5619392, y: -0.2695615, z: -0.063164376, w: 0.036361296} + outSlope: {x: -0.5619392, y: -0.2695615, z: -0.063164376, w: 0.036361296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04421933, y: 0.06154897, z: 0.04761313, w: 0.99598664} + inSlope: {x: 0.003063265, y: 0.042374875, z: 0.13655782, w: -0.009970638} + outSlope: {x: 0.003063265, y: 0.042374875, z: 0.13655782, w: -0.009970638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.04442342, y: 0.0643722, z: 0.056711294, w: 0.99532235} + inSlope: {x: 0.013452729, y: 0.06849944, z: 0.29293895, w: -0.024942253} + outSlope: {x: 0.013452729, y: 0.06849944, z: 0.29293895, w: -0.024942253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.046011906, y: 0.07067652, z: 0.08664724, w: 0.9926631} + inSlope: {x: 0.049672645, y: 0.09038116, z: 0.7808704, w: -0.0946826} + outSlope: {x: 0.049672645, y: 0.09038116, z: 0.7808704, w: -0.0946826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.0510423, y: 0.07641549, z: 0.16076227, w: 0.9827059} + inSlope: {x: 0.07881495, y: 0.13382092, z: 0.9486219, w: -0.15971316} + outSlope: {x: 0.07881495, y: 0.13382092, z: 0.9486219, w: -0.15971316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.056514, y: 0.08850816, z: 0.21305111, w: 0.9713813} + inSlope: {x: 0.0033995025, y: 0.32320338, z: -0.114751816, w: -0.014526531} + outSlope: {x: 0.0033995025, y: 0.32320338, z: -0.114751816, w: -0.014526531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.051495284, y: 0.11948234, z: 0.14547159, w: 0.98077023} + inSlope: {x: -0.15833792, y: 0.46971625, z: -1.2628871, w: 0.116231516} + outSlope: {x: -0.15833792, y: 0.46971625, z: -1.2628871, w: 0.116231516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.03541547, y: 0.15109785, z: 0.0447714, w: 0.98686916} + inSlope: {x: -0.18204181, y: 0.3322601, z: -1.0763092, w: 0.04016794} + outSlope: {x: -0.18204181, y: 0.3322601, z: -1.0763092, w: 0.04016794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.027238213, y: 0.163756, z: 0.0020533788, w: 0.9861226} + inSlope: {x: -0.13652533, y: 0.12535807, z: -0.7464591, w: -0.02039396} + outSlope: {x: -0.13652533, y: 0.12535807, z: -0.7464591, w: -0.02039396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.01722347, y: 0.16780181, z: -0.05469428, w: 0.98415166} + inSlope: {x: -0.26478153, y: -0.010235447, z: -1.6463345, w: -0.17755519} + outSlope: {x: -0.26478153, y: -0.010235447, z: -1.6463345, w: -0.17755519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.008043927, y: 0.16239212, z: -0.2173207, w: 0.9624634} + inSlope: {x: -0.3028388, y: -0.11858618, z: -2.0650349, w: -0.3956948} + outSlope: {x: -0.3028388, y: -0.11858618, z: -2.0650349, w: -0.3956948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.023129804, y: 0.1520002, z: -0.32986018, w: 0.93142533} + inSlope: {x: -0.059418414, y: -0.16029623, z: -0.83487606, w: -0.21544854} + outSlope: {x: -0.059418414, y: -0.16029623, z: -0.83487606, w: -0.21544854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.015961431, y: 0.14103265, z: -0.32856792, w: 0.93375486} + inSlope: {x: 0.13357589, y: -0.22412455, z: 0.0814895, w: 0.063122325} + outSlope: {x: 0.13357589, y: -0.22412455, z: 0.0814895, w: 0.063122325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.005330818, y: 0.12213561, z: -0.3190017, w: 0.9398364} + inSlope: {x: 0.24440719, y: -0.24589103, z: 0.8120259, w: 0.2663641} + outSlope: {x: 0.24440719, y: -0.24589103, z: 0.8120259, w: 0.2663641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.016605828, y: 0.10826767, z: -0.22036546, w: 0.9692479} + inSlope: {x: 0.31684232, y: -0.21249531, z: 1.7860973, w: 0.38848764} + outSlope: {x: 0.31684232, y: -0.21249531, z: 1.7860973, w: 0.38848764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.03688842, y: 0.09382061, z: -0.081004225, w: 0.99160236} + inSlope: {x: 0.20300731, y: -0.25893873, z: 1.703439, w: 0.20300068} + outSlope: {x: 0.20300731, y: -0.25893873, z: 1.703439, w: 0.20300068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.04365655, y: 0.073764086, z: 0.006617775, w: 0.9962977} + inSlope: {x: 0.055016264, y: -0.24218872, z: 0.9652334, w: 0.032902658} + outSlope: {x: 0.055016264, y: -0.24218872, z: 0.9652334, w: 0.032902658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.044219337, y: 0.061548963, z: 0.04761312, w: 0.99598664} + inSlope: {x: 0.0084470855, y: -0.18334143, z: 0.6153147, w: -0.004669068} + outSlope: {x: 0.0084470855, y: -0.18334143, z: 0.6153147, w: -0.004669068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.01811957, y: 0.063311666, z: -0.13912742, w: 0.9880824} + inSlope: {x: 0.091793, y: -0.079759344, z: 1.1878115, w: 0.12210968} + outSlope: {x: 0.091793, y: -0.079759344, z: 1.1878115, w: 0.12210968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.024235278, y: 0.0579977, z: -0.059989482, w: 0.99621797} + inSlope: {x: 0.0946002, y: -0.13537014, z: 1.50246, w: 0.06416457} + outSlope: {x: 0.0946002, y: -0.13537014, z: 1.50246, w: 0.06416457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.030725047, y: 0.045273595, z: 0.061075367, w: 0.99663234} + inSlope: {x: 0.064958274, y: -0.21152721, z: 1.5384965, w: -0.05842284} + outSlope: {x: 0.064958274, y: -0.21152721, z: 1.5384965, w: -0.05842284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.032890968, y: 0.029811699, z: 0.14501517, w: 0.9884331} + inSlope: {x: 0.009087136, y: -0.2700991, z: 0.9765956, w: -0.117419586} + outSlope: {x: 0.009087136, y: -0.2700991, z: 0.9765956, w: -0.117419586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.031935908, y: 0.009282888, z: 0.19120672, w: 0.9809862} + inSlope: {x: -0.030886054, y: -0.41002774, z: 0.38788834, w: -0.065339215} + outSlope: {x: -0.030886054, y: -0.41002774, z: 0.38788834, w: -0.065339215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.028775401, y: -0.024824496, z: 0.19670129, w: 0.9797267} + inSlope: {x: -0.043778606, y: -0.44552177, z: 0.05415043, w: -0.018747393} + outSlope: {x: -0.043778606, y: -0.44552177, z: 0.05415043, w: -0.018747393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.026102409, y: -0.05008289, z: 0.19842227, w: 0.9784881} + inSlope: {x: -0.0003533084, y: -0.2452941, z: -0.46609032, w: 0.06819129} + outSlope: {x: -0.0003533084, y: -0.2452941, z: -0.46609032, w: 0.06819129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.028728323, y: -0.057509933, z: 0.13459475, w: 0.98881316} + inSlope: {x: 0.07153027, y: -0.09971407, z: -1.3790166, w: 0.14077163} + outSlope: {x: 0.07153027, y: -0.09971407, z: -1.3790166, w: 0.14077163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.035633817, y: -0.06336979, z: 0.014668302, w: 0.9972459} + inSlope: {x: 0.10578165, y: 0.01250856, z: -1.8947372, w: 0.012893841} + outSlope: {x: 0.10578165, y: 0.01250856, z: -1.8947372, w: 0.012893841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.04282373, y: -0.055843167, z: -0.11787899, w: 0.99053127} + inSlope: {x: 0.06379291, y: 0.19862162, z: -1.9364771, w: -0.21778128} + outSlope: {x: 0.06379291, y: 0.19862162, z: -1.9364771, w: -0.21778128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.044134222, y: -0.03690346, z: -0.24336727, w: 0.96822655} + inSlope: {x: -0.024359008, y: 0.30811483, z: -1.5399611, w: -0.33848238} + outSlope: {x: -0.024359008, y: 0.30811483, z: -1.5399611, w: -0.33848238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.03957789, y: -0.014786868, z: -0.3230788, w: 0.9454285} + inSlope: {x: -0.09743531, y: 0.33913183, z: -1.0075305, w: -0.3214066} + outSlope: {x: -0.09743531, y: 0.33913183, z: -1.0075305, w: -0.3214066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.031150967, y: 0.008285859, z: -0.3776207, w: 0.9253991} + inSlope: {x: -0.15182555, y: 0.3599906, z: -0.70930356, w: -0.28222722} + outSlope: {x: -0.15182555, y: 0.3599906, z: -0.70930356, w: -0.28222722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.019347137, y: 0.033181876, z: -0.4175935, w: 0.9078217} + inSlope: {x: -0.14447884, y: 0.29470813, z: -0.42271012, w: -0.1935856} + outSlope: {x: -0.14447884, y: 0.29470813, z: -0.42271012, w: -0.1935856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.011899162, y: 0.047555715, z: -0.43394682, w: 0.89960384} + inSlope: {x: -0.022425048, y: 0.18599702, z: 0.95664257, w: 0.35475433} + outSlope: {x: -0.022425048, y: 0.18599702, z: 0.95664257, w: 0.35475433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.016359, y: 0.05796598, z: -0.2901209, w: 0.9550927} + inSlope: {x: 0.04668225, y: 0.118243486, z: 2.2125285, w: 0.6640042} + outSlope: {x: 0.04668225, y: 0.118243486, z: 2.2125285, w: 0.6640042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.018119572, y: 0.06331166, z: -0.13912742, w: 0.9880824} + inSlope: {x: 0.026425099, y: 0.08023535, z: 2.2663188, w: 0.49515468} + outSlope: {x: 0.026425099, y: 0.08023535, z: 2.2663188, w: 0.49515468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.017505147, y: -0.0749895, z: -0.16926403, w: 0.9825578} + inSlope: {x: -0.19029453, y: 0.095553406, z: 2.5315, w: 0.21955712} + outSlope: {x: -0.19029453, y: 0.095553406, z: 2.5315, w: 0.21955712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.03018352, y: -0.06862325, z: -0.00060283573, w: 0.99718577} + inSlope: {x: -0.16773848, y: 0.10974297, z: 2.3269467, w: 0.03627675} + outSlope: {x: -0.16773848, y: 0.10974297, z: 2.3269467, w: 0.03627675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.0398563, y: -0.060366247, z: 0.14080161, w: 0.98739165} + inSlope: {x: -0.09515347, y: 0.13628554, z: 1.5443865, w: -0.15538451} + outSlope: {x: -0.09515347, y: 0.13628554, z: 1.5443865, w: -0.15538451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.04286272, y: -0.050463203, z: 0.20518665, w: 0.9764808} + inSlope: {x: -0.025429321, y: 0.13138852, z: 0.66687894, w: -0.12028329} + outSlope: {x: -0.025429321, y: 0.13138852, z: 0.66687894, w: -0.12028329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.043244757, y: -0.042858727, z: 0.22966322, w: 0.9713639} + inSlope: {x: -0.003206825, y: 0.061913457, z: 0.25724146, w: -0.055986322} + outSlope: {x: -0.003206825, y: 0.061913457, z: 0.25724146, w: -0.055986322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.04329003, y: -0.042213235, z: 0.23946407, w: 0.9690206} + inSlope: {x: 0.0017241454, y: -0.0036964668, z: -0.080570504, w: 0.018493319} + outSlope: {x: 0.0017241454, y: -0.0036964668, z: -0.080570504, w: 0.018493319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.043015014, y: -0.04335128, z: 0.2189272, w: 0.97382814} + inSlope: {x: 0.0008617791, y: 0.0132706445, z: -0.6067458, w: 0.12417179} + outSlope: {x: 0.0008617791, y: 0.0132706445, z: -0.6067458, w: 0.12417179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.0431752, y: -0.04044492, z: 0.1586152, w: 0.9855665} + inSlope: {x: -0.00009323715, y: 0.03053902, z: -1.1802788, w: 0.16936174} + outSlope: {x: -0.00009323715, y: 0.03053902, z: -1.1802788, w: 0.16936174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.04302744, y: -0.039281957, z: 0.06165506, w: 0.9963956} + inSlope: {x: 0.009128541, y: -0.03423954, z: -1.9315898, w: 0.05733318} + outSlope: {x: 0.009128541, y: -0.03423954, z: -1.9315898, w: 0.05733318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.04195882, y: -0.04500734, z: -0.09876914, w: 0.99320614} + inSlope: {x: 0.026980244, y: -0.10024657, z: -2.2366228, w: -0.20234312} + outSlope: {x: 0.026980244, y: -0.10024657, z: -2.2366228, w: -0.20234312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.03943232, y: -0.052639812, z: -0.23637493, w: 0.96943337} + inSlope: {x: 0.036961924, y: -0.1200165, z: -1.0827993, w: -0.19378152} + outSlope: {x: 0.036961924, y: -0.1200165, z: -1.0827993, w: -0.19378152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.037033644, y: -0.06099954, z: -0.24305215, w: 0.96738476} + inSlope: {x: 0.041689925, y: -0.13057286, z: 0.0609249, w: 0.0079103075} + outSlope: {x: 0.041689925, y: -0.13057286, z: 0.0609249, w: 0.0079103075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.033877138, y: -0.07003865, z: -0.22825669, w: 0.9704874} + inSlope: {x: 0.067657046, y: -0.1428287, z: -0.41536993, w: -0.12546363} + outSlope: {x: 0.067657046, y: -0.1428287, z: -0.41536993, w: -0.12546363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.028018342, y: -0.08003146, z: -0.2984002, w: 0.9506667} + inSlope: {x: 0.08792302, y: -0.1212916, z: -0.8871219, w: -0.275097} + outSlope: {x: 0.08792302, y: -0.1212916, z: -0.8871219, w: -0.275097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.022161396, y: -0.08620075, z: -0.34646568, w: 0.93383074} + inSlope: {x: 0.06416486, y: -0.019727405, z: 0.15714896, w: 0.047353595} + outSlope: {x: 0.06416486, y: -0.019727405, z: 0.15714896, w: 0.047353595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.019468375, y: -0.08266014, z: -0.2774601, w: 0.9569766} + inSlope: {x: 0.034943655, y: 0.0841371, z: 1.3298434, w: 0.36568132} + outSlope: {x: 0.034943655, y: 0.0841371, z: 1.3298434, w: 0.36568132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.017505154, y: -0.07498948, z: -0.16926405, w: 0.9825578} + inSlope: {x: 0.029466726, y: 0.115131795, z: 1.6239557, w: 0.38395768} + outSlope: {x: 0.029466726, y: 0.115131795, z: 1.6239557, w: 0.38395768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.17674536, y: 0.46558556, z: -0.16597404, w: 0.8511426} + inSlope: {x: 0.1621792, y: -0.10720337, z: 1.441263, w: 0.28735745} + outSlope: {x: 0.1621792, y: -0.10720337, z: 1.441263, w: 0.28735745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.16594017, y: 0.45844314, z: -0.069949895, w: 0.8702878} + inSlope: {x: 0.26857507, y: -0.22492735, z: 1.7067956, w: 0.26836047} + outSlope: {x: 0.26857507, y: -0.22492735, z: 1.7067956, w: 0.26836047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.14095773, y: 0.435614, z: 0.06145648, w: 0.8869016} + inSlope: {x: 0.3798539, y: -0.041988954, z: 1.3604796, w: 0.05082073} + outSlope: {x: 0.3798539, y: -0.041988954, z: 1.3604796, w: 0.05082073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.11532463, y: 0.4528481, z: 0.11133401, w: 0.87705964} + inSlope: {x: 0.34698007, y: 0.34642175, z: 0.62008196, w: -0.20816983} + outSlope: {x: 0.34698007, y: 0.34642175, z: 0.62008196, w: -0.20816983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.094722636, y: 0.4817747, z: 0.1440824, w: 0.859163} + inSlope: {x: 0.32824558, y: 0.26327136, z: 0.54803395, w: -0.20169586} + outSlope: {x: 0.32824558, y: 0.26327136, z: 0.54803395, w: -0.20169586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.07158591, y: 0.48792902, z: 0.18435954, w: 0.85018367} + inSlope: {x: 0.26692027, y: 0.04237879, z: 0.46968886, w: -0.096598} + outSlope: {x: 0.26692027, y: 0.04237879, z: 0.46968886, w: -0.096598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.05915551, y: 0.48742166, z: 0.20666844, w: 0.8462913} + inSlope: {x: 0.052973043, y: 0.0026744928, z: 0.1018394, w: -0.020223085} + outSlope: {x: 0.052973043, y: 0.0026744928, z: 0.1018394, w: -0.020223085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.06452725, y: 0.4882854, z: 0.19792964, w: 0.84748894} + inSlope: {x: -0.118543014, y: -0.016343974, z: -0.20704609, w: 0.047012746} + outSlope: {x: -0.118543014, y: -0.016343974, z: -0.20704609, w: 0.047012746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.074951366, y: 0.48524383, z: 0.17907955, w: 0.85255575} + inSlope: {x: -0.1267817, y: -0.31502253, z: -0.31968993, w: 0.22541739} + outSlope: {x: -0.1267817, y: -0.31502253, z: -0.31968993, w: 0.22541739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.08142091, y: 0.44630864, z: 0.15533096, w: 0.8775258} + inSlope: {x: -0.12845585, y: -0.594134, z: -0.4900636, w: 0.37138277} + outSlope: {x: -0.12845585, y: -0.594134, z: -0.4900636, w: 0.37138277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.092068106, y: 0.40607548, z: 0.113778576, w: 0.9020425} + inSlope: {x: -0.31677884, y: -0.3048978, z: -0.8714237, w: 0.20442447} + outSlope: {x: -0.31677884, y: -0.3048978, z: -0.8714237, w: 0.20442447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.12363169, y: 0.405681, z: 0.039213747, w: 0.90476537} + inSlope: {x: -0.5121874, y: 0.05055212, z: -1.2403696, w: -0.05198107} + outSlope: {x: -0.5121874, y: 0.05055212, z: -1.2403696, w: -0.05198107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.16031708, y: 0.41281155, z: -0.051500663, w: 0.89511603} + inSlope: {x: -0.53647673, y: 0.19995871, z: -1.5407476, w: -0.30184284} + outSlope: {x: -0.53647673, y: 0.19995871, z: -1.5407476, w: -0.30184284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.19511722, y: 0.4323255, z: -0.16609088, w: 0.8645448} + inSlope: {x: -0.40602496, y: 0.27519006, z: -1.3799517, w: -0.4540161} + outSlope: {x: -0.40602496, y: 0.27519006, z: -1.3799517, w: -0.4540161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.2144199, y: 0.44948062, z: -0.23537922, w: 0.8346184} + inSlope: {x: 0.0044884533, y: 0.2111702, z: -0.2633188, w: -0.16607934} + outSlope: {x: 0.0044884533, y: 0.2111702, z: -0.2633188, w: -0.16607934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.19451913, y: 0.46046394, z: -0.2011781, w: 0.84241474} + inSlope: {x: 0.28273603, y: 0.1208628, z: 0.52086437, w: 0.124008976} + outSlope: {x: 0.28273603, y: 0.1208628, z: 0.52086437, w: 0.124008976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.17674533, y: 0.4655856, z: -0.16597404, w: 0.8511426} + inSlope: {x: 0.26677385, y: 0.07687277, z: 0.52839124, w: 0.13099961} + outSlope: {x: 0.26677385, y: 0.07687277, z: 0.52839124, w: 0.13099961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11/Bone27 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020533765, y: 0.6346138, z: -0.2721076, w: 0.7230499} + inSlope: {x: -0.5658707, y: 0.41228163, z: 1.6473116, w: 0.12581612} + outSlope: {x: -0.5658707, y: 0.41228163, z: 1.6473116, w: 0.12581612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.017167369, y: 0.6620821, z: -0.16235547, w: 0.7314324} + inSlope: {x: -0.44747168, y: 0.27889696, z: 1.8261039, w: 0.12091132} + outSlope: {x: -0.44747168, y: 0.27889696, z: 1.8261039, w: 0.12091132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.039091833, y: 0.67177683, z: -0.028779272, w: 0.7391613} + inSlope: {x: 0.053072035, y: 0.077516004, z: 1.2421052, w: 0.06506546} + outSlope: {x: 0.053072035, y: 0.077516004, z: 1.2421052, w: 0.06506546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.010095523, y: 0.6724111, z: 0.0031550478, w: 0.74010235} + inSlope: {x: 0.40282494, y: 0.007342219, z: 0.44289118, w: -0.00043613138} + outSlope: {x: 0.40282494, y: 0.007342219, z: 0.44289118, w: -0.00043613138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.014584584, y: 0.6727552, z: 0.030235976, w: 0.7391032} + inSlope: {x: 0.114048734, y: 0.010493549, z: 0.82958627, w: -0.075158216} + outSlope: {x: 0.114048734, y: 0.010493549, z: 0.82958627, w: -0.075158216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.0051014693, y: 0.67380935, z: 0.11369741, w: 0.7300875} + inSlope: {x: -0.23640676, y: -0.03540941, z: 1.1324718, w: -0.13175601} + outSlope: {x: -0.23640676, y: -0.03540941, z: 1.1324718, w: -0.13175601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.016916618, y: 0.6680369, z: 0.18113784, w: 0.7215467} + inSlope: {x: -0.21676856, y: -0.03606696, z: 0.44382358, w: -0.056994565} + outSlope: {x: -0.21676856, y: -0.03606696, z: 0.44382358, w: -0.056994565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.023782942, y: 0.6690034, z: 0.1728369, w: 0.722493} + inSlope: {x: -0.2057671, y: -0.009441912, z: -0.22351083, w: 0.05125463} + outSlope: {x: -0.2057671, y: -0.009441912, z: -0.22351083, w: 0.05125463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.044335082, y: 0.66677874, z: 0.15135503, w: 0.7283764} + inSlope: {x: -0.45425928, y: -0.2106824, z: -0.45642155, w: 0.24160302} + outSlope: {x: -0.45425928, y: -0.2106824, z: -0.45642155, w: 0.24160302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.08431299, y: 0.64093, z: 0.11201873, w: 0.7546866} + inSlope: {x: -0.58720875, y: -0.35601842, z: -0.63286984, w: 0.33183438} + outSlope: {x: -0.58720875, y: -0.35601842, z: -0.63286984, w: 0.33183438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.12258065, y: 0.6193393, z: 0.067025125, w: 0.7725933} + inSlope: {x: -0.27438757, y: -0.07373754, z: -0.6460886, w: 0.08327742} + outSlope: {x: -0.27438757, y: -0.07373754, z: -0.6460886, w: 0.08327742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.120875135, y: 0.63110447, z: 0.025927424, w: 0.7657833} + inSlope: {x: 0.2658893, y: 0.24009243, z: -0.8970827, w: -0.15499355} + outSlope: {x: 0.2658893, y: 0.24009243, z: -0.8970827, w: -0.15499355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.0871509, y: 0.6513316, z: -0.05251114, w: 0.7519404} + inSlope: {x: 0.6626087, y: 0.1755709, z: -1.9709538, w: -0.36373866} + outSlope: {x: 0.6626087, y: 0.1755709, z: -1.9709538, w: -0.36373866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.03258253, y: 0.6544993, z: -0.23670217, w: 0.71731514} + inSlope: {x: 0.61335033, y: -0.19767854, z: -2.3108208, w: -0.44666582} + outSlope: {x: 0.61335033, y: -0.19767854, z: -2.3108208, w: -0.44666582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.005421974, y: 0.62499094, z: -0.360428, w: 0.6924222} + inSlope: {x: 0.30929732, y: -0.1724576, z: -0.6045526, w: -0.074193366} + outSlope: {x: 0.30929732, y: -0.1724576, z: -0.6045526, w: -0.074193366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.008631336, y: 0.6315193, z: -0.3172588, w: 0.7074289} + inSlope: {x: 0.19478986, y: 0.07221623, z: 0.6628173, w: 0.22985116} + outSlope: {x: 0.19478986, y: 0.07221623, z: 0.6628173, w: 0.22985116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.020533774, y: 0.63461375, z: -0.2721076, w: 0.7230499} + inSlope: {x: 0.17864823, y: 0.04644555, z: 0.67769164, w: 0.23446164} + outSlope: {x: 0.17864823, y: 0.04644555, z: 0.67769164, w: 0.23446164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.095509954, y: 0.70926034, z: -0.30853406, w: 0.6266054} + inSlope: {x: -0.26106176, y: 0.05697891, z: 1.7632982, w: 0.65184534} + outSlope: {x: -0.26106176, y: 0.05697891, z: 1.7632982, w: 0.65184534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.078116715, y: 0.71305656, z: -0.19105431, w: 0.6700346} + inSlope: {x: -0.41855443, y: -0.078404374, z: 2.157883, w: 0.6550522} + outSlope: {x: -0.41855443, y: -0.078404374, z: 2.157883, w: 0.6550522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.03973758, y: 0.69881296, z: -0.020996174, w: 0.7138911} + inSlope: {x: -0.18632385, y: -0.05410536, z: 1.8359145, w: 0.2573154} + outSlope: {x: -0.18632385, y: -0.05410536, z: 1.8359145, w: 0.2573154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.05328906, y: 0.705847, z: 0.05358128, w: 0.70432186} + inSlope: {x: 0.25072858, y: 0.19603866, z: 0.8947439, w: -0.27053756} + outSlope: {x: 0.25072858, y: 0.19603866, z: 0.8947439, w: -0.27053756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.07314716, y: 0.7249351, z: 0.098228455, w: 0.67784196} + inSlope: {x: 0.035838038, y: 0.46245554, z: 0.6857834, w: -0.6194804} + outSlope: {x: 0.035838038, y: 0.46245554, z: 0.6857834, w: -0.6194804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.05806448, y: 0.7674692, z: 0.14496191, w: 0.6217761} + inSlope: {x: -0.19633138, y: 0.52641034, z: 0.5521137, w: -0.736042} + outSlope: {x: -0.19633138, y: 0.52641034, z: 0.5521137, w: -0.736042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.046986006, y: 0.7950793, z: 0.1717976, w: 0.57976437} + inSlope: {x: -0.12729242, y: 0.100648426, z: 0.18077776, w: -0.1636862} + outSlope: {x: -0.12729242, y: 0.100648426, z: 0.18077776, w: -0.1636862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.041102763, y: 0.78088063, z: 0.16905054, w: 0.5999649} + inSlope: {x: -0.16316268, y: -0.2301692, z: -0.21617375, w: 0.3632502} + outSlope: {x: -0.16316268, y: -0.2301692, z: -0.21617375, w: 0.3632502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.02524458, y: 0.76440924, z: 0.14299245, w: 0.62816745} + inSlope: {x: -0.3583974, y: -0.13238002, z: -0.77147436, w: 0.32051688} + outSlope: {x: -0.3583974, y: -0.13238002, z: -0.77147436, w: 0.32051688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.0066536907, y: 0.763241, z: 0.06625159, w: 0.6426738} + inSlope: {x: -0.3880709, y: -0.037355676, z: -1.3420547, w: 0.1567931} + outSlope: {x: -0.3880709, y: -0.037355676, z: -1.3420547, w: 0.1567931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.026465869, y: 0.7594316, z: -0.035836335, w: 0.64906013} + inSlope: {x: 0.04099393, y: -0.08952372, z: -1.5353353, w: 0.01959908} + outSlope: {x: 0.04099393, y: -0.08952372, z: -1.5353353, w: 0.01959908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.0011912482, y: 0.75131196, z: -0.13833183, w: 0.64528537} + inSlope: {x: 0.40468076, y: -0.16095759, z: -1.5050473, w: -0.13204499} + outSlope: {x: 0.40468076, y: -0.16095759, z: -1.5050473, w: -0.13204499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.027457843, y: 0.737984, z: -0.2363839, w: 0.63146514} + inSlope: {x: 0.17311034, y: -0.19744012, z: -1.454218, w: -0.31741163} + outSlope: {x: 0.17311034, y: -0.19744012, z: -1.454218, w: -0.31741163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.021875704, y: 0.72500306, z: -0.33210638, w: 0.60299027} + inSlope: {x: -0.13972086, y: -0.1679272, z: -1.094356, w: -0.3517846} + outSlope: {x: -0.13972086, y: -0.1679272, z: -1.094356, w: -0.3517846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.008840039, y: 0.7156077, z: -0.38220683, w: 0.58458984} + inSlope: {x: 0.23755434, y: -0.08282697, z: -0.11506513, w: 0.019098088} + outSlope: {x: 0.23755434, y: -0.08282697, z: -0.11506513, w: 0.019098088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.053529818, y: 0.71396637, z: -0.3474388, w: 0.6055351} + inSlope: {x: 0.6504308, y: -0.047635406, z: 0.5528916, w: 0.3153137} + outSlope: {x: 0.6504308, y: -0.047635406, z: 0.5528916, w: 0.3153137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.09550994, y: 0.7092603, z: -0.30853403, w: 0.6266054} + inSlope: {x: 0.63009566, y: -0.070635416, z: 0.58393675, w: 0.31625217} + outSlope: {x: 0.63009566, y: -0.070635416, z: 0.58393675, w: 0.31625217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5048134, y: 0.068390556, z: 0.86048883, w: -0.006722097} + inSlope: {x: 0.102574565, y: -0.0041067936, z: -0.060511798, w: -0.013442917} + outSlope: {x: 0.102574565, y: -0.0041067936, z: -0.060511798, w: -0.013442917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.5116474, y: 0.06811694, z: 0.85645723, w: -0.007617731} + inSlope: {x: 0.10949765, y: -0.0044357935, z: -0.065273464, w: -0.014385328} + outSlope: {x: 0.10949765, y: -0.0044357935, z: -0.065273464, w: -0.014385328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.51940393, y: 0.067799486, z: 0.85179114, w: -0.008638942} + inSlope: {x: 0.11894761, y: -0.0049277274, z: -0.07233566, w: -0.01570034} + outSlope: {x: 0.11894761, y: -0.0049277274, z: -0.07233566, w: -0.01570034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.5274972, y: 0.06746032, z: 0.8468185, w: -0.0097098015} + inSlope: {x: 0.11969686, y: -0.005075677, z: -0.074319944, w: -0.01587737} + outSlope: {x: 0.11969686, y: -0.005075677, z: -0.074319944, w: -0.01587737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.53535354, y: 0.06712315, z: 0.841888, w: -0.010754601} + inSlope: {x: 0.11193551, y: -0.00485448, z: -0.070911855, w: -0.014920054} + outSlope: {x: 0.11193551, y: -0.00485448, z: -0.070911855, w: -0.014920054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.5424126, y: 0.06681346, z: 0.8373695, w: -0.011697899} + inSlope: {x: 0.095847845, y: -0.004240876, z: -0.0618193, w: -0.012832228} + outSlope: {x: 0.095847845, y: -0.004240876, z: -0.0618193, w: -0.012832228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.54812527, y: 0.066558056, z: 0.8336506, w: -0.012464495} + inSlope: {x: 0.07157701, y: -0.0032181477, z: -0.04683248, w: -0.009617561} + outSlope: {x: 0.07157701, y: -0.0032181477, z: -0.04683248, w: -0.009617561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.5519502, y: 0.06638464, z: 0.8311291, w: -0.0129794385} + inSlope: {x: 0.039186083, y: -0.0017803113, z: -0.025879823, w: -0.005277751} + outSlope: {x: 0.039186083, y: -0.0017803113, z: -0.025879823, w: -0.005277751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.5533468, y: 0.06632083, z: 0.8302021, w: -0.013167756} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.5519502, y: 0.06638464, z: 0.8311291, w: -0.0129794385} + inSlope: {x: -0.039186083, y: 0.0017803113, z: 0.025879823, w: 0.005277751} + outSlope: {x: -0.039186083, y: 0.0017803113, z: 0.025879823, w: 0.005277751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.54812527, y: 0.066558056, z: 0.8336506, w: -0.012464495} + inSlope: {x: -0.07157701, y: 0.0032181477, z: 0.04683248, w: 0.009617561} + outSlope: {x: -0.07157701, y: 0.0032181477, z: 0.04683248, w: 0.009617561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.5424126, y: 0.06681346, z: 0.8373695, w: -0.011697899} + inSlope: {x: -0.095847845, y: 0.004240876, z: 0.0618193, w: 0.012832228} + outSlope: {x: -0.095847845, y: 0.004240876, z: 0.0618193, w: 0.012832228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.53535354, y: 0.06712315, z: 0.841888, w: -0.010754601} + inSlope: {x: -0.11193551, y: 0.00485448, z: 0.070911855, w: 0.014920054} + outSlope: {x: -0.11193551, y: 0.00485448, z: 0.070911855, w: 0.014920054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.5274972, y: 0.06746032, z: 0.8468185, w: -0.0097098015} + inSlope: {x: -0.11969686, y: 0.005075677, z: 0.074319944, w: 0.01587737} + outSlope: {x: -0.11969686, y: 0.005075677, z: 0.074319944, w: 0.01587737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.51940393, y: 0.067799486, z: 0.85179114, w: -0.008638942} + inSlope: {x: -0.11894761, y: 0.0049277274, z: 0.07233566, w: 0.01570034} + outSlope: {x: -0.11894761, y: 0.0049277274, z: 0.07233566, w: 0.01570034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.5116474, y: 0.06811694, z: 0.85645723, w: -0.007617731} + inSlope: {x: -0.10949765, y: 0.0044357935, z: 0.065273464, w: 0.014385328} + outSlope: {x: -0.10949765, y: 0.0044357935, z: 0.065273464, w: 0.014385328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.5048134, y: 0.068390556, z: 0.86048883, w: -0.006722097} + inSlope: {x: -0.102574565, y: 0.0041067936, z: 0.060511798, w: 0.013442917} + outSlope: {x: -0.102574565, y: 0.0041067936, z: 0.060511798, w: 0.013442917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000022456902, y: 0.52862525, z: 4.730215e-10, w: 0.8488553} + inSlope: {x: -0.000000004899972, y: -0.031817473, z: -0.000000064158094, w: 0.019758772} + outSlope: {x: -0.000000004899972, y: -0.031817473, z: -0.000000064158094, w: 0.019758772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.000000022130441, y: 0.5265054, z: -0.000000003801511, w: 0.85017174} + inSlope: {x: -0.000000023115767, y: -0.034090728, z: 0.000000051286666, w: 0.021103848} + outSlope: {x: -0.000000023115767, y: -0.034090728, z: 0.000000051286666, w: 0.021103848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.000000019376726, y: 0.52408266, z: 0.00000000730697, w: 0.8516674} + inSlope: {x: 0.0000000022858817, y: -0.037296183, z: 0.000000027818341, w: 0.02294723} + outSlope: {x: 0.0000000022858817, y: -0.037296183, z: 0.000000027818341, w: 0.02294723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.000000022435035, y: 0.5215357, z: -9.471702e-11, w: 0.85322946} + inSlope: {x: -0.0000000256132, y: -0.037811935, z: -0.000000005548639, w: 0.023114525} + outSlope: {x: -0.0000000256132, y: -0.037811935, z: -0.000000005548639, w: 0.023114525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.000000015963767, y: 0.5190442, z: 0.000000006567614, w: 0.8547474} + inSlope: {x: -0.00000001820596, y: -0.0356192, z: -0.000000031601225, w: 0.021636598} + outSlope: {x: -0.00000001820596, y: -0.0356192, z: -0.000000031601225, w: 0.021636598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.000000020009091, y: 0.51678944, z: -0.0000000043055803, w: 0.85611254} + inSlope: {x: 0.000000010863639, y: -0.03070545, z: -0.000000029736196, w: 0.018545207} + outSlope: {x: 0.000000010863639, y: -0.03070545, z: -0.000000029736196, w: 0.018545207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.000000017411347, y: 0.5149527, z: 0.0000000026052656, w: 0.85721856} + inSlope: {x: -0.000000007555815, y: -0.0230604, z: 0.000000048179487, w: 0.013864063} + outSlope: {x: -0.000000007555815, y: -0.0230604, z: 0.000000048179487, w: 0.013864063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.000000019002279, y: 0.51371664, z: 0.000000002114336, w: 0.8579599} + inSlope: {x: 0.0000000055968905, y: -0.012672864, z: -0.000000030506556, w: 0.0075958464} + outSlope: {x: 0.0000000055968905, y: -0.012672864, z: -0.000000030506556, w: 0.0075958464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.000000018157133, y: 0.51326406, z: -0.0000000014597324, w: 0.8582307} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.000000019002279, y: 0.51371664, z: 0.000000002114336, w: 0.8579599} + inSlope: {x: -0.0000000055968905, y: 0.012672864, z: 0.000000030506556, w: -0.0075958464} + outSlope: {x: -0.0000000055968905, y: 0.012672864, z: 0.000000030506556, w: -0.0075958464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.000000017411347, y: 0.5149527, z: 0.0000000026052656, w: 0.85721856} + inSlope: {x: 0.000000007555815, y: 0.0230604, z: -0.000000048179487, w: -0.013864063} + outSlope: {x: 0.000000007555815, y: 0.0230604, z: -0.000000048179487, w: -0.013864063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.000000020009091, y: 0.51678944, z: -0.0000000043055803, w: 0.85611254} + inSlope: {x: -0.000000010863639, y: 0.03070545, z: 0.000000029736196, w: -0.018545207} + outSlope: {x: -0.000000010863639, y: 0.03070545, z: 0.000000029736196, w: -0.018545207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.000000015963767, y: 0.5190442, z: 0.000000006567614, w: 0.8547474} + inSlope: {x: 0.00000001820596, y: 0.0356192, z: 0.000000031601225, w: -0.021636598} + outSlope: {x: 0.00000001820596, y: 0.0356192, z: 0.000000031601225, w: -0.021636598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.000000022435035, y: 0.5215357, z: -9.471702e-11, w: 0.85322946} + inSlope: {x: 0.0000000256132, y: 0.037811935, z: 0.000000005548639, w: -0.023114525} + outSlope: {x: 0.0000000256132, y: 0.037811935, z: 0.000000005548639, w: -0.023114525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.000000019376726, y: 0.52408266, z: 0.00000000730697, w: 0.8516674} + inSlope: {x: -0.0000000022858817, y: 0.037296183, z: -0.000000027818341, w: -0.02294723} + outSlope: {x: -0.0000000022858817, y: 0.037296183, z: -0.000000027818341, w: -0.02294723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.000000022130441, y: 0.5265054, z: -0.000000003801511, w: 0.85017174} + inSlope: {x: 0.000000023115767, y: 0.034090728, z: -0.000000051286666, w: -0.021103848} + outSlope: {x: 0.000000023115767, y: 0.034090728, z: -0.000000051286666, w: -0.021103848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.000000022456902, y: 0.52862525, z: 4.730215e-10, w: 0.8488553} + inSlope: {x: 0.000000004899972, y: 0.031817473, z: 0.000000064158094, w: -0.019758772} + outSlope: {x: 0.000000004899972, y: 0.031817473, z: 0.000000064158094, w: -0.019758772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000017906144, y: -0.4217276, z: -0.0000000059846554, w: 0.90672255} + inSlope: {x: 0.00000004960632, y: -0.05413399, z: 0.00000008715817, w: -0.02530905} + outSlope: {x: 0.00000004960632, y: -0.05413399, z: 0.00000008715817, w: -0.02530905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.000000014601123, y: -0.42533427, z: -1.7774239e-10, w: 0.90503633} + inSlope: {x: 0.000000057213608, y: -0.05788584, z: 0.0000000099108455, w: -0.027224004} + outSlope: {x: 0.000000057213608, y: -0.05788584, z: 0.0000000099108455, w: -0.027224004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.000000010282431, y: -0.4294409, z: -0.000000004664035, w: 0.90309495} + inSlope: {x: -0.000000012096535, y: -0.06308654, z: 0.000000007908422, w: -0.030007642} + outSlope: {x: -0.000000012096535, y: -0.06308654, z: 0.000000007908422, w: -0.030007642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.000000016212987, y: -0.43374056, z: 8.760552e-10, w: 0.9010378} + inSlope: {x: -0.000000011543033, y: -0.0637054, z: 0.000000025019638, w: -0.030661615} + outSlope: {x: -0.000000011543033, y: -0.0637054, z: 0.000000025019638, w: -0.030661615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.00000001182054, y: -0.43792963, z: -0.0000000013301683, w: 0.8990093} + inSlope: {x: 0.00000002186162, y: -0.05978357, z: -0.000000037359932, w: -0.029105406} + outSlope: {x: 0.00000002186162, y: -0.05978357, z: -0.000000037359932, w: -0.029105406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.000000013299926, y: -0.44170672, z: -0.000000004102156, w: 0.8971595} + inSlope: {x: 0.0000000058954575, y: -0.051357288, z: -0.000000020674094, w: -0.025260292} + outSlope: {x: 0.0000000058954575, y: -0.051357288, z: -0.000000020674094, w: -0.025260292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.00000001103497, y: -0.444773, z: -0.0000000040849915, w: 0.89564335} + inSlope: {x: -0.000000007761267, y: -0.038457185, z: 0.000000019932806, w: -0.019070802} + outSlope: {x: -0.000000007761267, y: -0.038457185, z: 0.000000019932806, w: -0.019070802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.000000014334114, y: -0.44683114, z: -0.0000000014461097, w: 0.89461833} + inSlope: {x: -0.000000029420029, y: -0.021091994, z: 0.000000024679036, w: -0.010515467} + outSlope: {x: -0.000000029420029, y: -0.021091994, z: 0.000000024679036, w: -0.010515467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.000000014955189, y: -0.4475835, z: -7.965101e-10, w: 0.89424217} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.000000014334114, y: -0.44683114, z: -0.0000000014461097, w: 0.89461833} + inSlope: {x: 0.000000029420029, y: 0.021091994, z: -0.000000024679036, w: 0.010515467} + outSlope: {x: 0.000000029420029, y: 0.021091994, z: -0.000000024679036, w: 0.010515467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.00000001103497, y: -0.444773, z: -0.0000000040849915, w: 0.89564335} + inSlope: {x: 0.000000007761267, y: 0.038457185, z: -0.000000019932806, w: 0.019070802} + outSlope: {x: 0.000000007761267, y: 0.038457185, z: -0.000000019932806, w: 0.019070802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.000000013299926, y: -0.44170672, z: -0.000000004102156, w: 0.8971595} + inSlope: {x: -0.0000000058954575, y: 0.051357288, z: 0.000000020674094, w: 0.025260292} + outSlope: {x: -0.0000000058954575, y: 0.051357288, z: 0.000000020674094, w: 0.025260292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.00000001182054, y: -0.43792963, z: -0.0000000013301683, w: 0.8990093} + inSlope: {x: -0.00000002186162, y: 0.05978357, z: 0.000000037359932, w: 0.029105406} + outSlope: {x: -0.00000002186162, y: 0.05978357, z: 0.000000037359932, w: 0.029105406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.000000016212987, y: -0.43374056, z: 8.760552e-10, w: 0.9010378} + inSlope: {x: 0.000000011543033, y: 0.0637054, z: -0.000000025019638, w: 0.030661615} + outSlope: {x: 0.000000011543033, y: 0.0637054, z: -0.000000025019638, w: 0.030661615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.000000010282431, y: -0.4294409, z: -0.000000004664035, w: 0.90309495} + inSlope: {x: 0.000000012096535, y: 0.06308654, z: -0.000000007908422, w: 0.030007642} + outSlope: {x: 0.000000012096535, y: 0.06308654, z: -0.000000007908422, w: 0.030007642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.000000014601123, y: -0.42533427, z: -1.7774239e-10, w: 0.90503633} + inSlope: {x: -0.000000057213608, y: 0.05788584, z: -0.0000000099108455, w: 0.027224004} + outSlope: {x: -0.000000057213608, y: 0.05788584, z: -0.0000000099108455, w: 0.027224004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.000000017906144, y: -0.4217276, z: -0.0000000059846554, w: 0.90672255} + inSlope: {x: -0.00000004960632, y: 0.05413399, z: -0.00000008715817, w: 0.02530905} + outSlope: {x: -0.00000004960632, y: 0.05413399, z: -0.00000008715817, w: 0.02530905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.040782712, y: 0.72687155, z: 0.0328548, w: 0.68477374} + inSlope: {x: 0.036443487, y: -0.15181315, z: 0.009426983, w: 0.16042216} + outSlope: {x: 0.036443487, y: -0.15181315, z: 0.009426983, w: 0.16042216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.038354665, y: 0.716757, z: 0.033482872, w: 0.69546187} + inSlope: {x: 0.038951665, y: -0.16396043, z: 0.008878939, w: 0.17034002} + outSlope: {x: 0.038951665, y: -0.16396043, z: 0.008878939, w: 0.17034002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.035592403, y: 0.7050238, z: 0.034037918, w: 0.70747155} + inSlope: {x: 0.042340912, y: -0.18210483, z: 0.007162622, w: 0.18310547} + outSlope: {x: 0.042340912, y: -0.18210483, z: 0.007162622, w: 0.18310547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.03271274, y: 0.69249153, z: 0.03443729, w: 0.7198607} + inSlope: {x: 0.042495973, y: -0.18748647, z: 0.0045860074, w: 0.18214867} + outSlope: {x: 0.042495973, y: -0.18748647, z: 0.0045860074, w: 0.18214867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.029929815, y: 0.68004125, z: 0.034649003, w: 0.73174286} + inSlope: {x: 0.039508864, y: -0.17920443, z: 0.0019072928, w: 0.16835529} + outSlope: {x: 0.039508864, y: -0.17920443, z: 0.0019072928, w: 0.16835529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.027448183, y: 0.66861254, z: 0.034691438, w: 0.742294} + inSlope: {x: 0.03355919, y: -0.15644777, z: -0.00019019251, w: 0.1425931} + outSlope: {x: 0.03355919, y: -0.15644777, z: -0.00019019251, w: 0.1425931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.025458053, y: 0.6591946, z: 0.03462366, w: 0.7507434} + inSlope: {x: 0.024851112, y: -0.11864075, z: -0.0012310653, w: 0.105522364} + outSlope: {x: 0.024851112, y: -0.11864075, z: -0.0012310653, w: 0.105522364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.024136772, y: 0.65280366, z: 0.0345274, w: 0.75635487} + inSlope: {x: 0.013517171, y: -0.065599106, z: -0.0010620642, w: 0.057416383} + outSlope: {x: 0.013517171, y: -0.065599106, z: -0.0010620642, w: 0.057416383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.02365689, y: 0.6504535, z: 0.03448214, w: 0.7583941} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.024136772, y: 0.65280366, z: 0.0345274, w: 0.75635487} + inSlope: {x: -0.013517171, y: 0.065599106, z: 0.0010620642, w: -0.057416383} + outSlope: {x: -0.013517171, y: 0.065599106, z: 0.0010620642, w: -0.057416383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.025458053, y: 0.6591946, z: 0.03462366, w: 0.7507434} + inSlope: {x: -0.024851112, y: 0.11864075, z: 0.0012310653, w: -0.105522364} + outSlope: {x: -0.024851112, y: 0.11864075, z: 0.0012310653, w: -0.105522364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.027448183, y: 0.66861254, z: 0.034691438, w: 0.742294} + inSlope: {x: -0.03355919, y: 0.15644777, z: 0.00019019251, w: -0.1425931} + outSlope: {x: -0.03355919, y: 0.15644777, z: 0.00019019251, w: -0.1425931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.029929815, y: 0.68004125, z: 0.034649003, w: 0.73174286} + inSlope: {x: -0.039508864, y: 0.17920443, z: -0.0019072928, w: -0.16835529} + outSlope: {x: -0.039508864, y: 0.17920443, z: -0.0019072928, w: -0.16835529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.03271274, y: 0.69249153, z: 0.03443729, w: 0.7198607} + inSlope: {x: -0.042495973, y: 0.18748647, z: -0.0045860074, w: -0.18214867} + outSlope: {x: -0.042495973, y: 0.18748647, z: -0.0045860074, w: -0.18214867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.035592403, y: 0.7050238, z: 0.034037918, w: 0.70747155} + inSlope: {x: -0.042340912, y: 0.18210483, z: -0.007162622, w: -0.18310547} + outSlope: {x: -0.042340912, y: 0.18210483, z: -0.007162622, w: -0.18310547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.038354665, y: 0.716757, z: 0.033482872, w: 0.69546187} + inSlope: {x: -0.038951665, y: 0.16396043, z: -0.008878939, w: -0.17034002} + outSlope: {x: -0.038951665, y: 0.16396043, z: -0.008878939, w: -0.17034002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.040782712, y: 0.72687155, z: 0.0328548, w: 0.68477374} + inSlope: {x: -0.036443487, y: 0.15181315, z: -0.009426983, w: -0.16042216} + outSlope: {x: -0.036443487, y: 0.15181315, z: -0.009426983, w: -0.16042216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14787011, y: 0.009267123, z: 0.0013856479, w: 0.9889624} + inSlope: {x: 0.00007649077, y: -0.07484476, z: -0.011190892, w: 0.0005126223} + outSlope: {x: 0.00007649077, y: -0.07484476, z: -0.011190892, w: 0.0005126223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.1478752, y: 0.0042805914, z: 0.00064005476, w: 0.98899657} + inSlope: {x: -0.0000071570284, y: -0.14399181, z: -0.021529747, w: -0.00004741535} + outSlope: {x: -0.0000071570284, y: -0.14399181, z: -0.021529747, w: -0.00004741535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.14786915, y: -0.009919785, z: -0.001483191, w: 0.9889561} + inSlope: {x: -0.0005406913, y: -0.26602623, z: -0.03977632, w: -0.0036169842} + outSlope: {x: -0.0005406913, y: -0.26602623, z: -0.03977632, w: -0.0036169842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.14780316, y: -0.031167405, z: -0.0046601403, w: 0.9885146} + inSlope: {x: -0.001738152, y: -0.3474043, z: -0.051944006, w: -0.0116248075} + outSlope: {x: -0.001738152, y: -0.3474043, z: -0.051944006, w: -0.0116248075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.14763755, y: -0.05621141, z: -0.00840473, w: 0.9874071} + inSlope: {x: -0.0031974036, y: -0.37562352, z: -0.056163404, w: -0.021383867} + outSlope: {x: -0.0031974036, y: -0.37562352, z: -0.056163404, w: -0.021383867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.1473771, y: -0.08121924, z: -0.012143914, w: 0.9856652} + inSlope: {x: -0.0041681873, y: -0.34647787, z: -0.05180552, w: -0.027876634} + outSlope: {x: -0.0041681873, y: -0.34647787, z: -0.05180552, w: -0.027876634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.14708214, y: -0.10237958, z: -0.015307815, w: 0.9836925} + inSlope: {x: -0.003976849, y: -0.2647164, z: -0.03958053, w: -0.026596867} + outSlope: {x: -0.003976849, y: -0.2647164, z: -0.03958053, w: -0.026596867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.14684719, y: -0.116492696, z: -0.01741802, w: 0.98212117} + inSlope: {x: -0.002436298, y: -0.14306502, z: -0.021391183, w: -0.016294323} + outSlope: {x: -0.002436298, y: -0.14306502, z: -0.021391183, w: -0.016294323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.1467575, y: -0.121442996, z: -0.01815819, w: 0.9815213} + inSlope: {x: -0.0013461927, y: -0.07430094, z: -0.011109501, w: -0.009003544} + outSlope: {x: -0.0013461927, y: -0.07430094, z: -0.011109501, w: -0.009003544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000005809453, y: -0.17026491, z: 0.000000013409901, w: 0.98539835} + inSlope: {x: -0.000000013181275, y: 0.068795614, z: 0.000000009844683, w: 0.011722322} + outSlope: {x: -0.000000013181275, y: 0.068795614, z: 0.000000009844683, w: 0.011722322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.0000000049312505, y: -0.1656814, z: 0.000000014065803, w: 0.98617935} + inSlope: {x: -0.00000000713051, y: 0.13249844, z: 0.000000058613406, w: 0.021675067} + outSlope: {x: -0.00000000713051, y: 0.13249844, z: 0.000000058613406, w: 0.021675067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.0000000048593125, y: -0.1526095, z: 0.000000021220137, w: 0.98828655} + inSlope: {x: -0.000000029513886, y: 0.24528687, z: 0.000000033555363, w: 0.0370515} + outSlope: {x: -0.000000029513886, y: 0.24528687, z: 0.000000033555363, w: 0.0370515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 9.98525e-10, y: -0.13299693, z: 0.000000018537055, w: 0.99111646} + inSlope: {x: -0.000000035569133, y: 0.32130393, z: 0.0000000010006254, w: 0.042533785} + outSlope: {x: -0.000000035569133, y: 0.32130393, z: 0.0000000010006254, w: 0.042533785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 1.1972554e-10, y: -0.10979575, z: 0.00000002135347, w: 0.9939542} + inSlope: {x: 0.000000009320222, y: 0.34868544, z: -0.0000000057884453, w: 0.0385169} + outSlope: {x: 0.000000009320222, y: 0.34868544, z: -0.0000000057884453, w: 0.0385169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.0000000022404445, y: -0.0865346, z: 0.000000017765744, w: 0.99624884} + inSlope: {x: 0.000000005090463, y: 0.32284057, z: -0.000000025465573, w: 0.028620966} + outSlope: {x: 0.000000005090463, y: 0.32284057, z: -0.000000025465573, w: 0.028620966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 7.980297e-10, y: -0.066777244, z: 0.000000017960183, w: 0.9977679} + inSlope: {x: -0.000000009027836, y: 0.24745873, z: 0.000000044079528, w: 0.01737906} + outSlope: {x: -0.000000009027836, y: 0.24745873, z: 0.000000044079528, w: 0.01737906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.0000000010374854, y: -0.053560723, z: 0.000000023639341, w: 0.9985646} + inSlope: {x: -0.0000000055110903, y: 0.13403293, z: 0.000000024681217, w: 0.0077667204} + outSlope: {x: -0.0000000055110903, y: 0.13403293, z: 0.000000024681217, w: 0.0077667204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 6.367691e-11, y: -0.048917357, z: 0.000000021248955, w: 0.99880284} + inSlope: {x: -0.0000000017723338, y: 0.013689132, z: -0.000000006887812, w: 0.0007215182} + outSlope: {x: -0.0000000017723338, y: 0.013689132, z: -0.000000006887812, w: 0.0007215182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 8.013219e-10, y: -0.051736645, z: 0.00000002272154, w: 0.99866074} + inSlope: {x: 0.0000000038893035, y: -0.08139185, z: 0.000000015015674, w: -0.004429755} + outSlope: {x: 0.0000000038893035, y: -0.08139185, z: 0.000000015015674, w: -0.004429755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 5.8192656e-10, y: -0.05976282, z: 0.000000023249793, w: 0.9982126} + inSlope: {x: 0.000000007677704, y: -0.1503251, z: -0.0000000020262867, w: -0.009301009} + outSlope: {x: 0.000000007677704, y: -0.1503251, z: -0.0000000020262867, w: -0.009301009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.0000000018243759, y: -0.071767464, z: 0.000000022451538, w: 0.9974214} + inSlope: {x: -0.0000000018194681, y: -0.19625942, z: -0.000000020209768, w: -0.014334191} + outSlope: {x: -0.0000000018194681, y: -0.19625942, z: -0.000000020209768, w: -0.014334191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 3.3948244e-10, y: -0.08591439, z: 0.000000020556842, w: 0.99630255} + inSlope: {x: -0.000000003204959, y: -0.21220669, z: -0.000000036220868, w: -0.018299185} + outSlope: {x: -0.000000003204959, y: -0.21220669, z: -0.000000036220868, w: -0.018299185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.000000001397315, y: -0.100044005, z: 0.000000017625107, w: 0.994983} + inSlope: {x: 0.00000002963144, y: -0.19581518, z: -0.000000034329705, w: -0.019475622} + outSlope: {x: 0.00000002963144, y: -0.19581518, z: -0.000000034329705, w: -0.019475622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.000000004287872, y: -0.11200676, z: 0.000000015982408, w: 0.9937074} + inSlope: {x: 0.000000018960646, y: -0.14969678, z: -0.0000000013376598, w: -0.016570762} + outSlope: {x: 0.000000018960646, y: -0.14969678, z: -0.0000000013376598, w: -0.016570762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.0000000039238213, y: -0.1199911, z: 0.000000017446864, w: 0.99277496} + inSlope: {x: 0.0000000042696184, y: -0.080947354, z: 0.000000036061284, w: -0.009569397} + outSlope: {x: 0.0000000042696184, y: -0.080947354, z: 0.000000036061284, w: -0.009569397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.0000000048567985, y: -0.122793, z: 0.000000020787574, w: 0.9924323} + inSlope: {x: 0.000000014003411, y: -0.042054713, z: 0.000000050142003, w: -0.005143221} + outSlope: {x: 0.000000014003411, y: -0.042054713, z: 0.000000050142003, w: -0.005143221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.28666702, y: -0.24860546, z: 0.07729798, w: 0.9219774} + inSlope: {x: 0.0038352737, y: -0.045445804, z: 0.014130327, w: -0.012333353} + outSlope: {x: 0.0038352737, y: -0.045445804, z: 0.014130327, w: -0.012333353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.2864115, y: -0.2516333, z: 0.07823941, w: 0.9211557} + inSlope: {x: 0.007505265, y: -0.08731846, z: 0.027149525, w: -0.02413798} + outSlope: {x: 0.007505265, y: -0.08731846, z: 0.027149525, w: -0.02413798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.28566694, y: -0.26024064, z: 0.08091565, w: 0.918761} + inSlope: {x: 0.014300418, y: -0.1609482, z: 0.050042965, w: -0.045993313} + outSlope: {x: 0.014300418, y: -0.1609482, z: 0.050042965, w: -0.045993313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.28450596, y: -0.27307963, z: 0.084907636, w: 0.9150271} + inSlope: {x: 0.019528404, y: -0.20949054, z: 0.06513608, w: -0.062806524} + outSlope: {x: 0.019528404, y: -0.20949054, z: 0.06513608, w: -0.062806524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.28306478, y: -0.28815526, z: 0.089595035, w: 0.91039205} + inSlope: {x: 0.022210725, y: -0.22568488, z: 0.070171446, w: -0.071433425} + outSlope: {x: 0.022210725, y: -0.22568488, z: 0.070171446, w: -0.071433425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.28154638, y: -0.30315214, z: 0.09425798, w: 0.9055086} + inSlope: {x: 0.021506652, y: -0.2074756, z: 0.06450945, w: -0.06917046} + outSlope: {x: 0.021506652, y: -0.2074756, z: 0.06450945, w: -0.06917046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.28019902, y: -0.31580138, z: 0.09819092, w: 0.9011751} + inSlope: {x: 0.017098146, y: -0.15809947, z: 0.049157336, w: -0.054991044} + outSlope: {x: 0.017098146, y: -0.15809947, z: 0.049157336, w: -0.054991044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.27926806, y: -0.3242189, z: 0.100808196, w: 0.898181} + inSlope: {x: 0.009483289, y: -0.08530375, z: 0.026523396, w: -0.030499686} + outSlope: {x: 0.009483289, y: -0.08530375, z: 0.026523396, w: -0.030499686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.27893537, y: -0.3271681, z: 0.10172516, w: 0.897111} + inSlope: {x: -0.004009503, y: 0.036023572, z: -0.011200642, w: 0.012895181} + outSlope: {x: -0.004009503, y: 0.036023572, z: -0.011200642, w: 0.012895181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.27980232, y: -0.31941876, z: 0.09931571, w: 0.8998993} + inSlope: {x: -0.024176672, y: 0.2247292, z: -0.06987426, w: 0.077756666} + outSlope: {x: -0.024176672, y: 0.2247292, z: -0.06987426, w: 0.077756666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.2821569, y: -0.29722294, z: 0.09241442, w: 0.9074721} + inSlope: {x: -0.041726828, y: 0.4183488, z: -0.13007574, w: 0.13420148} + outSlope: {x: -0.041726828, y: 0.4183488, z: -0.13007574, w: 0.13420148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.28536242, y: -0.26367378, z: 0.08198312, w: 0.91778165} + inSlope: {x: -0.04871142, y: 0.5521751, z: -0.1716857, w: 0.15666606} + outSlope: {x: -0.04871142, y: 0.5521751, z: -0.1716857, w: 0.15666606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.2886477, y: -0.22364561, z: 0.0695373, w: 0.9283478} + inSlope: {x: -0.045238696, y: 0.6039525, z: -0.18778476, w: 0.1454966} + outSlope: {x: -0.045238696, y: 0.6039525, z: -0.18778476, w: 0.1454966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.29139048, y: -0.18319711, z: 0.0569608, w: 0.9371691} + inSlope: {x: -0.0348156, y: 0.5629405, z: -0.17503297, w: 0.11197353} + outSlope: {x: -0.0348156, y: 0.5629405, z: -0.17503297, w: 0.11197353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.2932869, y: -0.1486338, z: 0.046214152, w: 0.9432683} + inSlope: {x: -0.022085253, y: 0.43356568, z: -0.13480681, w: 0.0710304} + outSlope: {x: -0.022085253, y: 0.43356568, z: -0.13480681, w: 0.0710304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.29433334, y: -0.12542449, z: 0.03899779, w: 0.9466339} + inSlope: {x: -0.010295165, y: 0.23548135, z: -0.07321729, w: 0.033111554} + outSlope: {x: -0.010295165, y: 0.23548135, z: -0.07321729, w: 0.033111554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.29465872, y: -0.117255904, z: 0.03645795, w: 0.9476804} + inSlope: {x: -0.0048837787, y: 0.12260541, z: -0.038121477, w: 0.015707893} + outSlope: {x: -0.0048837787, y: 0.12260541, z: -0.038121477, w: 0.015707893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.635687, y: -0.07799763, z: 0.7678186, w: -0.01652147} + inSlope: {x: 0.038063772, y: 0.0061106505, z: -0.030378016, w: 0.030670868} + outSlope: {x: 0.038063772, y: 0.0061106505, z: -0.030378016, w: 0.030670868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.638223, y: -0.07759051, z: 0.7657947, w: -0.014478024} + inSlope: {x: 0.040655065, y: 0.0065517025, z: -0.032619957, w: 0.03283299} + outSlope: {x: 0.040655065, y: 0.0065517025, z: -0.032619957, w: 0.03283299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.6411043, y: -0.07712462, z: 0.763472, w: -0.012146475} + inSlope: {x: 0.0442139, y: 0.007177216, z: -0.035841517, w: 0.035861142} + outSlope: {x: 0.0442139, y: 0.007177216, z: -0.035841517, w: 0.035861142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.6441145, y: -0.076634146, z: 0.7610188, w: -0.009699527} + inSlope: {x: 0.044552065, y: 0.0072870315, z: -0.03650667, w: 0.03629636} + outSlope: {x: 0.044552065, y: 0.0072870315, z: -0.03650667, w: 0.03629636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.64704084, y: -0.07615362, z: 0.7586075, w: -0.007309985} + inSlope: {x: 0.041720122, y: 0.006874943, z: -0.034546986, w: 0.034138117} + outSlope: {x: 0.041720122, y: 0.006874943, z: -0.034546986, w: 0.034138117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.6496737, y: -0.07571806, z: 0.7564154, w: -0.005150623} + inSlope: {x: 0.035769947, y: 0.005934129, z: -0.029900284, w: 0.029386183} + outSlope: {x: 0.035769947, y: 0.005934129, z: -0.029900284, w: 0.029386183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.6518072, y: -0.0753629, z: 0.7546233, w: -0.003394276} + inSlope: {x: 0.026742246, y: 0.0044604517, z: -0.02252407, w: 0.022040252} + outSlope: {x: 0.026742246, y: 0.0044604517, z: -0.02252407, w: 0.022040252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.6532371, y: -0.075123705, z: 0.7534141, w: -0.0022137596} + inSlope: {x: 0.014651784, y: 0.002452569, z: -0.012401792, w: 0.012100747} + outSlope: {x: 0.014651784, y: 0.002452569, z: -0.012401792, w: 0.012100747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.65375954, y: -0.07503609, z: 0.75297076, w: -0.0017818514} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.6532371, y: -0.075123705, z: 0.7534141, w: -0.0022137596} + inSlope: {x: -0.014651784, y: -0.002452569, z: 0.012401792, w: -0.012100747} + outSlope: {x: -0.014651784, y: -0.002452569, z: 0.012401792, w: -0.012100747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.6518072, y: -0.0753629, z: 0.7546233, w: -0.003394276} + inSlope: {x: -0.026742246, y: -0.0044604517, z: 0.02252407, w: -0.022040252} + outSlope: {x: -0.026742246, y: -0.0044604517, z: 0.02252407, w: -0.022040252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.6496737, y: -0.07571806, z: 0.7564154, w: -0.005150623} + inSlope: {x: -0.035769947, y: -0.005934129, z: 0.029900284, w: -0.029386183} + outSlope: {x: -0.035769947, y: -0.005934129, z: 0.029900284, w: -0.029386183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.64704084, y: -0.07615362, z: 0.7586075, w: -0.007309985} + inSlope: {x: -0.041720122, y: -0.006874943, z: 0.034546986, w: -0.034138117} + outSlope: {x: -0.041720122, y: -0.006874943, z: 0.034546986, w: -0.034138117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.6441145, y: -0.076634146, z: 0.7610188, w: -0.009699527} + inSlope: {x: -0.044552065, y: -0.0072870315, z: 0.03650667, w: -0.03629636} + outSlope: {x: -0.044552065, y: -0.0072870315, z: 0.03650667, w: -0.03629636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.6411043, y: -0.07712462, z: 0.763472, w: -0.012146475} + inSlope: {x: -0.0442139, y: -0.007177216, z: 0.035841517, w: -0.035861142} + outSlope: {x: -0.0442139, y: -0.007177216, z: 0.035841517, w: -0.035861142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.638223, y: -0.07759051, z: 0.7657947, w: -0.014478024} + inSlope: {x: -0.040655065, y: -0.0065517025, z: 0.032619957, w: -0.03283299} + outSlope: {x: -0.040655065, y: -0.0065517025, z: 0.032619957, w: -0.03283299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.635687, y: -0.07799763, z: 0.7678186, w: -0.01652147} + inSlope: {x: -0.038063772, y: -0.0061106505, z: 0.030378016, w: -0.030670868} + outSlope: {x: -0.038063772, y: -0.0061106505, z: 0.030378016, w: -0.030670868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000030931677, y: 0.7263575, z: 0.000000013632108, w: 0.6873171} + inSlope: {x: -0.00000011949945, y: -0.341733, z: -0.000000031285158, w: 0.349561} + outSlope: {x: -0.00000011949945, y: -0.341733, z: -0.000000031285158, w: 0.349561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.000000022970026, y: 0.70358956, z: 0.000000011547734, w: 0.7106066} + inSlope: {x: 0.00000001568636, y: -0.37262857, z: 0.00000001763429, w: 0.3672599} + outSlope: {x: 0.00000001568636, y: -0.37262857, z: 0.00000001763429, w: 0.3672599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.000000033021884, y: 0.67670476, z: 0.000000015981877, w: 0.73625445} + inSlope: {x: -0.0000000028967762, y: -0.42102262, z: 0.00000009432276, w: 0.38625777} + outSlope: {x: -0.0000000028967762, y: -0.42102262, z: 0.00000009432276, w: 0.38625777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.00000002258403, y: 0.6474883, z: 0.000000024116241, w: 0.7620754} + inSlope: {x: -0.0000000404123, y: -0.44049108, z: -0.000000012479674, w: 0.37460613} + outSlope: {x: -0.0000000404123, y: -0.44049108, z: -0.000000012479674, w: 0.37460613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.000000027636945, y: 0.6180093, z: 0.00000001431896, w: 0.7861707} + inSlope: {x: 0.000000036410743, y: -0.4269325, z: -0.00000008318151, w: 0.33688098} + outSlope: {x: 0.000000036410743, y: -0.4269325, z: -0.00000008318151, w: 0.33688098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.000000027435762, y: 0.59059954, z: 0.000000013032305, w: 0.8069648} + inSlope: {x: -0.00000007031077, y: -0.37688297, z: -0.0000000051241993, w: 0.27769548} + outSlope: {x: -0.00000007031077, y: -0.37688297, z: -0.0000000051241993, w: 0.27769548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.000000018268036, y: 0.5677897, z: 0.000000013636161, w: 0.82317364} + inSlope: {x: -0.00000004498353, y: -0.28812146, z: 0.000000008684732, w: 0.2006903} + outSlope: {x: -0.00000004498353, y: -0.28812146, z: 0.000000008684732, w: 0.2006903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.000000021441707, y: 0.55220735, z: 0.0000000141895455, w: 0.8337068} + inSlope: {x: 0.000000024185141, y: -0.16009249, z: -0.000000022549374, w: 0.10741674} + outSlope: {x: 0.000000024185141, y: -0.16009249, z: -0.000000022549374, w: 0.10741674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.000000021490706, y: 0.54645735, z: 0.000000010631457, w: 0.8374869} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.000000021441707, y: 0.55220735, z: 0.0000000141895455, w: 0.8337068} + inSlope: {x: -0.000000024185141, y: 0.16009249, z: 0.000000022549374, w: -0.10741674} + outSlope: {x: -0.000000024185141, y: 0.16009249, z: 0.000000022549374, w: -0.10741674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.000000018268036, y: 0.5677897, z: 0.000000013636161, w: 0.82317364} + inSlope: {x: 0.00000004498353, y: 0.28812146, z: -0.000000008684732, w: -0.2006903} + outSlope: {x: 0.00000004498353, y: 0.28812146, z: -0.000000008684732, w: -0.2006903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.000000027435762, y: 0.59059954, z: 0.000000013032305, w: 0.8069648} + inSlope: {x: 0.00000007031077, y: 0.37688297, z: 0.0000000051241993, w: -0.27769548} + outSlope: {x: 0.00000007031077, y: 0.37688297, z: 0.0000000051241993, w: -0.27769548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.000000027636945, y: 0.6180093, z: 0.00000001431896, w: 0.7861707} + inSlope: {x: -0.000000036410743, y: 0.4269325, z: 0.00000008318151, w: -0.33688098} + outSlope: {x: -0.000000036410743, y: 0.4269325, z: 0.00000008318151, w: -0.33688098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.00000002258403, y: 0.6474883, z: 0.000000024116241, w: 0.7620754} + inSlope: {x: 0.0000000404123, y: 0.44049108, z: 0.000000012479674, w: -0.37460613} + outSlope: {x: 0.0000000404123, y: 0.44049108, z: 0.000000012479674, w: -0.37460613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.000000033021884, y: 0.67670476, z: 0.000000015981877, w: 0.73625445} + inSlope: {x: 0.0000000028967762, y: 0.42102262, z: -0.00000009432276, w: -0.38625777} + outSlope: {x: 0.0000000028967762, y: 0.42102262, z: -0.00000009432276, w: -0.38625777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.000000022970026, y: 0.70358956, z: 0.000000011547734, w: 0.7106066} + inSlope: {x: -0.00000001568636, y: 0.37262857, z: -0.00000001763429, w: -0.3672599} + outSlope: {x: -0.00000001568636, y: 0.37262857, z: -0.00000001763429, w: -0.3672599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.000000030931677, y: 0.7263575, z: 0.000000013632108, w: 0.6873171} + inSlope: {x: 0.00000011949945, y: 0.341733, z: 0.000000031285158, w: -0.349561} + outSlope: {x: 0.00000011949945, y: 0.341733, z: 0.000000031285158, w: -0.349561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000001304581, y: -0.4542921, z: -0.0000000106428875, w: 0.8908528} + inSlope: {x: 0.00000007079933, y: 0.30186298, z: 0.000000021882023, w: 0.1496902} + outSlope: {x: 0.00000007079933, y: 0.30186298, z: 0.000000021882023, w: 0.1496902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.000000008328804, y: -0.43418047, z: -0.000000009184998, w: 0.9008259} + inSlope: {x: -0.0000000017448372, y: 0.32512176, z: -0.000000034139713, w: 0.15606934} + outSlope: {x: -0.0000000017448372, y: 0.32512176, z: -0.000000034139713, w: 0.15606934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.000000013278309, y: -0.41096961, z: -0.000000015192004, w: 0.91164905} + inSlope: {x: 0.000000012510636, y: 0.35915366, z: -0.000000035924707, w: 0.1616326} + outSlope: {x: 0.000000012510636, y: 0.35915366, z: -0.000000035924707, w: 0.1616326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.000000006661762, y: -0.38632324, z: -0.000000013971965, w: 0.92236346} + inSlope: {x: 0.000000010117535, y: 0.36759627, z: 0.000000026341253, w: 0.15410072} + outSlope: {x: 0.000000010117535, y: 0.36759627, z: 0.000000026341253, w: 0.15410072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.0000000119301475, y: -0.3619874, z: -0.000000011682032, w: 0.93218297} + inSlope: {x: -0.00000009653246, y: 0.34927696, z: -0.000000031254924, w: 0.13614058} + outSlope: {x: -0.00000009653246, y: 0.34927696, z: -0.000000031254924, w: 0.13614058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.000000019524713, y: -0.3397821, z: -0.000000018136683, w: 0.9405042} + inSlope: {x: 0.000000046959602, y: 0.3032416, z: 0.000000017810404, w: 0.11031355} + outSlope: {x: 0.000000046959602, y: 0.3032416, z: 0.000000017810404, w: 0.11031355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.0000000056727805, y: -0.32158047, z: -0.0000000093087955, w: 0.94688225} + inSlope: {x: 0.00000009592679, y: 0.2289156, z: 0.000000023119458, w: 0.07855244} + outSlope: {x: 0.00000009592679, y: 0.2289156, z: 0.000000023119458, w: 0.07855244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.0000000067424684, y: -0.30927908, z: -0.000000015056015, w: 0.9509713} + inSlope: {x: -0.000000051452314, y: 0.12619232, z: -0.000000012584739, w: 0.041615} + outSlope: {x: -0.000000051452314, y: 0.12619232, z: -0.000000012584739, w: 0.041615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.000000012528801, y: -0.30476534, z: -0.000000010985712, w: 0.95242745} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.0000000067424684, y: -0.30927908, z: -0.000000015056015, w: 0.9509713} + inSlope: {x: 0.000000051452314, y: -0.12619232, z: 0.000000012584739, w: -0.041615} + outSlope: {x: 0.000000051452314, y: -0.12619232, z: 0.000000012584739, w: -0.041615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.0000000056727805, y: -0.32158047, z: -0.0000000093087955, w: 0.94688225} + inSlope: {x: -0.00000009592679, y: -0.2289156, z: -0.000000023119458, w: -0.07855244} + outSlope: {x: -0.00000009592679, y: -0.2289156, z: -0.000000023119458, w: -0.07855244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.000000019524713, y: -0.3397821, z: -0.000000018136683, w: 0.9405042} + inSlope: {x: -0.000000046959602, y: -0.3032416, z: -0.000000017810404, w: -0.11031355} + outSlope: {x: -0.000000046959602, y: -0.3032416, z: -0.000000017810404, w: -0.11031355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.0000000119301475, y: -0.3619874, z: -0.000000011682032, w: 0.93218297} + inSlope: {x: 0.00000009653246, y: -0.34927696, z: 0.000000031254924, w: -0.13614058} + outSlope: {x: 0.00000009653246, y: -0.34927696, z: 0.000000031254924, w: -0.13614058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.000000006661762, y: -0.38632324, z: -0.000000013971965, w: 0.92236346} + inSlope: {x: -0.000000010117535, y: -0.36759627, z: -0.000000026341253, w: -0.15410072} + outSlope: {x: -0.000000010117535, y: -0.36759627, z: -0.000000026341253, w: -0.15410072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.000000013278309, y: -0.41096961, z: -0.000000015192004, w: 0.91164905} + inSlope: {x: -0.000000012510636, y: -0.35915366, z: 0.000000035924707, w: -0.1616326} + outSlope: {x: -0.000000012510636, y: -0.35915366, z: 0.000000035924707, w: -0.1616326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.000000008328804, y: -0.43418047, z: -0.000000009184998, w: 0.9008259} + inSlope: {x: 0.0000000017448372, y: -0.32512176, z: 0.000000034139713, w: -0.15606934} + outSlope: {x: 0.0000000017448372, y: -0.32512176, z: 0.000000034139713, w: -0.15606934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.00000001304581, y: -0.4542921, z: -0.0000000106428875, w: 0.8908528} + inSlope: {x: -0.00000007079933, y: -0.30186298, z: -0.000000021882023, w: -0.1496902} + outSlope: {x: -0.00000007079933, y: -0.30186298, z: -0.000000021882023, w: -0.1496902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.047084, y: 0.47044763, z: -0.04698835, w: 0.87991714} + inSlope: {x: -0.037797846, y: 0.021542663, z: 0.011001698, w: -0.008986547} + outSlope: {x: -0.037797846, y: 0.021542663, z: 0.011001698, w: -0.008986547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.04456572, y: 0.4718829, z: -0.04625536, w: 0.8793184} + inSlope: {x: -0.039960247, y: 0.023022827, z: 0.012575882, w: -0.009679437} + outSlope: {x: -0.039960247, y: 0.023022827, z: 0.012575882, w: -0.009679437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.041759297, y: 0.47351542, z: -0.045312613, w: 0.87862736} + inSlope: {x: -0.042559646, y: 0.025066828, z: 0.01539139, w: -0.010697077} + outSlope: {x: -0.042559646, y: 0.025066828, z: 0.01539139, w: -0.010697077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.038894646, y: 0.47522306, z: -0.04420446, w: 0.87789303} + inSlope: {x: -0.04186399, y: 0.025286907, z: 0.01729267, w: -0.010959203} + outSlope: {x: -0.04186399, y: 0.025286907, z: 0.01729267, w: -0.010959203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.03618092, y: 0.4768849, z: -0.043008365, w: 0.87716705} + inSlope: {x: -0.038210884, y: 0.023707666, z: 0.017792042, w: -0.010430478} + outSlope: {x: -0.038210884, y: 0.023707666, z: 0.017792042, w: -0.010430478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.033803046, y: 0.4783821, z: -0.04183367, w: 0.87650317} + inSlope: {x: -0.03195368, y: 0.020346768, z: 0.01646461, w: -0.00907243} + outSlope: {x: -0.03195368, y: 0.020346768, z: 0.01646461, w: -0.00907243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.031923093, y: 0.4795961, z: -0.040814456, w: 0.87595814} + inSlope: {x: -0.023380803, y: 0.0152245695, z: 0.013025236, w: -0.006861356} + outSlope: {x: -0.023380803, y: 0.0152245695, z: 0.013025236, w: -0.006861356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.030687554, y: 0.48041078, z: -0.040098056, w: 0.8755889} + inSlope: {x: -0.01262169, y: 0.008347781, z: 0.0073897457, w: -0.0037887532} + outSlope: {x: -0.01262169, y: 0.008347781, z: 0.0073897457, w: -0.0037887532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.030241253, y: 0.48070845, z: -0.039829772, w: 0.8754533} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.030687554, y: 0.48041078, z: -0.040098056, w: 0.8755889} + inSlope: {x: 0.01262169, y: -0.008347781, z: -0.0073897457, w: 0.0037887532} + outSlope: {x: 0.01262169, y: -0.008347781, z: -0.0073897457, w: 0.0037887532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.031923093, y: 0.4795961, z: -0.040814456, w: 0.87595814} + inSlope: {x: 0.023380803, y: -0.0152245695, z: -0.013025236, w: 0.006861356} + outSlope: {x: 0.023380803, y: -0.0152245695, z: -0.013025236, w: 0.006861356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.033803046, y: 0.4783821, z: -0.04183367, w: 0.87650317} + inSlope: {x: 0.03195368, y: -0.020346768, z: -0.01646461, w: 0.00907243} + outSlope: {x: 0.03195368, y: -0.020346768, z: -0.01646461, w: 0.00907243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.03618092, y: 0.4768849, z: -0.043008365, w: 0.87716705} + inSlope: {x: 0.038210884, y: -0.023707666, z: -0.017792042, w: 0.010430478} + outSlope: {x: 0.038210884, y: -0.023707666, z: -0.017792042, w: 0.010430478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.038894646, y: 0.47522306, z: -0.04420446, w: 0.87789303} + inSlope: {x: 0.04186399, y: -0.025286907, z: -0.01729267, w: 0.010959203} + outSlope: {x: 0.04186399, y: -0.025286907, z: -0.01729267, w: 0.010959203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.041759297, y: 0.47351542, z: -0.045312613, w: 0.87862736} + inSlope: {x: 0.042559646, y: -0.025066828, z: -0.01539139, w: 0.010697077} + outSlope: {x: 0.042559646, y: -0.025066828, z: -0.01539139, w: 0.010697077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.04456572, y: 0.4718829, z: -0.04625536, w: 0.8793184} + inSlope: {x: 0.039960247, y: -0.023022827, z: -0.012575882, w: 0.009679437} + outSlope: {x: 0.039960247, y: -0.023022827, z: -0.012575882, w: 0.009679437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.047084, y: 0.47044763, z: -0.04698835, w: 0.87991714} + inSlope: {x: 0.037797846, y: -0.021542663, z: -0.011001698, w: 0.008986547} + outSlope: {x: 0.037797846, y: -0.021542663, z: -0.011001698, w: 0.008986547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.14694236, y: -0.110995404, z: 0.016596055, w: 0.9827576} + inSlope: {x: 0.000125919, y: -0.007449798, z: 0.0011138688, w: -0.000843635} + outSlope: {x: 0.000125919, y: -0.007449798, z: 0.0011138688, w: -0.000843635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.14693397, y: -0.11149175, z: 0.016670266, w: 0.9827014} + inSlope: {x: 0.00024401, y: -0.014329829, z: 0.0021426221, w: -0.0016326976} + outSlope: {x: 0.00024401, y: -0.014329829, z: 0.0021426221, w: -0.0016326976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.14690985, y: -0.112904854, z: 0.016881559, w: 0.9825401} + inSlope: {x: 0.0004562607, y: -0.026474193, z: 0.003958453, w: -0.003051579} + outSlope: {x: 0.0004562607, y: -0.026474193, z: 0.003958453, w: -0.003051579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.14687318, y: -0.11501943, z: 0.01719773, w: 0.9822948} + inSlope: {x: 0.00060655834, y: -0.03458277, z: 0.0051708845, w: -0.004056247} + outSlope: {x: 0.00060655834, y: -0.03458277, z: 0.0051708845, w: -0.004056247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.14682902, y: -0.11751301, z: 0.01757058, w: 0.9819996} + inSlope: {x: 0.00066962966, y: -0.03742154, z: 0.0055952743, w: -0.0044780644} + outSlope: {x: 0.00066962966, y: -0.03742154, z: 0.0055952743, w: -0.0044780644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.14678395, y: -0.12000585, z: 0.0179433, w: 0.9816981} + inSlope: {x: 0.0006307133, y: -0.03456298, z: 0.0051678233, w: -0.004218175} + outSlope: {x: 0.0006307133, y: -0.03456298, z: 0.0051678233, w: -0.004218175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.14674498, y: -0.122118525, z: 0.018259192, w: 0.9814375} + inSlope: {x: 0.0004905921, y: -0.02644696, z: 0.0039543714, w: -0.0032814986} + outSlope: {x: 0.0004905921, y: -0.02644696, z: 0.0039543714, w: -0.0032814986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.14671858, y: -0.12352991, z: 0.01847022, w: 0.98126084} + inSlope: {x: 0.0002682768, y: -0.014310314, z: 0.0021397145, w: -0.0017946254} + outSlope: {x: 0.0002682768, y: -0.014310314, z: 0.0021397145, w: -0.0017946254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.14670923, y: -0.124025375, z: 0.018544309, w: 0.9811984} + inSlope: {x: 0.0007622238, y: -0.03963329, z: 0.0059260074, w: -0.005097595} + outSlope: {x: 0.0007622238, y: -0.03963329, z: 0.0059260074, w: -0.005097595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.14661701, y: -0.12881105, z: 0.01925986, w: 0.9805816} + inSlope: {x: 0.0028064507, y: -0.13806248, z: 0.020643113, w: -0.01876976} + outSlope: {x: 0.0028064507, y: -0.13806248, z: 0.020643113, w: -0.01876976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.14633527, y: -0.1424222, z: 0.021295004, w: 0.9786973} + inSlope: {x: 0.0056745186, y: -0.2546297, z: 0.03807233, w: -0.037951946} + outSlope: {x: 0.0056745186, y: -0.2546297, z: 0.03807233, w: -0.037951946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.14586088, y: -0.16274045, z: 0.024332998, w: 0.9755245} + inSlope: {x: 0.008368023, y: -0.3316627, z: 0.049590424, w: -0.055965744} + outSlope: {x: 0.008368023, y: -0.3316627, z: 0.049590424, w: -0.055965744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.14522023, y: -0.18661626, z: 0.027902927, w: 0.97123986} + inSlope: {x: 0.0102712335, y: -0.3575186, z: 0.05345632, w: -0.06869407} + outSlope: {x: 0.0102712335, y: -0.3575186, z: 0.05345632, w: -0.06869407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.14449224, y: -0.21037981, z: 0.031456053, w: 0.966371} + inSlope: {x: 0.010606049, y: -0.32878616, z: 0.04916019, w: -0.07093422} + outSlope: {x: 0.010606049, y: -0.32878616, z: 0.04916019, w: -0.07093422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.14380698, y: -0.23042701, z: 0.034453522, w: 0.9617879} + inSlope: {x: 0.0088391565, y: -0.25056058, z: 0.037463926, w: -0.059116624} + outSlope: {x: 0.0088391565, y: -0.25056058, z: 0.037463926, w: -0.059116624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.14331442, y: -0.24376701, z: 0.03644812, w: 0.9584937} + inSlope: {x: 0.0050438056, y: -0.13518535, z: 0.020212937, w: -0.033732872} + outSlope: {x: 0.0050438056, y: -0.13518535, z: 0.020212937, w: -0.033732872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.14313489, y: -0.24844046, z: 0.037146896, w: 0.957293} + inSlope: {x: 0.002694622, y: -0.07014561, z: 0.010488181, w: -0.018022297} + outSlope: {x: 0.002694622, y: -0.07014561, z: 0.010488181, w: -0.018022297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000011997086, y: -0.3760267, z: -0.000000034179006, w: 0.9266088} + inSlope: {x: 0.0000000036837842, y: 0.03728008, z: 0.000000056282023, w: 0.015070917} + outSlope: {x: 0.0000000036837842, y: 0.03728008, z: 0.000000056282023, w: 0.015070917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.000000011751654, y: -0.3735429, z: -0.000000030429216, w: 0.9276129} + inSlope: {x: -0.000000024325864, y: 0.07183176, z: 0.000000073515324, w: 0.02871982} + outSlope: {x: -0.000000024325864, y: 0.07183176, z: 0.000000073515324, w: 0.02871982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.000000015238507, y: -0.3664551, z: -0.00000002438309, w: 0.9304357} + inSlope: {x: -0.0000000128888855, y: 0.1330964, z: 0.000000013390359, w: 0.052129574} + outSlope: {x: -0.0000000128888855, y: 0.1330964, z: 0.000000013390359, w: 0.052129574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.000000013469098, y: -0.3558078, z: -0.000000028644951, w: 0.93455917} + inSlope: {x: 0.000000013884445, y: 0.17460492, z: -0.00000002057384, w: 0.06627098} + outSlope: {x: 0.000000013884445, y: 0.17460492, z: -0.00000002057384, w: 0.06627098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.000000013388405, y: -0.343189, z: -0.000000027124553, w: 0.9392663} + inSlope: {x: -0.0000000062961956, y: 0.18986773, z: 0.00000001947399, w: 0.06937355} + outSlope: {x: -0.0000000062961956, y: 0.18986773, z: 0.00000001947399, w: 0.06937355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.000000014308066, y: -0.33050793, z: -0.000000026050042, w: 0.9438032} + inSlope: {x: -0.00000001594074, y: 0.17619962, z: 8.5862384e-10, w: 0.061906077} + outSlope: {x: -0.00000001594074, y: 0.17619962, z: 8.5862384e-10, w: 0.061906077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.000000015512509, y: -0.3197104, z: -0.000000027010142, w: 0.9475153} + inSlope: {x: 0.000000038067327, y: 0.13535063, z: -3.97411e-10, w: 0.045956187} + outSlope: {x: 0.000000038067327, y: 0.13535063, z: -3.97411e-10, w: 0.045956187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.0000000092355945, y: -0.31247246, z: -0.000000026102997, w: 0.94992685} + inSlope: {x: 0.000000029576775, y: 0.07342554, z: 0.000000008571078, w: 0.02435448} + outSlope: {x: 0.000000029576775, y: 0.07342554, z: 0.000000008571078, w: 0.02435448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.000000011571403, y: -0.30992645, z: -0.000000025868045, w: 0.95076054} + inSlope: {x: -0.0000000012748309, y: 0.035731472, z: 0.0000000053698237, w: 0.01165433} + outSlope: {x: -0.0000000012748309, y: 0.035731472, z: 0.0000000053698237, w: 0.01165433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.000000009405466, y: -0.30771124, z: -0.000000025387468, w: 0.9514798} + inSlope: {x: -0.000000014505829, y: 0.0640353, z: 0.0000000117083845, w: 0.020557228} + outSlope: {x: -0.000000014505829, y: 0.0640353, z: 0.0000000117083845, w: 0.020557228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.000000013504305, y: -0.30139375, z: -0.000000024307903, w: 0.9534998} + inSlope: {x: -0.000000023112001, y: 0.11855129, z: 0.0000000131861535, w: 0.037258606} + outSlope: {x: -0.000000023112001, y: 0.11855129, z: 0.0000000131861535, w: 0.037258606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.00000001248514, y: -0.29191428, z: -0.000000023630413, w: 0.9564445} + inSlope: {x: 0.00000001626227, y: 0.15533328, z: 0.00000002543631, w: 0.047257423} + outSlope: {x: 0.00000001626227, y: 0.15533328, z: 0.00000002543631, w: 0.047257423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.000000011337358, y: -0.2806956, z: -0.000000020918515, w: 0.95979685} + inSlope: {x: 0.000000014937143, y: 0.16867355, z: -0.000000053580763, w: 0.049328938} + outSlope: {x: 0.000000014937143, y: 0.16867355, z: -0.000000053580763, w: 0.049328938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.000000010494766, y: -0.26943853, z: -0.00000003077005, w: 0.9630176} + inSlope: {x: 0.0000000035347503, y: 0.15631828, z: -0.000000028892746, w: 0.04388602} + outSlope: {x: 0.0000000035347503, y: 0.15631828, z: -0.000000028892746, w: 0.04388602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.000000010866352, y: -0.25986618, z: -0.000000024768473, w: 0.96564466} + inSlope: {x: 0.000000003275955, y: 0.1199449, z: -0.0000000038048817, w: 0.032490686} + outSlope: {x: 0.000000003275955, y: 0.1199449, z: -0.0000000038048817, w: 0.032490686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.000000010058245, y: -0.25345588, z: -0.00000003127705, w: 0.96734697} + inSlope: {x: 0.00000001519041, y: 0.0650205, z: -0.000000020784094, w: 0.017185373} + outSlope: {x: 0.00000001519041, y: 0.0650205, z: -0.000000020784094, w: 0.017185373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.00000000884223, y: -0.2512022, z: -0.000000027537954, w: 0.9679346} + inSlope: {x: 0.00000001825163, y: 0.033826362, z: 0.000000056121518, w: 0.008820145} + outSlope: {x: 0.00000001825163, y: 0.033826362, z: 0.000000056121518, w: 0.008820145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25075516, y: -0.5113123, z: -0.15898046, w: 0.806478} + inSlope: {x: 0.009392708, y: 0.04785459, z: 0.0148796905, w: 0.030208036} + outSlope: {x: 0.009392708, y: 0.04785459, z: 0.0148796905, w: 0.030208036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.25138095, y: -0.508124, z: -0.1579891, w: 0.80849063} + inSlope: {x: 0.01790868, y: 0.092391, z: 0.028727204, w: 0.057597097} + outSlope: {x: 0.01790868, y: 0.092391, z: 0.028727204, w: 0.057597097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.2531415, y: -0.4990012, z: -0.15515256, w: 0.81415284} + inSlope: {x: 0.032536533, y: 0.1718081, z: 0.05341974, w: 0.10464384} + outSlope: {x: 0.032536533, y: 0.1718081, z: 0.05341974, w: 0.10464384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.25571644, y: -0.48523057, z: -0.15087092, w: 0.8224344} + inSlope: {x: 0.041419525, y: 0.22657101, z: 0.070446536, w: 0.13321425} + outSlope: {x: 0.041419525, y: 0.22657101, z: 0.070446536, w: 0.13321425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.25866064, y: -0.46881062, z: -0.14576556, w: 0.83190364} + inSlope: {x: 0.04342618, y: 0.24783857, z: 0.07705942, w: 0.13966677} + outSlope: {x: 0.04342618, y: 0.24783857, z: 0.07705942, w: 0.13966677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.26150298, y: -0.45220608, z: -0.14060275, w: 0.841045} + inSlope: {x: 0.038808554, y: 0.23130247, z: 0.0719181, w: 0.124815926} + outSlope: {x: 0.038808554, y: 0.23130247, z: 0.0719181, w: 0.124815926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.26383188, y: -0.43798956, z: -0.13618247, w: 0.84853536} + inSlope: {x: 0.028843952, y: 0.1784997, z: 0.055500202, w: 0.092768535} + outSlope: {x: 0.028843952, y: 0.1784997, z: 0.055500202, w: 0.092768535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.26534644, y: -0.428421, z: -0.13320735, w: 0.8534064} + inSlope: {x: 0.015297929, y: 0.09712158, z: 0.030197637, w: 0.049200557} + outSlope: {x: 0.015297929, y: 0.09712158, z: 0.030197637, w: 0.049200557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.26587033, y: -0.4250481, z: -0.13215864, w: 0.85509133} + inSlope: {x: 0.011697942, y: 0.07606403, z: 0.023650296, w: 0.03762272} + outSlope: {x: 0.011697942, y: 0.07606403, z: 0.023650296, w: 0.03762272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.2669052, y: -0.41828546, z: -0.13005595, w: 0.85841966} + inSlope: {x: 0.029197553, y: 0.19633928, z: 0.061046958, w: 0.093905605} + outSlope: {x: 0.029197553, y: 0.19633928, z: 0.061046958, w: 0.093905605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.2697609, y: -0.3988859, z: -0.12402413, w: 0.86760426} + inSlope: {x: 0.051591456, y: 0.36627716, z: 0.113885134, w: 0.16592771} + outSlope: {x: 0.051591456, y: 0.36627716, z: 0.113885134, w: 0.16592771} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.27377975, y: -0.36947903, z: -0.114880756, w: 0.8805295} + inSlope: {x: 0.0627448, y: 0.48502347, z: 0.15080664, w: 0.20179963} + outSlope: {x: 0.0627448, y: 0.48502347, z: 0.15080664, w: 0.20179963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.27812165, y: -0.33425653, z: -0.10392915, w: 0.89449406} + inSlope: {x: 0.061883487, y: 0.53261685, z: 0.16560464, w: 0.19902986} + outSlope: {x: 0.061883487, y: 0.53261685, z: 0.16560464, w: 0.19902986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.28202572, y: -0.29850784, z: -0.09281394, w: 0.90705025} + inSlope: {x: 0.05152883, y: 0.49850196, z: 0.15499735, w: 0.16572642} + outSlope: {x: 0.05152883, y: 0.49850196, z: 0.15499735, w: 0.16572642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.28498787, y: -0.26783115, z: -0.08327575, w: 0.9165771} + inSlope: {x: 0.03573595, y: 0.3853296, z: 0.119809136, w: 0.11493431} + outSlope: {x: 0.03573595, y: 0.3853296, z: 0.119809136, w: 0.11493431} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.28678754, y: -0.24716267, z: -0.07684937, w: 0.92236525} + inSlope: {x: 0.01799121, y: 0.20980433, z: 0.06523371, w: 0.05786325} + outSlope: {x: 0.01799121, y: 0.20980433, z: 0.06523371, w: 0.05786325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.2873852, y: -0.23987472, z: -0.07458336, w: 0.9242874} + inSlope: {x: 0.008970443, y: 0.10938761, z: 0.03401144, w: 0.028849991} + outSlope: {x: 0.008970443, y: 0.10938761, z: 0.03401144, w: 0.028849991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.040063467, y: 0.9960913, z: -0.0031984712, w: -0.078656286} + inSlope: {x: 0.25212, y: -0.029127326, z: 0.01107114, w: -0.19710541} + outSlope: {x: 0.25212, y: -0.029127326, z: 0.01107114, w: -0.19710541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.05686096, y: 0.9941507, z: -0.0024608565, w: -0.09178843} + inSlope: {x: 0.25192434, y: -0.032551073, z: 0.011077945, w: -0.19679} + outSlope: {x: 0.25192434, y: -0.032551073, z: 0.011077945, w: -0.19679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.07363238, y: 0.9917539, z: -0.001722335, w: -0.10487855} + inSlope: {x: 0.15377496, y: -0.022887737, z: -0.01036609, w: -0.12364} + outSlope: {x: 0.15377496, y: -0.022887737, z: -0.01036609, w: -0.12364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.07735147, y: 0.9911009, z: -0.0038421378, w: -0.10826346} + inSlope: {x: -0.20255202, y: 0.023520688, z: -0.10258079, w: 0.12490259} + outSlope: {x: -0.20255202, y: 0.023520688, z: -0.10258079, w: 0.12490259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.046642326, y: 0.994888, z: -0.015391225, w: -0.08823528} + inSlope: {x: -0.5489355, y: 0.05289001, z: -0.16371384, w: 0.39981896} + outSlope: {x: -0.5489355, y: 0.05289001, z: -0.16371384, w: 0.39981896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.0042058267, y: 0.9981485, z: -0.025657007, w: -0.054987587} + inSlope: {x: -0.54581404, y: 0.032399878, z: -0.06362227, w: 0.5241157} + outSlope: {x: -0.54581404, y: 0.032399878, z: -0.06362227, w: 0.5241157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.026087394, y: 0.9992053, z: -0.023868892, w: -0.018396873} + inSlope: {x: -0.43375525, y: 0.00036813924, z: 0.056914665, w: 0.5632994} + outSlope: {x: -0.43375525, y: 0.00036813924, z: 0.056914665, w: 0.5632994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.05359206, y: 0.99819756, z: -0.018073129, w: 0.020072054} + inSlope: {x: -0.36575443, y: -0.023824861, z: 0.076958105, w: 0.48515156} + outSlope: {x: -0.36575443, y: -0.023824861, z: 0.076958105, w: 0.48515156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.07482417, y: 0.9960306, z: -0.013614224, w: 0.046249572} + inSlope: {x: -0.28668922, y: -0.029482046, z: 0.023983104, w: 0.24517381} + outSlope: {x: -0.28668922, y: -0.029482046, z: 0.023983104, w: 0.24517381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.091793396, y: 0.9942691, z: -0.01487738, w: 0.052741464} + inSlope: {x: -0.20842011, y: -0.019301169, z: -0.029287659, w: 0.005467579} + outSlope: {x: -0.20842011, y: -0.019301169, z: -0.029287659, w: 0.005467579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.10259615, y: 0.99345875, z: -0.017516805, w: 0.046978127} + inSlope: {x: -0.046584662, y: 0.00096709374, z: 0.007954426, w: -0.11726014} + outSlope: {x: -0.046584662, y: 0.00096709374, z: 0.007954426, w: -0.11726014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.0980008, y: 0.99439794, z: -0.013817453, w: 0.03711655} + inSlope: {x: 0.3880752, y: 0.03700632, z: 0.21945976, w: -0.18627219} + outSlope: {x: 0.3880752, y: 0.03700632, z: 0.21945976, w: -0.18627219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.05088513, y: 0.99838984, z: 0.011726209, w: 0.022157358} + inSlope: {x: 0.75410134, y: 0.037788227, z: 0.3556403, w: -0.27753276} + outSlope: {x: 0.75410134, y: 0.037788227, z: 0.3556403, w: -0.27753276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.0024831959, y: 0.9994332, z: 0.033571616, w: 0.00013530957} + inSlope: {x: 0.545156, y: 0.005117724, z: 0.119953886, w: -0.3522895} + outSlope: {x: 0.545156, y: 0.005117724, z: 0.119953886, w: -0.3522895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.02175691, y: 0.9990718, z: 0.027710063, w: -0.024785217} + inSlope: {x: 0.2134607, y: -0.009961693, z: -0.15992242, w: -0.389373} + outSlope: {x: 0.2134607, y: -0.009961693, z: -0.15992242, w: -0.389373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.030926835, y: 0.9981058, z: 0.012261954, w: -0.05174864} + inSlope: {x: 0.13738504, y: -0.022367511, z: -0.23195899, w: -0.4042857} + outSlope: {x: 0.13738504, y: -0.022367511, z: -0.23195899, w: -0.4042857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.040063467, y: 0.9960913, z: -0.0031984712, w: -0.078656286} + inSlope: {x: 0.1371352, y: -0.030236665, z: -0.23205142, w: -0.4038671} + outSlope: {x: 0.1371352, y: -0.030236665, z: -0.23205142, w: -0.4038671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06649999 + value: {x: -0.05720908, y: 0.003454922, z: 0.13796498, w: 0.98877746} + inSlope: {x: -0.5316338, y: 0.91754955, z: 0.28950167, w: -0.115519844} + outSlope: {x: -0.5316338, y: 0.91754955, z: 0.28950167, w: -0.115519844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13312499 + value: {x: -0.09262918, y: 0.06458666, z: 0.15725303, w: 0.98108095} + inSlope: {x: -0.34352246, y: 0.69042176, z: 0.17362532, w: -0.089152} + outSlope: {x: -0.34352246, y: 0.69042176, z: 0.17362532, w: -0.089152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19974999 + value: {x: -0.102983445, y: 0.09545362, z: 0.16110055, w: 0.97689795} + inSlope: {x: -0.08725159, y: 0.3599664, z: -0.0065419655, w: -0.040316} + outSlope: {x: -0.08725159, y: 0.3599664, z: -0.0065419655, w: -0.040316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.266375 + value: {x: -0.10425545, y: 0.11255219, z: 0.15638131, w: 0.97570884} + inSlope: {x: 0.030787703, y: 0.039422303, z: -0.14907077, w: 0.022257026} + outSlope: {x: 0.030787703, y: 0.039422303, z: -0.14907077, w: 0.022257026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333 + value: {x: -0.098880984, y: 0.100706644, z: 0.14123687, w: 0.9798637} + inSlope: {x: 0.15036838, y: -0.5398026, z: -0.30477074, w: 0.09873348} + outSlope: {x: 0.15036838, y: -0.5398026, z: -0.30477074, w: 0.09873348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.399625 + value: {x: -0.08421887, y: 0.04062349, z: 0.11577061, w: 0.9888651} + inSlope: {x: 0.2200693, y: -0.90181094, z: -0.38223284, w: 0.13510506} + outSlope: {x: 0.2200693, y: -0.90181094, z: -0.38223284, w: 0.13510506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06637499 + value: {x: -0.15599361, y: 0.12369365, z: 0.2729182, w: 0.9412128} + inSlope: {x: 0.020871691, y: 0.6429779, z: 0.099227756, w: -0.12536523} + outSlope: {x: 0.020871691, y: 0.6429779, z: 0.099227756, w: -0.12536523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13299999 + value: {x: -0.15460303, y: 0.16653205, z: 0.27952924, w: 0.9328603} + inSlope: {x: 0.16245341, y: 0.014312655, z: 0.033005096, w: 0.013500847} + outSlope: {x: 0.16245341, y: 0.014312655, z: 0.033005096, w: 0.013500847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19962499 + value: {x: -0.1343467, y: 0.12560081, z: 0.27731612, w: 0.94301176} + inSlope: {x: 0.30403513, y: -0.6143526, z: -0.033217568, w: 0.15236692} + outSlope: {x: 0.30403513, y: -0.6143526, z: -0.033217568, w: 0.15236692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00049999356 + value: {x: -0.023054099, y: -0.09103149, z: -0.19891883, w: 0.9755066} + inSlope: {x: -0.21941563, y: 2.1078827, z: 1.4274554, w: 0.25737488} + outSlope: {x: -0.21941563, y: 2.1078827, z: 1.4274554, w: 0.25737488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06712499 + value: {x: -0.037672665, y: 0.049406193, z: -0.10381462, w: 0.9926542} + inSlope: {x: -0.45019805, y: 1.5428095, z: 1.5754714, w: 0.10786406} + outSlope: {x: -0.45019805, y: 1.5428095, z: 1.5754714, w: 0.10786406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13374999 + value: {x: -0.08304299, y: 0.11454787, z: 0.011012716, w: 0.9898795} + inSlope: {x: -0.735515, y: 0.80371356, z: 1.7886972, w: -0.17736553} + outSlope: {x: -0.735515, y: 0.80371356, z: 1.7886972, w: -0.17736553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20037499 + value: {x: -0.13568003, y: 0.15650102, z: 0.1345293, w: 0.96902025} + inSlope: {x: -0.5517133, y: 0.6798738, z: 1.6145811, w: -0.37968093} + outSlope: {x: -0.5517133, y: 0.6798738, z: 1.6145811, w: -0.37968093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.267 + value: {x: -0.15655878, y: 0.20514105, z: 0.22615564, w: 0.939287} + inSlope: {x: 0.12660944, y: 1.151307, z: 1.0289798, w: -0.49279958} + outSlope: {x: 0.12660944, y: 1.151307, z: 1.0289798, w: -0.49279958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.333625 + value: {x: -0.11880933, y: 0.30991268, z: 0.27164084, w: 0.9033547} + inSlope: {x: 0.8034164, y: 1.6022956, z: 0.4229946, w: -0.5825281} + outSlope: {x: 0.8034164, y: 1.6022956, z: 0.4229946, w: -0.5825281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40025 + value: {x: -0.04950355, y: 0.41864693, z: 0.28251967, w: 0.8616651} + inSlope: {x: 0.89250934, y: 0.8587312, z: 0.0053818673, w: -0.2985515} + outSlope: {x: 0.89250934, y: 0.8587312, z: 0.0053818673, w: -0.2985515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.466875 + value: {x: 0.000117542746, y: 0.4243386, z: 0.27235797, w: 0.8635727} + inSlope: {x: 0.23434044, y: -2.2699447, z: -0.44480893, w: 0.7953151} + outSlope: {x: 0.23434044, y: -2.2699447, z: -0.44480893, w: 0.7953151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53349996 + value: {x: -0.01827768, y: 0.11617694, z: 0.2232489, w: 0.9676408} + inSlope: {x: -0.27610102, y: -4.625318, z: -0.7370971, w: 1.5619985} + outSlope: {x: -0.27610102, y: -4.625318, z: -0.7370971, w: 1.5619985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06637499 + value: {x: 0.0073955767, y: -0.03195116, z: -0.046246037, w: 0.99839157} + inSlope: {x: -0.10901184, y: 1.9586341, z: 1.5078027, w: -0.07109168} + outSlope: {x: -0.10901184, y: 1.9586341, z: 1.5078027, w: -0.07109168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13299999 + value: {x: 0.00013266323, y: 0.09854283, z: 0.054211315, w: 0.9936551} + inSlope: {x: 0.13952217, y: 1.959416, z: 1.2680821, w: -0.24852341} + outSlope: {x: 0.13952217, y: 1.959416, z: 1.2680821, w: -0.24852341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19962499 + value: {x: 0.025986904, y: 0.22914101, z: 0.1227259, w: 0.9652758} + inSlope: {x: 0.4826449, y: 1.8787832, z: 0.8994105, w: -0.563265} + outSlope: {x: 0.4826449, y: 1.8787832, z: 0.8994105, w: -0.563265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26624998 + value: {x: 0.06444509, y: 0.3488907, z: 0.17405775, w: 0.9186} + inSlope: {x: 0.3796643, y: 1.2562864, z: 0.64854133, w: -0.56049705} + outSlope: {x: 0.3796643, y: 1.2562864, z: 0.64854133, w: -0.56049705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33287498 + value: {x: 0.07657717, y: 0.39654118, z: 0.20914403, w: 0.8905896} + inSlope: {x: -0.44463328, y: -0.621351, z: 0.32042664, w: 0.15494345} + outSlope: {x: -0.44463328, y: -0.621351, z: 0.32042664, w: 0.15494345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39949998 + value: {x: 0.0051977118, y: 0.26609567, z: 0.2167546, w: 0.93924624} + inSlope: {x: -1.0730476, y: -2.486239, z: -0.13766202, w: 0.65001494} + outSlope: {x: -1.0730476, y: -2.486239, z: -0.13766202, w: 0.65001494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46612498 + value: {x: -0.06640642, y: 0.065249845, z: 0.19080056, w: 0.9772041} + inSlope: {x: -0.4932065, y: -2.4221177, z: -0.4548558, w: 0.3377331} + outSlope: {x: -0.4932065, y: -2.4221177, z: -0.4548558, w: 0.3377331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53275 + value: {x: -0.06052205, y: -0.05665158, z: 0.15614505, w: 0.9842492} + inSlope: {x: 0.28013685, y: -1.7008123, z: -0.57714736, w: 0.019977484} + outSlope: {x: 0.28013685, y: -1.7008123, z: -0.57714736, w: 0.019977484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599375 + value: {x: -0.029078187, y: -0.16138345, z: 0.11389566, w: 0.9798661} + inSlope: {x: 0.47195294, y: -1.5719606, z: -0.63413715, w: -0.06578743} + outSlope: {x: 0.47195294, y: -1.5719606, z: -0.63413715, w: -0.06578743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3/Bip01 Tail4 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0000000056314713, y: -0.26941344, z: -0.9180882} + inSlope: {x: 0, y: 0.44499958, z: 0} + outSlope: {x: 0, y: 0.44499958, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: 0.0000000056314713, y: -0.23976535, z: -0.9180882} + inSlope: {x: 0, y: 0.45164776, z: 0} + outSlope: {x: 0, y: 0.45164776, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: 0.0000000056314713, y: -0.20923138, z: -0.9180882} + inSlope: {x: 0, y: 0.445, z: 0} + outSlope: {x: 0, y: 0.445, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: 0.0000000056314713, y: -0.1804691, z: -0.9180882} + inSlope: {x: 0, y: 0.3984642, z: 0} + outSlope: {x: 0, y: 0.3984642, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: 0.0000000056314713, y: -0.15613602, z: -0.9180882} + inSlope: {x: 0, y: 0.35187697, z: 0} + outSlope: {x: 0, y: 0.35187697, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: 0.0000000056314713, y: -0.13358149, z: -0.9180882} + inSlope: {x: 0, y: 0.32741523, z: 0} + outSlope: {x: 0, y: 0.32741523, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: 0.0000000056314713, y: -0.11250794, z: -0.9180882} + inSlope: {x: 0, y: 0.25875416, z: 0} + outSlope: {x: 0, y: 0.25875416, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: 0.0000000056314713, y: -0.0991025, z: -0.9180882} + inSlope: {x: 0, y: 0.0972282, z: 0} + outSlope: {x: 0, y: 0.0972282, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: 0.0000000056314713, y: -0.09955228, z: -0.9180882} + inSlope: {x: 0, y: -0.09496082, z: 0} + outSlope: {x: 0, y: -0.09496082, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: 0.0000000056314713, y: -0.11175603, z: -0.9180882} + inSlope: {x: 0, y: -0.2191244, z: 0} + outSlope: {x: 0, y: -0.2191244, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: 0.0000000056314713, y: -0.1287506, z: -0.9180882} + inSlope: {x: 0, y: -0.28273493, z: 0} + outSlope: {x: 0, y: -0.28273493, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: 0.0000000056314713, y: -0.14943045, z: -0.9180882} + inSlope: {x: 0, y: -0.32975158, z: 0} + outSlope: {x: 0, y: -0.32975158, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: 0.0000000056314713, y: -0.17269, z: -0.9180882} + inSlope: {x: 0, y: -0.36017412, z: 0} + outSlope: {x: 0, y: -0.36017412, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: 0.0000000056314713, y: -0.19742365, z: -0.9180882} + inSlope: {x: 0, y: -0.3740025, z: 0} + outSlope: {x: 0, y: -0.3740025, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: 0.0000000056314713, y: -0.22252584, z: -0.9180882} + inSlope: {x: 0, y: -0.37123686, z: 0} + outSlope: {x: 0, y: -0.37123686, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: 0.0000000056314713, y: -0.24689096, z: -0.9180882} + inSlope: {x: 0, y: -0.35187697, z: 0} + outSlope: {x: 0, y: -0.35187697, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: 0.0000000056314713, y: -0.26941344, z: -0.9180882} + inSlope: {x: 0, y: -0.3380485, z: 0} + outSlope: {x: 0, y: -0.3380485, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 7.2289197e-10, y: -0.0000000114743735, z: 0.0000000056314633} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2517342, y: 0.006353772, z: -0.0003067945} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.39538193, y: -0.000000015961238, z: -0.00034055684} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.43740535, y: -0.000000012648606, z: -0.00042830541} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5445259, y: 0.000016754639, z: -0.00035455657} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.45798966, y: -0.000000013886517, z: -0.0000000123207275} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.44748932, y: 0.29879683, z: -0.054535534} + inSlope: {x: -0.014725143, y: 0, z: 0.13049996} + outSlope: {x: -0.014725143, y: 0, z: 0.13049996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.44847038, y: 0.29879683, z: -0.045840975} + inSlope: {x: -0.013812399, y: 0.00000022365721, z: 0.13491258} + outSlope: {x: -0.013812399, y: 0.00000022365721, z: 0.13491258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.44932982, y: 0.29879686, z: -0.036558434} + inSlope: {x: -0.011563301, y: 0.00000044731442, z: 0.14115968} + outSlope: {x: -0.011563301, y: 0.00000044731442, z: 0.14115968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.4500112, y: 0.2987969, z: -0.027031448} + inSlope: {x: -0.008676333, y: 0.00000044731442, z: 0.14222722} + outSlope: {x: -0.008676333, y: 0.00000044731442, z: 0.14222722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.45048594, y: 0.29879692, z: -0.017606657} + inSlope: {x: -0.0055789053, y: 0.00000044731442, z: 0.13808283} + outSlope: {x: -0.0055789053, y: 0.00000044731442, z: 0.13808283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.45075458, y: 0.29879695, z: -0.00863191} + inSlope: {x: -0.0026829918, y: 0.00000044731442, z: 0.12871633} + outSlope: {x: -0.0026829918, y: 0.00000044731442, z: 0.12871633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.45084345, y: 0.29879698, z: -0.0004552049} + inSlope: {x: -0.00035226007, y: 0.00000022365721, z: 0.1141356} + outSlope: {x: -0.00035226007, y: 0.00000022365721, z: 0.1141356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.45080152, y: 0.29879698, z: 0.0065766587} + inSlope: {x: 0.0011442302, y: 0.00000022365721, z: 0.09436449} + outSlope: {x: 0.0011442302, y: 0.00000022365721, z: 0.09436449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.45069098, y: 0.298797, z: 0.012118863} + inSlope: {x: 0.0008250714, y: 0.00000022365721, z: 0.04144444} + outSlope: {x: 0.0008250714, y: 0.00000022365721, z: 0.04144444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.45069158, y: 0.298797, z: 0.01209913} + inSlope: {x: -0.00092526985, y: -0.00000022365721, z: -0.049178395} + outSlope: {x: -0.00092526985, y: -0.00000022365721, z: -0.049178395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.45081428, y: 0.29879698, z: 0.0055658417} + inSlope: {x: -0.0010438082, y: -0.00000044731442, z: -0.1143862} + outSlope: {x: -0.0010438082, y: -0.00000044731442, z: -0.1143862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.45083067, y: 0.29879695, z: -0.0031428307} + inSlope: {x: 0.0010876451, y: -0.00000044731442, z: -0.13328788} + outSlope: {x: 0.0010876451, y: -0.00000044731442, z: -0.13328788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.45066935, y: 0.29879692, z: -0.012194769} + inSlope: {x: 0.004189099, y: -0.00000022365721, z: -0.14403896} + outSlope: {x: 0.004189099, y: -0.00000022365721, z: -0.14403896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.45027247, y: 0.29879692, z: -0.022336023} + inSlope: {x: 0.00801565, y: -0.00000022365721, z: -0.15681517} + outSlope: {x: 0.00801565, y: -0.00000022365721, z: -0.15681517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.44960126, y: 0.2987969, z: -0.03309039} + inSlope: {x: 0.012116182, y: -0.00000044731442, z: -0.16244166} + outSlope: {x: 0.012116182, y: -0.00000044731442, z: -0.16244166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.448658, y: 0.29879686, z: -0.043981373} + inSlope: {x: 0.015849467, y: -0.00000044731442, z: -0.16093917} + outSlope: {x: 0.015849467, y: -0.00000044731442, z: -0.16093917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.44748932, y: 0.29879683, z: -0.054535534} + inSlope: {x: 0.017540988, y: -0.00000044731442, z: -0.15841143} + outSlope: {x: 0.017540988, y: -0.00000044731442, z: -0.15841143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.37715635, y: -0.000000014566825, z: -0.00000003068215} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19256191, y: 0.000000038754667, z: 0.000000013688149} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.39100337, y: 0.000000012937453, z: -0.000000015409746} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.066292085, y: -0.022012413, z: 0.06799109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21222906, y: -0.09171744, z: 0.08821861} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22308767, y: 0.016064681, z: 0.07251092} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22505642, y: 0.12026364, z: 0.045430414} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + L Clavicle/Bip01 L UpperArm/Bip01 L ForeArm/Bip01 L Hand/Bip01 L Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.4480316, y: -0.3017694, z: -0.026896395} + inSlope: {x: -0.0066734836, y: 0.00000044731442, z: 0.13057971} + outSlope: {x: -0.0066734836, y: 0.00000044731442, z: 0.13057971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.066625 + value: {x: -0.44847623, y: -0.30176938, z: -0.018196521} + inSlope: {x: -0.0054970467, y: 0.00000044731442, z: 0.13490903} + outSlope: {x: -0.0054970467, y: 0.00000044731442, z: 0.13490903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13325 + value: {x: -0.4487641, y: -0.30176935, z: -0.008919767} + inSlope: {x: -0.002881152, y: 0.00000044731442, z: 0.14097981} + outSlope: {x: -0.002881152, y: 0.00000044731442, z: 0.14097981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.199875 + value: {x: -0.44886014, y: -0.30176932, z: 0.0005890381} + inSlope: {x: 0.00005255948, y: 0.00000044731442, z: 0.14186455} + outSlope: {x: 0.00005255948, y: 0.00000044731442, z: 0.14186455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2665 + value: {x: -0.44875708, y: -0.3017693, z: 0.009983685} + inSlope: {x: 0.002878021, y: 0.00000044731442, z: 0.13755715} + outSlope: {x: 0.002878021, y: 0.00000044731442, z: 0.13755715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.333125 + value: {x: -0.44847664, y: -0.30176926, z: 0.018918527} + inSlope: {x: 0.005184598, y: 0.00000022365721, z: 0.12807283} + outSlope: {x: 0.005184598, y: 0.00000022365721, z: 0.12807283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39975 + value: {x: -0.44806623, y: -0.30176926, z: 0.027049389} + inSlope: {x: 0.006611307, y: 0.00000022365721, z: 0.1134415} + outSlope: {x: 0.006611307, y: 0.00000022365721, z: 0.1134415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.466375 + value: {x: -0.4475957, y: -0.30176923, z: 0.034034606} + inSlope: {x: 0.0068924446, y: 0.00000044731442, z: 0.09370297} + outSlope: {x: 0.0068924446, y: 0.00000044731442, z: 0.09370297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.533 + value: {x: -0.44714782, y: -0.3017692, z: 0.03953531} + inSlope: {x: 0.003347925, y: 0.00000022365721, z: 0.04113411} + outSlope: {x: 0.003347925, y: 0.00000022365721, z: 0.04113411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599625 + value: {x: -0.44714957, y: -0.3017692, z: 0.039515726} + inSlope: {x: -0.0039189216, y: -0.00000022365721, z: -0.048813604} + outSlope: {x: -0.0039189216, y: -0.00000022365721, z: -0.048813604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.66625 + value: {x: -0.44767, y: -0.30176923, z: 0.033030897} + inSlope: {x: -0.008014085, y: -0.00000044731442, z: -0.11360518} + outSlope: {x: -0.008014085, y: -0.00000044731442, z: -0.11360518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.732875 + value: {x: -0.44821745, y: -0.30176926, z: 0.024377836} + inSlope: {x: -0.0070485566, y: -0.00000044731442, z: -0.13251838} + outSlope: {x: -0.0070485566, y: -0.00000044731442, z: -0.13251838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7995 + value: {x: -0.44860923, y: -0.3017693, z: 0.015372824} + inSlope: {x: -0.0046223234, y: -0.00000044731442, z: -0.14339125} + outSlope: {x: -0.0046223234, y: -0.00000044731442, z: -0.14339125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.866125 + value: {x: -0.44883338, y: -0.30176932, z: 0.005270953} + inSlope: {x: -0.0015991491, y: -0.00000044731442, z: -0.15632066} + outSlope: {x: -0.0015991491, y: -0.00000044731442, z: -0.15632066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93275 + value: {x: -0.44882232, y: -0.30176935, z: -0.005456904} + inSlope: {x: 0.0021323478, y: -0.00000044731442, z: -0.16216198} + outSlope: {x: 0.0021323478, y: -0.00000044731442, z: -0.16216198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.999375 + value: {x: -0.44854924, y: -0.30176938, z: -0.01633713} + inSlope: {x: 0.0059340727, y: -0.00000044731442, z: -0.16089675} + outSlope: {x: 0.0059340727, y: -0.00000044731442, z: -0.16089675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.066 + value: {x: -0.4480316, y: -0.3017694, z: -0.026896395} + inSlope: {x: 0.007769404, y: -0.00000044731442, z: -0.15848802} + outSlope: {x: 0.007769404, y: -0.00000044731442, z: -0.15848802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.37715632, y: -0.000000006623312, z: 0.000000025444802} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19256195, y: 0.000000011839352, z: 0.000000030481786} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.39100334, y: 0.000000025542594, z: 0.00000004889005} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06629206, y: 0.022012401, z: 0.06799114} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2122291, y: 0.091717474, z: 0.08821856} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22308767, y: -0.016064622, z: 0.0725109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2250564, y: -0.12026355, z: 0.0454304} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bip01 Neck/Bip01 + R Clavicle/Bip01 R UpperArm/Bip01 R ForeArm/Bip01 R Hand/Bip01 R Finger3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.51108265, y: 0.27324122, z: -0.06485627} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.961392, y: -0.00000018714805, z: 0.00000039906703} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.2618743, y: -0.0000001268891, z: 0.00000067095954} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.65346944, y: 0.00000006079075, z: -0.000000031209233} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone16/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.65347016, y: -0.0000002005008, z: -0.000000095559415} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone16/Bone33 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.2618744, y: -0.0000002104723, z: 0.00000025500222} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone15/Bone31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9613923, y: -0.0000038956928, z: -0.000013054566} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone14/Bone29 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4978259, y: -0.2589849, z: -0.07233695} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9623608, y: 0.00000008801117, z: -9.669823e-10} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.2897911, y: 0.0000001500515, z: -0.00000012265039} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.63024604, y: 0.00000003712305, z: -0.000000054524072} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6302467, y: 0.00000014956899, z: 0.00000016792296} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone11/Bone27 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.2897909, y: 0.00000012448197, z: -0.00000006512056} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone10/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9623608, y: -0.00000004003276, z: 0.00000001336993} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Spine1/Bip01 Spine2/Bone09/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.23977096, y: 0.23491374, z: -0.05449553} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.355676, y: -0.0000000317098, z: -0.000000027109042} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21655014, y: -0.000000012972483, z: 0.000000015712025} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.29401177, y: -0.000000026923985, z: 0.00000006386686} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17741247, y: -0.052995127, z: 0.21025676} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17709157, y: 0.024868546, z: 0.20381491} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17686568, y: 0.09573997, z: 0.20173045} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 L Thigh/Bip01 L Calf/Bip01 L HorseLink/Bip01 + L Foot/Bip01 L Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.25133044, y: -0.23491423, z: -0.057136625} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.355676, y: -0.000000041647482, z: -0.00000001670662} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21655008, y: -0.000000010743835, z: 0.00000005081847} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2940117, y: -0.000000027858903, z: 0.000000028521672} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17741251, y: 0.052995108, z: 0.21025683} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe0 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17709157, y: -0.024868576, z: 0.20381495} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17686565, y: -0.095739976, z: 0.20173053} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 R Thigh/Bip01 R Calf/Bip01 R HorseLink/Bip01 + R Foot/Bip01 R Toe2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.44584668, y: -0.00000051900037, z: -0.16668513} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.066285715 + value: {x: 0.461257, y: -0.00012494638, z: -0.00049862213} + inSlope: {x: 0.00013922676, y: 0.00012945749, z: -0.000056759352} + outSlope: {x: 0.00013922676, y: 0.00012945749, z: -0.000056759352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13285713 + value: {x: 0.46126628, y: -0.000116328214, z: -0.0005024007} + inSlope: {x: 0.00049624697, y: 0.00024667496, z: -0.00011647358} + outSlope: {x: 0.00049624697, y: 0.00024667496, z: -0.00011647358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.19942857 + value: {x: 0.46132308, y: -0.00009210337, z: -0.00051412976} + inSlope: {x: 0.0010838192, y: 0.00041815464, z: -0.00010822219} + outSlope: {x: 0.0010838192, y: 0.00041815464, z: -0.00010822219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26600003 + value: {x: 0.46141058, y: -0.000060653892, z: -0.0005168097} + inSlope: {x: 0.0013143714, y: 0.00047241684, z: -0.000040256575} + outSlope: {x: 0.0013143714, y: 0.00047241684, z: -0.000040256575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1 + - curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.00066664815 + value: {x: 0.3188049, y: -0.0000872434, z: -0.00019515422} + inSlope: {x: -0.0006097556, y: 0.000013669815, z: 0.00029305732} + outSlope: {x: -0.0006097556, y: 0.000013669815, z: 0.00029305732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06733331 + value: {x: 0.31876424, y: -0.00008633208, z: -0.00017561707} + inSlope: {x: -0.00064015394, y: 0.000110398134, z: 0.0003753649} + outSlope: {x: -0.00064015394, y: 0.000110398134, z: 0.0003753649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13399997 + value: {x: 0.31871954, y: -0.00007252365, z: -0.00014510557} + inSlope: {x: -0.00040210786, y: 0.00025709922, z: 0.00023660302} + outSlope: {x: -0.00040210786, y: 0.00025709922, z: 0.00023660302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.20066664 + value: {x: 0.31871063, y: -0.000052052186, z: -0.00014407} + inSlope: {x: 0.00080443925, y: 0.00039586792, z: -0.0005542181} + outSlope: {x: 0.00080443925, y: 0.00039586792, z: -0.0005542181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2673333 + value: {x: 0.3188268, y: -0.000019741265, z: -0.00021900132} + inSlope: {x: 0.0019960108, y: 0.00031819334, z: -0.0004283506} + outSlope: {x: 0.0019960108, y: 0.00031819334, z: -0.0004283506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33399996 + value: {x: 0.31897676, y: -0.000009626409, z: -0.00020118341} + inSlope: {x: 0.0022494795, y: 0.00015172284, z: 0.00026726857} + outSlope: {x: 0.0022494795, y: 0.00015172284, z: 0.00026726857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666663 + value: {x: 0.2828904, y: -0.00006781041, z: -0.00042985103} + inSlope: {x: 0.001525283, y: 0.00035048893, z: -0.000025008196} + outSlope: {x: 0.001525283, y: 0.00035048893, z: -0.000025008196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1333333 + value: {x: 0.2829921, y: -0.000044444485, z: -0.00043151825} + inSlope: {x: 0.0013945253, y: 0.00044216096, z: 0.000118696495} + outSlope: {x: 0.0013945253, y: 0.00044216096, z: 0.000118696495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.19999996 + value: {x: 0.28307635, y: -0.000008855622, z: -0.00041402483} + inSlope: {x: 0.0012637676, y: 0.000533833, z: 0.00026240118} + outSlope: {x: 0.0012637676, y: 0.000533833, z: 0.00026240118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Bip01/Bip01 Pelvis/Bip01 Spine/Bip01 Tail/Bip01 Tail1/Bip01 Tail2/Bip01 + Tail3/Bip01 Tail4 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 15 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.066 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim.meta new file mode 100644 index 0000000000..17dfcb4581 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/狮鹫/tcks_狮鹫/前进.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 467ec75d29ed28247b2596e806f7937e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5.meta new file mode 100644 index 0000000000..560658ffd0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92eb93a4480453b48ab5c42274b8e507 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1.meta new file mode 100644 index 0000000000..17b27325b0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca9bd14c53827444bbe884304f98da23 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller new file mode 100644 index 0000000000..41d0d450c3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-4888114983877682712 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 41c54ec559ae6704b99fc7eeb78e8491, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "tcks_\u96D51" + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1444270723533312386} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1107 &1444270723533312386 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -4888114983877682712} + m_Position: {x: 238.5, y: 228, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -4888114983877682712} diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller.meta new file mode 100644 index 0000000000..cba899576b --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/tcks_雕1.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e074510bcef3cb479c93d8702cd50a4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim new file mode 100644 index 0000000000..f3b7dfd580 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim @@ -0,0 +1,12049 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.49175185, y: -0.4909292, z: -0.5083731, w: 0.50865054} + inSlope: {x: -0.067559235, y: -0.06753508, z: 0.06593146, w: -0.06576506} + outSlope: {x: -0.067559235, y: -0.06753508, z: 0.06593146, w: -0.06576506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.49625298, y: -0.4954287, z: -0.5039804, w: 0.50426894} + inSlope: {x: -0.06726445, y: -0.06724097, z: 0.06623161, w: -0.06606297} + outSlope: {x: -0.06726445, y: -0.06724097, z: 0.06623161, w: -0.06606297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.50071484, y: -0.49988905, z: -0.49954772, w: 0.49984765} + inSlope: {x: -0.04860899, y: -0.048589304, z: 0.048486196, w: -0.048359387} + outSlope: {x: -0.04860899, y: -0.048589304, z: 0.048486196, w: -0.048359387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.50273013, y: -0.50190324, z: -0.4975196, w: 0.49782506} + inSlope: {x: -0.01284508, y: -0.012830542, z: 0.01291844, w: -0.012876393} + outSlope: {x: -0.01284508, y: -0.012830542, z: 0.01291844, w: -0.012876393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.50242645, y: -0.5015987, z: -0.49782634, w: 0.49813187} + inSlope: {x: 0.0084779505, y: 0.008490028, z: -0.008546613, w: 0.008540798} + outSlope: {x: 0.0084779505, y: 0.008490028, z: -0.008546613, w: 0.008540798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.50160044, y: -0.50077194, z: -0.49865845, w: 0.49896312} + inSlope: {x: 0.01535362, y: 0.0153661445, z: -0.015430782, w: 0.015410876} + outSlope: {x: 0.01535362, y: 0.0153661445, z: -0.015430782, w: 0.015410876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.5003806, y: -0.49955118, z: -0.4998825, w: 0.5001854} + inSlope: {x: 0.020302035, y: 0.020315006, z: -0.02031143, w: 0.020279447} + outSlope: {x: 0.020302035, y: 0.020315006, z: -0.02031143, w: 0.020279447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.4988952, y: -0.49806497, z: -0.50136495, w: 0.50166535} + inSlope: {x: 0.023316488, y: 0.023328565, z: -0.023195265, w: 0.023155678} + outSlope: {x: 0.023316488, y: 0.023328565, z: -0.023195265, w: 0.023155678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.49727365, y: -0.49644265, z: -0.50297326, w: 0.50327086} + inSlope: {x: 0.024377517, y: 0.024388254, z: -0.024100406, w: 0.024058359} + outSlope: {x: 0.024377517, y: 0.024388254, z: -0.024100406, w: 0.024058359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.4956469, y: -0.49481523, z: -0.5045763, w: 0.50487113} + inSlope: {x: 0.023461416, y: 0.023470365, z: -0.023051007, w: 0.023009853} + outSlope: {x: 0.023461416, y: 0.023470365, z: -0.023051007, w: 0.023009853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.49414742, y: -0.49331522, z: -0.5060448, w: 0.5063369} + inSlope: {x: 0.020544704, y: 0.020552084, z: -0.020071445, w: 0.020034317} + outSlope: {x: 0.020544704, y: 0.020552084, z: -0.020071445, w: 0.020034317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.4929093, y: -0.49207667, z: -0.50725085, w: 0.5075407} + inSlope: {x: 0.015609708, y: 0.015614852, z: -0.015179615, w: 0.015151434} + outSlope: {x: 0.015609708, y: 0.015614852, z: -0.015179615, w: 0.015151434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.49206743, y: -0.49123454, z: -0.5080675, w: 0.50835586} + inSlope: {x: 0.00864793, y: 0.008650166, z: -0.008384014, w: 0.008368358} + outSlope: {x: 0.00864793, y: 0.008650166, z: -0.008384014, w: 0.008368358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.49175698, y: -0.49092403, z: -0.508368, w: 0.5086558} + inSlope: {x: -0.019190012, y: -0.019202089, z: 0.01867985, w: -0.018648539} + outSlope: {x: -0.019190012, y: -0.019202089, z: 0.01867985, w: -0.018648539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.4946245, y: -0.49379322, z: -0.5055784, w: 0.50587094} + inSlope: {x: -0.06116987, y: -0.061205655, z: 0.060136124, w: -0.060034588} + outSlope: {x: -0.06116987, y: -0.061205655, z: 0.060136124, w: -0.060034588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.49990785, y: -0.49907967, z: -0.5003549, w: 0.5006562} + inSlope: {x: -0.060828976, y: -0.060864538, z: 0.06048052, w: -0.060380097} + outSlope: {x: -0.060828976, y: -0.060864538, z: 0.06048052, w: -0.060380097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.50272995, y: -0.5019034, z: -0.49751937, w: 0.4978253} + inSlope: {x: -0.019640198, y: -0.019652052, z: 0.019725636, w: -0.019693429} + outSlope: {x: -0.019640198, y: -0.019652052, z: 0.019725636, w: -0.019693429} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.5025249, y: -0.5016983, z: -0.49772644, w: 0.49803203} + inSlope: {x: 0.005870112, y: 0.0058732433, z: -0.0059215534, w: 0.0059121596} + outSlope: {x: 0.005870112, y: 0.0058732433, z: -0.0059215534, w: 0.0059121596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.50194776, y: -0.5011208, z: -0.49830842, w: 0.4986131} + inSlope: {x: 0.010921648, y: 0.010928806, z: -0.010994561, w: 0.010976668} + outSlope: {x: 0.010921648, y: 0.010928806, z: -0.010994561, w: 0.010976668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.5010696, y: -0.50024205, z: -0.49919146, w: 0.49949467} + inSlope: {x: 0.015041839, y: 0.015051233, z: -0.015091938, w: 0.015066218} + outSlope: {x: 0.015041839, y: 0.015051233, z: -0.015091938, w: 0.015066218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.49994344, y: -0.49911523, z: -0.5003194, w: 0.50062066} + inSlope: {x: 0.018180167, y: 0.018190231, z: -0.018160485, w: 0.018130068} + outSlope: {x: 0.018180167, y: 0.018190231, z: -0.018160485, w: 0.018130068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.4986471, y: -0.4978182, z: -0.50161135, w: 0.5019105} + inSlope: {x: 0.020370029, y: 0.020381883, z: -0.02024411, w: 0.02021101} + outSlope: {x: 0.020370029, y: 0.020381883, z: -0.02024411, w: 0.02021101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.49722913, y: -0.49639934, z: -0.50301695, w: 0.5033138} + inSlope: {x: 0.021576248, y: 0.021589445, z: -0.021326646, w: 0.02129131} + outSlope: {x: 0.021576248, y: 0.021589445, z: -0.021326646, w: 0.02129131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.49577206, y: -0.4949414, z: -0.5044531, w: 0.50474757} + inSlope: {x: 0.02180434, y: 0.021816866, z: -0.021429492, w: 0.021393707} + outSlope: {x: 0.02180434, y: 0.021816866, z: -0.021429492, w: 0.021393707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.4943237, y: -0.49349225, z: -0.5058724, w: 0.5061645} + inSlope: {x: 0.02103962, y: 0.021051697, z: -0.020563006, w: 0.020528564} + outSlope: {x: 0.02103962, y: 0.021051697, z: -0.020563006, w: 0.020528564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.49296853, y: -0.49213627, z: -0.50719315, w: 0.507483} + inSlope: {x: 0.020340245, y: 0.020352323, z: -0.01982315, w: 0.01979005} + outSlope: {x: 0.020340245, y: 0.020352323, z: -0.01982315, w: 0.01979005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.00000008818897, y: 0.074108504, z: 0.0000000042523403, w: 0.9972502} + inSlope: {x: -0.034173027, y: -0.3236469, z: -0.0002982177, w: 0.02049863} + outSlope: {x: -0.034173027, y: -0.3236469, z: -0.0002982177, w: 0.02049863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.0022766895, y: 0.05254553, z: -0.000019864501, w: 0.9986159} + inSlope: {x: -0.03632128, y: -0.34430683, z: -0.00031697564, w: 0.017557537} + outSlope: {x: -0.03632128, y: -0.34430683, z: -0.00031697564, w: 0.017557537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.004839722, y: 0.028229618, z: -0.00004223275, w: 0.99958974} + inSlope: {x: -0.036294498, y: -0.34461105, z: -0.0003167515, w: 0.010032368} + outSlope: {x: -0.036294498, y: -0.34461105, z: -0.0003167515, w: 0.010032368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.0071129315, y: 0.0066261096, z: -0.00006207164, w: 0.99995273} + inSlope: {x: -0.027642548, y: -0.26283416, z: -0.00024124302, w: 0.0026328927} + outSlope: {x: -0.027642548, y: -0.26283416, z: -0.00024124302, w: 0.0026328927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.008523092, y: -0.006793032, z: -0.00007437838, w: 0.9999406} + inSlope: {x: -0.011595137, y: -0.109009765, z: -0.00010119015, w: -0.00016058589} + outSlope: {x: -0.011595137, y: -0.109009765, z: -0.00010119015, w: -0.00016058589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.0086579835, y: -0.007899441, z: -0.000075555225, w: 0.99993134} + inSlope: {x: 0.0027595945, y: 0.03677897, z: 0.000024086232, w: 0.0001829516} + outSlope: {x: 0.0027595945, y: 0.03677897, z: 0.000024086232, w: 0.0001829516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.008155376, y: -0.0018922338, z: -0.00007116889, w: 0.99996495} + inSlope: {x: 0.010500863, y: 0.12359643, z: 0.000091645066, w: 0.000042047555} + outSlope: {x: 0.010500863, y: 0.12359643, z: 0.000091645066, w: 0.000042047555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.0072587435, y: 0.0085697835, z: -0.00006334352, w: 0.99993694} + inSlope: {x: 0.01556355, y: 0.17829174, z: 0.00013582742, w: -0.0016698247} + outSlope: {x: 0.01556355, y: 0.17829174, z: 0.00013582742, w: -0.0016698247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.0060815327, y: 0.02186514, z: -0.00005306989, w: 0.99974245} + inSlope: {x: 0.018918715, y: 0.20863768, z: 0.00016510808, w: -0.0045764735} + outSlope: {x: 0.018918715, y: 0.20863768, z: 0.00016510808, w: -0.0045764735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.0047378247, y: 0.036370754, z: -0.000041342868, w: 0.9993271} + inSlope: {x: 0.02055624, y: 0.21462668, z: 0.0001794038, w: -0.007670995} + outSlope: {x: 0.02055624, y: 0.21462668, z: 0.0001794038, w: -0.007670995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.0033424138, y: 0.050464146, z: -0.000029164334, w: 0.9987203} + inSlope: {x: 0.020467002, y: 0.1962913, z: 0.00017862022, w: -0.009649914} + outSlope: {x: 0.020467002, y: 0.1962913, z: 0.00017862022, w: -0.009649914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.0020105967, y: 0.06252657, z: -0.000017541724, w: 0.9980413} + inSlope: {x: 0.018645532, y: 0.15369964, z: 0.00016270648, w: -0.009309061} + outSlope: {x: 0.018645532, y: 0.15369964, z: 0.00016270648, w: -0.009309061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.00085789664, y: 0.07094462, z: -0.0000074836958, w: 0.99747986} + inSlope: {x: 0.015089474, y: 0.086918056, z: 0.00013169403, w: -0.0059367567} + outSlope: {x: 0.015089474, y: 0.086918056, z: 0.00013169403, w: -0.0059367567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.00000007571772, y: 0.0741084, z: 0.0000000065038863, w: 0.9972502} + inSlope: {x: 0.009494618, y: -0.05458785, z: 0.00008286504, w: 0.0036849761} + outSlope: {x: 0.009494618, y: -0.05458785, z: 0.00008286504, w: 0.0036849761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.0004072611, y: 0.06367079, z: 0.0000035580708, w: 0.9979709} + inSlope: {x: 0.0031221616, y: -0.25901616, z: 0.000027217506, w: 0.014750658} + outSlope: {x: 0.0031221616, y: -0.25901616, z: 0.000027217506, w: 0.014750658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.00041610375, y: 0.03959454, z: 0.0000036332362, w: 0.9992157} + inSlope: {x: -0.0013682686, y: -0.38202256, z: -0.000011964375, w: 0.014616006} + outSlope: {x: -0.0013682686, y: -0.38202256, z: -0.000011964375, w: 0.014616006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.00022493897, y: 0.012766284, z: 0.0000019638148, w: 0.99991846} + inSlope: {x: -0.0028690747, y: -0.34104225, z: -0.000025054323, w: 0.0057573733} + outSlope: {x: -0.0028690747, y: -0.34104225, z: -0.000025054323, w: 0.0057573733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.000033798864, y: -0.0058494206, z: 0.00000029474182, w: 0.9999829} + inSlope: {x: -0.0016875378, y: -0.15711828, z: -0.000014734553, w: 0.00036142897} + outSlope: {x: -0.0016875378, y: -0.15711828, z: -0.000014734553, w: 0.00036142897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.000000074291805, y: -0.008169754, z: 4.333456e-10, w: 0.9999666} + inSlope: {x: -0.00025309293, y: 0.013598502, z: -0.0000022070749, w: 0.00006709728} + outSlope: {x: -0.00025309293, y: 0.013598502, z: -0.0000022070749, w: 0.00006709728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.00000007429182, y: -0.0040374235, z: 6.4964784e-10, w: 0.99999183} + inSlope: {x: -3.4287292e-11, y: 0.08763127, z: 0.0000000035882621, w: 0.00020442299} + outSlope: {x: -3.4287292e-11, y: 0.08763127, z: 0.0000000035882621, w: 0.00020442299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.000000074287236, y: 0.0035071184, z: 9.114816e-10, w: 0.99999386} + inSlope: {x: -7.4322903e-10, y: 0.13208407, z: 0.0000000067739068, w: -0.00062892295} + outSlope: {x: -7.4322903e-10, y: 0.13208407, z: 0.0000000067739068, w: -0.00062892295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.00000007419278, y: 0.013562812, z: 0.0000000015522725, w: 0.99990803} + inSlope: {x: 9.273321e-11, y: 0.16460612, z: 0.0000000069090405, w: -0.0023828459} + outSlope: {x: 9.273321e-11, y: 0.16460612, z: 0.0000000069090405, w: -0.0023828459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.00000007429959, y: 0.025440883, z: 0.0000000018321119, w: 0.99967635} + inSlope: {x: -0.0000000057648717, y: 0.18477777, z: 0.00000000877516, w: -0.0047826944} + outSlope: {x: -0.0000000057648717, y: 0.18477777, z: 0.00000000877516, w: -0.0047826944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.000000073424616, y: 0.038184404, z: 0.0000000027215605, w: 0.99927074} + inSlope: {x: -0.000000008973429, y: 0.19284618, z: 0.0000000069799366, w: -0.007390079} + outSlope: {x: -0.000000008973429, y: 0.19284618, z: 0.0000000069799366, w: -0.007390079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.000000073103884, y: 0.051137637, z: 0.000000002762187, w: 0.9986916} + inSlope: {x: 0.0000000066232593, y: 0.18872346, z: 0.0000000065000565, w: -0.009592641} + outSlope: {x: 0.0000000066232593, y: 0.18872346, z: 0.0000000065000565, w: -0.009592641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.00000007430717, y: 0.06333185, z: 0.0000000035876946, w: 0.9979925} + inSlope: {x: 0.000000018060497, y: 0.18302725, z: 0.000000012390337, w: -0.010493083} + outSlope: {x: 0.000000018060497, y: 0.18302725, z: 0.000000012390337, w: -0.010493083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -2.2362601e-11, y: 0.026060415, z: 3.485147e-10, w: 0.9996604} + inSlope: {x: -3.6822254e-10, y: -0.00000000873661, z: -5.223367e-10, w: 0} + outSlope: {x: -3.6822254e-10, y: -0.00000000873661, z: -5.223367e-10, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -4.1488782e-10, y: 0.026060406, z: -2.0829619e-10, w: 0.9996604} + inSlope: {x: -3.6822254e-10, y: -0.00000000873661, z: -5.223367e-10, w: 0} + outSlope: {x: -3.6822254e-10, y: -0.00000000873661, z: -5.223367e-10, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.000000047342073, y: 0.9989298, z: 0.00000002322049, w: 0.046251796} + inSlope: {x: -0.000000045862933, y: 0.012133851, z: -0.000000005914515, w: -0.35079908} + outSlope: {x: -0.000000045862933, y: 0.012133851, z: -0.000000005914515, w: -0.35079908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.000000044286455, y: 0.9997382, z: 0.000000022826436, w: 0.022879807} + inSlope: {x: -0.0000000032220235, y: 0.008030635, z: 0.000000024067523, w: -0.3508929} + outSlope: {x: -0.0000000032220235, y: 0.008030635, z: 0.000000024067523, w: -0.3508929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.00000004691274, y: 0.9999999, z: 0.000000026427488, w: -0.0005046845} + inSlope: {x: 0.0000000043578545, y: 0.0015544174, z: 0.00000003527537, w: -0.25016528} + outSlope: {x: 0.0000000043578545, y: 0.0015544174, z: 0.00000003527537, w: -0.25016528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.00000004486714, y: 0.99994534, z: 0.000000027526879, w: -0.010454714} + inSlope: {x: -0.000000024691719, y: -0.00017176874, z: -0.000000018481897, w: -0.04710575} + outSlope: {x: -0.000000024691719, y: -0.00017176874, z: -0.000000018481897, w: -0.04710575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.000000043622567, y: 0.999977, z: 0.000000023964775, w: -0.0067815254} + inSlope: {x: -0.0000000298914, y: 0.00040705613, z: -0.0000000081998905, w: 0.08531278} + outSlope: {x: -0.0000000298914, y: 0.00040705613, z: -0.0000000081998905, w: 0.08531278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.00000004088411, y: 0.9999996, z: 0.000000026434243, w: 0.0009132138} + inSlope: {x: 0.000000003862233, y: -0.0003135674, z: 0.0000000032716017, w: 0.13630746} + outSlope: {x: 0.000000003862233, y: -0.0003135674, z: 0.0000000032716017, w: 0.13630746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.00000004413721, y: 0.9999352, z: 0.000000024400716, w: 0.0113814445} + inSlope: {x: 0.000000016488485, y: -0.002047358, z: -0.000000020175161, w: 0.16856092} + outSlope: {x: 0.000000016488485, y: -0.002047358, z: -0.000000020175161, w: 0.16856092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.0000000430812, y: 0.9997268, z: 0.000000023745903, w: 0.023373958} + inSlope: {x: -0.0000000026469786, y: -0.0042816936, z: -0.000000012123259, w: 0.18206105} + outSlope: {x: -0.0000000026469786, y: -0.0042816936, z: -0.000000012123259, w: 0.18206105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.0000000437845, y: 0.9993647, z: 0.000000022785292, w: 0.035641078} + inSlope: {x: 0.00000001880096, y: -0.0062199067, z: -0.000000028818615, w: 0.17681298} + outSlope: {x: 0.00000001880096, y: -0.0062199067, z: -0.000000028818615, w: 0.17681298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.00000004558643, y: 0.99889797, z: 0.000000019905823, w: 0.046934288} + inSlope: {x: -0.000000007901049, y: -0.007012101, z: 0.000000033359704, w: 0.15284535} + outSlope: {x: -0.000000007901049, y: -0.007012101, z: 0.000000033359704, w: 0.15284535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.000000042731685, y: 0.9984303, z: 0.000000027230472, w: 0.05600772} + inSlope: {x: -0.000000007383245, y: -0.0056088753, z: 0.0000000029120137, w: 0.103983544} + outSlope: {x: -0.000000007383245, y: -0.0056088753, z: 0.0000000029120137, w: 0.103983544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.00000004460261, y: 0.9981506, z: 0.000000020293848, w: 0.060790095} + inSlope: {x: -0.0000000060005005, y: -0.00032564485, z: -0.000000049848254, w: 0.0057690144} + outSlope: {x: -0.0000000060005005, y: -0.00032564485, z: -0.000000049848254, w: 0.0057690144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.000000041932118, y: 0.9983869, z: 0.000000020588192, w: 0.05677644} + inSlope: {x: -0.000000005507734, y: 0.005847741, z: 0.0000000130814115, w: -0.10910493} + outSlope: {x: -0.000000005507734, y: 0.005847741, z: 0.0000000130814115, w: -0.10910493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.000000043868706, y: 0.9989298, z: 0.000000022036946, w: 0.046251863} + inSlope: {x: 0.000000047324413, y: 0.009638283, z: 0.000000036956703, w: -0.2336615} + outSlope: {x: 0.000000047324413, y: 0.009638283, z: 0.000000036956703, w: -0.2336615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.000000048238096, y: 0.9996712, z: 0.000000025512673, w: 0.025641046} + inSlope: {x: 0.000000014775898, y: 0.008028851, z: 0.000000019395578, w: -0.3405292} + outSlope: {x: 0.000000014775898, y: 0.008028851, z: 0.000000019395578, w: -0.3405292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.0000000458376, y: 0.99999964, z: 0.000000024621409, w: 0.000876392} + inSlope: {x: -0.00000004478335, y: 0.002057204, z: 0.000000012186694, w: -0.27088702} + outSlope: {x: -0.00000004478335, y: 0.002057204, z: 0.000000012186694, w: -0.27088702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.000000042270713, y: 0.99994534, z: 0.000000027136556, w: -0.01045462} + inSlope: {x: -0.000000018058126, y: -0.0001708738, z: 0.000000016674914, w: -0.05760759} + outSlope: {x: -0.000000018058126, y: -0.0001708738, z: 0.000000016674914, w: -0.05760759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.00000004343135, y: 0.9999769, z: 0.000000026843345, w: -0.006799833} + inSlope: {x: 0.000000028766523, y: 0.000407056, z: 0.000000009885381, w: 0.08531266} + outSlope: {x: 0.000000028766523, y: 0.000407056, z: 0.000000009885381, w: 0.08531266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.00000004610385, y: 0.9999996, z: 0.00000002845378, w: 0.00091328414} + inSlope: {x: 0.000000027586918, y: -0.0003095421, z: -0.000000025793799, w: 0.13617733} + outSlope: {x: 0.000000027586918, y: -0.0003095421, z: -0.000000025793799, w: 0.13617733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.0000000471073, y: 0.9999356, z: 0.000000023406328, w: 0.011345764} + inSlope: {x: -0.000000017396347, y: -0.0020473562, z: -0.000000051184088, w: 0.16856071} + outSlope: {x: -0.000000017396347, y: -0.0020473562, z: -0.000000051184088, w: 0.16856071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.00000004378578, y: 0.9997268, z: 0.000000021633506, w: 0.023374} + inSlope: {x: -9.746e-10, y: -0.0042749764, z: 8.290524e-11, w: 0.18204746} + outSlope: {x: -9.746e-10, y: -0.0042749764, z: 8.290524e-11, w: 0.18204746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.000000046977433, y: 0.999366, z: 0.000000023417375, w: 0.03560363} + inSlope: {x: 0.0000000032635121, y: -0.0062199086, z: 0.000000019258694, w: 0.17681277} + outSlope: {x: 0.0000000032635121, y: -0.0062199086, z: 0.000000019258694, w: 0.17681277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.000000044220652, y: 0.99889797, z: 0.000000024199728, w: 0.046934303} + inSlope: {x: -0.000000004558279, y: -0.007011666, z: -0.00000001674683, w: 0.15294945} + outSlope: {x: -0.000000004558279, y: -0.007011666, z: -0.00000001674683, w: 0.15294945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.000000046370044, y: 0.9984317, z: 0.000000021185864, w: 0.05598411} + inSlope: {x: 0.000000005371965, y: -0.0053382535, z: 0.000000027309959, w: 0.09951444} + outSlope: {x: 0.000000005371965, y: -0.0053382535, z: 0.000000027309959, w: 0.09951444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.00000004493646, y: 0.99818665, z: 0.000000027838798, w: 0.060194593} + inSlope: {x: -0.000000014631128, y: 0.0007698267, z: 0.0000000147039, w: -0.013965856} + outSlope: {x: -0.000000014631128, y: 0.0007698267, z: 0.0000000147039, w: -0.013965856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.000000044420442, y: 0.99853426, z: 0.000000023145162, w: 0.054123156} + inSlope: {x: -0.000000007745089, y: 0.005217466, z: -0.00000007044844, w: -0.09112835} + outSlope: {x: -0.000000007745089, y: 0.005217466, z: -0.00000007044844, w: -0.09112835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.000000025010282, y: -0.020079806, z: -0.0000000359887, w: 0.99979836} + inSlope: {x: 0.000000030426666, y: 0.22528361, z: 0.000000012846666, w: 0.0028332896} + outSlope: {x: 0.000000030426666, y: 0.22528361, z: 0.000000012846666, w: 0.0028332896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.000000027037458, y: -0.0050702854, z: -0.00000003513279, w: 0.9999871} + inSlope: {x: 0.000000026626516, y: 0.23292917, z: -0.000000010273675, w: 0.001062819} + outSlope: {x: 0.000000026626516, y: 0.23292917, z: -0.000000010273675, w: 0.001062819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.000000028558265, y: 0.010958007, z: -0.000000037357665, w: 0.99994} + inSlope: {x: 0.000000018541966, y: 0.202378, z: 0.00000000361009, w: -0.0017024787} + outSlope: {x: 0.000000018541966, y: 0.202378, z: 0.00000000361009, w: -0.0017024787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.000000029508175, y: 0.021896582, z: -0.000000034651745, w: 0.99976027} + inSlope: {x: -0.000000031291904, y: 0.09086897, z: -0.000000019563789, w: -0.0015463659} + outSlope: {x: -0.000000031291904, y: 0.09086897, z: -0.000000019563789, w: -0.0015463659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.00000002438862, y: 0.023066297, z: -0.00000003996454, w: 0.9997339} + inSlope: {x: -0.000000027132495, y: -0.017544568, z: -0.000000019319245, w: 0.00036366662} + outSlope: {x: -0.000000027132495, y: -0.017544568, z: -0.000000019319245, w: 0.00036366662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.00000002589277, y: 0.019558769, z: -0.000000037226034, w: 0.9998087} + inSlope: {x: 0.000000012417688, y: -0.07204051, z: 0.000000021074245, w: 0.0013164463} + outSlope: {x: 0.000000012417688, y: -0.07204051, z: 0.000000021074245, w: 0.0013164463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.000000026043276, y: 0.013466899, z: -0.000000037156397, w: 0.99990934} + inSlope: {x: -0.000000008206662, y: -0.10359821, z: -0.0000000064638064, w: 0.0013110786} + outSlope: {x: -0.000000008206662, y: -0.10359821, z: -0.0000000064638064, w: 0.0013110786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.000000024799233, y: 0.005754307, z: -0.000000038087336, w: 0.99998343} + inSlope: {x: -0.00000001387458, y: -0.12068795, z: -0.000000009797384, w: 0.000654421} + outSlope: {x: -0.00000001387458, y: -0.12068795, z: -0.000000009797384, w: 0.000654421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.000000024194488, y: -0.0026147694, z: -0.0000000384619, w: 0.99999654} + inSlope: {x: -0.000000031807534, y: -0.12330207, z: 0.000000012055578, w: -0.00030327917} + outSlope: {x: -0.000000031807534, y: -0.12330207, z: 0.000000012055578, w: -0.00030327917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.00000002056088, y: -0.010675694, z: -0.00000003648093, w: 0.999943} + inSlope: {x: -0.000000027604345, y: -0.11143906, z: 0.000000014494619, w: -0.0011187333} + outSlope: {x: -0.000000027604345, y: -0.11143906, z: 0.000000014494619, w: -0.0011187333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.00000002051621, y: -0.017464023, z: -0.00000003653049, w: 0.9998475} + inSlope: {x: -0.0000000099064055, y: -0.08596707, z: 0.000000020273104, w: -0.0014103823} + outSlope: {x: -0.0000000099064055, y: -0.08596707, z: 0.000000020273104, w: -0.0014103823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.00000001924085, y: -0.022130806, z: -0.00000003377954, w: 0.9997551} + inSlope: {x: 0.000000027330007, y: -0.04754323, z: 3.55298e-10, w: -0.0009809606} + outSlope: {x: 0.000000027330007, y: -0.04754323, z: 3.55298e-10, w: -0.0009809606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.000000024157933, y: -0.023799159, z: -0.000000036483147, w: 0.99971676} + inSlope: {x: 0.000000015791272, y: 0.015392563, z: 0.000000008457832, w: 0.00032475023} + outSlope: {x: 0.000000015791272, y: 0.015392563, z: 0.000000008457832, w: 0.00032475023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.000000021345038, y: -0.020079747, z: -0.000000032652533, w: 0.99979836} + inSlope: {x: 0.0000000144537715, y: 0.12066617, z: 8.318679e-12, w: 0.001901981} + outSlope: {x: 0.0000000144537715, y: 0.12066617, z: 8.318679e-12, w: 0.001901981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.000000026083898, y: -0.007720392, z: -0.00000003648204, w: 0.9999702} + inSlope: {x: -0.00000002097671, y: 0.21860999, z: -0.000000025332083, w: 0.0012059596} + outSlope: {x: -0.00000002097671, y: 0.21860999, z: -0.000000025332083, w: 0.0012059596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.000000018549905, y: 0.009050005, z: -0.000000036028034, w: 0.99995905} + inSlope: {x: -0.000000028953487, y: 0.21988066, z: 0.0000000039665666, w: -0.0015235504} + outSlope: {x: -0.000000028953487, y: 0.21988066, z: 0.0000000039665666, w: -0.0015235504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.000000022225866, y: 0.021578697, z: -0.000000035953494, w: 0.9997672} + inSlope: {x: 0.000000022201728, y: 0.105232455, z: 0.000000002417254, w: -0.0016903981} + outSlope: {x: 0.000000022201728, y: 0.105232455, z: 0.000000002417254, w: -0.0016903981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.00000002150829, y: 0.023072254, z: -0.000000035705934, w: 0.9997338} + inSlope: {x: -0.000000005387597, y: -0.015158644, z: -0.000000023091728, w: 0.00031177962} + outSlope: {x: -0.000000005387597, y: -0.015158644, z: -0.000000023091728, w: 0.00031177962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.000000021507967, y: 0.019558817, z: -0.00000003903046, w: 0.9998087} + inSlope: {x: 0.000000030121573, y: -0.07191944, z: -0.000000010781313, w: 0.0013151068} + outSlope: {x: 0.000000030121573, y: -0.07191944, z: -0.000000010781313, w: 0.0013151068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.000000025521983, y: 0.013489005, z: -0.00000003714254, w: 0.99990904} + inSlope: {x: -0.000000017534429, y: -0.10359834, z: 0.000000029408657, w: 0.0013110789} + outSlope: {x: -0.000000017534429, y: -0.10359834, z: 0.000000029408657, w: 0.0013110789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.000000019171486, y: 0.005754336, z: -0.000000035111757, w: 0.99998343} + inSlope: {x: -0.00000002309753, y: -0.12065701, z: 0.000000016847006, w: 0.000657551} + outSlope: {x: -0.00000002309753, y: -0.12065701, z: 0.000000016847006, w: 0.000657551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.000000022444231, y: -0.0025885701, z: -0.000000034897674, w: 0.99999666} + inSlope: {x: 9.0224894e-10, y: -0.12330216, z: -0.000000009972071, w: -0.00030328007} + outSlope: {x: 9.0224894e-10, y: -0.12330216, z: -0.000000009972071, w: -0.00030328007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.000000019291722, y: -0.010675678, z: -0.000000036440532, w: 0.999943} + inSlope: {x: -0.000000021143778, y: -0.11149902, z: 0.000000014013527, w: -0.0011169461} + outSlope: {x: -0.000000021143778, y: -0.11149902, z: 0.000000014013527, w: -0.0011169461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.000000019626828, y: -0.017445788, z: -0.000000033030375, w: 0.9998478} + inSlope: {x: -0.000000006584764, y: -0.081602275, z: 0.000000012938638, w: -0.0013151045} + outSlope: {x: -0.000000006584764, y: -0.081602275, z: 0.000000012938638, w: -0.0013151045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.0000000184143, y: -0.021549176, z: -0.000000034716468, w: 0.9997678} + inSlope: {x: 0.000000006539741, y: -0.028072188, z: -0.000000026168482, w: -0.0005425914} + outSlope: {x: 0.000000006539741, y: -0.028072188, z: -0.000000026168482, w: -0.0005425914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.00000002049825, y: -0.021186413, z: -0.00000003651733, w: 0.9997755} + inSlope: {x: 0.000000031278756, y: 0.005444841, z: -0.000000027029797, w: 0.00011630154} + outSlope: {x: 0.000000031278756, y: 0.005444841, z: -0.000000027029797, w: 0.00011630154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.08714149, y: 0.01796712, z: 0.0015719312, w: 0.99603266} + inSlope: {x: 0.20574819, y: -0.5559728, z: -0.02612307, w: 0.016284928} + outSlope: {x: 0.20574819, y: -0.5559728, z: -0.02612307, w: 0.016284928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.07343352, y: -0.019074567, z: -0.00016851827, w: 0.99711764} + inSlope: {x: 0.20662484, y: -0.55575067, z: -0.026121847, w: 0.0045809466} + outSlope: {x: 0.20662484, y: -0.55575067, z: -0.026121847, w: 0.0045809466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.05960873, y: -0.056086652, z: -0.0019088048, w: 0.99664307} + inSlope: {x: 0.22463232, y: -0.40812096, z: -0.022804204, w: -0.0058056936} + outSlope: {x: 0.22463232, y: -0.40812096, z: -0.022804204, w: -0.0058056936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.04350126, y: -0.07345668, z: -0.0032071786, w: 0.99634403} + inSlope: {x: 0.2711953, y: -0.08169247, z: -0.017285801, w: 0.0062046982} + outSlope: {x: 0.2711953, y: -0.08169247, z: -0.017285801, w: 0.0062046982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.023471959, y: -0.066972174, z: -0.004212138, w: 0.99746984} + inSlope: {x: 0.32022756, y: 0.17981729, z: -0.015242275, w: 0.018132783} + outSlope: {x: 0.32022756, y: 0.17981729, z: -0.015242275, w: 0.018132783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.0008309374, y: -0.04949603, z: -0.0052382117, w: 0.9987602} + inSlope: {x: 0.34176868, y: 0.2987411, z: -0.014137501, w: 0.014250543} + outSlope: {x: 0.34176868, y: 0.2987411, z: -0.014137501, w: 0.014250543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.02206872, y: -0.027164923, z: -0.00609596, w: 0.9993687} + inSlope: {x: 0.32801998, y: 0.32519752, z: -0.01022443, w: 0.0020961151} + outSlope: {x: 0.32801998, y: 0.32519752, z: -0.01022443, w: 0.0020961151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.042877723, y: -0.0061634625, z: -0.006600617, w: 0.99903953} + inSlope: {x: 0.2792084, y: 0.25871867, z: -0.003585204, w: -0.008820593} + outSlope: {x: 0.2792084, y: 0.25871867, z: -0.003585204, w: -0.008820593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.05927324, y: 0.00730934, z: -0.0065736882, w: 0.9981934} + inSlope: {x: 0.20053309, y: 0.1048724, z: 0.00587956, w: -0.011347025} + outSlope: {x: 0.20053309, y: 0.1048724, z: 0.00587956, w: -0.011347025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.06959876, y: 0.0078107845, z: -0.0058171656, w: 0.99752754} + inSlope: {x: 0.1281555, y: -0.07424399, z: 0.017782275, w: -0.008439034} + outSlope: {x: 0.1281555, y: -0.07424399, z: 0.017782275, w: -0.008439034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.07634996, y: -0.0025836714, z: -0.0042042, w: 0.9970689} + inSlope: {x: 0.08038883, y: -0.20541093, z: 0.028422173, w: -0.007141822} + outSlope: {x: 0.08038883, y: -0.20541093, z: 0.028422173, w: -0.007141822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.08031057, y: -0.019560222, z: -0.002029911, w: 0.9965759} + inSlope: {x: 0.04048324, y: -0.27416855, z: 0.034285787, w: -0.008882322} + outSlope: {x: 0.04048324, y: -0.27416855, z: 0.034285787, w: -0.008882322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.08174435, y: -0.039116632, z: 0.000364381, w: 0.9958853} + inSlope: {x: 0.004729623, y: -0.28286916, z: 0.03502135, w: -0.011303188} + outSlope: {x: 0.004729623, y: -0.28286916, z: 0.03502135, w: -0.011303188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.08094079, y: -0.057252534, z: 0.0026366836, w: 0.99506974} + inSlope: {x: -0.026470724, y: -0.23162112, z: 0.030625671, w: -0.010642057} + outSlope: {x: -0.026470724, y: -0.23162112, z: 0.030625671, w: -0.010642057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.07821713, y: -0.069980145, z: 0.0044452515, w: 0.99446726} + inSlope: {x: -0.052779302, y: -0.1206153, z: 0.021105282, w: -0.0038938709} + outSlope: {x: -0.052779302, y: -0.1206153, z: 0.021105282, w: -0.0038938709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.07390796, y: -0.07332452, z: 0.0054489607, w: 0.9945509} + inSlope: {x: -0.08000719, y: 0.03725789, z: 0.007906498, w: 0.008348216} + outSlope: {x: -0.08000719, y: 0.03725789, z: 0.007906498, w: 0.008348216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.067556165, y: -0.06501551, z: 0.0054987906, w: 0.99557966} + inSlope: {x: -0.11353144, y: 0.19108818, z: -0.0045336667, w: 0.01921391} + outSlope: {x: -0.11353144, y: 0.19108818, z: -0.0045336667, w: 0.01921391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.058779866, y: -0.04786197, z: 0.0048448485, w: 0.99711114} + inSlope: {x: -0.14758936, y: 0.29859596, z: -0.013255354, w: 0.022118801} + outSlope: {x: -0.14758936, y: 0.29859596, z: -0.013255354, w: 0.022118801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.04788989, y: -0.02522761, z: 0.0037325155, w: 0.998527} + inSlope: {x: -0.1751459, y: 0.35201034, z: -0.018116102, w: 0.01693938} + outSlope: {x: -0.1751459, y: 0.35201034, z: -0.018116102, w: 0.01693938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.035441715, y: -0.0009566773, z: 0.0024308823, w: 0.9993683} + inSlope: {x: -0.19635698, y: 0.3517955, z: -0.019133586, w: 0.0075189173} + outSlope: {x: -0.19635698, y: 0.3517955, z: -0.019133586, w: 0.0075189173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.021725317, y: 0.021649139, z: 0.0011829652, w: 0.9995289} + inSlope: {x: -0.21066412, y: 0.29788995, z: -0.016274694, w: -0.0010963656} + outSlope: {x: -0.21066412, y: 0.29788995, z: -0.016274694, w: -0.0010963656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.007370672, y: 0.03873723, z: 0.00026227548, w: 0.9992222} + inSlope: {x: -0.22182648, y: 0.18932202, z: -0.0096519645, w: -0.004944614} + outSlope: {x: -0.22182648, y: 0.18932202, z: -0.0096519645, w: -0.004944614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.007833059, y: 0.046876315, z: -0.000103160084, w: 0.99887} + inSlope: {x: -0.2495683, y: 0.046411023, z: -0.0015621723, w: -0.0042557567} + outSlope: {x: -0.2495683, y: 0.046411023, z: -0.0015621723, w: -0.0042557567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.025884243, y: 0.044921488, z: 0.00005411638, w: 0.99865514} + inSlope: {x: -0.28747308, y: -0.07682614, z: 0.0047243237, w: -0.004557237} + outSlope: {x: -0.28747308, y: -0.07682614, z: 0.0047243237, w: -0.004557237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.04613885, y: 0.03663922, z: 0.0005263566, w: 0.99826276} + inSlope: {x: -0.30810702, y: -0.13979442, z: 0.007847748, w: -0.009345276} + outSlope: {x: -0.30810702, y: -0.13979442, z: 0.007847748, w: -0.009345276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.06693958, y: 0.026293848, z: 0.0010998306, w: 0.9974099} + inSlope: {x: -0.3122055, y: -0.15527737, z: 0.008607474, w: -0.012801221} + outSlope: {x: -0.3122055, y: -0.15527737, z: 0.008607474, w: -0.012801221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.015433245, y: -0.09236234, z: 0.030969685, w: 0.99512404} + inSlope: {x: -0.030508703, y: 0.2471817, z: 0.13435975, w: 0.015598748} + outSlope: {x: -0.030508703, y: 0.2471817, z: 0.13435975, w: 0.015598748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.017465888, y: -0.07589386, z: 0.039921403, w: 0.9961633} + inSlope: {x: -0.02134975, y: 0.16768068, z: 0.0957544, w: 0.009719247} + outSlope: {x: -0.02134975, y: 0.16768068, z: 0.0957544, w: 0.009719247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.0182781, y: -0.07001889, z: 0.04372896, w: 0.99641913} + inSlope: {x: -0.002820345, y: 0.008940194, z: 0.016795985, w: -0.00006620248} + outSlope: {x: -0.002820345, y: 0.008940194, z: 0.016795985, w: -0.00006620248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.017841699, y: -0.074702576, z: 0.042159468, w: 0.9961545} + inSlope: {x: 0.0091839805, y: -0.09440822, z: -0.034283042, w: -0.005643766} + outSlope: {x: 0.0091839805, y: -0.09440822, z: -0.034283042, w: -0.005643766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.017054334, y: -0.08259878, z: 0.039160743, w: 0.9956671} + inSlope: {x: 0.013601322, y: -0.13429436, z: -0.052378476, w: -0.009017859} + outSlope: {x: 0.013601322, y: -0.13429436, z: -0.052378476, w: -0.009017859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.016029323, y: -0.0925973, z: 0.035180036, w: 0.99495286} + inSlope: {x: 0.016477533, y: -0.1591391, z: -0.064379305, w: -0.012387926} + outSlope: {x: 0.016477533, y: -0.1591391, z: -0.064379305, w: -0.012387926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.014858703, y: -0.10380407, z: 0.0305822, w: 0.9940164} + inSlope: {x: 0.017766504, y: -0.16866487, z: -0.07010963, w: -0.015202874} + outSlope: {x: 0.017766504, y: -0.16866487, z: -0.07010963, w: -0.015202874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.013661936, y: -0.11507189, z: 0.025837928, w: 0.9929271} + inSlope: {x: 0.017472317, y: -0.1630564, z: -0.069612995, w: -0.016770713} + outSlope: {x: 0.017472317, y: -0.1630564, z: -0.069612995, w: -0.016770713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.012530517, y: -0.12553133, z: 0.021306269, w: 0.9917817} + inSlope: {x: 0.015588124, y: -0.14246976, z: -0.06287447, w: -0.016321609} + outSlope: {x: 0.015588124, y: -0.14246976, z: -0.06287447, w: -0.016321609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.011584818, y: -0.13405599, z: 0.017459905, w: 0.9907522} + inSlope: {x: 0.012083115, y: -0.10673414, z: -0.049798325, w: -0.013240507} + outSlope: {x: 0.012083115, y: -0.10673414, z: -0.049798325, w: -0.013240507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.010920442, y: -0.13975365, z: 0.014670642, w: 0.9900174} + inSlope: {x: -0.0012885383, y: 0.03482969, z: -0.00213724, w: 0.004651623} + outSlope: {x: -0.0012885383, y: 0.03482969, z: -0.00213724, w: 0.004651623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.011756516, y: -0.12941493, z: 0.017175118, w: 0.99137205} + inSlope: {x: -0.019224364, y: 0.22803238, z: 0.060931817, w: 0.027250394} + outSlope: {x: -0.019224364, y: 0.22803238, z: 0.060931817, w: 0.027250394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.013482088, y: -0.10936834, z: 0.022789806, w: 0.9936485} + inSlope: {x: -0.012949885, y: 0.15044346, z: 0.0421365, w: 0.01708428} + outSlope: {x: -0.012949885, y: 0.15044346, z: 0.0421365, w: 0.01708428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.013482088, y: -0.10936834, z: 0.022789806, w: 0.9936485} + inSlope: {x: 0.0043001873, y: 0.16322878, z: -0.0010300253, w: 0.01624288} + outSlope: {x: 0.0043001873, y: 0.16322878, z: -0.0010300253, w: 0.01624288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.012909088, y: -0.087618105, z: 0.022652555, w: 0.9958129} + inSlope: {x: 0.0043001873, y: 0.16322878, z: -0.0010300253, w: 0.01624288} + outSlope: {x: 0.0043001873, y: 0.16322878, z: -0.0010300253, w: 0.01624288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.012909088, y: -0.087618105, z: 0.022652555, w: 0.9958129} + inSlope: {x: -0.000000020967825, y: 0, z: 0.000000013978551, w: 0} + outSlope: {x: -0.000000020967825, y: 0, z: 0.000000013978551, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.012909091, y: -0.087618105, z: 0.022652557, w: 0.9958129} + inSlope: {x: -0.000000020967825, y: 0, z: 0.000000013978551, w: 0} + outSlope: {x: -0.000000020967825, y: 0, z: 0.000000013978551, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.012909091, y: -0.087618105, z: 0.022652557, w: 0.9958129} + inSlope: {x: -0.007269634, y: -0.032959137, z: -0.0007619316, w: -0.003053821} + outSlope: {x: -0.007269634, y: -0.032959137, z: -0.0007619316, w: -0.003053821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.013877768, y: -0.0920099, z: 0.02255103, w: 0.995406} + inSlope: {x: -0.018955186, y: 0.07212773, z: 0.05440133, w: 0.004291542} + outSlope: {x: -0.018955186, y: 0.07212773, z: 0.05440133, w: 0.004291542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.015434865, y: -0.0780071, z: 0.029901521, w: 0.99638474} + inSlope: {x: -0.024220537, y: 0.21861371, z: 0.114308, w: 0.013155967} + outSlope: {x: -0.024220537, y: 0.21861371, z: 0.114308, w: 0.013155967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.017105155, y: -0.06287962, z: 0.037782572, w: 0.997159} + inSlope: {x: -0.020649841, y: 0.18569383, z: 0.098041624, w: 0.008294089} + outSlope: {x: -0.020649841, y: 0.18569383, z: 0.098041624, w: 0.008294089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.018186461, y: -0.053263355, z: 0.04296559, w: 0.9974899} + inSlope: {x: -0.007977544, y: 0.06621794, z: 0.039900627, w: 0.002122949} + outSlope: {x: -0.007977544, y: 0.06621794, z: 0.039900627, w: 0.002122949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.018168164, y: -0.054056063, z: 0.04309934, w: 0.9974419} + inSlope: {x: 0.0032514085, y: -0.040871024, z: -0.011388393, w: -0.0017534756} + outSlope: {x: 0.0032514085, y: -0.040871024, z: -0.011388393, w: -0.0017534756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.017753212, y: -0.05870941, z: 0.04144809, w: 0.9972563} + inSlope: {x: 0.0076689934, y: -0.08403011, z: -0.031173274, w: -0.0036084838} + outSlope: {x: 0.0076689934, y: -0.08403011, z: -0.031173274, w: -0.0036084838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.01714627, y: -0.06525308, z: 0.0389455, w: 0.99696106} + inSlope: {x: 0.010182382, y: -0.10851652, z: -0.042370524, w: -0.005361501} + outSlope: {x: 0.010182382, y: -0.10851652, z: -0.042370524, w: -0.005361501} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.016396407, y: -0.07316926, z: 0.035802208, w: 0.99654186} + inSlope: {x: 0.01125497, y: -0.118816786, z: -0.047178783, w: -0.0062919133} + outSlope: {x: 0.01125497, y: -0.118816786, z: -0.047178783, w: -0.0062919133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.0004425025, y: -0.06185539, z: 0.00005417698, w: 0.998085} + inSlope: {x: -0.0018562032, y: 0.39532283, z: -0.00022747522, w: 0.019272095} + outSlope: {x: -0.0018562032, y: 0.39532283, z: -0.00022747522, w: 0.019272095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.00031883296, y: -0.035517007, z: 0.000039021445, w: 0.999369} + inSlope: {x: -0.0029215736, y: 0.32389638, z: -0.00035805616, w: 0.013059792} + outSlope: {x: -0.0029215736, y: 0.32389638, z: -0.00035805616, w: 0.013059792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.000053202835, y: -0.018696198, z: 0.000006466003, w: 0.99982524} + inSlope: {x: -0.002392392, y: 0.12018892, z: -0.00029318745, w: 0.0033078901} + outSlope: {x: -0.002392392, y: 0.12018892, z: -0.00029318745, w: 0.0033078901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.000000046770783, y: -0.019501833, z: -0.000000045780165, w: 0.9998098} + inSlope: {x: -0.00039892603, y: -0.07142922, z: -0.000048867256, w: -0.0016760872} + outSlope: {x: -0.00039892603, y: -0.07142922, z: -0.000048867256, w: -0.0016760872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.000000045944567, y: -0.028214142, z: -0.000000045558618, w: 0.9996019} + inSlope: {x: -0.000000009075591, y: -0.16207229, z: -0.000000038336196, w: -0.0049133017} + outSlope: {x: -0.000000009075591, y: -0.16207229, z: -0.000000038336196, w: -0.0049133017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.00000004556146, y: -0.041097965, z: -0.000000050888463, w: 0.9991551} + inSlope: {x: -0.000000017851848, y: -0.2146934, z: -0.00000004808892, w: -0.0091377385} + outSlope: {x: -0.000000017851848, y: -0.2146934, z: -0.00000004808892, w: -0.0091377385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.00000004356581, y: -0.056822035, z: -0.000000051966467, w: 0.9983843} + inSlope: {x: -0.000000005843595, y: -0.24473912, z: 3.7964032e-10, w: -0.014073853} + outSlope: {x: -0.000000005843595, y: -0.24473912, z: 3.7964032e-10, w: -0.014073853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.0000000447828, y: -0.07370945, z: -0.000000050837876, w: 0.99727976} + inSlope: {x: 8.0004714e-10, y: -0.2526072, z: -0.000000002835212, w: -0.01865838} + outSlope: {x: 8.0004714e-10, y: -0.2526072, z: -0.000000002835212, w: -0.01865838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.000000043672415, y: -0.090481944, z: -0.00000005234426, w: 0.99589807} + inSlope: {x: -0.000000028828598, y: -0.2382797, z: -0.000000018090711, w: -0.021435307} + outSlope: {x: -0.000000028828598, y: -0.2382797, z: -0.000000018090711, w: -0.021435307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.00000004094139, y: -0.10546022, z: -0.000000053248463, w: 0.9944235} + inSlope: {x: -0.000000020183306, y: -0.20170766, z: -0.0000000041132555, w: -0.021077456} + outSlope: {x: -0.000000020183306, y: -0.20170766, z: -0.0000000041132555, w: -0.021077456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.00000004098299, y: -0.11735949, z: -0.00000005289235, w: 0.9930895} + inSlope: {x: 0.000000017089446, y: -0.086005814, z: -0.00000000972401, w: -0.009622628} + outSlope: {x: 0.000000017089446, y: -0.086005814, z: -0.00000000972401, w: -0.009622628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.00000004321856, y: -0.11692049, z: -0.000000054544188, w: 0.9931413} + inSlope: {x: 0.000000077311284, y: 0.2283587, z: 0.000000040249727, w: 0.023451352} + outSlope: {x: 0.000000077311284, y: 0.2283587, z: 0.000000040249727, w: 0.023451352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.00000005128472, y: -0.08693069, z: -0.000000047529074, w: 0.9962144} + inSlope: {x: 0.00000006053403, y: 0.22506417, z: 0.000000052646257, w: 0.023062637} + outSlope: {x: 0.00000006053403, y: 0.22506417, z: 0.000000052646257, w: 0.023062637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.00000005128472, y: -0.08693069, z: -0.000000047529074, w: 0.9962144} + inSlope: {x: 0.0000000020465232, y: -0.22801103, z: -0.000000050308, w: -0.0234102} + outSlope: {x: 0.0000000020465232, y: -0.22801103, z: -0.000000050308, w: -0.0234102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.000000051557418, y: -0.11731316, z: -0.000000054232615, w: 0.993095} + inSlope: {x: 0.0000000088409235, y: -0.17584524, z: -0.000000035339703, w: -0.017432727} + outSlope: {x: 0.0000000088409235, y: -0.17584524, z: -0.000000035339703, w: -0.017432727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.00000005246277, y: -0.11036208, z: -0.000000052238093, w: 0.9938915} + inSlope: {x: 0.0000000018385271, y: 0.111968875, z: -0.000000004761187, w: 0.0123753995} + outSlope: {x: 0.0000000018385271, y: 0.111968875, z: -0.000000004761187, w: 0.0123753995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.0000000518024, y: -0.10239331, z: -0.00000005486705, w: 0.994744} + inSlope: {x: -0.0000000015226651, y: 0.12155636, z: 0.00000000766401, w: 0.0124966} + outSlope: {x: -0.0000000015226651, y: 0.12155636, z: 0.00000000766401, w: 0.0124966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.000000052259875, y: -0.09416467, z: -0.000000051216862, w: 0.99555665} + inSlope: {x: 0.000000009443958, y: 0.11975053, z: 0.000000035647297, w: 0.011357311} + outSlope: {x: 0.000000009443958, y: 0.11975053, z: 0.000000035647297, w: 0.011357311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.000000053060806, y: -0.08643655, z: -0.000000050117045, w: 0.99625736} + inSlope: {x: -0.000000013395528, y: 0.106516935, z: 0.000000016516083, w: 0.009309525} + outSlope: {x: -0.000000013395528, y: 0.106516935, z: 0.000000016516083, w: 0.009309525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.000000050474924, y: -0.07997131, z: -0.000000049016098, w: 0.99679714} + inSlope: {x: 0.0000000027374742, y: 0.08183212, z: 0.0000000023696654, w: 0.006648884} + outSlope: {x: 0.0000000027374742, y: 0.08183212, z: 0.0000000023696654, w: 0.006648884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.000000053425584, y: -0.07553242, z: -0.00000004980129, w: 0.9971433} + inSlope: {x: 0.00000001691446, y: 0.045688502, z: -0.000000011854791, w: 0.0035252785} + outSlope: {x: 0.00000001691446, y: 0.045688502, z: -0.000000011854791, w: 0.0035252785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.00000005272878, y: -0.07388331, z: -0.00000005059575, w: 0.9972669} + inSlope: {x: -0.000000016582106, y: -0.0111336075, z: -0.0000000068516757, w: -0.00085169147} + outSlope: {x: -0.000000016582106, y: -0.0111336075, z: -0.0000000068516757, w: -0.00085169147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.00000005121602, y: -0.077015966, z: -0.000000050714277, w: 0.99702984} + inSlope: {x: -0.000000010450543, y: -0.083562896, z: 0.0000000020682296, w: -0.006660076} + outSlope: {x: -0.000000010450543, y: -0.083562896, z: 0.0000000020682296, w: -0.006660076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.000000051336247, y: -0.085018046, z: -0.00000005032016, w: 0.99637944} + inSlope: {x: -0.000000026608296, y: -0.14092883, z: -0.00000001859074, w: -0.012223309} + outSlope: {x: -0.000000026608296, y: -0.14092883, z: -0.00000001859074, w: -0.012223309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.000000047670458, y: -0.09579474, z: -0.0000000531915, w: 0.9954011} + inSlope: {x: -0.000000043861018, y: -0.16687593, z: -0.0000000460698, w: -0.016118946} + outSlope: {x: -0.000000043861018, y: -0.16687593, z: -0.0000000460698, w: -0.016118946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.000000045491756, y: -0.107254304, z: -0.000000056458973, w: 0.9942316} + inSlope: {x: -0.000000032700903, y: -0.17200069, z: -0.000000049042665, w: -0.01755348} + outSlope: {x: -0.000000032700903, y: -0.17200069, z: -0.000000049042665, w: -0.01755348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.0029129644, y: 0.34194216, z: -0.056617845, w: 0.9380093} + inSlope: {x: -0.035140388, y: -0.5872008, z: 0.0025383416, w: 0.20038702} + outSlope: {x: -0.035140388, y: -0.5872008, z: 0.0025383416, w: 0.20038702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.0052541927, y: 0.3028199, z: -0.056448728, w: 0.9513601} + inSlope: {x: -0.030349359, y: -0.5103117, z: 0.0026534412, w: 0.16558462} + outSlope: {x: -0.030349359, y: -0.5103117, z: 0.0026534412, w: 0.16558462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.0069570164, y: 0.27394313, z: -0.056264274, w: 0.9600735} + inSlope: {x: -0.01439556, y: -0.24431464, z: 0.0015873231, w: 0.073210165} + outSlope: {x: -0.01439556, y: -0.24431464, z: 0.0015873231, w: 0.073210165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.007172401, y: 0.27026498, z: -0.056237217, w: 0.96111536} + inSlope: {x: 0.0011554726, y: 0.019705541, z: -0.00014123954, w: -0.0056518177} + outSlope: {x: 0.0011554726, y: 0.019705541, z: -0.00014123954, w: -0.0056518177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.0068030497, y: 0.2765689, z: -0.056283094, w: 0.95932037} + inSlope: {x: 0.007694671, y: 0.13101704, z: -0.0009102848, w: -0.038132213} + outSlope: {x: 0.007694671, y: 0.13101704, z: -0.0009102848, w: -0.038132213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.006147086, y: 0.287723, z: -0.056358512, w: 0.95603424} + inSlope: {x: 0.011436522, y: 0.193856, z: -0.0012256973, w: -0.058737747} + outSlope: {x: 0.011436522, y: 0.193856, z: -0.0012256973, w: -0.058737747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.005279133, y: 0.3024002, z: -0.05644642, w: 0.95149356} + inSlope: {x: 0.013917503, y: 0.23450123, z: -0.0012870913, w: -0.07479678} + outSlope: {x: 0.013917503, y: 0.23450123, z: -0.0012870913, w: -0.07479678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.004292579, y: 0.3189703, z: -0.056530017, w: 0.9460676} + inSlope: {x: 0.015160715, y: 0.25368118, z: -0.0011451249, w: -0.08564371} + outSlope: {x: 0.015160715, y: 0.25368118, z: -0.0011451249, w: -0.08564371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.0032589678, y: 0.33620322, z: -0.056599006, w: 0.94008154} + inSlope: {x: 0.015142301, y: 0.2515524, z: -0.0008786373, w: -0.08983639} + outSlope: {x: 0.015142301, y: 0.2515524, z: -0.0008786373, w: -0.08983639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.0022748674, y: 0.35248965, z: -0.056647096, w: 0.9340969} + inSlope: {x: 0.013856585, y: 0.22859198, z: -0.0005714721, w: -0.08597919} + outSlope: {x: 0.013856585, y: 0.22859198, z: -0.0005714721, w: -0.08597919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.0014125778, y: 0.3666631, z: -0.056675155, w: 0.9286248} + inSlope: {x: 0.010224084, y: 0.1677447, z: -0.00028742745, w: -0.065613866} + outSlope: {x: 0.010224084, y: 0.1677447, z: -0.00028742745, w: -0.065613866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.00091250817, y: 0.37484163, z: -0.056685396, w: 0.9253538} + inSlope: {x: 0.0026676627, y: 0.043648943, z: -0.000057983132, w: -0.017392926} + outSlope: {x: 0.0026676627, y: 0.043648943, z: -0.000057983132, w: -0.017392926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.0010571118, y: 0.37247932, z: -0.05668288, w: 0.9263072} + inSlope: {x: -0.0010852054, y: -0.017728413, z: 0.000018871076, w: 0.007154794} + outSlope: {x: -0.0010852054, y: -0.017728413, z: 0.000018871076, w: 0.007154794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.0010571118, y: 0.37247932, z: -0.05668288, w: 0.9263072} + inSlope: {x: -0.04994424, y: -0.8364549, z: 0.0038811516, w: 0.28037176} + outSlope: {x: -0.04994424, y: -0.8364549, z: 0.0038811516, w: 0.28037176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.0077121817, y: 0.2610217, z: -0.056165718, w: 0.96366674} + inSlope: {x: -0.04994424, y: -0.8364549, z: 0.0038811516, w: 0.28037176} + outSlope: {x: -0.04994424, y: -0.8364549, z: 0.0038811516, w: 0.28037176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.0077121817, y: 0.2610217, z: -0.056165718, w: 0.96366674} + inSlope: {x: 0.000000027957102, y: 0, z: -0.000000055914203, w: 0} + outSlope: {x: 0.000000027957102, y: 0, z: -0.000000055914203, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.007712178, y: 0.2610217, z: -0.056165725, w: 0.96366674} + inSlope: {x: 0.000000027957102, y: 0, z: -0.000000055914203, w: 0} + outSlope: {x: 0.000000027957102, y: 0, z: -0.000000055914203, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.007712178, y: 0.2610217, z: -0.056165725, w: 0.96366674} + inSlope: {x: 0.049944043, y: 0.8364571, z: -0.0038812982, w: -0.28037226} + outSlope: {x: 0.049944043, y: 0.8364571, z: -0.0038812982, w: -0.28037226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.001057146, y: 0.3724794, z: -0.056682907, w: 0.9263072} + inSlope: {x: 0.036174826, y: 0.609908, z: -0.003401301, w: -0.19350857} + outSlope: {x: 0.036174826, y: 0.609908, z: -0.003401301, w: -0.19350857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.0028918907, y: 0.3422918, z: -0.056618948, w: 0.93788177} + inSlope: {x: -0.028960768, y: -0.48006898, z: 0.00152878, w: 0.1742804} + outSlope: {x: -0.028960768, y: -0.48006898, z: 0.00152878, w: 0.1742804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.0049161687, y: 0.3085102, z: -0.056479197, w: 0.94953007} + inSlope: {x: -0.027455658, y: -0.46093768, z: 0.0022955295, w: 0.15150154} + outSlope: {x: -0.027455658, y: -0.46093768, z: 0.0022955295, w: 0.15150154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.0065503637, y: 0.28087175, z: -0.056313068, w: 0.9580694} + inSlope: {x: -0.017302759, y: -0.29334968, z: 0.001863315, w: 0.08872162} + outSlope: {x: -0.017302759, y: -0.29334968, z: 0.001863315, w: 0.08872162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.007221763, y: 0.26942134, z: -0.05623091, w: 0.9613522} + inSlope: {x: -0.004094811, y: -0.069803536, z: 0.0004964919, w: 0.020096978} + outSlope: {x: -0.004094811, y: -0.069803536, z: 0.0004964919, w: 0.020096978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.0070959963, y: 0.27157044, z: -0.05624691, w: 0.9607473} + inSlope: {x: 0.0035617135, y: 0.060788408, z: -0.000442142, w: -0.01731329} + outSlope: {x: 0.0035617135, y: 0.060788408, z: -0.000442142, w: -0.01731329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.0067471643, y: 0.2775214, z: -0.056289826, w: 0.95904523} + inSlope: {x: 0.006590726, y: 0.11221711, z: -0.00077936007, w: -0.032667313} + outSlope: {x: 0.006590726, y: 0.11221711, z: -0.00077936007, w: -0.032667313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.0062177805, y: 0.2865234, z: -0.05635076, w: 0.9563944} + inSlope: {x: 0.007945709, y: 0.13511421, z: -0.00091458857, w: -0.03978765} + outSlope: {x: 0.007945709, y: 0.13511421, z: -0.00091458857, w: -0.03978765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone32 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.003079493, y: -0.53436106, z: 0.0018161174, w: 0.84524876} + inSlope: {x: -0.021617664, y: -0.28715348, z: -0.01274909, w: -0.18606937} + outSlope: {x: -0.021617664, y: -0.28715348, z: -0.01274909, w: -0.18606937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.0016392162, y: -0.55349267, z: 0.00096670934, w: 0.8328519} + inSlope: {x: -0.020646498, y: -0.20210426, z: -0.012176432, w: -0.13231248} + outSlope: {x: -0.020646498, y: -0.20210426, z: -0.012176432, w: -0.13231248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.0003283474, y: -0.56129146, z: 0.00019360794, w: 0.8276181} + inSlope: {x: -0.013375999, y: -0.011047326, z: -0.007888544, w: -0.007339537} + outSlope: {x: -0.013375999, y: -0.011047326, z: -0.007888544, w: -0.007339537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.00014313575, y: -0.5549647, z: -0.00008443911, w: 0.8318739} + inSlope: {x: -0.0049039093, y: 0.15557058, z: -0.0028920453, w: 0.102710545} + outSlope: {x: -0.0049039093, y: 0.15557058, z: -0.0028920453, w: 0.102710545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.00032509852, y: -0.5405617, z: -0.00019175708, w: 0.8413043} + inSlope: {x: -0.0018431542, y: 0.25331146, z: -0.0010870942, w: 0.1617547} + outSlope: {x: -0.0018431542, y: 0.25331146, z: -0.0010870942, w: 0.1617547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.00038873605, y: -0.52121097, z: -0.00022929441, w: 0.8534277} + inSlope: {x: -0.00029965874, y: 0.31500506, z: -0.00017699813, w: 0.19163308} + outSlope: {x: -0.00029965874, y: 0.31500506, z: -0.00017699813, w: 0.19163308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.00036502804, y: -0.49858725, z: -0.00021534208, w: 0.8668394} + inSlope: {x: 0.00078105356, y: 0.34690195, z: 0.00046058325, w: 0.19936535} + outSlope: {x: 0.00078105356, y: 0.34690195, z: 0.00046058325, w: 0.19936535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.00028466067, y: -0.47498628, z: -0.0001679217, w: 0.87999314} + inSlope: {x: 0.0014071529, y: 0.34758365, z: 0.0008300135, w: 0.18792304} + outSlope: {x: 0.0014071529, y: 0.34758365, z: 0.0008300135, w: 0.18792304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.00017752493, y: -0.45227173, z: -0.00010474279, w: 0.89188015} + inSlope: {x: 0.0015669598, y: 0.31525669, z: 0.0009240085, w: 0.16068429} + outSlope: {x: 0.0015669598, y: 0.31525669, z: 0.0009240085, w: 0.16068429} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.000075863274, y: -0.43297833, z: -0.000044797565, w: 0.9014043} + inSlope: {x: 0.00125952, y: 0.24816087, z: 0.00074275455, w: 0.12016341} + outSlope: {x: 0.00125952, y: 0.24816087, z: 0.00074275455, w: 0.12016341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.000009693886, y: -0.4192043, z: -0.00000577074, w: 0.9078919} + inSlope: {x: 0.00056962087, y: 0.012863196, z: 0.00033570448, w: 0.0061635487} + outSlope: {x: 0.00056962087, y: 0.012863196, z: 0.00033570448, w: 0.0061635487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.00000003870182, y: -0.4312643, z: -0.00000006494572, w: 0.9022256} + inSlope: {x: 0.0000734056, y: -0.6664242, z: 0.000042856296, w: -0.34925327} + outSlope: {x: 0.0000734056, y: -0.6664242, z: 0.000042856296, w: -0.34925327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.00000008741081, y: -0.5080053, z: -0.000000060138426, w: 0.86135393} + inSlope: {x: 0.0000003655459, y: -0.57591754, z: 0.00000003607728, w: -0.30672932} + outSlope: {x: 0.0000003655459, y: -0.57591754, z: 0.00000003607728, w: -0.30672932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.00000008741081, y: -0.5080053, z: -0.000000060138426, w: 0.86135393} + inSlope: {x: -0.0000007131885, y: 0.000002236572, z: 0.00000020611931, w: 0.0000013419433} + outSlope: {x: -0.0000007131885, y: 0.000002236572, z: 0.00000020611931, w: 0.0000013419433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.00000000762156, y: -0.508005, z: -0.00000003267303, w: 0.8613541} + inSlope: {x: -0.0000007131885, y: 0.000002236572, z: 0.00000020611931, w: 0.0000013419433} + outSlope: {x: -0.0000007131885, y: 0.000002236572, z: 0.00000020611931, w: 0.0000013419433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.00000000762156, y: -0.508005, z: -0.00000003267303, w: 0.8613541} + inSlope: {x: 0.0000000062793903, y: 0.00000044731362, z: 0.00000012657122, w: 0} + outSlope: {x: 0.0000000062793903, y: 0.00000044731362, z: 0.00000012657122, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.00000000678483, y: -0.50800496, z: -0.000000015807384, w: 0.8613541} + inSlope: {x: 0.0000000062793903, y: 0.00000044731362, z: 0.00000012657122, w: 0} + outSlope: {x: 0.0000000062793903, y: 0.00000044731362, z: 0.00000012657122, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.00000000678483, y: -0.50800496, z: -0.000000015807384, w: 0.8613541} + inSlope: {x: -0.000000060080005, y: 0, z: -0.000000032387568, w: 0} + outSlope: {x: -0.000000060080005, y: 0, z: -0.000000032387568, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.000000014790476, y: -0.50800496, z: -0.00000002012302, w: 0.8613541} + inSlope: {x: -0.00000008404496, y: -0.1255596, z: -0.00000017394251, w: -0.075714365} + outSlope: {x: -0.00000008404496, y: -0.1255596, z: -0.00000017394251, w: -0.075714365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.000000017983801, y: -0.52473575, z: -0.00000003898518, w: 0.8512652} + inSlope: {x: 0.000000010880859, y: -0.26754498, z: -0.00000016242294, w: -0.16544503} + outSlope: {x: 0.000000010880859, y: -0.26754498, z: -0.00000016242294, w: -0.16544503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.000000013340588, y: -0.54365534, z: -0.000000041765848, w: 0.83930856} + inSlope: {x: -0.00000007413857, y: -0.2465606, z: 0.00000007389413, w: -0.15871403} + outSlope: {x: -0.00000007413857, y: -0.2465606, z: 0.00000007389413, w: -0.15871403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.000000027862784, y: -0.55759, z: -0.000000029138771, w: 0.8301165} + inSlope: {x: 0.00000013661099, y: -0.11997405, z: 0.00000014216965, w: -0.07935436} + outSlope: {x: 0.00000013661099, y: -0.11997405, z: 0.00000014216965, w: -0.07935436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.0000000048627387, y: -0.5596419, z: -0.00000002282173, w: 0.8287346} + inSlope: {x: 0.000000033463962, y: 0.04852699, z: -0.0000000614684, w: 0.03232255} + outSlope: {x: 0.000000033463962, y: 0.04852699, z: -0.0000000614684, w: 0.03232255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.00000002340372, y: -0.5511238, z: -0.00000003732942, w: 0.8344235} + inSlope: {x: -0.0000000897505, y: 0.15797797, z: -0.00000016736664, w: 0.10380912} + outSlope: {x: -0.0000000897505, y: 0.15797797, z: -0.00000016736664, w: 0.10380912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.0000000070964328, y: -0.5385913, z: -0.000000045123322, w: 0.84256715} + inSlope: {x: 0.00000009560826, y: 0.21116245, z: 6.515357e-10, w: 0.1344656} + outSlope: {x: 0.00000009560826, y: 0.21116245, z: 6.515357e-10, w: 0.1344656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.0000000106638955, y: -0.52298635, z: -0.000000037242604, w: 0.85234106} + inSlope: {x: -0.000000053545314, y: 0.23422056, z: 0.00000011828449, w: 0.14670008} + outSlope: {x: -0.000000053545314, y: 0.23422056, z: 0.00000011828449, w: 0.14670008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone32/Bone33 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.686697, y: -0.29445353, z: 0.05522284, w: 0.66234034} + inSlope: {x: 0.16032822, y: 0.42547205, z: -0.42133784, w: 0.038654227} + outSlope: {x: 0.16032822, y: 0.42547205, z: -0.42133784, w: 0.038654227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.6973789, y: -0.26610646, z: 0.027151207, w: 0.6649157} + inSlope: {x: 0.12927029, y: 0.353216, z: -0.37364727, w: 0.025815409} + outSlope: {x: 0.12927029, y: 0.353216, z: -0.37364727, w: 0.025815409} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.7039223, y: -0.2473875, z: 0.0054343403, w: 0.66578025} + inSlope: {x: 0.04954186, y: 0.13778603, z: -0.19509578, w: 0.0051843743} + outSlope: {x: 0.04954186, y: 0.13778603, z: -0.19509578, w: 0.0051843743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.7039803, y: -0.24774647, z: 0.0011546944, w: 0.6656065} + inSlope: {x: -0.018863697, y: -0.06878197, z: -0.016217358, w: -0.0060199574} + outSlope: {x: -0.018863697, y: -0.06878197, z: -0.016217358, w: -0.0060199574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.7014087, y: -0.2565527, z: 0.0032733774, w: 0.6649781} + inSlope: {x: -0.04958391, y: -0.16498789, z: 0.054156765, w: -0.012341404} + outSlope: {x: -0.04958391, y: -0.16498789, z: 0.054156765, w: -0.012341404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.6973733, y: -0.2697311, z: 0.008371083, w: 0.663962} + inSlope: {x: -0.06952518, y: -0.21993555, z: 0.09378783, w: -0.018225826} + outSlope: {x: -0.06952518, y: -0.21993555, z: 0.09378783, w: -0.018225826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.69214445, y: -0.2858591, z: 0.015770605, w: 0.6625495} + inSlope: {x: -0.08418904, y: -0.25099707, z: 0.122099906, w: -0.02366517} + outSlope: {x: -0.08418904, y: -0.25099707, z: 0.122099906, w: -0.02366517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.6861551, y: -0.30317646, z: 0.024640895, w: 0.6608086} + inSlope: {x: -0.09274751, y: -0.25891477, z: 0.13940851, w: -0.027775541} + outSlope: {x: -0.09274751, y: -0.25891477, z: 0.13940851, w: -0.027775541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.67978585, y: -0.3203595, z: 0.03434679, w: 0.6588484} + inSlope: {x: -0.09374234, y: -0.24414623, z: 0.14549673, w: -0.029217236} + outSlope: {x: -0.09374234, y: -0.24414623, z: 0.14549673, w: -0.029217236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.6736639, y: -0.33570895, z: 0.044028334, w: 0.6569154} + inSlope: {x: -0.08580832, y: -0.20716897, z: 0.14047918, w: -0.026674699} + outSlope: {x: -0.08580832, y: -0.20716897, z: 0.14047918, w: -0.026674699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.6683519, y: -0.34796476, z: 0.05306564, w: 0.655294} + inSlope: {x: -0.051269837, y: -0.09510039, z: 0.13380091, w: -0.007997086} + outSlope: {x: -0.051269837, y: -0.09510039, z: 0.13380091, w: -0.007997086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.6668322, y: -0.34838107, z: 0.061857305, w: 0.6558498} + inSlope: {x: 0.040015407, y: 0.20403129, z: 0.15653016, w: 0.04773516} + outSlope: {x: 0.040015407, y: 0.20403129, z: 0.15653016, w: 0.04773516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.67368394, y: -0.3207776, z: 0.07392328, w: 0.6616547} + inSlope: {x: 0.051420134, y: 0.20715556, z: 0.09055142, w: 0.04356395} + outSlope: {x: 0.051420134, y: 0.20715556, z: 0.09055142, w: 0.04356395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.67368394, y: -0.3207776, z: 0.07392328, w: 0.6616547} + inSlope: {x: -0.5961762, y: -0.9791263, z: 0.9995607, w: -0.21702443} + outSlope: {x: -0.5961762, y: -0.9791263, z: 0.9995607, w: -0.21702443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.59424347, y: -0.45124617, z: 0.20711476, w: 0.6327362} + inSlope: {x: -0.5944505, y: -0.9785602, z: 1.0007921, w: -0.21864595} + outSlope: {x: -0.5944505, y: -0.9785602, z: 1.0007921, w: -0.21864595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.5944734, y: -0.45117074, z: 0.20727885, w: 0.63252014} + inSlope: {x: 0.0034514782, y: 0.0011317055, z: 0.0024622423, w: -0.0032443716} + outSlope: {x: 0.0034514782, y: 0.0011317055, z: 0.0024622423, w: -0.0032443716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.5947034, y: -0.45109537, z: 0.20744285, w: 0.6323039} + inSlope: {x: 0.003451472, y: 0.0011319271, z: 0.0024616788, w: -0.0032457076} + outSlope: {x: 0.003451472, y: 0.0011319271, z: 0.0024616788, w: -0.0032457076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.59493333, y: -0.4510199, z: 0.20760687, w: 0.63208765} + inSlope: {x: 0.0034501362, y: 0.001133271, z: 0.0024614595, w: -0.0032466082} + outSlope: {x: 0.0034501362, y: 0.001133271, z: 0.0024614595, w: -0.0032466082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.5951631, y: -0.45094436, z: 0.20777084, w: 0.6318713} + inSlope: {x: 0.0034483531, y: 0.0011343914, z: 0.002460681, w: -0.0032479558} + outSlope: {x: 0.0034483531, y: 0.0011343914, z: 0.002460681, w: -0.0032479558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.5953928, y: -0.45086876, z: 0.20793475, w: 0.63165486} + inSlope: {x: 0.0034470048, y: 0.0011350603, z: 0.002460453, w: -0.0032492918} + outSlope: {x: 0.0034470048, y: 0.0011350603, z: 0.002460453, w: -0.0032492918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.5956224, y: -0.45079312, z: 0.2080987, w: 0.6314383} + inSlope: {x: 0.003446104, y: 0.0011357293, z: 0.002460784, w: -0.003250628} + outSlope: {x: 0.003446104, y: 0.0011357293, z: 0.002460784, w: -0.003250628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.595852, y: -0.45071742, z: 0.20826265, w: 0.6312217} + inSlope: {x: 0.0034447683, y: 0.0011366259, z: 0.0024602292, w: -0.0032519759} + outSlope: {x: 0.0034447683, y: 0.0011366259, z: 0.0024602292, w: -0.0032519759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.59608144, y: -0.45064166, z: 0.20842652, w: 0.631005} + inSlope: {x: 0.0034438798, y: 0.0011375225, z: 0.0024591153, w: -0.0032533235} + outSlope: {x: 0.0034438798, y: 0.0011375225, z: 0.0024591153, w: -0.0032533235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.5963109, y: -0.45056584, z: 0.20859033, w: 0.6307882} + inSlope: {x: 0.003442979, y: 0.0011384152, z: 0.0024586637, w: -0.0032542124} + outSlope: {x: 0.003442979, y: 0.0011384152, z: 0.0024586637, w: -0.0032542124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.5965402, y: -0.45048997, z: 0.20875414, w: 0.63057137} + inSlope: {x: 0.0034411836, y: 0.0011393079, z: 0.0024585475, w: -0.0032555484} + outSlope: {x: 0.0034411836, y: 0.0011393079, z: 0.0024585475, w: -0.0032555484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.59676945, y: -0.45041403, z: 0.20891793, w: 0.6303544} + inSlope: {x: 0.0034407363, y: 0.0011397551, z: 0.0024584357, w: -0.0032564432} + outSlope: {x: 0.0034407363, y: 0.0011397551, z: 0.0024584357, w: -0.0032564432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone38 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.009816441, y: -0.028522326, z: -0.32528403, w: 0.9451351} + inSlope: {x: 0.021027133, y: 0.007824675, z: -0.69674724, w: -0.25927687} + outSlope: {x: 0.021027133, y: 0.007824675, z: -0.69674724, w: -0.25927687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.011217373, y: -0.028001007, z: -0.37170482, w: 0.9278608} + inSlope: {x: 0.017555526, y: 0.006872357, z: -0.58172613, w: -0.22772107} + outSlope: {x: 0.017555526, y: 0.006872357, z: -0.58172613, w: -0.22772107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.012155714, y: -0.027606584, z: -0.40279904, w: 0.9147913} + inSlope: {x: 0.00731935, y: 0.0030823178, z: -0.24253857, w: -0.10213485} + outSlope: {x: 0.00731935, y: 0.0030823178, z: -0.24253857, w: -0.10213485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.012192677, y: -0.027590288, z: -0.40402308, w: 0.9142513} + inSlope: {x: -0.002295247, y: -0.0009957078, z: 0.0760629, w: 0.032991227} + outSlope: {x: -0.002295247, y: -0.0009957078, z: 0.0760629, w: 0.032991227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.011849873, y: -0.027739262, z: -0.39266366, w: 0.91918737} + inSlope: {x: -0.0066305487, y: -0.0028051925, z: 0.21971747, w: 0.09294926} + outSlope: {x: -0.0066305487, y: -0.0028051925, z: 0.21971747, w: 0.09294926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.011309156, y: -0.02796408, z: -0.37474573, w: 0.9266368} + inSlope: {x: -0.009194918, y: -0.0036918395, z: 0.3046927, w: 0.12234631} + outSlope: {x: -0.009194918, y: -0.0036918395, z: 0.3046927, w: 0.12234631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.01062465, y: -0.0282312, z: -0.35206336, w: 0.93549} + inSlope: {x: -0.01082257, y: -0.004058288, z: 0.35861868, w: 0.1344833} + outSlope: {x: -0.01082257, y: -0.004058288, z: 0.35861868, w: 0.1344833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.009867049, y: -0.028504847, z: -0.3269598, w: 0.9445567} + inSlope: {x: -0.01150104, y: -0.0039790156, z: 0.3811025, w: 0.13184234} + outSlope: {x: -0.01150104, y: -0.0039790156, z: 0.3811025, w: 0.13184234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.009092136, y: -0.028761404, z: -0.30128145, w: 0.953058} + inSlope: {x: -0.0111853, y: -0.003550013, z: 0.37064427, w: 0.1176334} + outSlope: {x: -0.0111853, y: -0.003550013, z: 0.37064427, w: 0.1176334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.008376608, y: -0.028977886, z: -0.27757144, w: 0.96023136} + inSlope: {x: -0.009839809, y: -0.0028672714, z: 0.32606113, w: 0.095011815} + outSlope: {x: -0.009839809, y: -0.0028672714, z: 0.32606113, w: 0.095011815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.0077809817, y: -0.029143468, z: -0.2578338, w: 0.9657183} + inSlope: {x: -0.005454772, y: -0.0015030045, z: 0.18074767, w: 0.04980891} + outSlope: {x: -0.005454772, y: -0.0015030045, z: 0.18074767, w: 0.04980891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.0076497593, y: -0.029178161, z: -0.2534868, w: 0.9668684} + inSlope: {x: 0.0058996542, y: 0.0016610322, z: -0.19551376, w: -0.055046067} + outSlope: {x: 0.0058996542, y: 0.0016610322, z: -0.19551376, w: -0.055046067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.008567111, y: -0.028922135, z: -0.28388602, w: 0.95838344} + inSlope: {x: 0.006884438, y: 0.0019213972, z: -0.22813661, w: -0.063677} + outSlope: {x: 0.006884438, y: 0.0019213972, z: -0.22813661, w: -0.063677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.008567111, y: -0.028922135, z: -0.28388602, w: 0.95838344} + inSlope: {x: 0.0000003424751, y: 0.00000015376433, z: -0.00000044731442, w: 0} + outSlope: {x: 0.0000003424751, y: 0.00000015376433, z: -0.00000044731442, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.008567156, y: -0.028922115, z: -0.28388608, w: 0.95838344} + inSlope: {x: 0.0000003424751, y: 0.00000015376433, z: -0.00000044731442, w: 0} + outSlope: {x: 0.0000003424751, y: 0.00000015376433, z: -0.00000044731442, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.008567156, y: -0.028922115, z: -0.28388608, w: 0.95838344} + inSlope: {x: -0.00000006989275, y: -0.000000097849856, z: 0, w: 0} + outSlope: {x: -0.00000006989275, y: -0.000000097849856, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.008567147, y: -0.028922128, z: -0.28388608, w: 0.95838344} + inSlope: {x: -0.00000006989275, y: -0.000000097849856, z: 0, w: 0} + outSlope: {x: -0.00000006989275, y: -0.000000097849856, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.008567147, y: -0.028922128, z: -0.28388608, w: 0.95838344} + inSlope: {x: 0.0000000629037, y: 0.000000041935802, z: -0.00000022365761, w: 0} + outSlope: {x: 0.0000000629037, y: 0.000000041935802, z: -0.00000022365761, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.008567155, y: -0.028922122, z: -0.2838861, w: 0.95838344} + inSlope: {x: 0.008484536, y: 0.002695759, z: -0.2811439, w: -0.0893284} + outSlope: {x: 0.008484536, y: 0.002695759, z: -0.2811439, w: -0.0893284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.009697709, y: -0.028562918, z: -0.32134843, w: 0.94648045} + inSlope: {x: 0.017785836, y: 0.0060823844, z: -0.5893593, w: -0.20154686} + outSlope: {x: 0.017785836, y: 0.0060823844, z: -0.5893593, w: -0.20154686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.010937118, y: -0.028111644, z: -0.36241823, w: 0.9315273} + inSlope: {x: 0.016618226, y: 0.0063814176, z: -0.5506688, w: -0.21145543} + outSlope: {x: 0.016618226, y: 0.0063814176, z: -0.5506688, w: -0.21145543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.011912092, y: -0.027712593, z: -0.39472517, w: 0.91830397} + inSlope: {x: 0.009995099, y: 0.0041664788, z: -0.33120653, w: -0.13806796} + outSlope: {x: 0.009995099, y: 0.0041664788, z: -0.33120653, w: -0.13806796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.012268966, y: -0.02755646, z: -0.40655154, w: 0.91312975} + inSlope: {x: 0.0015021823, y: 0.0006521437, z: -0.049777687, w: -0.021610247} + outSlope: {x: 0.0015021823, y: 0.0006521437, z: -0.049777687, w: -0.021610247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.012112257, y: -0.027625695, z: -0.40135804, w: 0.9154244} + inSlope: {x: -0.003517301, y: -0.0015303735, z: 0.11655016, w: 0.0507129} + outSlope: {x: -0.003517301, y: -0.0015303735, z: 0.11655016, w: 0.0507129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.011800285, y: -0.027760383, z: -0.39102122, w: 0.91988724} + inSlope: {x: -0.005614722, y: -0.002372202, z: 0.18605518, w: 0.07860463} + outSlope: {x: -0.005614722, y: -0.002372202, z: 0.18605518, w: 0.07860463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.011364094, y: -0.027941791, z: -0.37656614, w: 0.9258985} + inSlope: {x: -0.006546952, y: -0.0027228259, z: 0.21696141, w: 0.090224944} + outSlope: {x: -0.006546952, y: -0.0027228259, z: 0.21696141, w: 0.090224944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone38/Bone39 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.5524473, y: -0.22409333, z: 0.22750837, w: 0.7699507} + inSlope: {x: 0.13868894, y: 0.37009877, z: -0.5181943, w: 0.1420751} + outSlope: {x: 0.13868894, y: 0.37009877, z: -0.5181943, w: 0.1420751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.56168747, y: -0.1994355, z: 0.19298367, w: 0.77941644} + inSlope: {x: 0.105695024, y: 0.2992898, z: -0.42052072, w: 0.110453114} + outSlope: {x: 0.105695024, y: 0.2992898, z: -0.42052072, w: 0.110453114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.5665312, y: -0.18421297, z: 0.17147398, w: 0.78466856} + inSlope: {x: 0.031887703, y: 0.10215308, z: -0.14526357, w: 0.036231127} + outSlope: {x: 0.031887703, y: 0.10215308, z: -0.14526357, w: 0.036231127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.5659365, y: -0.1858236, z: 0.1736273, w: 0.78424424} + inSlope: {x: -0.028314553, y: -0.08273617, z: 0.1141486, w: -0.025737576} + outSlope: {x: -0.028314553, y: -0.08273617, z: 0.1141486, w: -0.025737576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.56275827, y: -0.19523756, z: 0.18668428, w: 0.78123903} + inSlope: {x: -0.06043844, y: -0.17213687, z: 0.23906115, w: -0.05806857} + outSlope: {x: -0.06043844, y: -0.17213687, z: 0.23906115, w: -0.05806857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.5578831, y: -0.20876084, z: 0.2054822, w: 0.7765066} + inSlope: {x: -0.084020406, y: -0.22282912, z: 0.31023726, w: -0.082928516} + outSlope: {x: -0.084020406, y: -0.22282912, z: 0.31023726, w: -0.082928516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.55156255, y: -0.22492954, z: 0.2280234, w: 0.7701888} + inSlope: {x: -0.10187541, y: -0.24912594, z: 0.34791166, w: -0.1033681} + outSlope: {x: -0.10187541, y: -0.24912594, z: 0.34791166, w: -0.1033681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.5443082, y: -0.24195687, z: 0.25184143, w: 0.7627328} + inSlope: {x: -0.11199859, y: -0.25209856, z: 0.35325372, w: -0.11655493} + outSlope: {x: -0.11199859, y: -0.25209856, z: 0.35325372, w: -0.11655493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.53663874, y: -0.25852168, z: 0.27509445, w: 0.75465786} + inSlope: {x: -0.11164118, y: -0.23279482, z: 0.32730466, w: -0.1186582} + outSlope: {x: -0.11164118, y: -0.23279482, z: 0.32730466, w: -0.1186582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.529432, y: -0.2729768, z: 0.29545477, w: 0.7469216} + inSlope: {x: -0.09836936, y: -0.19218238, z: 0.27103385, w: -0.10628235} + outSlope: {x: -0.09836936, y: -0.19218238, z: 0.27103385, w: -0.10628235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.523531, y: -0.28412998, z: 0.3112097, w: 0.74049574} + inSlope: {x: -0.037037633, y: -0.070292555, z: 0.0992745, w: -0.040293187} + outSlope: {x: -0.037037633, y: -0.070292555, z: 0.0992745, w: -0.040293187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.52449673, y: -0.28234327, z: 0.3086831, w: 0.74155253} + inSlope: {x: 0.13349472, y: 0.26684955, z: -0.37592348, w: 0.14342421} + outSlope: {x: 0.13349472, y: 0.26684955, z: -0.37592348, w: 0.14342421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.5413192, y: -0.24857228, z: 0.2611179, w: 0.759607} + inSlope: {x: 0.12624733, y: 0.25344086, z: -0.35696205, w: 0.13549332} + outSlope: {x: 0.12624733, y: 0.25344086, z: -0.35696205, w: 0.13549332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.5413192, y: -0.24857228, z: 0.2611179, w: 0.759607} + inSlope: {x: -0.43058485, y: -0.74087465, z: 1.0517256, w: -0.47864744} + outSlope: {x: -0.43058485, y: -0.74087465, z: 1.0517256, w: -0.47864744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.48394376, y: -0.34729382, z: 0.40126035, w: 0.69582725} + inSlope: {x: -0.43058485, y: -0.74087465, z: 1.0517256, w: -0.47864744} + outSlope: {x: -0.43058485, y: -0.74087465, z: 1.0517256, w: -0.47864744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.48394376, y: -0.34729382, z: 0.40126035, w: 0.69582725} + inSlope: {x: 0, y: 0, z: 0.00000022365681, w: 0} + outSlope: {x: 0, y: 0, z: 0.00000022365681, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.48394376, y: -0.34729382, z: 0.40126038, w: 0.69582725} + inSlope: {x: 0, y: 0, z: 0.00000022365681, w: 0} + outSlope: {x: 0, y: 0, z: 0.00000022365681, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.48394376, y: -0.34729382, z: 0.40126038, w: 0.69582725} + inSlope: {x: 0.43058518, y: 0.740876, z: -1.0517278, w: 0.4786483} + outSlope: {x: 0.43058518, y: 0.740876, z: -1.0517278, w: 0.4786483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.54131913, y: -0.24857228, z: 0.2611179, w: 0.759607} + inSlope: {x: 0.49504063, y: 0.88816977, z: -1.257992, w: 0.54542977} + outSlope: {x: 0.49504063, y: 0.88816977, z: -1.257992, w: 0.54542977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.5499078, y: -0.22894542, z: 0.23363324, w: 0.76850563} + inSlope: {x: 0.13034654, y: 0.31500772, z: -0.44012064, w: 0.13275799} + outSlope: {x: 0.13034654, y: 0.31500772, z: -0.44012064, w: 0.13275799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.5586878, y: -0.20659749, z: 0.20247182, w: 0.777297} + inSlope: {x: 0.112818316, y: 0.30106086, z: -0.41906172, w: 0.111104205} + outSlope: {x: 0.112818316, y: 0.30106086, z: -0.41906172, w: 0.111104205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.56494087, y: -0.18882899, z: 0.17779316, w: 0.7833103} + inSlope: {x: 0.06075553, y: 0.17541084, z: -0.24349706, w: 0.05805554} + outSlope: {x: 0.06075553, y: 0.17541084, z: -0.24349706, w: 0.05805554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.5667835, y: -0.18322398, z: 0.17002581, w: 0.7850329} + inSlope: {x: 0.0015866272, y: 0.004755523, z: -0.0065932013, w: 0.0014926912} + outSlope: {x: 0.0015866272, y: 0.004755523, z: -0.0065932013, w: 0.0014926912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.5651523, y: -0.18819532, z: 0.17691462, w: 0.7835092} + inSlope: {x: -0.0336425, y: -0.100020245, z: 0.13870946, w: -0.031760648} + outSlope: {x: -0.0336425, y: -0.100020245, z: 0.13870946, w: -0.031760648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.5623006, y: -0.19655168, z: 0.18850885, w: 0.7808008} + inSlope: {x: -0.05091145, y: -0.1445702, z: 0.20079796, w: -0.048972342} + outSlope: {x: -0.05091145, y: -0.1445702, z: 0.20079796, w: -0.048972342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.5583683, y: -0.20745933, z: 0.203671, w: 0.7769836} + inSlope: {x: -0.059021242, y: -0.16371678, z: 0.22757393, w: -0.057293717} + outSlope: {x: -0.059021242, y: -0.16371678, z: 0.22757393, w: -0.057293717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone36 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.017940106, y: -0.0070483433, z: -0.37168095, w: 0.92816037} + inSlope: {x: 0.010234581, y: 0.012180365, z: -0.6339948, w: -0.27106002} + outSlope: {x: 0.010234581, y: 0.012180365, z: -0.6339948, w: -0.27106002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.018621985, y: -0.0062368265, z: -0.41392085, w: 0.910101} + inSlope: {x: 0.01222123, y: 0.008573281, z: -0.4913156, w: -0.21766186} + outSlope: {x: 0.01222123, y: 0.008573281, z: -0.4913156, w: -0.21766186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.019568585, y: -0.0059059537, z: -0.43714875, w: 0.8991569} + inSlope: {x: 0.008004538, y: 0.0012908237, z: -0.13176586, w: -0.061636798} + outSlope: {x: 0.008004538, y: 0.0012908237, z: -0.13176586, w: -0.061636798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.01968859, y: -0.0060648243, z: -0.43147865, w: 0.9018879} + inSlope: {x: -0.00013728358, y: -0.0044346997, z: 0.19237003, w: 0.090153985} + outSlope: {x: -0.00013728358, y: -0.0044346997, z: 0.19237003, w: 0.090153985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.019550292, y: -0.0064968774, z: -0.41151544, w: 0.91116995} + inSlope: {x: -0.0026045581, y: -0.0077255564, z: 0.36128512, w: 0.161281} + outSlope: {x: -0.0026045581, y: -0.0077255564, z: 0.36128512, w: 0.161281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.019341532, y: -0.0070942547, z: -0.3833374, w: 0.9233786} + inSlope: {x: -0.0036000004, y: -0.00972912, z: 0.46550313, w: 0.1917051} + outSlope: {x: -0.0036000004, y: -0.00972912, z: 0.46550313, w: 0.1917051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.019070592, y: -0.0077932826, z: -0.34948716, w: 0.93671465} + inSlope: {x: -0.0043735327, y: -0.010674327, z: 0.5246799, w: 0.19520667} + outSlope: {x: -0.0043735327, y: -0.010674327, z: 0.5246799, w: 0.19520667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.018758759, y: -0.008516609, z: -0.3134238, w: 0.9493899} + inSlope: {x: -0.0048116073, y: -0.010613615, z: 0.5369251, w: 0.17757845} + outSlope: {x: -0.0048116073, y: -0.010613615, z: 0.5369251, w: 0.17757845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.018429445, y: -0.009207547, z: -0.27794188, w: 0.960377} + inSlope: {x: -0.0047698813, y: -0.009606335, z: 0.4996239, w: 0.14592917} + outSlope: {x: -0.0047698813, y: -0.009606335, z: 0.4996239, w: 0.14592917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.018123172, y: -0.009796653, z: -0.24684893, w: 0.96883494} + inSlope: {x: -0.0041255527, y: -0.0077049835, z: 0.41059816, w: 0.10635035} + outSlope: {x: -0.0041255527, y: -0.0077049835, z: 0.41059816, w: 0.10635035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.017879715, y: -0.010234236, z: -0.22322968, w: 0.97454816} + inSlope: {x: -0.0010727998, y: -0.0019508289, z: 0.104886614, w: 0.025921425} + outSlope: {x: -0.0010727998, y: -0.0019508289, z: 0.104886614, w: 0.025921425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.017980222, y: -0.010056601, z: -0.23287278, w: 0.97228897} + inSlope: {x: 0.0073379413, y: 0.014548329, z: -0.76040703, w: -0.21692558} + outSlope: {x: 0.0073379413, y: 0.014548329, z: -0.76040703, w: -0.21692558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.018857496, y: -0.008295671, z: -0.3245539, w: 0.9456428} + inSlope: {x: 0.0065836716, y: 0.013215234, z: -0.68803847, w: -0.19997102} + outSlope: {x: 0.0065836716, y: 0.013215234, z: -0.68803847, w: -0.19997102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.018857496, y: -0.008295671, z: -0.3245539, w: 0.9456428} + inSlope: {x: -0.000000013978576, y: -0.000000020967864, z: -0.00000089462884, w: -0.00000044731442} + outSlope: {x: -0.000000013978576, y: -0.000000020967864, z: -0.00000089462884, w: -0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.018857494, y: -0.008295674, z: -0.32455403, w: 0.94564277} + inSlope: {x: -0.000000013978576, y: -0.000000020967864, z: -0.00000089462884, w: -0.00000044731442} + outSlope: {x: -0.000000013978576, y: -0.000000020967864, z: -0.00000089462884, w: -0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.018857494, y: -0.008295674, z: -0.32455403, w: 0.94564277} + inSlope: {x: -0.000000055914203, y: -0.000000027957102, z: 0, w: 0} + outSlope: {x: -0.000000055914203, y: -0.000000027957102, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.018857487, y: -0.008295678, z: -0.32455403, w: 0.94564277} + inSlope: {x: -0.000000055914203, y: -0.000000027957102, z: 0, w: 0} + outSlope: {x: -0.000000055914203, y: -0.000000027957102, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.018857487, y: -0.008295678, z: -0.32455403, w: 0.94564277} + inSlope: {x: 0.000000209679, y: 0.0000000069893002, z: 0, w: 0} + outSlope: {x: 0.000000209679, y: 0.0000000069893002, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.018857514, y: -0.008295677, z: -0.32455403, w: 0.94564277} + inSlope: {x: 0.0022512118, y: 0.005391204, z: -0.2663807, w: -0.09708798} + outSlope: {x: 0.0022512118, y: 0.005391204, z: -0.2663807, w: -0.09708798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.01915746, y: -0.007577301, z: -0.3600492, w: 0.9327058} + inSlope: {x: 0.004543149, y: 0.011568559, z: -0.56216437, w: -0.2185721} + outSlope: {x: 0.004543149, y: 0.011568559, z: -0.56216437, w: -0.2185721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.019462889, y: -0.006754166, z: -0.39946243, w: 0.91651803} + inSlope: {x: 0.0038831993, y: 0.011018138, z: -0.5208097, w: -0.22400616} + outSlope: {x: 0.0038831993, y: 0.011018138, z: -0.5208097, w: -0.22400616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.019674897, y: -0.0061091315, z: -0.4294472, w: 0.90285695} + inSlope: {x: 0.0019889255, y: 0.0061424277, z: -0.28455743, w: -0.13116051} + outSlope: {x: 0.0019889255, y: 0.0061424277, z: -0.28455743, w: -0.13116051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.019727914, y: -0.0059356866, z: -0.43737975, w: 0.8990409} + inSlope: {x: -0.00015860118, y: -0.000507902, z: 0.023328159, w: 0.011046896} + outSlope: {x: -0.00015860118, y: -0.000507902, z: 0.023328159, w: 0.011046896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.019653764, y: -0.0061768093, z: -0.42633873, w: 0.90432894} + inSlope: {x: -0.0014822874, y: -0.0046580858, z: 0.21493739, w: 0.100396104} + outSlope: {x: -0.0014822874, y: -0.0046580858, z: 0.21493739, w: 0.100396104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.019530399, y: -0.006556377, z: -0.40873933, w: 0.91241866} + inSlope: {x: -0.0021894185, y: -0.00646408, z: 0.3026316, w: 0.1345913} + outSlope: {x: -0.0021894185, y: -0.00646408, z: 0.3026316, w: 0.1345913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.019362023, y: -0.0070381495, z: -0.386013, w: 0.92226326} + inSlope: {x: -0.0025272102, y: -0.007231097, z: 0.3411075, w: 0.1477611} + outSlope: {x: -0.0025272102, y: -0.007231097, z: 0.3411075, w: 0.1477611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone36/Bone37 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.30777743, y: -0.21782242, z: 0.106921844, w: 0.9199968} + inSlope: {x: -0.07482318, y: 0.6210301, z: -0.2051641, w: 0.1295512} + outSlope: {x: -0.07482318, y: 0.6210301, z: -0.2051641, w: 0.1295512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.31276253, y: -0.17644629, z: 0.093252786, w: 0.92862815} + inSlope: {x: -0.06416971, y: 0.5518415, z: -0.13989395, w: 0.100940526} + outSlope: {x: -0.06416971, y: 0.5518415, z: -0.13989395, w: 0.100940526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.31632805, y: -0.14428954, z: 0.088280976, w: 0.9334471} + inSlope: {x: -0.03148199, y: 0.2883229, z: 0.0048066154, w: 0.037559204} + outSlope: {x: -0.03148199, y: 0.2883229, z: 0.0048066154, w: 0.037559204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.3169575, y: -0.13802727, z: 0.09389327, w: 0.9336329} + inSlope: {x: -0.0017959671, y: 0.022654574, z: 0.13097852, w: -0.010763726} + outSlope: {x: -0.0017959671, y: 0.022654574, z: 0.13097852, w: -0.010763726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.31656736, y: -0.14127082, z: 0.105733864, w: 0.93201286} + inSlope: {x: 0.009839128, y: -0.08164886, z: 0.20528947, w: -0.032943364} + outSlope: {x: 0.009839128, y: -0.08164886, z: 0.20528947, w: -0.032943364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.31564644, y: -0.14890698, z: 0.12124809, w: 0.9292432} + inSlope: {x: 0.017496927, y: -0.13988204, z: 0.24929419, w: -0.04958033} + outSlope: {x: 0.017496927, y: -0.13988204, z: 0.24929419, w: -0.04958033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.3142359, y: -0.1599101, z: 0.13895231, w: 0.9254063} + inSlope: {x: 0.02407312, y: -0.18109457, z: 0.26809907, w: -0.06366089} + outSlope: {x: 0.02407312, y: -0.18109457, z: 0.26809907, w: -0.06366089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.3124387, y: -0.17303783, z: 0.15697229, w: 0.9207604} + inSlope: {x: 0.029030481, y: -0.20598918, z: 0.26217747, w: -0.07355727} + outSlope: {x: 0.029030481, y: -0.20598918, z: 0.26217747, w: -0.07355727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.31036758, y: -0.18735816, z: 0.17388746, w: 0.91560477} + inSlope: {x: 0.031541705, y: -0.21457806, z: 0.23198408, w: -0.07689737} + outSlope: {x: 0.031541705, y: -0.21457806, z: 0.23198408, w: -0.07689737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.30823576, y: -0.20163035, z: 0.18788417, w: 0.9105138} + inSlope: {x: 0.030895334, y: -0.20734668, z: 0.1776101, w: -0.071553305} + outSlope: {x: 0.030895334, y: -0.20734668, z: 0.1776101, w: -0.071553305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.30625078, y: -0.2149871, z: 0.197554, w: 0.9060703} + inSlope: {x: 0.024539445, y: -0.20078278, z: -0.0017120913, w: -0.03890696} + outSlope: {x: 0.024539445, y: -0.20078278, z: -0.0017120913, w: -0.03890696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.30496588, y: -0.22838466, z: 0.18765603, w: 0.90532947} + inSlope: {x: 0.015632072, y: -0.24198827, z: -0.53266627, w: 0.038707905} + outSlope: {x: 0.015632072, y: -0.24198827, z: -0.53266627, w: 0.038707905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.3041678, y: -0.24723203, z: 0.12657623, w: 0.9112281} + inSlope: {x: 0.0059893164, y: -0.14144373, z: -0.458385, w: 0.044267576} + outSlope: {x: 0.0059893164, y: -0.14144373, z: -0.458385, w: 0.044267576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.3041678, y: -0.24723203, z: 0.12657623, w: 0.9112281} + inSlope: {x: 0.111797735, y: -0.70465136, z: 0.23340139, w: -0.23140335} + outSlope: {x: 0.111797735, y: -0.70465136, z: 0.23340139, w: -0.23140335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.28927076, y: -0.34112683, z: 0.15767696, w: 0.8803936} + inSlope: {x: 0.111797735, y: -0.70465136, z: 0.23340139, w: -0.23140335} + outSlope: {x: 0.111797735, y: -0.70465136, z: 0.23340139, w: -0.23140335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.28927076, y: -0.34112683, z: 0.15767696, w: 0.8803936} + inSlope: {x: 0.00000022365681, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000022365681, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.28927073, y: -0.34112683, z: 0.15767696, w: 0.8803936} + inSlope: {x: 0.00000022365681, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000022365681, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.28927073, y: -0.34112683, z: 0.15767696, w: 0.8803936} + inSlope: {x: -0.11179861, y: 0.7046527, z: -0.23340225, w: 0.23140377} + outSlope: {x: -0.11179861, y: 0.7046527, z: -0.23340225, w: 0.23140377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.30416787, y: -0.24723202, z: 0.12657617, w: 0.9112281} + inSlope: {x: -0.14339471, y: 0.9423037, z: -0.3212951, w: 0.2925048} + outSlope: {x: -0.14339471, y: 0.9423037, z: -0.3212951, w: 0.2925048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.30837804, y: -0.21556509, z: 0.11486447, w: 0.9193698} + inSlope: {x: -0.06309235, y: 0.50114876, z: -0.19046068, w: 0.11902456} + outSlope: {x: -0.06309235, y: 0.50114876, z: -0.19046068, w: 0.11902456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.31257492, y: -0.18045394, z: 0.10119728, w: 0.92708814} + inSlope: {x: -0.054658815, y: 0.4809562, z: -0.17882665, w: 0.096801795} + outSlope: {x: -0.054658815, y: 0.4809562, z: -0.17882665, w: 0.096801795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.31566134, y: -0.15147756, z: 0.091035776, w: 0.9322687} + inSlope: {x: -0.03273534, y: 0.3154894, z: -0.08442466, w: 0.05165314} + outSlope: {x: -0.03273534, y: 0.3154894, z: -0.08442466, w: 0.05165314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.3169369, y: -0.13841495, z: 0.08994768, w: 0.9339709} + inSlope: {x: -0.009305722, y: 0.09784014, z: 0.045412783, w: 0.0074706115} + outSlope: {x: -0.009305722, y: 0.09784014, z: 0.045412783, w: 0.0074706115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.31690133, y: -0.13844039, z: 0.09708702, w: 0.93326414} + inSlope: {x: 0.0032821647, y: -0.025594056, z: 0.13049851, w: -0.016529152} + outSlope: {x: 0.0032821647, y: -0.025594056, z: 0.13049851, w: -0.016529152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.31649956, y: -0.14182536, z: 0.10733661, w: 0.9317684} + inSlope: {x: 0.008594908, y: -0.071679324, z: 0.17080307, w: -0.027993781} + outSlope: {x: 0.008594908, y: -0.071679324, z: 0.17080307, w: -0.027993781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.31575605, y: -0.14799167, z: 0.11984657, w: 0.92953396} + inSlope: {x: 0.01115958, y: -0.09255232, z: 0.18776637, w: -0.033537786} + outSlope: {x: 0.01115958, y: -0.09255232, z: 0.18776637, w: -0.033537786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone34 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.00345706, y: 0.31789917, z: -0.0009550523, w: 0.94811773} + inSlope: {x: -0.024192913, y: 0.88383824, z: 0.006684108, w: -0.32748872} + outSlope: {x: -0.024192913, y: 0.88383824, z: 0.006684108, w: -0.32748872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.0018452073, y: 0.3767849, z: -0.0005097236, w: 0.9262988} + inSlope: {x: -0.02316886, y: 0.74095976, z: 0.0064008357, w: -0.29300258} + outSlope: {x: -0.02316886, y: 0.74095976, z: 0.0064008357, w: -0.29300258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.0003698096, y: 0.41663206, z: -0.000102140926, w: 0.90907514} + inSlope: {x: -0.01505491, y: 0.31651992, z: 0.0041588834, w: -0.137296} + outSlope: {x: -0.01505491, y: 0.31651992, z: 0.0041588834, w: -0.137296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.00016085943, y: 0.41896117, z: 0.00004444756, w: 0.9080041} + inSlope: {x: -0.005519543, y: -0.08160134, z: 0.0015247265, w: 0.036810398} + outSlope: {x: -0.005519543, y: -0.08160134, z: 0.0015247265, w: 0.036810398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.00036566952, y: 0.40575868, z: 0.00010102887, w: 0.9139801} + inSlope: {x: -0.0020766412, y: -0.2586088, z: 0.00057399337, w: 0.11347204} + outSlope: {x: -0.0020766412, y: -0.2586088, z: 0.00057399337, w: 0.11347204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.00043757187, y: 0.38450155, z: 0.00012093218, w: 0.92312425} + inSlope: {x: -0.0003416004, y: -0.36361516, z: 0.0000943176, w: 0.15014467} + outSlope: {x: -0.0003416004, y: -0.36361516, z: 0.0000943176, w: 0.15014467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.00041118776, y: 0.35730696, z: 0.00011359669, w: 0.9339869} + inSlope: {x: 0.0008764217, y: -0.43179035, z: -0.00024218204, w: 0.16444263} + outSlope: {x: 0.0008764217, y: -0.43179035, z: -0.00024218204, w: 0.16444263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.00032078868, y: 0.32696548, z: 0.00008866142, w: 0.94503623} + inSlope: {x: 0.0015837734, y: -0.46238983, z: -0.00043737172, w: 0.15981963} + outSlope: {x: 0.0015837734, y: -0.46238983, z: -0.00043737172, w: 0.15981963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.00020014995, y: 0.29569352, z: 0.00005531691, w: 0.95528287} + inSlope: {x: 0.001765436, y: -0.45321852, z: -0.00048772997, w: 0.14092417} + outSlope: {x: 0.001765436, y: -0.45321852, z: -0.00048772997, w: 0.14092417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.000085544336, y: 0.2665741, z: 0.000023671404, w: 0.9638144} + inSlope: {x: 0.001420226, y: -0.4026277, z: -0.0003923367, w: 0.11243963} + outSlope: {x: 0.001420226, y: -0.4026277, z: -0.0003923367, w: 0.11243963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.000010904848, y: 0.24204338, z: 0.0000030380456, w: 0.97026545} + inSlope: {x: 0.0006421669, y: -0.2374582, z: -0.00017748371, w: 0.061517812} + outSlope: {x: 0.0006421669, y: -0.2374582, z: -0.00017748371, w: 0.061517812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.000000024400906, y: 0.23493281, z: 0.000000021698865, w: 0.9720116} + inSlope: {x: 0.000081941886, y: 0.18196908, z: -0.000022541986, w: -0.04782507} + outSlope: {x: 0.000081941886, y: 0.18196908, z: -0.000022541986, w: -0.04782507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.000000013908975, y: 0.26629075, z: 0.00000003432597, w: 0.96389276} + inSlope: {x: -0.000000078738694, y: 0.23533167, z: 0.00000009476253, w: -0.060929593} + outSlope: {x: -0.000000078738694, y: 0.23533167, z: 0.00000009476253, w: -0.060929593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.000000013908975, y: 0.26629075, z: 0.00000003432597, w: 0.96389276} + inSlope: {x: -0.000000076086195, y: 0.00000044731442, z: -0.0000002046245, w: 0} + outSlope: {x: -0.000000076086195, y: 0.00000044731442, z: -0.0000002046245, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.00000000377049, y: 0.2662908, z: 0.0000000070597572, w: 0.96389276} + inSlope: {x: -0.000000076086195, y: 0.00000044731442, z: -0.0000002046245, w: 0} + outSlope: {x: -0.000000076086195, y: 0.00000044731442, z: -0.0000002046245, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.00000000377049, y: 0.2662908, z: 0.0000000070597572, w: 0.96389276} + inSlope: {x: -0.00000007139185, y: -0.00000022365681, z: -0.00000015059075, w: 0} + outSlope: {x: -0.00000007139185, y: -0.00000022365681, z: -0.00000015059075, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.0000000057424914, y: 0.26629078, z: -0.0000000130064945, w: 0.96389276} + inSlope: {x: -0.00000007139185, y: -0.00000022365681, z: -0.00000015059075, w: 0} + outSlope: {x: -0.00000007139185, y: -0.00000022365681, z: -0.00000015059075, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.0000000057424914, y: 0.26629078, z: -0.0000000130064945, w: 0.96389276} + inSlope: {x: 0.00000024035518, y: 0, z: 0.000000038229093, w: 0} + outSlope: {x: 0.00000024035518, y: 0, z: 0.000000038229093, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.000000026284777, y: 0.26629078, z: -0.000000007912477, w: 0.96389276} + inSlope: {x: 0.00000011068428, y: 0.35683835, z: 0.0000001806879, w: -0.108193025} + outSlope: {x: 0.00000011068428, y: 0.35683835, z: 0.0000001806879, w: -0.108193025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.000000009006161, y: 0.3138394, z: 0.000000011070126, w: 0.94947606} + inSlope: {x: -0.00000020035395, y: 0.74627024, z: 0.00000006171931, w: -0.24894741} + outSlope: {x: -0.00000020035395, y: 0.74627024, z: 0.00000006171931, w: -0.24894741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -4.1237216e-10, y: 0.3657313, z: 3.1156883e-10, w: 0.9307205} + inSlope: {x: -0.000000046430102, y: 0.695364, z: 0.000000048478803, w: -0.26884666} + outSlope: {x: -0.000000046430102, y: 0.695364, z: 0.000000048478803, w: -0.26884666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.0000000028193388, y: 0.40649682, z: 0.00000001752994, w: 0.9136522} + inSlope: {x: 0.00000006287486, y: 0.42022985, z: 0.000000115875345, w: -0.18009445} + outSlope: {x: 0.00000006287486, y: 0.42022985, z: 0.000000115875345, w: -0.18009445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.000000007965699, y: 0.42172697, z: 0.000000015751993, w: 0.9067229} + inSlope: {x: 0.00000008181182, y: 0.07071047, z: -0.00000020588479, w: -0.031898946} + outSlope: {x: 0.00000008181182, y: 0.07071047, z: -0.00000020588479, w: -0.031898946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.000000013720744, y: 0.41591898, z: -0.0000000099041575, w: 0.90940166} + inSlope: {x: -0.00000011530089, y: -0.13427386, z: 0.000000030445847, w: 0.0608553} + outSlope: {x: -0.00000011530089, y: -0.13427386, z: 0.000000030445847, w: 0.0608553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.000000007398192, y: 0.40383497, z: 0.000000019809002, w: 0.9148319} + inSlope: {x: -0.000000055672444, y: -0.21938787, z: 0.00000019489163, w: 0.09613486} + outSlope: {x: -0.000000055672444, y: -0.21938787, z: 0.00000019489163, w: 0.09613486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.0000000063023773, y: 0.3866855, z: 0.000000016065199, w: 0.92221165} + inSlope: {x: 0.0000002056367, y: -0.2574026, z: -0.00000005619207, w: 0.110765584} + outSlope: {x: 0.0000002056367, y: -0.2574026, z: -0.00000005619207, w: 0.110765584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone34/Bone35 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.99796224, y: -0.045560334, z: 0.042539988, w: -0.01363635} + inSlope: {x: -0.01120612, y: -0.0029806795, z: 0.22363183, w: 0.010235742} + outSlope: {x: -0.01120612, y: -0.0029806795, z: 0.22363183, w: 0.010235742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.9972156, y: -0.04575892, z: 0.057439458, w: -0.012954393} + inSlope: {x: -0.011374311, y: -0.0026428173, z: 0.20244414, w: 0.009285066} + outSlope: {x: -0.011374311, y: -0.0026428173, z: 0.20244414, w: 0.009285066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.9964466, y: -0.04591249, z: 0.06951567, w: -0.012399115} + inSlope: {x: -0.009245094, y: -0.0017381799, z: 0.1382402, w: 0.006363362} + outSlope: {x: -0.009245094, y: -0.0017381799, z: 0.1382402, w: 0.006363362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.9959837, y: -0.045990534, z: 0.075859964, w: -0.012106475} + inSlope: {x: -0.0075953985, y: -0.0012065188, z: 0.09935837, w: 0.004588425} + outSlope: {x: -0.0075953985, y: -0.0012065188, z: 0.09935837, w: 0.004588425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.9954345, y: -0.046073258, z: 0.08275517, w: -0.011787707} + inSlope: {x: -0.00855131, y: -0.00121882, z: 0.10290933, w: 0.004763046} + outSlope: {x: -0.00855131, y: -0.00121882, z: 0.10290933, w: 0.004763046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.99484426, y: -0.046152942, z: 0.08957263, w: -0.0114718} + inSlope: {x: -0.008822829, y: -0.001134641, z: 0.098286495, w: 0.0045593427} + outSlope: {x: -0.008822829, y: -0.001134641, z: 0.098286495, w: 0.0045593427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.9942589, y: -0.04622445, z: 0.095851846, w: -0.011180175} + inSlope: {x: -0.008199273, y: -0.00096432597, z: 0.08556616, w: 0.003977352} + outSlope: {x: -0.008199273, y: -0.00096432597, z: 0.08556616, w: 0.003977352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.9937517, y: -0.04628144, z: 0.10097432, w: -0.010941817} + inSlope: {x: -0.006510661, y: -0.00071374606, z: 0.06460601, w: 0.0030080497} + outSlope: {x: -0.006510661, y: -0.00071374606, z: 0.06460601, w: 0.0030080497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.99339134, y: -0.046319555, z: 0.1044606, w: -0.010779352} + inSlope: {x: -0.0037113677, y: -0.00038902374, z: 0.035676844, w: 0.0016628983} + outSlope: {x: -0.0037113677, y: -0.00038902374, z: 0.035676844, w: 0.0016628983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.99325716, y: -0.046333276, z: 0.10572826, w: -0.010720236} + inSlope: {x: 0.0001668483, y: 0.000017305472, z: -0.0015894761, w: -0.00007412842} + outSlope: {x: 0.0001668483, y: 0.000017305472, z: -0.0015894761, w: -0.00007412842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.99341357, y: -0.04631725, z: 0.1042488, w: -0.01078923} + inSlope: {x: 0.018508976, y: 0.0022691702, z: -0.19906873, w: -0.009244332} + outSlope: {x: 0.018508976, y: 0.0022691702, z: -0.19906873, w: -0.009244332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.9957235, y: -0.04603091, z: 0.079202354, w: -0.0119520435} + inSlope: {x: 0.035205882, y: 0.006039919, z: -0.48927236, w: -0.022560623} + outSlope: {x: 0.035205882, y: 0.006039919, z: -0.48927236, w: -0.022560623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.99810475, y: -0.04551243, z: 0.039053258, w: -0.013795433} + inSlope: {x: 0.017870659, y: 0.0038910203, z: -0.30130655, w: -0.013834065} + outSlope: {x: 0.017870659, y: 0.0038910203, z: -0.30130655, w: -0.013834065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.99810475, y: -0.04551243, z: 0.039053258, w: -0.013795433} + inSlope: {x: -0.0064994786, y: 0.0054619606, z: 0.13222477, w: -0.025925918} + outSlope: {x: -0.0064994786, y: 0.0054619606, z: 0.13222477, w: -0.025925918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.9972387, y: -0.044784624, z: 0.056672208, w: -0.017250061} + inSlope: {x: -0.0064994786, y: 0.0054619606, z: 0.13222477, w: -0.025925918} + outSlope: {x: -0.0064994786, y: 0.0054619606, z: 0.13222477, w: -0.025925918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.9972387, y: -0.044784624, z: 0.056672208, w: -0.017250061} + inSlope: {x: 0, y: -0.000000027957102, z: -0.000000055914203, w: -0.00000004193565} + outSlope: {x: 0, y: -0.000000027957102, z: -0.000000055914203, w: -0.00000004193565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.9972387, y: -0.044784628, z: 0.0566722, w: -0.017250067} + inSlope: {x: 0, y: -0.000000027957102, z: -0.000000055914203, w: -0.00000004193565} + outSlope: {x: 0, y: -0.000000027957102, z: -0.000000055914203, w: -0.00000004193565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.9972387, y: -0.044784628, z: 0.0566722, w: -0.017250067} + inSlope: {x: 0.0034264345, y: 0.0011425549, z: -0.06532549, w: -0.0029285448} + outSlope: {x: 0.0034264345, y: 0.0011425549, z: -0.06532549, w: -0.0029285448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.99769527, y: -0.044632383, z: 0.047967594, w: -0.017640295} + inSlope: {x: 0.008579953, y: 0.0035105578, z: -0.19641373, w: -0.00877009} + outSlope: {x: 0.008579953, y: 0.0035105578, z: -0.19641373, w: -0.00877009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.998382, y: -0.044316847, z: 0.030500118, w: -0.018418679} + inSlope: {x: 0.008150967, y: 0.0050564976, z: -0.27360338, w: -0.0121407835} + outSlope: {x: 0.008150967, y: 0.0050564976, z: -0.27360338, w: -0.0121407835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.9987814, y: -0.043958604, z: 0.011509944, w: -0.019258054} + inSlope: {x: 0.0034953086, y: 0.004363572, z: -0.22827128, w: -0.010063914} + outSlope: {x: 0.0034953086, y: 0.004363572, z: -0.22827128, w: -0.010063914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.9988477, y: -0.0437354, z: 0.00008291657, w: -0.019759698} + inSlope: {x: 0.00046475875, y: 0.0012492056, z: -0.06416111, w: -0.0028184638} + outSlope: {x: 0.00046475875, y: 0.0012492056, z: -0.06416111, w: -0.0028184638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.9988433, y: -0.043792147, z: 0.002960451, w: -0.019633615} + inSlope: {x: -0.0004920467, y: -0.0016652986, z: 0.08525471, w: 0.0037425885} + outSlope: {x: -0.0004920467, y: -0.0016652986, z: 0.08525471, w: 0.0037425885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.99878216, y: -0.0439573, z: 0.011443085, w: -0.019260999} + inSlope: {x: -0.001913162, y: -0.0028561857, z: 0.14859273, w: 0.006543887} + outSlope: {x: -0.001913162, y: -0.0028561857, z: 0.14859273, w: 0.006543887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.9985884, y: -0.044172734, z: 0.022760436, w: -0.018761642} + inSlope: {x: -0.0043975404, y: -0.0034642762, z: 0.1848223, w: 0.008179339} + outSlope: {x: -0.0043975404, y: -0.0034642762, z: 0.1848223, w: 0.008179339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.9981962, y: -0.044418916, z: 0.0360707, w: -0.0181711} + inSlope: {x: -0.0058866474, y: -0.0036950342, z: 0.19977848, w: 0.008863659} + outSlope: {x: -0.0058866474, y: -0.0036950342, z: 0.19977848, w: 0.008863659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 2.385036e-10, y: 0.194536, z: 0.000000015231787, w: 0.9808954} + inSlope: {x: -0.0000001270614, y: -1.0364827, z: -0.00000006140754, w: 0.16811596} + outSlope: {x: -0.0000001270614, y: -1.0364827, z: -0.00000006140754, w: 0.16811596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.000000008226962, y: 0.12548034, z: 0.00000001114051, w: 0.9920961} + inSlope: {x: -0.00000006399095, y: -0.8100981, z: -9.484058e-10, w: 0.11518659} + outSlope: {x: -0.00000006399095, y: -0.8100981, z: -9.484058e-10, w: 0.11518659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.000000008288291, y: 0.086590424, z: 0.000000015105412, w: 0.996244} + inSlope: {x: 0.000000009750916, y: -0.31307083, z: 0.000000027824681, w: 0.032942023} + outSlope: {x: 0.000000009750916, y: -0.31307083, z: 0.000000027824681, w: 0.032942023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.0000000069276527, y: 0.08376365, z: 0.0000000148481485, w: 0.99648565} + inSlope: {x: 0.000000014203392, y: 0.0007168222, z: -0.000000039529464, w: -0.000062176725} + outSlope: {x: 0.000000014203392, y: 0.0007168222, z: -0.000000039529464, w: -0.000062176725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.000000006395689, y: 0.08668594, z: 0.000000009838111, w: 0.9962357} + inSlope: {x: 0.000000013531357, y: 0.07888999, z: -0.0000000047073776, w: -0.007051017} + outSlope: {x: 0.000000013531357, y: 0.07888999, z: -0.0000000047073776, w: -0.007051017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.0000000051245994, y: 0.09427574, z: 0.00000001422089, w: 0.9955461} + inSlope: {x: 0.000000021666763, y: 0.14171419, z: 0.000000033713246, w: -0.013686927} + outSlope: {x: 0.000000021666763, y: 0.14171419, z: 0.000000033713246, w: -0.013686927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.0000000035085927, y: 0.105569355, z: 0.000000014330401, w: 0.99441195} + inSlope: {x: -5.095284e-10, y: 0.18835598, z: -0.000000019297847, w: -0.020238293} + outSlope: {x: -5.095284e-10, y: 0.18835598, z: -0.000000019297847, w: -0.020238293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.000000005192494, y: 0.11937418, z: 0.000000011649452, w: 0.99284935} + inSlope: {x: -0.000000020987471, y: 0.21939403, z: -0.000000012994134, w: -0.026563767} + outSlope: {x: -0.000000020987471, y: 0.21939403, z: -0.000000012994134, w: -0.026563767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.0000000063051733, y: 0.13480361, z: 0.000000012598933, w: 0.9908723} + inSlope: {x: 0.000000035118948, y: 0.23448217, z: -0.0000000010278005, w: -0.031950776} + outSlope: {x: 0.000000035118948, y: 0.23448217, z: -0.0000000010278005, w: -0.031950776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -5.1289445e-10, y: 0.15061893, z: 0.000000011512498, w: 0.9885919} + inSlope: {x: -0.000000022614554, y: 0.23390394, z: 0.00000003195465, w: -0.035585202} + outSlope: {x: -0.000000022614554, y: 0.23390394, z: 0.00000003195465, w: -0.035585202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.000000009318563, y: 0.16597131, z: 0.00000001685689, w: 0.9861306} + inSlope: {x: -0.0000000028029277, y: 0.26232418, z: 0.00000003084218, w: -0.044739492} + outSlope: {x: -0.0000000028029277, y: 0.26232418, z: 0.00000003084218, w: -0.044739492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -8.8638524e-10, y: 0.18557362, z: 0.000000015622218, w: 0.9826304} + inSlope: {x: 0.00000011331202, y: 0.43847492, z: -0.00000005367295, w: -0.08730236} + outSlope: {x: 0.00000011331202, y: 0.43847492, z: -0.00000005367295, w: -0.08730236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.0000000057802634, y: 0.22439809, z: 0.000000009704969, w: 0.97449756} + inSlope: {x: 0.000000050031133, y: 0.29136562, z: -0.000000044407123, w: -0.061034262} + outSlope: {x: 0.000000050031133, y: 0.29136562, z: -0.000000044407123, w: -0.061034262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.0000000057802634, y: 0.22439809, z: 0.000000009704969, w: 0.97449756} + inSlope: {x: -0.000000009897217, y: -0.6113836, z: 0.000000026787209, w: 0.11433446} + outSlope: {x: -0.000000009897217, y: -0.6113836, z: 0.000000026787209, w: 0.11433446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.000000004461459, y: 0.14293122, z: 0.000000013274365, w: 0.9897326} + inSlope: {x: 0.000000025595778, y: -0.665565, z: 0.0000000071514847, w: 0.1219576} + outSlope: {x: 0.000000025595778, y: -0.665565, z: 0.0000000071514847, w: 0.1219576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.0000000091908925, y: 0.13571157, z: 0.000000010657909, w: 0.9907484} + inSlope: {x: -0.000000033666623, y: -0.11622457, z: 0.000000016434168, w: 0.01585819} + outSlope: {x: -0.000000033666623, y: -0.11622457, z: 0.000000016434168, w: 0.01585819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -2.464362e-11, y: 0.1274443, z: 0.00000001546423, w: 0.9918457} + inSlope: {x: -0.000000029367751, y: -0.12258987, z: 0.000000032925126, w: 0.015764674} + outSlope: {x: -0.000000029367751, y: -0.12258987, z: 0.000000032925126, w: 0.015764674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.000000005277632, y: 0.119376436, z: 0.00000001504519, w: 0.99284905} + inSlope: {x: 0.00000004460738, y: -0.11020008, z: -0.00000005218723, w: 0.013332203} + outSlope: {x: 0.00000004460738, y: -0.11020008, z: -0.00000005218723, w: 0.013332203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.000000005919298, y: 0.112760134, z: 0.000000008510294, w: 0.99362224} + inSlope: {x: -0.000000020731576, y: -0.078994304, z: -0.000000020594927, w: 0.009073789} + outSlope: {x: -0.000000020731576, y: -0.078994304, z: -0.000000020594927, w: 0.009073789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.0000000025151545, y: 0.108850464, z: 0.000000012300921, w: 0.99405813} + inSlope: {x: -0.000000021244798, y: -0.03048615, z: 0.000000052904348, w: 0.0033964638} + outSlope: {x: -0.000000021244798, y: -0.03048615, z: 0.000000052904348, w: 0.0033964638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.0000000030884357, y: 0.10869786, z: 0.000000015559797, w: 0.9940748} + inSlope: {x: 0.00000003416571, y: 0.02042367, z: -0.0000000046154067, w: -0.0022647488} + outSlope: {x: 0.00000003416571, y: 0.02042367, z: -0.0000000046154067, w: -0.0022647488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.0000000070677433, y: 0.11157192, z: 0.000000011685917, w: 0.99375635} + inSlope: {x: -0.000000013511716, y: 0.059238717, z: -0.000000053194903, w: -0.0067155343} + outSlope: {x: -0.000000013511716, y: 0.059238717, z: -0.000000053194903, w: -0.0067155343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.000000001288017, y: 0.11659142, z: 0.000000008471575, w: 0.99318} + inSlope: {x: -0.00000003812833, y: 0.08573137, z: 0.000000034139966, w: -0.01012498} + outSlope: {x: -0.00000003812833, y: 0.08573137, z: 0.000000034139966, w: -0.01012498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.0000000019871524, y: 0.12299561, z: 0.00000001623506, w: 0.9924072} + inSlope: {x: 0.000000006356582, y: 0.10081354, z: 0.000000040637744, w: -0.012527038} + outSlope: {x: 0.000000006356582, y: 0.10081354, z: 0.000000040637744, w: -0.012527038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.0000000021350306, y: 0.13002482, z: 0.000000013886536, w: 0.99151075} + inSlope: {x: -0.0000000038906522, y: 0.10451007, z: 0.000000021909232, w: -0.013698532} + outSlope: {x: -0.0000000038906522, y: 0.10451007, z: 0.000000021909232, w: -0.013698532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.0000000014687221, y: 0.1369216, z: 0.00000001915447, w: 0.99058187} + inSlope: {x: -0.00000001000086, y: 0.1035162, z: 0.00000007906828, w: -0.013941871} + outSlope: {x: -0.00000001000086, y: 0.1035162, z: 0.00000007906828, w: -0.013941871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.4806693, y: 0.04769984, z: 0.29894537, w: 0.82299054} + inSlope: {x: -0.009812736, y: -0.36628947, z: -0.6812952, w: 0.23648797} + outSlope: {x: -0.009812736, y: -0.36628947, z: -0.6812952, w: 0.23648797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.48132306, y: 0.023295803, z: 0.25355408, w: 0.83874655} + inSlope: {x: 0.0070257443, y: -0.40673164, z: -0.6954339, w: 0.2236894} + outSlope: {x: 0.0070257443, y: -0.40673164, z: -0.6954339, w: 0.2236894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.4797331, y: -0.00649715, z: 0.2062788, w: 0.85279715} + inSlope: {x: 0.029209632, y: -0.3794005, z: -0.5608709, w: 0.15836944} + outSlope: {x: 0.029209632, y: -0.3794005, z: -0.5608709, w: 0.15836944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.47743088, y: -0.027259313, z: 0.17881803, w: 0.8598493} + inSlope: {x: 0.03152493, y: -0.24788705, z: -0.26757634, w: 0.06971663} + outSlope: {x: 0.03152493, y: -0.24788705, z: -0.26757634, w: 0.06971663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.4755324, y: -0.039528098, z: 0.17062426, w: 0.8620869} + inSlope: {x: 0.030729607, y: -0.18828577, z: -0.092754446, w: 0.026840653} + outSlope: {x: 0.030729607, y: -0.18828577, z: -0.092754446, w: 0.026840653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.47333616, y: -0.05234839, z: 0.1664585, w: 0.8634258} + inSlope: {x: 0.033734217, y: -0.18853629, z: -0.0338806, w: 0.0137307625} + outSlope: {x: 0.033734217, y: -0.18853629, z: -0.0338806, w: 0.0137307625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.47103733, y: -0.06465056, z: 0.16610967, w: 0.8639165} + inSlope: {x: 0.03335892, y: -0.17048728, z: 0.022252437, w: 0.0012940806} + outSlope: {x: 0.03335892, y: -0.17048728, z: 0.022252437, w: 0.0012940806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.46889108, y: -0.07506582, z: 0.16942364, w: 0.8635982} + inSlope: {x: 0.029543553, y: -0.13397156, z: 0.076328054, w: -0.010502943} + outSlope: {x: 0.029543553, y: -0.13397156, z: 0.076328054, w: -0.010502943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.46710065, y: -0.08250227, z: 0.17628038, w: 0.862517} + inSlope: {x: 0.022393677, y: -0.07946708, z: 0.12760851, w: -0.021601707} + outSlope: {x: 0.022393677, y: -0.07946708, z: 0.12760851, w: -0.021601707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.46590713, y: -0.08565481, z: 0.18642747, w: 0.8607198} + inSlope: {x: 0.0120953815, y: -0.0062554684, z: 0.17656484, w: -0.032638744} + outSlope: {x: 0.0120953815, y: -0.0062554684, z: 0.17656484, w: -0.032638744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.46548894, y: -0.08333581, z: 0.19980764, w: 0.8581679} + inSlope: {x: -0.019914886, y: 0.24262176, z: 0.34748054, w: -0.07628142} + outSlope: {x: -0.019914886, y: 0.24262176, z: 0.34748054, w: -0.07628142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.46856079, y: -0.05332546, z: 0.23272926, w: 0.8505553} + inSlope: {x: -0.07252085, y: 1.0302924, z: 0.9156651, w: -0.30774695} + outSlope: {x: -0.07252085, y: 1.0302924, z: 0.9156651, w: -0.30774695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.47515234, y: 0.05395065, z: 0.32182002, w: 0.8171606} + inSlope: {x: -0.049467605, y: 0.80507404, z: 0.6685986, w: -0.25061685} + outSlope: {x: -0.049467605, y: 0.80507404, z: 0.6685986, w: -0.25061685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.47515234, y: 0.05395065, z: 0.32182002, w: 0.8171606} + inSlope: {x: 0.00000067097164, y: 0.0000003914001, z: 0, w: 0.00000044731442} + outSlope: {x: 0.00000067097164, y: 0.0000003914001, z: 0, w: 0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.47515225, y: 0.0539507, z: 0.32182002, w: 0.81716067} + inSlope: {x: 0.00000067097164, y: 0.0000003914001, z: 0, w: 0.00000044731442} + outSlope: {x: 0.00000067097164, y: 0.0000003914001, z: 0, w: 0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.47515225, y: 0.0539507, z: 0.32182002, w: 0.81716067} + inSlope: {x: 0, y: 0.000000027957102, z: 0, w: 0} + outSlope: {x: 0, y: 0.000000027957102, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.47515225, y: 0.053950705, z: 0.32182002, w: 0.81716067} + inSlope: {x: 0, y: 0.000000027957102, z: 0, w: 0} + outSlope: {x: 0, y: 0.000000027957102, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.47515225, y: 0.053950705, z: 0.32182002, w: 0.81716067} + inSlope: {x: -0.00000022365761, y: -0.000000083871605, z: 0, w: 0} + outSlope: {x: -0.00000022365761, y: -0.000000083871605, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.47515228, y: 0.053950693, z: 0.32182002, w: 0.81716067} + inSlope: {x: -0.014937867, y: -0.14607182, z: -0.26390323, w: 0.09669211} + outSlope: {x: -0.014937867, y: -0.14607182, z: -0.26390323, w: 0.09669211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.47714272, y: 0.03448667, z: 0.28665498, w: 0.83004487} + inSlope: {x: -0.02471346, y: -0.30204678, z: -0.5579955, w: 0.18952265} + outSlope: {x: -0.02471346, y: -0.30204678, z: -0.5579955, w: 0.18952265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.47844535, y: 0.013702959, z: 0.24746712, w: 0.84241456} + inSlope: {x: -0.01133023, y: -0.30273044, z: -0.5654708, w: 0.1661023} + outSlope: {x: -0.01133023, y: -0.30273044, z: -0.5654708, w: 0.1661023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.47865248, y: -0.0058522313, z: 0.21130586, w: 0.85217804} + inSlope: {x: 0.0036823044, y: -0.26510578, z: -0.46507704, w: 0.11923385} + outSlope: {x: 0.0036823044, y: -0.26510578, z: -0.46507704, w: 0.11923385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.4779547, y: -0.021622393, z: 0.18549559, w: 0.8583025} + inSlope: {x: 0.013753824, y: -0.19757736, z: -0.27290434, w: 0.06481955} + outSlope: {x: 0.013753824, y: -0.19757736, z: -0.27290434, w: 0.06481955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.47681978, y: -0.032179367, z: 0.17494142, w: 0.8608152} + inSlope: {x: 0.019508272, y: -0.15572341, z: -0.121901184, w: 0.0301499} + outSlope: {x: 0.019508272, y: -0.15572341, z: -0.121901184, w: 0.0301499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.4753552, y: -0.042372536, z: 0.16925226, w: 0.86231995} + inSlope: {x: 0.023733342, y: -0.15368776, z: -0.06602919, w: 0.018584091} + outSlope: {x: 0.023733342, y: -0.15368776, z: -0.06602919, w: 0.018584091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.4736573, y: -0.052658297, z: 0.16614302, w: 0.86329156} + inSlope: {x: 0.025484351, y: -0.15438263, z: -0.04666778, w: 0.0145833185} + outSlope: {x: 0.025484351, y: -0.15438263, z: -0.04666778, w: 0.0145833185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone48 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.016609438, y: 0.03273423, z: -0.44048735, w: 0.89700806} + inSlope: {x: -0.039556656, y: -0.022955645, z: -1.132766, w: -0.6180713} + outSlope: {x: -0.039556656, y: -0.022955645, z: -1.132766, w: -0.6180713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.0192449, y: 0.03120481, z: -0.5159579, w: 0.85582906} + inSlope: {x: -0.035475947, y: -0.026029352, z: -1.0930519, w: -0.6574533} + outSlope: {x: -0.035475947, y: -0.026029352, z: -1.0930519, w: -0.6574533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.021336608, y: 0.02926582, z: -0.5861365, w: 0.8094024} + inSlope: {x: -0.023430552, y: -0.023138318, z: -0.7964098, w: -0.55309534} + outSlope: {x: -0.023430552, y: -0.023138318, z: -0.7964098, w: -0.55309534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.022367021, y: 0.02812163, z: -0.6220795, w: 0.7821291} + inSlope: {x: -0.009399725, y: -0.0099231675, z: -0.31608802, w: -0.24184099} + outSlope: {x: -0.009399725, y: -0.0099231675, z: -0.31608802, w: -0.24184099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.022589121, y: 0.027943557, z: -0.62825525, w: 0.7771771} + inSlope: {x: -0.0012657181, y: -0.0010133908, z: -0.035203643, w: -0.028172756} + outSlope: {x: -0.0012657181, y: -0.0010133908, z: -0.035203643, w: -0.028172756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.022535678, y: 0.027986595, z: -0.6267704, w: 0.7783751} + inSlope: {x: 0.002566816, y: 0.0020484903, z: 0.07137125, w: 0.056980252} + outSlope: {x: 0.002566816, y: 0.0020484903, z: 0.07137125, w: 0.056980252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.022247093, y: 0.028216518, z: -0.618745, w: 0.7847697} + inSlope: {x: 0.0057929317, y: 0.004535475, z: 0.16111192, w: 0.12614805} + outSlope: {x: 0.0057929317, y: 0.004535475, z: 0.16111192, w: 0.12614805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.02176377, y: 0.028590947, z: -0.6053022, w: 0.7951843} + inSlope: {x: 0.008492138, y: 0.0064277826, z: 0.23618916, w: 0.17877233} + outSlope: {x: 0.008492138, y: 0.0064277826, z: 0.23618916, w: 0.17877233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.021115515, y: 0.02907302, z: -0.5872728, w: 0.8085911} + inSlope: {x: 0.010632301, y: 0.007692452, z: 0.29570347, w: 0.2139317} + outSlope: {x: 0.010632301, y: 0.007692452, z: 0.29570347, w: 0.2139317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.020347016, y: 0.029615967, z: -0.5658997, w: 0.8236907} + inSlope: {x: 0.012213431, y: 0.00836819, z: 0.33967984, w: 0.23273635} + outSlope: {x: 0.012213431, y: 0.00836819, z: 0.33967984, w: 0.23273635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.019488076, y: 0.030188082, z: -0.5420105, w: 0.83960325} + inSlope: {x: 0.017782286, y: 0.011222197, z: 0.4945696, w: 0.31211945} + outSlope: {x: 0.017782286, y: 0.011222197, z: 0.4945696, w: 0.31211945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.017977526, y: 0.031111324, z: -0.49999833, w: 0.8652806} + inSlope: {x: 0.039806105, y: 0.021207415, z: 1.1071059, w: 0.5898297} + outSlope: {x: 0.039806105, y: 0.021207415, z: 1.1071059, w: 0.5898297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.014183912, y: 0.03301397, z: -0.39448863, w: 0.91819805} + inSlope: {x: 0.0284699, y: 0.014278766, z: 0.7918176, w: 0.39712888} + outSlope: {x: 0.0284699, y: 0.014278766, z: 0.7918176, w: 0.39712888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.014183912, y: 0.03301397, z: -0.39448863, w: 0.91819805} + inSlope: {x: 0.000000020967864, y: -0.00000033548582, z: -0.00000044731442, w: -0.00000044731442} + outSlope: {x: 0.000000020967864, y: -0.00000033548582, z: -0.00000044731442, w: -0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.01418391, y: 0.033013925, z: -0.3944887, w: 0.918198} + inSlope: {x: 0.000000020967864, y: -0.00000033548582, z: -0.00000044731442, w: -0.00000044731442} + outSlope: {x: 0.000000020967864, y: -0.00000033548582, z: -0.00000044731442, w: -0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.01418391, y: 0.033013925, z: -0.3944887, w: 0.918198} + inSlope: {x: 0.00000006989275, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000006989275, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.0141839, y: 0.033013925, z: -0.3944887, w: 0.918198} + inSlope: {x: 0.00000006989275, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000006989275, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.0141839, y: 0.033013925, z: -0.3944887, w: 0.918198} + inSlope: {x: -0.000000041935802, y: 0.000000111828804, z: -0.00000022365761, w: 0} + outSlope: {x: -0.000000041935802, y: 0.000000111828804, z: -0.00000022365761, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.014183906, y: 0.03301394, z: -0.39448872, w: 0.918198} + inSlope: {x: -0.016465122, y: -0.0077417404, z: -0.45793292, w: -0.21532367} + outSlope: {x: -0.016465122, y: -0.0077417404, z: -0.45793292, w: -0.21532367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.016377874, y: 0.03198234, z: -0.45550814, w: 0.88950616} + inSlope: {x: -0.034019202, y: -0.017574826, z: -0.94615334, w: -0.488792} + outSlope: {x: -0.034019202, y: -0.017574826, z: -0.94615334, w: -0.488792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.018716965, y: 0.030672094, z: -0.52056366, w: 0.85306644} + inSlope: {x: -0.032756746, y: -0.01982849, z: -0.91103756, w: -0.5514809} + outSlope: {x: -0.032756746, y: -0.01982849, z: -0.91103756, w: -0.5514809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.020742718, y: 0.029340189, z: -0.5769041, w: 0.8160212} + inSlope: {x: -0.025172777, y: -0.017394893, z: -0.7001103, w: -0.48378652} + outSlope: {x: -0.025172777, y: -0.017394893, z: -0.7001103, w: -0.48378652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.022071239, y: 0.028354224, z: -0.6138534, w: 0.7886019} + inSlope: {x: -0.013159832, y: -0.009920501, z: -0.3660054, w: -0.2759085} + outSlope: {x: -0.013159832, y: -0.009920501, z: -0.3660054, w: -0.2759085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.022496263, y: 0.028018285, z: -0.62567425, w: 0.77925646} + inSlope: {x: -0.0040430976, y: -0.0032094284, z: -0.11244601, w: -0.08927018} + outSlope: {x: -0.0040430976, y: -0.0032094284, z: -0.11244601, w: -0.08927018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.02260998, y: 0.027926568, z: -0.6288368, w: 0.77670664} + inSlope: {x: -0.0004266254, y: -0.0003432014, z: -0.0118569415, w: -0.009539858} + outSlope: {x: -0.0004266254, y: -0.0003432014, z: -0.0118569415, w: -0.009539858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.02255311, y: 0.027972553, z: -0.6272542, w: 0.7779853} + inSlope: {x: 0.0008535862, y: 0.0006902049, z: 0.023754142, w: 0.019191543} + outSlope: {x: 0.0008535862, y: 0.0006902049, z: 0.023754142, w: 0.019191543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone48/Bone49 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.01907018, y: -0.36458212, z: -0.071015395, w: 0.9282634} + inSlope: {x: 0.036965642, y: 0.7213433, z: 0.005815535, w: 0.26181492} + outSlope: {x: 0.036965642, y: 0.7213433, z: 0.005815535, w: 0.26181492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.021533016, y: -0.31652263, z: -0.070627935, w: 0.94570684} + inSlope: {x: 0.035841975, y: 0.7077501, z: 0.0069410335, w: 0.23766665} + outSlope: {x: 0.035841975, y: 0.7077501, z: 0.0069410335, w: 0.23766665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.023846123, y: -0.27027443, z: -0.0700905, w: 0.9599325} + inSlope: {x: 0.02518471, y: 0.5253265, z: 0.0061836746, w: 0.15454042} + outSlope: {x: 0.02518471, y: 0.5253265, z: 0.0061836746, w: 0.15454042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.024888879, y: -0.24652287, z: -0.06980396, w: 0.96629936} + inSlope: {x: 0.006821755, y: 0.19187517, z: 0.0016466203, w: 0.051233605} + outSlope: {x: 0.006821755, y: 0.19187517, z: 0.0016466203, w: 0.051233605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.024755122, y: -0.24470706, z: -0.06987109, w: 0.9667594} + inSlope: {x: -0.004442279, y: -0.022119585, z: -0.0017912147, w: -0.005695654} + outSlope: {x: -0.004442279, y: -0.022119585, z: -0.0017912147, w: -0.005695654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.024296945, y: -0.24947031, z: -0.07004264, w: 0.9655404} + inSlope: {x: -0.008937971, y: -0.111293495, z: -0.0031980744, w: -0.029091094} + outSlope: {x: -0.008937971, y: -0.111293495, z: -0.0031980744, w: -0.029091094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.023564138, y: -0.25953692, z: -0.070297234, w: 0.962883} + inSlope: {x: -0.012586826, y: -0.17990819, z: -0.0042196847, w: -0.048883416} + outSlope: {x: -0.012586826, y: -0.17990819, z: -0.0042196847, w: -0.048883416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.02261975, y: -0.27344307, z: -0.07060491, w: 0.9590267} + inSlope: {x: -0.015439574, y: -0.22872372, z: -0.004850733, w: -0.06556243} + outSlope: {x: -0.015439574, y: -0.22872372, z: -0.004850733, w: -0.06556243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.021506814, y: -0.29001436, z: -0.070943594, w: 0.9541468} + inSlope: {x: -0.017445639, y: -0.25723398, z: -0.00512298, w: -0.078356065} + outSlope: {x: -0.017445639, y: -0.25723398, z: -0.00512298, w: -0.078356065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.020295119, y: -0.3077195, z: -0.07128755, w: 0.94858575} + inSlope: {x: -0.018602073, y: -0.2660738, z: -0.0051194015, w: -0.08632453} + outSlope: {x: -0.018602073, y: -0.2660738, z: -0.0051194015, w: -0.08632453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.019028088, y: -0.3254687, z: -0.071625754, w: 0.94264406} + inSlope: {x: -0.022804396, y: -0.30794442, z: -0.0058819605, w: -0.10735993} + outSlope: {x: -0.022804396, y: -0.30794442, z: -0.0058819605, w: -0.10735993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.017256433, y: -0.3487531, z: -0.07207132, w: 0.93428004} + inSlope: {x: -0.0402643, y: -0.51906204, z: -0.009098208, w: -0.20111793} + outSlope: {x: -0.0402643, y: -0.51906204, z: -0.009098208, w: -0.20111793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.01366287, y: -0.3946337, z: -0.07283809, w: 0.9158451} + inSlope: {x: -0.02696858, y: -0.34431982, z: -0.0057543647, w: -0.13834853} + outSlope: {x: -0.02696858, y: -0.34431982, z: -0.0057543647, w: -0.13834853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.01366287, y: -0.3946337, z: -0.07283809, w: 0.9158451} + inSlope: {x: -0.00000006989288, y: -0.0000015656004, z: -0.000000055914303, w: -0.00000089462884} + outSlope: {x: -0.00000006989288, y: -0.0000015656004, z: -0.000000055914303, w: -0.00000089462884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.013662861, y: -0.39463392, z: -0.0728381, w: 0.915845} + inSlope: {x: -0.00000006989288, y: -0.0000015656004, z: -0.000000055914303, w: -0.00000089462884} + outSlope: {x: -0.00000006989288, y: -0.0000015656004, z: -0.000000055914303, w: -0.00000089462884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.013662861, y: -0.39463392, z: -0.0728381, w: 0.915845} + inSlope: {x: 0.0000000838713, y: 0.00000022365681, z: 0.000000111828406, w: 0} + outSlope: {x: 0.0000000838713, y: 0.00000022365681, z: 0.000000111828406, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.013662872, y: -0.3946339, z: -0.07283808, w: 0.915845} + inSlope: {x: 0.0000000838713, y: 0.00000022365681, z: 0.000000111828406, w: 0} + outSlope: {x: 0.0000000838713, y: 0.00000022365681, z: 0.000000111828406, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.013662872, y: -0.3946339, z: -0.07283808, w: 0.915845} + inSlope: {x: 0.0000000139786005, y: -0.00000022365761, z: 0, w: 0} + outSlope: {x: 0.0000000139786005, y: -0.00000022365761, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.013662874, y: -0.39463392, z: -0.07283808, w: 0.915845} + inSlope: {x: 0.021848602, y: 0.2781417, z: 0.004553781, w: 0.11328884} + outSlope: {x: 0.021848602, y: 0.2781417, z: 0.004553781, w: 0.11328884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.016574193, y: -0.35757157, z: -0.07223129, w: 0.9309407} + inSlope: {x: 0.045899034, y: 0.5923764, z: 0.010640098, w: 0.22600919} + outSlope: {x: 0.045899034, y: 0.5923764, z: 0.010640098, w: 0.22600919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.01977892, y: -0.31569976, z: -0.07142029, w: 0.9459607} + inSlope: {x: 0.045435138, y: 0.60096633, z: 0.0124731725, w: 0.20205961} + outSlope: {x: 0.045435138, y: 0.60096633, z: 0.0124731725, w: 0.20205961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.022628436, y: -0.27749267, z: -0.07056924, w: 0.9578652} + inSlope: {x: 0.035460502, y: 0.47935182, z: 0.011108603, w: 0.1423649} + outSlope: {x: 0.035460502, y: 0.47935182, z: 0.011108603, w: 0.1423649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.024504034, y: -0.2518261, z: -0.06994007, w: 0.96493083} + inSlope: {x: 0.017857382, y: 0.24490643, z: 0.0060618483, w: 0.066470146} + outSlope: {x: 0.017857382, y: 0.24490643, z: 0.0060618483, w: 0.066470146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.025007928, y: -0.24485895, z: -0.0697615, w: 0.9667223} + inSlope: {x: 0.0037089842, y: 0.051282346, z: 0.0013142121, w: 0.0131899845} + outSlope: {x: 0.0037089842, y: 0.051282346, z: 0.0013142121, w: 0.0131899845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.024998255, y: -0.24499275, z: -0.06976495, w: 0.9666884} + inSlope: {x: -0.0023230533, y: -0.0321472, z: -0.000826971, w: -0.008218492} + outSlope: {x: -0.0023230533, y: -0.0321472, z: -0.000826971, w: -0.008218492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.02469838, y: -0.24914257, z: -0.069871694, w: 0.9656272} + inSlope: {x: -0.0045009255, y: -0.062286183, z: -0.0016021655, w: -0.015927942} + outSlope: {x: -0.0045009255, y: -0.062286183, z: -0.0016021655, w: -0.015927942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone42 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.00000004882136, y: 0.566104, z: 0.00000008702786, w: 0.8243338} + inSlope: {x: -0.000000114970085, y: 0.35022482, z: -0.00000020622366, w: -0.24795443} + outSlope: {x: -0.000000114970085, y: 0.35022482, z: -0.00000020622366, w: -0.24795443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.000000041161478, y: 0.5894377, z: 0.000000073288206, w: 0.8078138} + inSlope: {x: 0.000000011263264, y: 0.2980022, z: -0.00000048743334, w: -0.21558407} + outSlope: {x: 0.000000011263264, y: 0.2980022, z: -0.00000048743334, w: -0.21558407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.00000005032219, y: 0.6058128, z: 0.000000022077362, w: 0.7956072} + inSlope: {x: -0.00000025968896, y: 0.15097667, z: -0.0000000059285696, w: -0.113098085} + outSlope: {x: -0.00000025968896, y: 0.15097667, z: -0.0000000059285696, w: -0.113098085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.0000000065579218, y: 0.60955536, z: 0.000000072498224, w: 0.7927435} + inSlope: {x: -0.00000030337708, y: -0.03425265, z: 0.000000272158, w: 0.02592724} + outSlope: {x: -0.00000030337708, y: -0.03425265, z: 0.000000272158, w: 0.02592724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.000000009897192, y: 0.6012486, z: 0.000000058342412, w: 0.799062} + inSlope: {x: -0.00000007586253, y: -0.17134424, z: -0.000000065623276, w: 0.12790732} + outSlope: {x: -0.00000007586253, y: -0.17134424, z: -0.000000065623276, w: 0.12790732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.0000000035507608, y: 0.58672374, z: 0.00000006375392, w: 0.80978715} + inSlope: {x: 0.00000011353844, y: -0.2515374, z: 0.00000002585813, w: 0.18125269} + outSlope: {x: 0.00000011353844, y: -0.2515374, z: 0.00000002585813, w: 0.18125269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.00000002502619, y: 0.56773126, z: 0.00000006178801, w: 0.82321393} + inSlope: {x: 0.00000019213127, y: -0.30178156, z: -0.00000007240905, w: 0.20761383} + outSlope: {x: 0.00000019213127, y: -0.30178156, z: -0.00000007240905, w: 0.20761383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.00000002205073, y: 0.54651135, z: 0.000000054105417, w: 0.8374517} + inSlope: {x: -0.000000012060656, y: -0.3210112, z: -0.000000093726854, w: 0.20949434} + outSlope: {x: -0.000000012060656, y: -0.3210112, z: -0.000000093726854, w: 0.20949434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.000000023419107, y: 0.5249565, z: 0.000000049298905, w: 0.85112906} + inSlope: {x: 0.00000018168896, y: -0.3068899, z: -7.0963324e-10, w: 0.18991092} + outSlope: {x: 0.00000018168896, y: -0.3068899, z: -7.0963324e-10, w: 0.18991092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.000000046260784, y: 0.5056183, z: 0.000000054010858, w: 0.8627573} + inSlope: {x: -0.0000000667018, y: -0.2573382, z: 0.0000001162914, w: 0.15173396} + outSlope: {x: -0.0000000667018, y: -0.2573382, z: 0.0000001162914, w: 0.15173396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.000000014531092, y: 0.4906662, z: 0.00000006479473, w: 0.8713476} + inSlope: {x: -0.000000083149715, y: -0.08469943, z: 0.00000016001974, w: 0.04889907} + outSlope: {x: -0.000000083149715, y: -0.08469943, z: 0.00000016001974, w: 0.04889907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.000000035181085, y: 0.49433208, z: 0.00000007533349, w: 0.8692731} + inSlope: {x: 0.00000036417708, y: 0.38375282, z: 0.000000085245986, w: -0.2314521} + outSlope: {x: 0.00000036417708, y: 0.38375282, z: 0.000000085245986, w: -0.2314521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.00000006305769, y: 0.5418013, z: 0.00000007615376, w: 0.8405066} + inSlope: {x: 0.0000002092053, y: 0.35624164, z: 0.0000000061558865, w: -0.21588378} + outSlope: {x: 0.0000002092053, y: 0.35624164, z: 0.0000000061558865, w: -0.21588378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.00000006305769, y: 0.5418013, z: 0.00000007615376, w: 0.8405066} + inSlope: {x: -0.0000005025567, y: 0.00000089462884, z: -0.00000025757393, w: -0.00000044731442} + outSlope: {x: -0.0000005025567, y: 0.00000089462884, z: -0.00000025757393, w: -0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.000000003907995, y: 0.5418014, z: 0.000000041832035, w: 0.84050655} + inSlope: {x: -0.0000005025567, y: 0.00000089462884, z: -0.00000025757393, w: -0.00000044731442} + outSlope: {x: -0.0000005025567, y: 0.00000089462884, z: -0.00000025757393, w: -0.00000044731442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.000000003907995, y: 0.5418014, z: 0.000000041832035, w: 0.84050655} + inSlope: {x: -0.0000001426409, y: 0, z: -0.0000001562223, w: 0} + outSlope: {x: -0.0000001426409, y: 0, z: -0.0000001562223, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.000000022914929, y: 0.5418014, z: 0.000000021015376, w: 0.84050655} + inSlope: {x: -0.0000001426409, y: 0, z: -0.0000001562223, w: 0} + outSlope: {x: -0.0000001426409, y: 0, z: -0.0000001562223, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.000000022914929, y: 0.5418014, z: 0.000000021015376, w: 0.84050655} + inSlope: {x: 0.00000014618088, y: -0.00000044731522, z: 0.00000017062416, w: 0} + outSlope: {x: 0.00000014618088, y: -0.00000044731522, z: 0.00000017062416, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.0000000034363623, y: 0.54180133, z: 0.000000043751005, w: 0.84050655} + inSlope: {x: 0.000000089339736, y: 0.14035544, z: 0.00000033990105, w: -0.092718154} + outSlope: {x: 0.000000089339736, y: 0.14035544, z: 0.00000033990105, w: -0.092718154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.000000011010432, y: 0.5605037, z: 0.00000006630711, w: 0.8281519} + inSlope: {x: -0.00000010878536, y: 0.29951233, z: 0.000000008116885, w: -0.20346138} + outSlope: {x: -0.00000010878536, y: 0.29951233, z: 0.000000008116885, w: -0.20346138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.00000001793201, y: 0.58171135, z: 0.0000000448325, w: 0.8133953} + inSlope: {x: 0.000000010125657, y: 0.29487628, z: 0.000000024843729, w: -0.21012333} + outSlope: {x: 0.000000010125657, y: 0.29487628, z: 0.000000024843729, w: -0.21012333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.000000009661186, y: 0.59979606, z: 0.00000006961754, w: 0.8001529} + inSlope: {x: 0.00000042785965, y: 0.20834194, z: -0.00000013342024, w: -0.15450993} + outSlope: {x: 0.00000042785965, y: 0.20834194, z: -0.00000013342024, w: -0.15450993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.000000039080216, y: 0.60947293, z: 0.000000027054373, w: 0.79280686} + inSlope: {x: -0.00000008520064, y: 0.05462435, z: -0.0000001806831, w: -0.041337293} + outSlope: {x: -0.00000008520064, y: 0.05462435, z: -0.0000001806831, w: -0.041337293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.000000021014147, y: 0.60707474, z: 0.00000004554156, w: 0.7946447} + inSlope: {x: -0.000000058582884, y: -0.079993606, z: 0.0000002118325, w: 0.060648173} + outSlope: {x: -0.000000058582884, y: -0.079993606, z: 0.0000002118325, w: 0.060648173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.000000031274254, y: 0.5988138, z: 0.00000005528104, w: 0.80088824} + inSlope: {x: 0.00000023390704, y: -0.15145189, z: 0.000000094336045, w: 0.11271453} + outSlope: {x: 0.00000023390704, y: -0.15145189, z: 0.000000094336045, w: 0.11271453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.000000010154026, y: 0.58689374, z: 0.000000058111862, w: 0.80966395} + inSlope: {x: -0.000000317001, y: -0.17891203, z: 0.000000042488836, w: 0.13171776} + outSlope: {x: -0.000000317001, y: -0.17891203, z: 0.000000042488836, w: 0.13171776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone42/Bone43 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.029107831, y: 0.29396373, z: -0.2371904, w: 0.9254614} + inSlope: {x: -0.094555, y: -0.36537984, z: -0.0023262587, w: 0.112851165} + outSlope: {x: -0.094555, y: -0.36537984, z: -0.0023262587, w: 0.112851165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.022808105, y: 0.2696203, z: -0.23734538, w: 0.9329801} + inSlope: {x: -0.104252405, y: -0.37847954, z: -0.015213499, w: 0.10765382} + outSlope: {x: -0.104252405, y: -0.37847954, z: -0.015213499, w: 0.10765382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.015216199, y: 0.24353133, z: -0.2392176, w: 0.9398063} + inSlope: {x: -0.09420404, y: -0.3149551, z: -0.033049602, w: 0.07669787} + outSlope: {x: -0.09420404, y: -0.3149551, z: -0.033049602, w: 0.07669787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.010255417, y: 0.22765253, z: -0.24174924, w: 0.9432001} + inSlope: {x: -0.054985054, y: -0.16497415, z: -0.044126786, w: 0.030062212} + outSlope: {x: -0.054985054, y: -0.16497415, z: -0.044126786, w: 0.030062212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.00788944, y: 0.22154853, z: -0.24509749, w: 0.9438121} + inSlope: {x: -0.034647014, y: -0.08001582, z: -0.058753856, w: 0.003848693} + outSlope: {x: -0.034647014, y: -0.08001582, z: -0.058753856, w: 0.003848693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.0056387023, y: 0.21699043, z: -0.2495782, w: 0.94371295} + inSlope: {x: -0.031734053, y: -0.0557309, z: -0.07203216, w: -0.0060177213} + outSlope: {x: -0.031734053, y: -0.0557309, z: -0.07203216, w: -0.0060177213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.0036608777, y: 0.21412238, z: -0.25469577, w: 0.9430102} + inSlope: {x: -0.026070397, y: -0.02859558, z: -0.07701491, w: -0.014175842} + outSlope: {x: -0.026070397, y: -0.02859558, z: -0.07701491, w: -0.014175842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.0021648218, y: 0.21318007, z: -0.25984043, w: 0.941824} + inSlope: {x: -0.01758637, y: 0.0017323373, z: -0.07377803, w: -0.020688292} + outSlope: {x: -0.01758637, y: 0.0017323373, z: -0.07377803, w: -0.020688292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.0013174939, y: 0.21435322, z: -0.2645267, w: 0.9402535} + inSlope: {x: -0.006389476, y: 0.03486581, z: -0.062357865, w: -0.02549066} + outSlope: {x: -0.006389476, y: 0.03486581, z: -0.062357865, w: -0.02549066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.0013134242, y: 0.21782593, z: -0.2681496, w: 0.9384274} + inSlope: {x: 0.0076581975, y: 0.07118315, z: -0.042573374, w: -0.028766342} + outSlope: {x: 0.0076581975, y: 0.07118315, z: -0.042573374, w: -0.028766342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.0023379487, y: 0.22383837, z: -0.2701996, w: 0.9364204} + inSlope: {x: 0.055637293, y: 0.19667476, z: 0.023553565, w: -0.042130753} + outSlope: {x: 0.055637293, y: 0.19667476, z: 0.023553565, w: -0.042130753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.008727093, y: 0.24403284, z: -0.2650111, w: 0.93281347} + inSlope: {x: 0.2093384, y: 0.608751, z: 0.22605067, w: -0.114869} + outSlope: {x: 0.2093384, y: 0.608751, z: 0.22605067, w: -0.114869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.03023229, y: 0.30495444, z: -0.24007834, w: 0.9211141} + inSlope: {x: 0.16138984, y: 0.45719773, z: 0.18711263, w: -0.08780021} + outSlope: {x: 0.16138984, y: 0.45719773, z: 0.18711263, w: -0.08780021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.03023229, y: 0.30495444, z: -0.24007834, w: 0.9211141} + inSlope: {x: 0.0000007548431, y: 0.00000022365721, z: 0.00000044731442, w: 0} + outSlope: {x: 0.0000007548431, y: 0.00000022365721, z: 0.00000044731442, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.03023239, y: 0.30495447, z: -0.24007829, w: 0.9211141} + inSlope: {x: 0.0000007548431, y: 0.00000022365721, z: 0.00000044731442, w: 0} + outSlope: {x: 0.0000007548431, y: 0.00000022365721, z: 0.00000044731442, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.03023239, y: 0.30495447, z: -0.24007829, w: 0.9211141} + inSlope: {x: 0.000000027957102, y: 0, z: -0.000000111828406, w: 0} + outSlope: {x: 0.000000027957102, y: 0, z: -0.000000111828406, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.030232394, y: 0.30495447, z: -0.2400783, w: 0.9211141} + inSlope: {x: 0.000000027957102, y: 0, z: -0.000000111828406, w: 0} + outSlope: {x: 0.000000027957102, y: 0, z: -0.000000111828406, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.030232394, y: 0.30495447, z: -0.2400783, w: 0.9211141} + inSlope: {x: 0.000000055914402, y: 0, z: 0.00000022365761, w: 0} + outSlope: {x: 0.000000055914402, y: 0, z: 0.00000022365761, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.030232402, y: 0.30495447, z: -0.24007827, w: 0.9211141} + inSlope: {x: -0.036486007, y: -0.1427924, z: -0.0016138015, w: 0.046324857} + outSlope: {x: -0.036486007, y: -0.1427924, z: -0.0016138015, w: 0.046324857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.025370643, y: 0.2859274, z: -0.24029334, w: 0.92728686} + inSlope: {x: -0.0758511, y: -0.2994877, z: -0.00045156886, w: 0.09398121} + outSlope: {x: -0.0758511, y: -0.2994877, z: -0.00045156886, w: 0.09398121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.020125242, y: 0.26504773, z: -0.24013844, w: 0.9336371} + inSlope: {x: -0.07600247, y: -0.3013184, z: 0.0011442282, w: 0.08779469} + outSlope: {x: -0.07600247, y: -0.3013184, z: 0.0011442282, w: 0.08779469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.015243296, y: 0.24577667, z: -0.24014087, w: 0.9389855} + inSlope: {x: -0.06490056, y: -0.25063702, z: -0.005699243, w: 0.065989584} + outSlope: {x: -0.06490056, y: -0.25063702, z: -0.005699243, w: 0.065989584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.01147724, y: 0.23165034, z: -0.24089786, w: 0.9424302} + inSlope: {x: -0.044726174, y: -0.15617341, z: -0.021001896, w: 0.034246005} + outSlope: {x: -0.044726174, y: -0.15617341, z: -0.021001896, w: 0.034246005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.009283544, y: 0.2249666, z: -0.24293937, w: 0.9435488} + inSlope: {x: -0.030720122, y: -0.08466792, z: -0.037855648, w: 0.010825914} + outSlope: {x: -0.030720122, y: -0.08466792, z: -0.037855648, w: 0.010825914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.0073837847, y: 0.22036834, z: -0.24594213, w: 0.94387275} + inSlope: {x: -0.02768795, y: -0.06119653, z: -0.04980222, w: 0.0015463633} + outSlope: {x: -0.02768795, y: -0.06119653, z: -0.04980222, w: 0.0015463633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.0055941176, y: 0.21681215, z: -0.24957553, w: 0.94375485} + inSlope: {x: -0.026861748, y: -0.053376146, z: -0.05453491, w: -0.0017695726} + outSlope: {x: -0.026861748, y: -0.053376146, z: -0.05453491, w: -0.0017695726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone44 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.000000011736748, y: -0.46767044, z: -0.00000000990508, w: 0.8839029} + inSlope: {x: -0.0000009779262, y: -0.96999323, z: -0.0000004223497, w: -0.56052166} + outSlope: {x: -0.0000009779262, y: -0.96999323, z: -0.0000004223497, w: -0.56052166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.00000007689108, y: -0.53229624, z: -0.000000038044128, w: 0.84655815} + inSlope: {x: -0.00000032943313, y: -0.9048303, z: 0.000000037156568, w: -0.5644714} + outSlope: {x: -0.00000032943313, y: -0.9048303, z: 0.000000037156568, w: -0.5644714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.00000005563371, y: -0.5882391, z: -0.0000000049539666, w: 0.8086871} + inSlope: {x: -0.00000012179235, y: -0.60989535, z: 0.00000029860425, w: -0.4271204} + outSlope: {x: -0.00000012179235, y: -0.60989535, z: 0.00000029860425, w: -0.4271204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.00000009311991, y: -0.6135648, z: 0.0000000017448891, w: 0.78964436} + inSlope: {x: 0.000000008594071, y: -0.17445038, z: -0.00000015669099, w: -0.13081263} + outSlope: {x: 0.000000008594071, y: -0.17445038, z: -0.00000015669099, w: -0.13081263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.00000005448855, y: -0.6114846, z: -0.00000002583304, w: 0.7912563} + inSlope: {x: 0.00000027791427, y: 0.101145394, z: -0.00000011279325, w: 0.07722525} + outSlope: {x: 0.00000027791427, y: 0.101145394, z: -0.00000011279325, w: 0.07722525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.00000005608783, y: -0.60008717, z: -0.000000013284813, w: 0.7999346} + inSlope: {x: -0.00000018051948, y: 0.22687697, z: 0.000000006875794, w: 0.16860354} + outSlope: {x: -0.00000018051948, y: 0.22687697, z: 0.000000006875794, w: 0.16860354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.00000007854277, y: -0.58125323, z: -0.000000024916842, w: 0.8137227} + inSlope: {x: 0.0000000053559717, y: 0.32171208, z: -0.0000002154678, w: 0.22837459} + outSlope: {x: 0.0000000053559717, y: 0.32171208, z: -0.0000002154678, w: 0.22837459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.000000055374148, y: -0.557219, z: -0.000000041995897, w: 0.83036554} + inSlope: {x: 0.00000005779131, y: 0.3859487, z: 0.0000000065444823, w: 0.2580405} + outSlope: {x: 0.00000005779131, y: 0.3859487, z: 0.0000000065444823, w: 0.2580405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.00000007084208, y: -0.52982557, z: -0.000000024044791, w: 0.8481066} + inSlope: {x: 0.000000020070345, y: 0.4164542, z: 0.0000003401643, w: 0.26011825} + outSlope: {x: 0.000000020070345, y: 0.4164542, z: 0.0000003401643, w: 0.26011825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.000000052699775, y: -0.5017265, z: 0.0000000033309948, w: 0.8650263} + inSlope: {x: 0.00000033021715, y: 0.4107232, z: 0.0000002814712, w: 0.23885158} + outSlope: {x: 0.00000033021715, y: 0.4107232, z: 0.0000002814712, w: 0.23885158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.000000026840643, y: -0.4750967, z: 0.0000000134612455, w: 0.8799336} + inSlope: {x: 0.00000022280958, y: 0.384651, z: -0.00000013696138, w: 0.20836309} + outSlope: {x: 0.00000022280958, y: 0.384651, z: -0.00000013696138, w: 0.20836309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.0000000230104, y: -0.45047176, z: -0.000000014919106, w: 0.8927907} + inSlope: {x: -0.00000006818436, y: 0.41183275, z: -0.0000002476677, w: 0.20629379} + outSlope: {x: -0.00000006818436, y: 0.41183275, z: -0.0000002476677, w: 0.20629379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.00000003592621, y: -0.42022, z: -0.000000019540476, w: 0.90742224} + inSlope: {x: -0.00000009692915, y: 0.22703019, z: -0.00000003468195, w: 0.1098054} + outSlope: {x: -0.00000009692915, y: 0.22703019, z: -0.00000003468195, w: 0.1098054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.00000003592621, y: -0.42022, z: -0.000000019540476, w: 0.90742224} + inSlope: {x: -0.00000025441693, y: -0.00000044731442, z: 0.00000011132882, w: 0} + outSlope: {x: -0.00000025441693, y: -0.00000044731442, z: 0.00000011132882, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.000000069827266, y: -0.42022005, z: -0.0000000047059108, w: 0.90742224} + inSlope: {x: -0.00000025441693, y: -0.00000044731442, z: 0.00000011132882, w: 0} + outSlope: {x: -0.00000025441693, y: -0.00000044731442, z: 0.00000011132882, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.000000069827266, y: -0.42022005, z: -0.0000000047059108, w: 0.90742224} + inSlope: {x: 0.00000018868225, y: 0, z: 0.00000014131622, w: 0} + outSlope: {x: 0.00000018868225, y: 0, z: 0.00000014131622, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.00000004468531, y: -0.42022005, z: 0.00000001412451, w: 0.90742224} + inSlope: {x: 0.00000018868225, y: 0, z: 0.00000014131622, w: 0} + outSlope: {x: 0.00000018868225, y: 0, z: 0.00000014131622, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.00000004468531, y: -0.42022005, z: 0.00000001412451, w: 0.90742224} + inSlope: {x: -0.00000005332922, y: 0, z: -0.00000038585333, w: 0} + outSlope: {x: -0.00000005332922, y: 0, z: -0.00000038585333, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.000000051791417, y: -0.42022005, z: -0.000000037290352, w: 0.90742224} + inSlope: {x: 0.00000037645938, y: -0.39304224, z: -0.00000037759895, w: -0.19618306} + outSlope: {x: 0.00000037645938, y: -0.39304224, z: -0.00000037759895, w: -0.19618306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.0000000054778115, y: -0.47259283, z: -0.00000003619046, w: 0.8812809} + inSlope: {x: 0.00000018298721, y: -0.8183552, z: 0.00000011822702, w: -0.44252312} + outSlope: {x: 0.00000018298721, y: -0.8183552, z: 0.00000011822702, w: -0.44252312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.000000027408534, y: -0.5292659, z: -0.000000021536577, w: 0.848456} + inSlope: {x: -0.0000005314555, y: -0.79106027, z: 0.00000018886772, w: -0.48964602} + outSlope: {x: -0.0000005314555, y: -0.79106027, z: 0.00000018886772, w: -0.48964602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.00000006533876, y: -0.5780018, z: -0.000000011023792, w: 0.81603545} + inSlope: {x: -0.00000016786811, y: -0.5932344, z: 0.00000018968325, w: -0.4109561} + outSlope: {x: -0.00000016786811, y: -0.5932344, z: 0.00000018968325, w: -0.4109561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.000000049777054, y: -0.6083144, z: 0.0000000037387076, w: 0.7936961} + inSlope: {x: -0.00000001076684, y: -0.27049956, z: -0.0000000745731, w: -0.20086376} + outSlope: {x: -0.00000001076684, y: -0.27049956, z: -0.0000000745731, w: -0.20086376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.00000006677344, y: -0.6140458, z: -0.00000002096064, w: 0.7892704} + inSlope: {x: -0.00000052922127, y: -0.013424035, z: -0.00000023762851, w: -0.010312485} + outSlope: {x: -0.00000052922127, y: -0.013424035, z: -0.00000023762851, w: -0.010312485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.00000012029585, y: -0.61010313, z: -0.000000027925259, w: 0.792322} + inSlope: {x: -0.00000013416403, y: 0.101502165, z: -0.0000000918414, w: 0.077589676} + outSlope: {x: -0.00000013416403, y: 0.101502165, z: -0.0000000918414, w: 0.077589676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.00000008465083, y: -0.6005206, z: -0.00000003319853, w: 0.79960924} + inSlope: {x: 0.0000005350088, y: 0.14382742, z: -0.00000007914837, w: 0.10937712} + outSlope: {x: 0.0000005350088, y: 0.14382742, z: -0.00000007914837, w: 0.10937712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone44/Bone45 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.17306979, y: 0.25680128, z: -0.0046701403, w: 0.9508302} + inSlope: {x: -0.008571662, y: -0.842945, z: -0.15210573, w: 0.20134874} + outSlope: {x: -0.008571662, y: -0.842945, z: -0.15210573, w: 0.20134874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.1724987, y: 0.20064007, z: -0.014804184, w: 0.9642451} + inSlope: {x: -0.0121734375, y: -0.8143976, z: -0.14579028, w: 0.17142072} + outSlope: {x: -0.0121734375, y: -0.8143976, z: -0.14579028, w: 0.17142072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.17144768, y: 0.1482828, z: -0.024096696, w: 0.97367203} + inSlope: {x: -0.013063258, y: -0.58462435, z: -0.103363276, w: 0.097377665} + outSlope: {x: -0.013063258, y: -0.58462435, z: -0.103363276, w: 0.097377665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.17075802, y: 0.122738875, z: -0.02857734, w: 0.97722065} + inSlope: {x: -0.0050861887, y: -0.1886374, z: -0.03309084, w: 0.026246173} + outSlope: {x: -0.0050861887, y: -0.1886374, z: -0.03309084, w: 0.026246173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.17076994, y: 0.12314686, z: -0.02850605, w: 0.97716933} + inSlope: {x: 0.0019733275, y: 0.0694067, z: 0.012144698, w: -0.009051407} + outSlope: {x: 0.0019733275, y: 0.0694067, z: 0.012144698, w: -0.009051407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.17102097, y: 0.13198732, z: -0.02695906, w: 0.97601455} + inSlope: {x: 0.004925267, y: 0.18214822, z: 0.031948257, w: -0.025260739} + outSlope: {x: 0.004925267, y: 0.18214822, z: 0.031948257, w: -0.025260739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.17142624, y: 0.14741811, z: -0.024248945, w: 0.97380334} + inSlope: {x: 0.00649344, y: 0.2650057, z: 0.046682686, w: -0.04074408} + outSlope: {x: 0.00649344, y: 0.2650057, z: 0.046682686, w: -0.04074408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.17188622, y: 0.16729933, z: -0.020738592, w: 0.9705854} + inSlope: {x: 0.006734766, y: 0.31895587, z: 0.056509636, w: -0.055455357} + outSlope: {x: 0.006734766, y: 0.31895587, z: 0.056509636, w: -0.055455357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.17232364, y: 0.18991898, z: -0.016719036, w: 0.9664139} + inSlope: {x: 0.005922443, y: 0.34347528, z: 0.061251625, w: -0.06761694} + outSlope: {x: 0.005922443, y: 0.34347528, z: 0.061251625, w: -0.06761694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.17267539, y: 0.21306741, z: -0.012576814, w: 0.96157545} + inSlope: {x: 0.004467329, y: 0.3392437, z: 0.06091065, w: -0.07499002} + outSlope: {x: 0.004467329, y: 0.3392437, z: 0.06091065, w: -0.07499002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.17291892, y: 0.2351232, z: -0.008602692, w: 0.9564215} + inSlope: {x: 0.0030171357, y: 0.34022778, z: 0.061525445, w: -0.0838965} + outSlope: {x: 0.0030171357, y: 0.34022778, z: 0.061525445, w: -0.0838965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.17307742, y: 0.25840276, z: -0.0043785484, w: 0.95039624} + inSlope: {x: 0.001494142, y: 0.44677973, z: 0.08153246, w: -0.124824874} + outSlope: {x: 0.001494142, y: 0.44677973, z: 0.08153246, w: -0.124824874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.17311801, y: 0.2946566, z: 0.0022615083, w: 0.9397886} + inSlope: {x: 0.00030462112, y: 0.27207384, z: 0.04983157, w: -0.0796072} + outSlope: {x: 0.00030462112, y: 0.27207384, z: 0.04983157, w: -0.0796072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.17311801, y: 0.2946566, z: 0.0022615083, w: 0.9397886} + inSlope: {x: 0.00000033548582, y: -0.00000044731442, z: -0.00000022365721, w: 0} + outSlope: {x: 0.00000033548582, y: -0.00000044731442, z: -0.00000022365721, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.17311805, y: 0.29465654, z: 0.0022614785, w: 0.9397886} + inSlope: {x: 0.00000033548582, y: -0.00000044731442, z: -0.00000022365721, w: 0} + outSlope: {x: 0.00000033548582, y: -0.00000044731442, z: -0.00000022365721, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.17311805, y: 0.29465654, z: 0.0022614785, w: 0.9397886} + inSlope: {x: 0, y: 0, z: -0.00000011881768, w: 0} + outSlope: {x: 0, y: 0, z: -0.00000011881768, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.17311805, y: 0.29465654, z: 0.0022614626, w: 0.9397886} + inSlope: {x: 0, y: 0, z: -0.00000011881768, w: 0} + outSlope: {x: 0, y: 0, z: -0.00000011881768, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.17311805, y: 0.29465654, z: 0.0022614626, w: 0.9397886} + inSlope: {x: -0.000000111828804, y: 0.00000022365761, z: 0.0000001048395, w: 0} + outSlope: {x: -0.000000111828804, y: 0.00000022365761, z: 0.0000001048395, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.17311804, y: 0.29465657, z: 0.0022614766, w: 0.9397886} + inSlope: {x: -0.0005932518, y: -0.32650855, z: -0.0597332, w: 0.09418535} + outSlope: {x: -0.0005932518, y: -0.32650855, z: -0.0597332, w: 0.09418535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.173039, y: 0.25114936, z: -0.005697972, w: 0.95233876} + inSlope: {x: -0.0044956156, y: -0.69557685, z: -0.12628552, w: 0.18145311} + outSlope: {x: -0.0044956156, y: -0.69557685, z: -0.12628552, w: 0.18145311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.172519, y: 0.20197095, z: -0.014566071, w: 0.9639672} + inSlope: {x: -0.010295259, y: -0.70318055, z: -0.12594521, w: 0.14929003} + outSlope: {x: -0.010295259, y: -0.70318055, z: -0.12594521, w: 0.14929003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.17166716, y: 0.15745038, z: -0.022480201, w: 0.9722317} + inSlope: {x: -0.012027277, y: -0.55330235, z: -0.09792594, w: 0.09415606} + outSlope: {x: -0.012027277, y: -0.55330235, z: -0.09792594, w: 0.09415606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.17091636, y: 0.12824339, z: -0.027614707, w: 0.9765135} + inSlope: {x: -0.0070521478, y: -0.26831785, z: -0.047123305, w: 0.03841856} + outSlope: {x: -0.0070521478, y: -0.26831785, z: -0.047123305, w: 0.03841856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.17072746, y: 0.12169709, z: -0.02875937, w: 0.97735095} + inSlope: {x: -0.00089507963, y: -0.031246038, z: -0.0054655327, w: 0.004035686} + outSlope: {x: -0.00089507963, y: -0.031246038, z: -0.0054655327, w: 0.004035686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.1707971, y: 0.12407987, z: -0.028342986, w: 0.97705126} + inSlope: {x: 0.0021167998, y: 0.07411064, z: 0.012965161, w: -0.009608744} + outSlope: {x: 0.0021167998, y: 0.07411064, z: 0.012965161, w: -0.009608744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.17100953, y: 0.13157235, z: -0.027031759, w: 0.9760706} + inSlope: {x: 0.0031884515, y: 0.11245733, z: 0.01968068, w: -0.014719302} + outSlope: {x: 0.0031884515, y: 0.11245733, z: 0.01968068, w: -0.014719302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone46 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.0017935028, y: -0.51984453, z: -0.00082784495, w: 0.8542586} + inSlope: {x: 0.015711995, y: -0.8221755, z: 0.00841066, w: -0.53793675} + outSlope: {x: 0.015711995, y: -0.8221755, z: 0.00841066, w: -0.53793675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.00074669125, y: -0.574622, z: -0.00026748475, w: 0.81841856} + inSlope: {x: 0.011322698, y: -0.7811688, z: 0.0054423194, w: -0.5462111} + outSlope: {x: 0.011322698, y: -0.7811688, z: 0.0054423194, w: -0.5462111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.0002847535, y: -0.6239353, z: -0.00010265588, w: 0.78147596} + inSlope: {x: 0.005595566, y: -0.5497006, z: 0.0020030665, w: -0.42527074} + outSlope: {x: 0.005595566, y: -0.5497006, z: 0.0020030665, w: -0.42527074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.0000010821047, y: -0.6478696, z: -0.0000005761637, w: 0.76175123} + inSlope: {x: 0.004024156, y: -0.1898541, z: 0.0018115722, w: -0.15674837} + outSlope: {x: 0.004024156, y: -0.1898541, z: 0.0018115722, w: -0.15674837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.00025146527, y: -0.64923334, z: 0.00013873611, w: 0.76058924} + inSlope: {x: 0.0027123585, y: 0.03040396, z: 0.0014961316, w: 0.02571879} + outSlope: {x: 0.0027123585, y: 0.03040396, z: 0.0014961316, w: 0.02571879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.00036033965, y: -0.64381826, z: 0.00019878338, w: 0.76517826} + inSlope: {x: 0.0008315206, y: 0.12292111, z: 0.0004588227, w: 0.102676995} + outSlope: {x: 0.0008315206, y: 0.12292111, z: 0.0004588227, w: 0.102676995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.0003622654, y: -0.6328541, z: 0.00019987424, w: 0.77427095} + inSlope: {x: -0.00050771673, y: 0.1958687, z: -0.00027967067, w: 0.15925512} + outSlope: {x: -0.00050771673, y: 0.1958687, z: -0.00027967067, w: 0.15925512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.0002926864, y: -0.61771876, z: 0.00016151727, w: 0.786399} + inSlope: {x: -0.0013185628, y: 0.25028405, z: -0.0007275537, w: 0.19587988} + outSlope: {x: -0.0013185628, y: 0.25028405, z: -0.0007275537, w: 0.19587988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.0001865669, y: -0.59950376, z: 0.00010292771, w: 0.80037194} + inSlope: {x: -0.001589417, y: 0.2846825, z: -0.0008770541, w: 0.21291316} + outSlope: {x: -0.001589417, y: 0.2846825, z: -0.0008770541, w: 0.21291316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.000080896585, y: -0.5797848, z: 0.00004464981, w: 0.8147697} + inSlope: {x: -0.0013219058, y: 0.29814398, z: -0.000729162, w: 0.21217242} + outSlope: {x: -0.0013219058, y: 0.29814398, z: -0.000729162, w: 0.21217242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.000010422966, y: -0.55977607, z: 0.0000057668776, w: 0.8286439} + inSlope: {x: -0.000607472, y: 0.3437817, z: -0.000335012, w: 0.23061922} + outSlope: {x: -0.000607472, y: 0.3437817, z: -0.000335012, w: 0.23061922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.00000004905984, y: -0.5339759, z: 0.00000000946158, w: 0.8454997} + inSlope: {x: -0.00007872131, y: 0.5760788, z: -0.000043121145, w: 0.35248733} + outSlope: {x: -0.00007872131, y: 0.5760788, z: -0.000043121145, w: 0.35248733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.000000066647914, y: -0.48301357, z: 0.000000020985517, w: 0.87561285} + inSlope: {x: -0.00000013199306, y: 0.3824565, z: 0.00000008648358, w: 0.22598995} + outSlope: {x: -0.00000013199306, y: 0.3824565, z: 0.00000008648358, w: 0.22598995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.000000066647914, y: -0.48301357, z: 0.000000020985517, w: 0.87561285} + inSlope: {x: 0.000000653015, y: -0.00000022365721, z: 0.00000009120695, w: 0} + outSlope: {x: 0.000000653015, y: -0.00000022365721, z: 0.00000009120695, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.000000020366329, y: -0.4830136, z: 0.000000033138843, w: 0.87561285} + inSlope: {x: 0.000000653015, y: -0.00000022365721, z: 0.00000009120695, w: 0} + outSlope: {x: 0.000000653015, y: -0.00000022365721, z: 0.00000009120695, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.000000020366329, y: -0.4830136, z: 0.000000033138843, w: 0.87561285} + inSlope: {x: 0.00000002705298, y: -0.00000022365681, z: 0.00000012284926, w: 0} + outSlope: {x: 0.00000002705298, y: -0.00000022365681, z: 0.00000012284926, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.000000023971145, y: -0.48301363, z: 0.000000049508536, w: 0.87561285} + inSlope: {x: 0.00000002705298, y: -0.00000022365681, z: 0.00000012284926, w: 0} + outSlope: {x: 0.00000002705298, y: -0.00000022365681, z: 0.00000012284926, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.000000023971145, y: -0.48301363, z: 0.000000049508536, w: 0.87561285} + inSlope: {x: -0.000000016456093, y: 0.00000022365761, z: -0.00000010845976, w: 0} + outSlope: {x: -0.000000016456093, y: 0.00000022365761, z: -0.00000010845976, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.000000021778375, y: -0.4830136, z: 0.0000000350563, w: 0.87561285} + inSlope: {x: 0.0000000063874044, y: -0.33245674, z: -0.0000002586352, w: -0.19468679} + outSlope: {x: 0.0000000063874044, y: -0.33245674, z: -0.0000002586352, w: -0.19468679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.000000024822265, y: -0.5273134, z: 0.000000015045458, w: 0.8496709} + inSlope: {x: -0.000000101554235, y: -0.69002515, z: -0.00000009964549, w: -0.43100125} + outSlope: {x: -0.000000101554235, y: -0.69002515, z: -0.00000009964549, w: -0.43100125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.000000008246238, y: -0.57495946, z: 0.000000021778586, w: 0.81818193} + inSlope: {x: -0.00000014846147, y: -0.6669956, z: -0.00000023937667, w: -0.46584493} + outSlope: {x: -0.00000014846147, y: -0.6669956, z: -0.00000023937667, w: -0.46584493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.0000000050397397, y: -0.61619073, z: -0.000000016851542, w: 0.78759694} + inSlope: {x: -0.000000098271805, y: -0.50774956, z: -0.00000006173552, w: -0.39020208} + outSlope: {x: -0.000000098271805, y: -0.50774956, z: -0.00000006173552, w: -0.39020208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.000000004848467, y: -0.6426171, z: 0.000000013552206, w: 0.7661875} + inSlope: {x: 0.000000108599146, y: -0.2491331, z: 0.000000012211942, w: -0.20367335} + outSlope: {x: 0.000000108599146, y: -0.2491331, z: 0.000000012211942, w: -0.20367335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.000000019510551, y: -0.64938766, z: -0.000000015224302, w: 0.7604575} + inSlope: {x: -0.000000022373655, y: -0.04681334, z: 0.00000024214646, w: -0.03959009} + outSlope: {x: -0.000000022373655, y: -0.04681334, z: 0.00000024214646, w: -0.03959009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.000000007829846, y: -0.648855, z: 0.000000045818382, w: 0.7609121} + inSlope: {x: -0.00000026815798, y: 0.039073292, z: 0.00000021991299, w: 0.033136547} + outSlope: {x: -0.00000026815798, y: 0.039073292, z: 0.00000021991299, w: 0.033136547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.000000016221561, y: -0.64418113, z: 0.000000014079156, w: 0.76487297} + inSlope: {x: -0.00000012595422, y: 0.0701513, z: -0.00000047638528, w: 0.05944977} + outSlope: {x: -0.00000012595422, y: 0.0701513, z: -0.00000047638528, w: 0.05944977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone46/Bone47 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.4437122, y: 0.54489243, z: 0.55515677, w: 0.44498616} + inSlope: {x: -0.7334386, y: 0.5698222, z: -0.4925057, w: 0.54319936} + outSlope: {x: -0.7334386, y: 0.5698222, z: -0.4925057, w: 0.54319936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.39484686, y: 0.58285683, z: 0.5223436, w: 0.48117682} + inSlope: {x: -0.6518793, y: 0.47984132, z: -0.47033724, w: 0.48306555} + outSlope: {x: -0.6518793, y: 0.47984132, z: -0.47033724, w: 0.48306555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.35684928, y: 0.6088313, z: 0.49248433, w: 0.50935465} + inSlope: {x: -0.40016165, y: 0.2684969, z: -0.4029435, w: 0.36724} + outSlope: {x: -0.40016165, y: 0.2684969, z: -0.4029435, w: 0.36724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.34152532, y: 0.61863405, z: 0.46865135, w: 0.53011155} + inSlope: {x: -0.16890278, y: 0.10431282, z: -0.3422528, w: 0.29286838} + outSlope: {x: -0.16890278, y: 0.10431282, z: -0.3422528, w: 0.29286838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.334343, y: 0.622731, z: 0.44687915, w: 0.54837936} + inSlope: {x: -0.031733155, y: 0.010856768, z: -0.2358152, w: 0.20389396} + outSlope: {x: -0.031733155, y: 0.010856768, z: -0.2358152, w: 0.20389396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.33729687, y: 0.6200807, z: 0.43722898, w: 0.5572804} + inSlope: {x: 0.13626136, y: -0.10075399, z: 0.012241878, w: 0.017815642} + outSlope: {x: 0.13626136, y: -0.10075399, z: 0.012241878, w: 0.017815642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.3524998, y: 0.6093055, z: 0.44851038, w: 0.5507533} + inSlope: {x: 0.31654897, y: -0.23256816, z: 0.29377285, w: -0.1966922} + outSlope: {x: 0.31654897, y: -0.23256816, z: 0.29377285, w: -0.1966922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.37947702, y: 0.589091, z: 0.4763742, w: 0.5310712} + inSlope: {x: 0.442177, y: -0.35153723, z: 0.4719715, w: -0.3596475} + outSlope: {x: 0.442177, y: -0.35153723, z: 0.4719715, w: -0.3596475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.4114199, y: 0.56246316, z: 0.5114006, w: 0.50283027} + inSlope: {x: 0.46638232, y: -0.41231117, z: 0.51800036, w: -0.4480035} + outSlope: {x: 0.46638232, y: -0.41231117, z: 0.51800036, w: -0.4480035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.44162247, y: 0.53415054, z: 0.54539776, w: 0.47137472} + inSlope: {x: 0.39904583, y: -0.38984525, z: 0.45218432, w: -0.44486558} + outSlope: {x: 0.39904583, y: -0.38984525, z: 0.45218432, w: -0.44486558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.46459275, y: 0.5105163, z: 0.57165414, w: 0.44355193} + inSlope: {x: 0.24734654, y: -0.24648054, z: 0.2850878, w: -0.3260316} + outSlope: {x: 0.24734654, y: -0.24648054, z: 0.2850878, w: -0.3260316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.4745814, y: 0.501307, z: 0.5833857, w: 0.427931} + inSlope: {x: 0.0011896268, y: 0.055337712, z: 0.021488093, w: -0.094504565} + outSlope: {x: 0.0011896268, y: 0.055337712, z: 0.021488093, w: -0.094504565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.46475127, y: 0.51789004, z: 0.5745174, w: 0.4309592} + inSlope: {x: -0.24013025, y: 0.32062736, z: -0.20293805, w: 0.13320643} + outSlope: {x: -0.24013025, y: 0.32062736, z: -0.20293805, w: 0.13320643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.44258404, y: 0.5440306, z: 0.5563442, w: 0.44568077} + inSlope: {x: -0.50129944, y: 0.4643544, z: -0.36064053, w: 0.3519217} + outSlope: {x: -0.50129944, y: 0.4643544, z: -0.36064053, w: 0.3519217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.39795312, y: 0.57976526, z: 0.5264621, w: 0.47785276} + inSlope: {x: -0.65267277, y: 0.4808808, z: -0.46970654, w: 0.48157352} + outSlope: {x: -0.65267277, y: 0.4808808, z: -0.46970654, w: 0.48157352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.35561547, y: 0.6081079, z: 0.49375588, w: 0.5098504} + inSlope: {x: -0.4338361, y: 0.28728166, z: -0.42517024, w: 0.39631444} + outSlope: {x: -0.4338361, y: 0.28728166, z: -0.42517024, w: 0.39631444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.34014452, y: 0.6180455, z: 0.46980816, w: 0.53066164} + inSlope: {x: -0.17139156, y: 0.10646332, z: -0.3440457, w: 0.29369003} + outSlope: {x: -0.17139156, y: 0.10646332, z: -0.3440457, w: 0.29369003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.3327775, y: 0.6222942, z: 0.4479117, w: 0.54898465} + inSlope: {x: -0.032756917, y: 0.011820637, z: -0.23662491, w: 0.20429641} + outSlope: {x: -0.032756917, y: 0.011820637, z: -0.23662491, w: 0.20429641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.33577964, y: 0.6196206, z: 0.43827787, w: 0.55788416} + inSlope: {x: 0.14037535, y: -0.10374045, z: 0.0165945, w: 0.015204247} + outSlope: {x: 0.14037535, y: -0.10374045, z: 0.0165945, w: 0.015204247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.35148248, y: 0.6084708, z: 0.45012292, w: 0.5510106} + inSlope: {x: 0.328287, y: -0.24297032, z: 0.30753112, w: -0.20559312} + outSlope: {x: 0.328287, y: -0.24297032, z: 0.30753112, w: -0.20559312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.3795239, y: 0.5872448, z: 0.47925642, w: 0.53048885} + inSlope: {x: 0.45755887, y: -0.36822677, z: 0.4902935, w: -0.37340266} + outSlope: {x: 0.45755887, y: -0.36822677, z: 0.4902935, w: -0.37340266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.4124523, y: 0.5594045, z: 0.51545465, w: 0.5012546} + inSlope: {x: 0.4814919, y: -0.4319908, z: 0.5347664, w: -0.46501023} + outSlope: {x: 0.4814919, y: -0.4319908, z: 0.5347664, w: -0.46501023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.4436827, y: 0.52968204, z: 0.55051404, w: 0.46852624} + inSlope: {x: 0.4108888, y: -0.40646416, z: 0.4621039, w: -0.46066356} + outSlope: {x: 0.4108888, y: -0.40646416, z: 0.4621039, w: -0.46066356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.46720314, y: 0.50524324, z: 0.5770299, w: 0.4398713} + inSlope: {x: 0.24537273, y: -0.24458593, z: 0.27752927, w: -0.32498485} + outSlope: {x: 0.24537273, y: -0.24458593, z: 0.27752927, w: -0.32498485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.4763786, y: 0.497091, z: 0.5874948, w: 0.42522204} + inSlope: {x: -0.036504813, y: 0.10158536, z: -0.024557523, w: -0.047895882} + outSlope: {x: -0.036504813, y: 0.10158536, z: -0.024557523, w: -0.047895882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.46233886, y: 0.5187795, z: 0.5737576, w: 0.43348917} + inSlope: {x: -0.2107272, y: 0.32553068, z: -0.20618653, w: 0.124084346} + outSlope: {x: -0.2107272, y: 0.32553068, z: -0.20618653, w: 0.124084346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.0050125197, y: -0.15329778, z: 0.20258051, w: 0.9671793} + inSlope: {x: 0.5083036, y: 0.055715248, z: -2.0392184, w: 0.27841744} + outSlope: {x: 0.5083036, y: 0.055715248, z: -2.0392184, w: 0.27841744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.038878243, y: -0.14958575, z: 0.06671758, w: 0.98572886} + inSlope: {x: 0.5024959, y: 0.07823205, z: -2.0492232, w: 0.1307491} + outSlope: {x: 0.5024959, y: 0.07823205, z: -2.0492232, w: 0.1307491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.0719701, y: -0.14287336, z: -0.070478484, w: 0.9846016} + inSlope: {x: 0.4162823, y: 0.15257469, z: -1.7116458, w: -0.08925891} + outSlope: {x: 0.4162823, y: 0.15257469, z: -1.7116458, w: -0.08925891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.09434786, y: -0.12925518, z: -0.16135922, w: 0.9738351} + inSlope: {x: 0.24145612, y: 0.2869125, z: -0.927802, w: -0.111027464} + outSlope: {x: 0.24145612, y: 0.2869125, z: -0.927802, w: -0.111027464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.104144126, y: -0.10464227, z: -0.1941081, w: 0.9698072} + inSlope: {x: 0.09254214, y: 0.40848356, z: -0.23247904, w: -0.008974021} + outSlope: {x: 0.09254214, y: 0.40848356, z: -0.23247904, w: -0.008974021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.1066791, y: -0.07482474, z: -0.19233705, w: 0.9726393} + inSlope: {x: -0.0013543554, y: 0.38949037, z: 0.22619024, w: 0.07313949} + outSlope: {x: -0.0013543554, y: 0.38949037, z: 0.22619024, w: 0.07313949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.10396366, y: -0.052742682, z: -0.16396825, w: 0.97955304} + inSlope: {x: -0.06798503, y: 0.19293496, z: 0.5890363, w: 0.111298084} + outSlope: {x: -0.06798503, y: 0.19293496, z: 0.5890363, w: 0.111298084} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.09762009, y: -0.04911616, z: -0.11384796, w: 0.9874698} + inSlope: {x: -0.12692827, y: -0.03784574, z: 0.9705107, w: 0.10784079} + outSlope: {x: -0.12692827, y: -0.03784574, z: 0.9705107, w: 0.10784079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.08705047, y: -0.057785627, z: -0.034647692, w: 0.9939228} + inSlope: {x: -0.18566562, y: -0.18113513, z: 1.2995439, w: 0.040577233} + outSlope: {x: -0.18566562, y: -0.18113513, z: 1.2995439, w: 0.040577233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.07288015, y: -0.07325242, z: 0.05931625, w: 0.9928767} + inSlope: {x: -0.228287, y: -0.25222397, z: 1.3823483, w: -0.08279075} + outSlope: {x: -0.228287, y: -0.25222397, z: 1.3823483, w: -0.08279075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.056631226, y: -0.09139447, z: 0.14955021, w: 0.98289096} + inSlope: {x: -0.24384013, y: -0.2634747, z: 1.1915861, w: -0.17879874} + outSlope: {x: -0.24384013, y: -0.2634747, z: 1.1915861, w: -0.17879874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.040388454, y: -0.108360425, z: 0.2180951, w: 0.9690518} + inSlope: {x: -0.30487132, y: -0.31241846, z: 0.6939657, w: -0.16446812} + outSlope: {x: -0.30487132, y: -0.31241846, z: 0.6939657, w: -0.16446812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.016007124, y: -0.13302423, z: 0.24202114, w: 0.9609756} + inSlope: {x: -0.26548502, y: -0.33724076, z: -0.11643192, w: -0.014052384} + outSlope: {x: -0.26548502, y: -0.33724076, z: -0.11643192, w: -0.014052384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.0050125765, y: -0.15329775, z: 0.20258054, w: 0.9671793} + inSlope: {x: 0.10689766, y: -0.16444586, z: -1.1642203, w: 0.17002152} + outSlope: {x: 0.10689766, y: -0.16444586, z: -1.1642203, w: 0.17002152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.030251237, y: -0.15493664, z: 0.08688878, w: 0.98363096} + inSlope: {x: 0.4705408, y: 0.05598174, z: -1.9735599, w: 0.13478121} + outSlope: {x: 0.4705408, y: 0.05598174, z: -1.9735599, w: 0.13478121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.06771207, y: -0.1458382, z: -0.060396045, w: 0.9851389} + inSlope: {x: 0.48102516, y: 0.19273123, z: -1.8630251, w: -0.07351461} + outSlope: {x: 0.48102516, y: 0.19273123, z: -1.8630251, w: -0.07351461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.09434782, y: -0.12925519, z: -0.16135922, w: 0.9738351} + inSlope: {x: 0.27327383, y: 0.30847266, z: -1.0031328, w: -0.11505264} + outSlope: {x: 0.27327383, y: 0.30847266, z: -1.0031328, w: -0.11505264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.10412587, y: -0.104734145, z: -0.19406374, w: 0.9698081} + inSlope: {x: 0.0925421, y: 0.40848386, z: -0.23247845, w: -0.008973483} + outSlope: {x: 0.0925421, y: 0.40848386, z: -0.23247845, w: -0.008973483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.10667907, y: -0.07482473, z: -0.19233704, w: 0.9726394} + inSlope: {x: -0.0011077207, y: 0.38985306, z: 0.22494353, w: 0.0729504} + outSlope: {x: -0.0011077207, y: 0.38985306, z: 0.22494353, w: 0.0729504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.10397827, y: -0.05278632, z: -0.16409007, w: 0.9795287} + inSlope: {x: -0.067984864, y: 0.1929351, z: 0.589036, w: 0.11129762} + outSlope: {x: -0.067984864, y: 0.1929351, z: 0.589036, w: 0.11129762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.09762008, y: -0.04911616, z: -0.11384795, w: 0.9874698} + inSlope: {x: -0.12674312, y: -0.03721898, z: 0.96932137, w: 0.10794125} + outSlope: {x: -0.12674312, y: -0.03721898, z: 0.96932137, w: 0.10794125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.08708972, y: -0.05774576, z: -0.03492776, w: 0.9939119} + inSlope: {x: -0.18566555, y: -0.18113518, z: 1.2995437, w: 0.040577132} + outSlope: {x: -0.18566555, y: -0.18113518, z: 1.2995437, w: 0.040577132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.07288015, y: -0.07325241, z: 0.059316233, w: 0.9928767} + inSlope: {x: -0.22819212, y: -0.25209755, z: 1.3825219, w: -0.08239815} + outSlope: {x: -0.22819212, y: -0.25209755, z: 1.3825219, w: -0.08239815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.05668317, y: -0.091337696, z: 0.14929296, w: 0.9829324} + inSlope: {x: -0.24384017, y: -0.26347488, z: 1.1915861, w: -0.17879868} + outSlope: {x: -0.24384017, y: -0.26347488, z: 1.1915861, w: -0.17879868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.040388446, y: -0.10836043, z: 0.21809505, w: 0.9690518} + inSlope: {x: -0.25043714, y: -0.2824734, z: 0.57135314, w: -0.13154644} + outSlope: {x: -0.25043714, y: -0.2824734, z: 0.57135314, w: -0.13154644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.023312364, y: -0.12897734, z: 0.2254259, w: 0.9654038} + inSlope: {x: -0.256301, y: -0.3094465, z: 0.11003132, w: -0.05475387} + outSlope: {x: -0.256301, y: -0.3094465, z: 0.11003132, w: -0.05475387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.07642134, y: 0.13524432, z: 0.13353513, w: 0.9787937} + inSlope: {x: 0.45880088, y: -0.5719617, z: 0.9525768, w: -0.13656509} + outSlope: {x: 0.45880088, y: -0.5719617, z: 0.9525768, w: -0.13656509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.10698895, y: 0.09713738, z: 0.19700056, w: 0.96969503} + inSlope: {x: 0.34486258, y: -0.46300906, z: 0.5938369, w: -0.091223955} + outSlope: {x: 0.34486258, y: -0.46300906, z: 0.5938369, w: -0.091223955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.12237428, y: 0.07354837, z: 0.2126639, w: 0.9666381} + inSlope: {x: -0.077561796, y: -0.053222425, z: -0.74546474, w: 0.12546454} + outSlope: {x: -0.077561796, y: -0.053222425, z: -0.74546474, w: 0.12546454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.09665384, y: 0.09004549, z: 0.09766739, w: 0.9864132} + inSlope: {x: -0.5018617, y: 0.33231357, z: -2.048626, w: 0.17266247} + outSlope: {x: -0.5018617, y: 0.33231357, z: -2.048626, w: 0.17266247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.055501208, y: 0.11782915, z: -0.0603155, w: 0.98964536} + inSlope: {x: -0.4785377, y: 0.2944837, z: -1.9055762, w: -0.058131635} + outSlope: {x: -0.4785377, y: 0.2944837, z: -1.9055762, w: -0.058131635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.032888692, y: 0.12928544, z: -0.15625066, w: 0.97866714} + inSlope: {x: -0.24507415, y: 0.103083216, z: -1.1642268, w: -0.16737968} + outSlope: {x: -0.24507415, y: 0.103083216, z: -1.1642268, w: -0.16737968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.022845078, y: 0.13156499, z: -0.21544872, w: 0.967342} + inSlope: {x: -0.119475186, y: 0.012444062, z: -0.76535654, w: -0.16248025} + outSlope: {x: -0.119475186, y: 0.012444062, z: -0.76535654, w: -0.16248025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.016968623, y: 0.13094361, z: -0.2582344, w: 0.95701665} + inSlope: {x: -0.09835333, y: -0.0052538197, z: -0.5890758, w: -0.15437268} + outSlope: {x: -0.09835333, y: -0.0052538197, z: -0.5890758, w: -0.15437268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.009739498, y: 0.13086492, z: -0.29394308, w: 0.94677186} + inSlope: {x: -0.17584604, y: 0.007988589, z: -0.6108937, w: -0.19356056} + outSlope: {x: -0.17584604, y: 0.007988589, z: -0.6108937, w: -0.19356056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.006462863, y: 0.13200809, z: -0.339636, w: 0.9312247} + inSlope: {x: -0.21863917, y: 0.022259373, z: -0.4728912, w: -0.16878605} + outSlope: {x: -0.21863917, y: 0.022259373, z: -0.4728912, w: -0.16878605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.019394172, y: 0.13383098, z: -0.35695583, w: 0.9242811} + inSlope: {x: 0.0083171725, y: 0.052301567, z: 0.5346816, w: 0.16504918} + outSlope: {x: 0.0083171725, y: 0.052301567, z: 0.5346816, w: 0.16504918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.0053546, y: 0.13897727, z: -0.26838967, w: 0.9532175} + inSlope: {x: 0.41721785, y: 0.07959837, z: 2.2587936, w: 0.47268343} + outSlope: {x: 0.41721785, y: 0.07959837, z: 2.2587936, w: 0.47268343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.036200102, y: 0.14443746, z: -0.055971593, w: 0.9872662} + inSlope: {x: 0.6137047, y: -0.028014299, z: 3.0163224, w: 0.19194128} + outSlope: {x: 0.6137047, y: -0.028014299, z: 3.0163224, w: 0.19194128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.076421544, y: 0.13524437, z: 0.13353528, w: 0.9787937} + inSlope: {x: 0.54637796, y: -0.331636, z: 2.050007, w: -0.16837943} + outSlope: {x: 0.54637796, y: -0.331636, z: 2.050007, w: -0.16837943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.10900496, y: 0.100246966, z: 0.21719186, w: 0.9648296} + inSlope: {x: 0.34486243, y: -0.46300954, z: 0.5938372, w: -0.09122438} + outSlope: {x: 0.34486243, y: -0.46300954, z: 0.5938372, w: -0.09122438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.12237444, y: 0.0735484, z: 0.2126641, w: 0.966638} + inSlope: {x: -0.12227008, y: -0.07269482, z: -0.8930743, w: 0.1640738} + outSlope: {x: -0.12227008, y: -0.07269482, z: -0.8930743, w: 0.1640738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.092712395, y: 0.09056046, z: 0.09818952, w: 0.9866925} + inSlope: {x: -0.5618401, y: 0.3393929, z: -2.0375063, w: 0.17560638} + outSlope: {x: -0.5618401, y: 0.3393929, z: -2.0375063, w: 0.17560638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.047509108, y: 0.11877258, z: -0.058834102, w: 0.9900376} + inSlope: {x: -0.50583124, y: 0.2964323, z: -1.9022464, w: -0.058154196} + outSlope: {x: -0.50583124, y: 0.2964323, z: -1.9022464, w: -0.058154196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.025310347, y: 0.13006009, z: -0.15528491, w: 0.97894347} + inSlope: {x: -0.20754488, y: 0.09449914, z: -1.1715224, w: -0.16877337} + outSlope: {x: -0.20754488, y: 0.09449914, z: -1.1715224, w: -0.16877337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.019853802, y: 0.13136457, z: -0.21493918, w: 0.9675486} + inSlope: {x: -0.0470592, y: -0.0020787427, z: -0.7749246, w: -0.16428652} + outSlope: {x: -0.0470592, y: -0.0020787427, z: -0.7749246, w: -0.16428652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.019039717, y: 0.1297831, z: -0.25854358, w: 0.9570523} + inSlope: {x: -0.04465937, y: -0.013427348, z: -0.59633946, w: -0.15605071} + outSlope: {x: -0.04465937, y: -0.013427348, z: -0.59633946, w: -0.15605071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.013902931, y: 0.12957537, z: -0.29440156, w: 0.9467548} + inSlope: {x: -0.20324674, y: 0.022913726, z: -0.6069789, w: -0.19422264} + outSlope: {x: -0.20324674, y: 0.022913726, z: -0.6069789, w: -0.19422264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.008042883, y: 0.13283634, z: -0.3394235, w: 0.93117213} + inSlope: {x: -0.32639876, y: 0.05955074, z: -0.45877543, w: -0.17062436} + outSlope: {x: -0.32639876, y: 0.05955074, z: -0.45877543, w: -0.17062436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.029589627, y: 0.1375105, z: -0.35553327, w: 0.92401916} + inSlope: {x: -0.071241684, y: 0.06795109, z: 0.5078756, w: 0.15397231} + outSlope: {x: -0.071241684, y: 0.06795109, z: 0.5078756, w: 0.15397231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.017535778, y: 0.14189082, z: -0.2717489, w: 0.951689} + inSlope: {x: 0.42855316, y: 0.03368529, z: 2.0718563, w: 0.46731347} + outSlope: {x: 0.42855316, y: 0.03368529, z: 2.0718563, w: 0.46731347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.027515186, y: 0.14199907, z: -0.079457946, w: 0.9862888} + inSlope: {x: 0.67618585, y: 0.001624643, z: 2.8861632, w: 0.51932037} + outSlope: {x: 0.67618585, y: 0.001624643, z: 2.8861632, w: 0.51932037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.0005574119, y: 0.007082653, z: 0.07845713, w: 0.99689215} + inSlope: {x: 0.0041671298, y: -0.00041049486, z: 0.5865259, w: -0.057767972} + outSlope: {x: 0.0041671298, y: -0.00041049486, z: 0.5865259, w: -0.057767972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.0008350469, y: 0.007055304, z: 0.11753442, w: 0.99304336} + inSlope: {x: -0.05999617, y: 0.012359416, z: -0.018642157, w: 0.0011388622} + outSlope: {x: -0.05999617, y: 0.012359416, z: -0.018642157, w: 0.0011388622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.007437078, y: 0.008729545, z: 0.07597306, w: 0.9970439} + inSlope: {x: -0.11280981, y: 0.01943802, z: -0.6824937, w: 0.04844773} + outSlope: {x: -0.11280981, y: 0.01943802, z: -0.6824937, w: 0.04844773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.01419686, y: 0.00964542, z: 0.026592145, w: 0.999499} + inSlope: {x: -0.099230126, y: 0.0121223945, z: -0.77443653, w: 0.017399637} + outSlope: {x: -0.099230126, y: 0.0121223945, z: -0.77443653, w: 0.017399637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.020659491, y: 0.010344855, z: -0.027220601, w: 0.9993624} + inSlope: {x: -0.10381597, y: 0.012942469, z: -0.81494236, w: -0.024958802} + outSlope: {x: -0.10381597, y: 0.012942469, z: -0.81494236, w: -0.024958802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.028030338, y: 0.011370004, z: -0.08199892, w: 0.99617326} + inSlope: {x: -0.12638603, y: 0.021874268, z: -0.8034366, w: -0.0691736} + outSlope: {x: -0.12638603, y: 0.021874268, z: -0.8034366, w: -0.0691736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.03750043, y: 0.013259601, z: -0.13427852, w: 0.990145} + inSlope: {x: -0.16667923, y: 0.03882852, z: -0.74057555, w: -0.10547674} + outSlope: {x: -0.16667923, y: 0.03882852, z: -0.74057555, w: -0.10547674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.050240345, y: 0.016543904, z: -0.18068062, w: 0.9821185} + inSlope: {x: -0.2242668, y: 0.063620575, z: -0.6279523, w: -0.12575977} + outSlope: {x: -0.2242668, y: 0.063620575, z: -0.6279523, w: -0.12575977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.06738398, y: 0.021737043, z: -0.21795316, w: 0.97338754} + inSlope: {x: -0.38900828, y: 0.1310906, z: -0.41733956, w: -0.12316221} + outSlope: {x: -0.38900828, y: 0.1310906, z: -0.41733956, w: -0.12316221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.102075696, y: 0.034011725, z: -0.23629111, w: 0.9657071} + inSlope: {x: -0.8882522, y: 0.33283228, z: 0.11446117, w: -0.10655342} + outSlope: {x: -0.8882522, y: 0.33283228, z: 0.11446117, w: -0.10655342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.18574359, y: 0.06608694, z: -0.20270121, w: 0.9591893} + inSlope: {x: -0.9304377, y: 0.36936235, z: 0.73931146, w: -0.037404433} + outSlope: {x: -0.9304377, y: 0.36936235, z: 0.73931146, w: -0.037404433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.22605652, y: 0.08322926, z: -0.13777786, w: 0.960723} + inSlope: {x: 0.42725044, y: -0.112385735, z: 1.2673721, w: 0.22952239} + outSlope: {x: 0.42725044, y: -0.112385735, z: 1.2673721, w: 0.22952239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.12881246, y: 0.05111154, z: -0.033823874, w: 0.98977315} + inSlope: {x: 1.7006673, y: -0.5714568, z: 1.6227766, w: 0.27143842} + outSlope: {x: 1.7006673, y: -0.5714568, z: 1.6227766, w: 0.27143842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.000557396, y: 0.0070826444, z: 0.078457125, w: 0.99689215} + inSlope: {x: 0.9729644, y: -0.33062845, z: 1.1358973, w: 0.024542354} + outSlope: {x: 0.9729644, y: -0.33062845, z: 1.1358973, w: 0.024542354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.0008350468, y: 0.0070553003, z: 0.11753444, w: 0.9930434} + inSlope: {x: -0.052626837, y: 0.010447953, z: -0.01876232, w: 0.0012158547} + outSlope: {x: -0.052626837, y: 0.010447953, z: -0.01876232, w: 0.0012158547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.0064551174, y: 0.0084748315, z: 0.07595712, w: 0.99705416} + inSlope: {x: -0.09838767, y: 0.015494918, z: -0.68263793, w: 0.048679013} + outSlope: {x: -0.09838767, y: 0.015494918, z: -0.68263793, w: 0.048679013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.012275108, y: 0.009119997, z: 0.02657292, w: 0.9995299} + inSlope: {x: -0.08494598, y: 0.007974861, z: -0.77316976, w: 0.017830368} + outSlope: {x: -0.08494598, y: 0.007974861, z: -0.77316976, w: 0.017830368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.017774189, y: 0.009537484, z: -0.027067937, w: 0.99943006} + inSlope: {x: -0.08922429, y: 0.0087078735, z: -0.81497335, w: -0.024355864} + outSlope: {x: -0.08922429, y: 0.0087078735, z: -0.81497335, w: -0.024355864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.024164243, y: 0.01028032, z: -0.08202228, w: 0.9962845} + inSlope: {x: -0.11054709, y: 0.017592978, z: -0.8037236, w: -0.068108216} + outSlope: {x: -0.11054709, y: 0.017592978, z: -0.8037236, w: -0.068108216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.032504562, y: 0.011881744, z: -0.13416392, w: 0.99035466} + inSlope: {x: -0.14906836, y: 0.03466826, z: -0.74101686, w: -0.10399029} + outSlope: {x: -0.14906836, y: 0.03466826, z: -0.74101686, w: -0.10399029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.044027608, y: 0.0148998685, z: -0.18076277, w: 0.9824278} + inSlope: {x: -0.20389128, y: 0.05953116, z: -0.62924165, w: -0.12334538} + outSlope: {x: -0.20389128, y: 0.05953116, z: -0.62924165, w: -0.12334538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.059673123, y: 0.019814285, z: -0.21801051, w: 0.97391886} + inSlope: {x: -0.36030474, y: 0.12701783, z: -0.41926396, w: -0.117979154} + outSlope: {x: -0.36030474, y: 0.12701783, z: -0.41926396, w: -0.117979154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.092038184, y: 0.03182498, z: -0.23662972, w: 0.96670705} + inSlope: {x: -0.83194613, y: 0.32770652, z: 0.10642679, w: -0.08983968} + outSlope: {x: -0.83194613, y: 0.32770652, z: 0.10642679, w: -0.08983968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.17052974, y: 0.0634811, z: -0.20382917, w: 0.96194774} + inSlope: {x: -0.8796785, y: 0.36763296, z: 0.73110926, w: -0.01639954} + outSlope: {x: -0.8796785, y: 0.36763296, z: 0.73110926, w: -0.01639954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.20925526, y: 0.080812044, z: -0.13920936, w: 0.9645218} + inSlope: {x: 0.31600323, y: -0.07882239, z: 1.2232068, w: 0.20647952} + outSlope: {x: 0.31600323, y: -0.07882239, z: 1.2232068, w: 0.20647952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.12842223, y: 0.052977998, z: -0.040836573, w: 0.9894612} + inSlope: {x: 1.2132516, y: -0.41777107, z: 1.476512, w: 0.37432367} + outSlope: {x: 1.2132516, y: -0.41777107, z: 1.476512, w: 0.37432367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.088083886, y: 0.49379352, z: -0.009485824, w: 0.8650545} + inSlope: {x: 0.7357259, y: 0.9381226, z: 0.96990603, w: -0.5526766} + outSlope: {x: 0.7357259, y: 0.9381226, z: 0.96990603, w: -0.5526766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.03906615, y: 0.55629593, z: 0.055134162, w: 0.8282324} + inSlope: {x: 0.4469396, y: 0.5591303, z: 0.5669572, w: -0.34059232} + outSlope: {x: 0.4469396, y: 0.5591303, z: 0.5669572, w: -0.34059232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.028529186, y: 0.5682976, z: 0.06606121, w: 0.81967056} + inSlope: {x: 0.014497489, y: 0.00632637, z: -0.039342083, w: -0.001091443} + outSlope: {x: 0.014497489, y: 0.00632637, z: -0.039342083, w: -0.001091443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.03713436, y: 0.5571389, z: 0.04989183, w: 0.828087} + inSlope: {x: -0.16987455, y: -0.22130612, z: -0.30039147, w: 0.15609306} + outSlope: {x: -0.16987455, y: -0.22130612, z: -0.30039147, w: 0.15609306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.05116497, y: 0.5388086, z: 0.026034052, w: 0.84046996} + inSlope: {x: -0.21936229, y: -0.29106748, z: -0.36542696, w: 0.1838592} + outSlope: {x: -0.21936229, y: -0.29106748, z: -0.36542696, w: 0.1838592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.066364385, y: 0.5183542, z: 0.0011986903, w: 0.8525862} + inSlope: {x: -0.20543155, y: -0.27942973, z: -0.32944608, w: 0.15674882} + outSlope: {x: -0.20543155, y: -0.27942973, z: -0.32944608, w: 0.15674882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.07853872, y: 0.5015746, z: -0.01786464, w: 0.86135674} + inSlope: {x: -0.13806213, y: -0.18918851, z: -0.20581967, w: 0.09624462} + outSlope: {x: -0.13806213, y: -0.18918851, z: -0.20581967, w: 0.09624462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.084761165, y: 0.4931448, z: -0.02622678, w: 0.8654108} + inSlope: {x: -0.0815897, y: -0.10723759, z: -0.09436106, w: 0.050756767} + outSlope: {x: -0.0815897, y: -0.10723759, z: -0.09436106, w: 0.050756767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.08941055, y: 0.48728517, z: -0.030438252, w: 0.8681201} + inSlope: {x: -0.062217914, y: -0.07524946, z: -0.04291667, w: 0.03451836} + outSlope: {x: -0.062217914, y: -0.07524946, z: -0.04291667, w: 0.03451836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.0930517, y: 0.48311782, z: -0.031945426, w: 0.8700104} + inSlope: {x: -0.043561548, y: -0.04581193, z: -0.0017903624, w: 0.02082517} + outSlope: {x: -0.043561548, y: -0.04581193, z: -0.0017903624, w: 0.02082517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.09521513, y: 0.48118073, z: -0.030676818, w: 0.870895} + inSlope: {x: -0.017836997, y: -0.008431429, z: 0.040416114, w: 0.0041018734} + outSlope: {x: -0.017836997, y: -0.008431429, z: 0.040416114, w: 0.0041018734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.09542848, y: 0.48199433, z: -0.026559979, w: 0.87055695} + inSlope: {x: 0.015020931, y: 0.036541115, z: 0.08372029, w: -0.016274193} + outSlope: {x: 0.015020931, y: 0.036541115, z: 0.08372029, w: -0.016274193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.09321359, y: 0.48604983, z: -0.01952109, w: 0.8687265} + inSlope: {x: 0.0551192, y: 0.08854902, z: 0.12813614, w: -0.041294277} + outSlope: {x: 0.0551192, y: 0.08854902, z: 0.12813614, w: -0.041294277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.08808385, y: 0.4937935, z: -0.009485837, w: 0.8650545} + inSlope: {x: 0.38120732, y: 0.4937103, z: 0.5245561, w: -0.28051534} + outSlope: {x: 0.38120732, y: 0.4937103, z: 0.5245561, w: -0.28051534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.042417716, y: 0.5518367, z: 0.050376013, w: 0.8313478} + inSlope: {x: 0.43924457, y: 0.5593208, z: 0.5713844, w: -0.34135517} + outSlope: {x: 0.43924457, y: 0.5593208, z: 0.5713844, w: -0.34135517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.029554533, y: 0.56832296, z: 0.0666511, w: 0.81956893} + inSlope: {x: 0.011596508, y: 0.04048367, z: 0.012506403, w: -0.027252901} + outSlope: {x: 0.011596508, y: 0.04048367, z: 0.012506403, w: -0.027252901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.040872525, y: 0.5572311, z: 0.052042436, w: 0.8277164} + inSlope: {x: -0.21252167, y: -0.21978709, z: -0.27505195, w: 0.1514993} + outSlope: {x: -0.21252167, y: -0.21978709, z: -0.27505195, w: 0.1514993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.057873096, y: 0.5390363, z: 0.03000036, w: 0.83975625} + inSlope: {x: -0.2620744, y: -0.29007715, z: -0.3408543, w: 0.17952695} + outSlope: {x: -0.2620744, y: -0.29007715, z: -0.3408543, w: 0.17952695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.07579394, y: 0.51857835, z: 0.0066236034, w: 0.8516384} + inSlope: {x: -0.23790982, y: -0.2789073, z: -0.31111008, w: 0.15353647} + outSlope: {x: -0.23790982, y: -0.2789073, z: -0.31111008, w: 0.15353647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.08957452, y: 0.50187194, z: -0.011454985, w: 0.86021495} + inSlope: {x: -0.14907266, y: -0.18623477, z: -0.19578634, w: 0.093522325} + outSlope: {x: -0.14907266, y: -0.18623477, z: -0.19578634, w: 0.093522325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.095657855, y: 0.49376258, z: -0.019464908, w: 0.8641002} + inSlope: {x: -0.060260136, y: -0.08716621, z: -0.07937685, w: 0.04202869} + outSlope: {x: -0.060260136, y: -0.08716621, z: -0.07937685, w: 0.04202869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.0976042, y: 0.49025702, z: -0.022031968, w: 0.8658153} + inSlope: {x: -0.011044216, y: -0.032729063, z: -0.014566821, w: 0.017020745} + outSlope: {x: -0.011044216, y: -0.032729063, z: -0.014566821, w: 0.017020745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.0971295, y: 0.48940143, z: -0.021405943, w: 0.86636823} + inSlope: {x: 0.01885238, y: 0.00010825042, z: 0.024863191, w: 0.0026212672} + outSlope: {x: 0.01885238, y: 0.00010825042, z: 0.024863191, w: 0.0026212672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.095092125, y: 0.49027145, z: -0.018718954, w: 0.86616457} + inSlope: {x: 0.03606438, y: 0.018933019, z: 0.04754892, w: -0.005781087} + outSlope: {x: 0.03606438, y: 0.018933019, z: 0.04754892, w: -0.005781087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.09232392, y: 0.49192426, z: -0.015070047, w: 0.8655979} + inSlope: {x: 0.04038012, y: 0.02349582, z: 0.05320947, w: -0.008107112} + outSlope: {x: 0.04038012, y: 0.02349582, z: 0.05320947, w: -0.008107112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.089711465, y: 0.49340227, z: -0.01162878, w: 0.8650843} + inSlope: {x: 0.039211288, y: 0.022184072, z: 0.051651206, w: -0.0077090026} + outSlope: {x: 0.039211288, y: 0.022184072, z: 0.051651206, w: -0.0077090026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11/Bone22 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.00016235888, y: -0.00195405, z: -0.08280805, w: 0.9965636} + inSlope: {x: 0.104251355, y: 0.0022291827, z: 1.2815566, w: 0.051124457} + outSlope: {x: 0.104251355, y: 0.0022291827, z: 1.2815566, w: 0.051124457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.0071081053, y: -0.0018055307, z: 0.0025756604, w: 0.9999698} + inSlope: {x: 0.062687226, y: 0.0013533131, z: 0.7671094, w: 0.02409146} + outSlope: {x: 0.062687226, y: 0.0013533131, z: 0.7671094, w: 0.02409146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.008515432, y: -0.0017737211, z: 0.019409277, w: 0.9997738} + inSlope: {x: 0.0018451195, y: 0.00004095024, z: 0.01166144, w: -0.00005233579} + outSlope: {x: 0.0018451195, y: 0.00004095024, z: 0.01166144, w: -0.00005233579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.0073539675, y: -0.0018000741, z: 0.004129547, w: 0.9999628} + inSlope: {x: -0.022838365, y: -0.0005110279, z: -0.29662627, w: 0.000054124976} + outSlope: {x: -0.022838365, y: -0.0005110279, z: -0.29662627, w: 0.000054124976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.0054722195, y: -0.0018418155, z: -0.020116175, w: 0.999781} + inSlope: {x: -0.030160027, y: -0.0006585944, z: -0.38651878, w: -0.008202405} + outSlope: {x: -0.030160027, y: -0.0006585944, z: -0.38651878, w: -0.008202405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.0033351441, y: -0.0018878318, z: -0.047374077, w: 0.99886984} + inSlope: {x: -0.030475318, y: -0.00064682274, z: -0.3870665, w: -0.017689496} + outSlope: {x: -0.030475318, y: -0.00064682274, z: -0.3870665, w: -0.017689496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.0014113835, y: -0.0019280047, z: -0.07169279, w: 0.9974239} + inSlope: {x: -0.023746554, y: -0.0004914989, z: -0.29854864, w: -0.02009068} + outSlope: {x: -0.023746554, y: -0.0004914989, z: -0.29854864, w: -0.02009068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.00017091577, y: -0.001953324, z: -0.087155685, w: 0.99619275} + inSlope: {x: -0.013153528, y: -0.0002656506, z: -0.17599116, w: -0.014726486} + outSlope: {x: -0.013153528, y: -0.0002656506, z: -0.17599116, w: -0.014726486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.00034132414, y: -0.0019634026, z: -0.09514361, w: 0.9954616} + inSlope: {x: -0.0048743715, y: -0.00009206115, z: -0.10032988, w: -0.009457569} + outSlope: {x: -0.0048743715, y: -0.00009206115, z: -0.10032988, w: -0.009457569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.00047859424, y: -0.0019655912, z: -0.10052464, w: 0.99493253} + inSlope: {x: -0.00020668132, y: 0.0000039437055, z: -0.056276232, w: -0.0055932193} + outSlope: {x: -0.00020668132, y: 0.0000039437055, z: -0.056276232, w: -0.0055932193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.00036886442, y: -0.001962877, z: -0.10264242, w: 0.9947163} + inSlope: {x: 0.0025400473, y: 0.0000557553, z: -0.0023567881, w: -0.00023752393} + outSlope: {x: 0.0025400473, y: 0.0000557553, z: -0.0023567881, w: -0.00023752393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.00014013294, y: -0.0019581618, z: -0.10083868, w: 0.9949009} + inSlope: {x: 0.0033656384, y: 0.00006423505, z: 0.061477885, w: 0.0060888436} + outSlope: {x: 0.0033656384, y: 0.00006423505, z: 0.061477885, w: 0.0060888436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.00007960689, y: -0.0019543178, z: -0.09445049, w: 0.9955276} + inSlope: {x: 0.0022703246, y: 0.000030927597, z: 0.13531327, w: 0.012477836} + outSlope: {x: 0.0022703246, y: 0.000030927597, z: 0.13531327, w: 0.012477836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.00016238783, y: -0.0019540407, z: -0.08280819, w: 0.99656355} + inSlope: {x: -0.0005447214, y: -0.000048486436, z: 0.68196607, w: 0.033501167} + outSlope: {x: -0.0005447214, y: -0.000048486436, z: 0.68196607, w: 0.033501167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.0000070227707, y: -0.0019607786, z: -0.003578513, w: 0.99999166} + inSlope: {x: -0.0015039814, y: -0.00004795874, z: 0.7669908, w: 0.024363425} + outSlope: {x: -0.0015039814, y: -0.00004795874, z: 0.7669908, w: 0.024363425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.000038017606, y: -0.0019604312, z: 0.019393293, w: 0.99981} + inSlope: {x: -0.00011323282, y: 0.00000016775198, z: 0.057744652, w: -0.0000152135035} + outSlope: {x: -0.00011323282, y: 0.00000016775198, z: 0.057744652, w: -0.0000152135035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.000008065369, y: -0.0019607563, z: 0.0041158935, w: 0.9999896} + inSlope: {x: 0.00058035983, y: 0.00000035994776, z: -0.29595298, w: -0.00009572506} + outSlope: {x: 0.00058035983, y: 0.00000035994776, z: -0.29595298, w: -0.00009572506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.000039315477, y: -0.0019603833, z: -0.020042514, w: 0.9997972} + inSlope: {x: 0.0007578832, y: 0.000016286807, z: -0.3864593, w: -0.008364789} + outSlope: {x: 0.0007578832, y: 0.000016286807, z: -0.3864593, w: -0.008364789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.00009292255, y: -0.001958586, z: -0.047379803, w: 0.998875} + inSlope: {x: 0.00075901585, y: 0.00003476303, z: -0.3871467, w: -0.017770045} + outSlope: {x: 0.00075901585, y: 0.00003476303, z: -0.3871467, w: -0.017770045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.00014045415, y: -0.001955751, z: -0.07162972, w: 0.9974294} + inSlope: {x: 0.0005849972, y: 0.000039374157, z: -0.2985062, w: -0.020129599} + outSlope: {x: 0.0005849972, y: 0.000039374157, z: -0.2985062, w: -0.020129599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.00017087339, y: -0.0019533394, z: -0.08715574, w: 0.99619275} + inSlope: {x: 0.00031784078, y: 0.00002635743, z: -0.16204143, w: -0.013402857} + outSlope: {x: 0.00031784078, y: 0.00002635743, z: -0.16204143, w: -0.013402857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.00018280651, y: -0.001952239, z: -0.093221776, w: 0.99564344} + inSlope: {x: 0.00010702007, y: 0.000009858379, z: -0.05445493, w: -0.0049642893} + outSlope: {x: 0.00010702007, y: 0.000009858379, z: -0.05445493, w: -0.0049642893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.00018513383, y: -0.0019520258, z: -0.094411865, w: 0.99553126} + inSlope: {x: -0.000013049241, y: -0.0000011759498, z: 0.00663279, w: 0.00061818963} + outSlope: {x: -0.000013049241, y: -0.0000011759498, z: 0.00663279, w: 0.00061818963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.0001810677, y: -0.0019523957, z: -0.09233796, w: 0.9957258} + inSlope: {x: -0.00008541702, y: -0.00000784984, z: 0.043529652, w: 0.004000331} + outSlope: {x: -0.00008541702, y: -0.00000784984, z: 0.043529652, w: 0.004000331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.000173752, y: -0.0019530718, z: -0.088611536, w: 0.9960643} + inSlope: {x: -0.000109391, y: -0.000009908172, z: 0.05579164, w: 0.0049638394} + outSlope: {x: -0.000109391, y: -0.000009908172, z: 0.05579164, w: 0.0049638394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.00016649133, y: -0.001953716, z: -0.08490371, w: 0.99638724} + inSlope: {x: -0.00010897809, y: -0.000009667915, z: 0.055652075, w: 0.00484709} + outSlope: {x: -0.00010897809, y: -0.000009667915, z: 0.055652075, w: 0.00484709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11/Bone22/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.037070785, y: 0.7674077, z: 0.026522651, w: 0.6395371} + inSlope: {x: 0.33753726, y: -0.5169899, z: 0.24804194, w: 0.58853334} + outSlope: {x: 0.33753726, y: -0.5169899, z: 0.24804194, w: 0.58853334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.014582366, y: 0.73296326, z: 0.043048445, w: 0.67874813} + inSlope: {x: 0.20959398, y: -0.47994822, z: 0.15468241, w: 0.5221729} + outSlope: {x: 0.20959398, y: -0.47994822, z: 0.15468241, w: 0.5221729} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.009142389, y: 0.7034546, z: 0.047134083, w: 0.70911664} + inSlope: {x: -0.18881223, y: -0.36486855, z: -0.13606104, w: 0.36698166} + outSlope: {x: -0.18881223, y: -0.36486855, z: -0.13606104, w: 0.36698166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.039741594, y: 0.68434453, z: 0.02491831, w: 0.72764844} + inSlope: {x: -0.5544129, y: -0.28598642, z: -0.4049139, w: 0.24582341} + outSlope: {x: -0.5544129, y: -0.28598642, z: -0.4049139, w: 0.24582341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.08301791, y: 0.6653469, z: -0.006820694, w: 0.7418726} + inSlope: {x: -0.6527411, y: -0.27535915, z: -0.4782559, w: 0.17015125} + outSlope: {x: -0.6527411, y: -0.27535915, z: -0.4782559, w: 0.17015125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.12671934, y: 0.6476529, z: -0.03880929, w: 0.7503211} + inSlope: {x: -0.5690569, y: -0.23174779, z: -0.41256, w: 0.09044519} + outSlope: {x: -0.5690569, y: -0.23174779, z: -0.41256, w: 0.09044519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.15884474, y: 0.6344665, z: -0.06179431, w: 0.7539244} + inSlope: {x: -0.32293785, y: -0.13751072, z: -0.21954647, w: 0.037454978} + outSlope: {x: -0.32293785, y: -0.13751072, z: -0.21954647, w: 0.037454978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.16975081, y: 0.6293296, z: -0.068063855, w: 0.75531197} + inSlope: {x: -0.05143143, y: -0.034349274, z: 0.0005336739, w: 0.017748542} + outSlope: {x: -0.05143143, y: -0.034349274, z: 0.0005336739, w: 0.017748542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.16569798, y: 0.6298895, z: -0.0617232, w: 0.7562894} + inSlope: {x: 0.13389239, y: 0.04715186, z: 0.15412953, w: 0.0008208221} + outSlope: {x: 0.13389239, y: 0.04715186, z: 0.15412953, w: 0.0008208221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.15190965, y: 0.6356126, z: -0.047526095, w: 0.75542134} + inSlope: {x: 0.25123325, y: 0.12466206, z: 0.24275978, w: -0.041242387} + outSlope: {x: 0.25123325, y: 0.12466206, z: 0.24275978, w: -0.041242387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.13222115, y: 0.6465007, z: -0.029375458, w: 0.7507939} + inSlope: {x: 0.3106525, y: 0.20290942, z: 0.2726575, w: -0.110888794} + outSlope: {x: 0.3106525, y: 0.20290942, z: 0.2726575, w: -0.110888794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.11051521, y: 0.6626503, z: -0.011194484, w: 0.7406454} + inSlope: {x: 0.37400886, y: 0.41963282, z: 0.2657287, w: -0.3289881} + outSlope: {x: 0.37400886, y: 0.41963282, z: 0.2657287, w: -0.3289881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.08238447, y: 0.7024168, z: 0.006032889, w: 0.7069562} + inSlope: {x: 0.55117756, y: 0.7861717, z: 0.283055, w: -0.7587861} + outSlope: {x: 0.55117756, y: 0.7861717, z: 0.283055, w: -0.7587861} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.0370708, y: 0.76740766, z: 0.026522594, w: 0.63953716} + inSlope: {x: 0.53101873, y: 0.3030278, z: 0.28644788, w: -0.29267824} + outSlope: {x: 0.53101873, y: 0.3030278, z: 0.28644788, w: -0.29267824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.011626226, y: 0.7427952, z: 0.04420207, w: 0.6679568} + inSlope: {x: 0.20959334, y: -0.47994828, z: 0.15468235, w: 0.52217305} + outSlope: {x: 0.20959334, y: -0.47994828, z: 0.15468235, w: 0.52217305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.009142493, y: 0.7034546, z: 0.047134012, w: 0.70911664} + inSlope: {x: -0.20551705, y: -0.4392854, z: -0.14928341, w: 0.4490114} + outSlope: {x: -0.20551705, y: -0.4392854, z: -0.14928341, w: 0.4490114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.03901143, y: 0.6842605, z: 0.02431001, w: 0.72778755} + inSlope: {x: -0.5405956, y: -0.28691813, z: -0.4147508, w: 0.24808863} + outSlope: {x: -0.5405956, y: -0.28691813, z: -0.4147508, w: 0.24808863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.08117698, y: 0.6652227, z: -0.008131632, w: 0.7421745} + inSlope: {x: -0.6385353, y: -0.27668318, z: -0.49010795, w: 0.17320946} + outSlope: {x: -0.6385353, y: -0.27668318, z: -0.49010795, w: 0.17320946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.12409626, y: 0.64739245, z: -0.040996872, w: 0.7508677} + inSlope: {x: -0.55825925, y: -0.23282489, z: -0.42247406, w: 0.09334664} + outSlope: {x: -0.55825925, y: -0.23282489, z: -0.42247406, w: 0.09334664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.15556489, y: 0.63419884, z: -0.0644262, w: 0.7546129} + inSlope: {x: -0.31843838, y: -0.13772017, z: -0.22334068, w: 0.038679756} + outSlope: {x: -0.31843838, y: -0.13772017, z: -0.22334068, w: 0.038679756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.16652814, y: 0.62904125, z: -0.07075699, w: 0.7560218} + inSlope: {x: -0.055700384, y: -0.034233805, z: 0.002836585, w: 0.017126743} + outSlope: {x: -0.055700384, y: -0.034233805, z: 0.002836585, w: 0.017126743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.16298698, y: 0.6296372, z: -0.06404822, w: 0.75689507} + inSlope: {x: 0.12442902, y: 0.048008535, z: 0.16203663, w: -0.001253848} + outSlope: {x: 0.12442902, y: 0.048008535, z: 0.16203663, w: -0.001253848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.14994799, y: 0.6354384, z: -0.04916562, w: 0.7558547} + inSlope: {x: 0.2385409, y: 0.1255068, z: 0.25295484, w: -0.04383063} + outSlope: {x: 0.2385409, y: 0.1255068, z: 0.25295484, w: -0.04383063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.13120146, y: 0.64636093, z: -0.03034205, w: 0.75105464} + inSlope: {x: 0.2981655, y: 0.20401287, z: 0.28309476, w: -0.11365402} + outSlope: {x: 0.2981655, y: 0.20401287, z: 0.28309476, w: -0.11365402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.11021743, y: 0.6626231, z: -0.0114432415, w: 0.7407103} + inSlope: {x: 0.35144114, y: 0.3722557, z: 0.26869226, w: -0.28497458} + outSlope: {x: 0.35144114, y: 0.3722557, z: 0.26869226, w: -0.28497458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.08437184, y: 0.6959641, z: 0.0054612583, w: 0.7130817} + inSlope: {x: 0.38792557, y: 0.5004267, z: 0.25372562, w: -0.41468745} + outSlope: {x: 0.38792557, y: 0.5004267, z: 0.25372562, w: -0.41468745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.0007931695, y: -0.013968217, z: -0.056687247, w: 0.99829394} + inSlope: {x: -0.09174758, y: 0.44727075, z: 1.9244211, w: -0.014935828} + outSlope: {x: -0.09174758, y: 0.44727075, z: 1.9244211, w: -0.014935828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.005319513, y: 0.015831197, z: 0.07152731, w: 0.99729884} + inSlope: {x: -0.072662406, y: 0.3573373, z: 1.5002201, w: -0.069153465} + outSlope: {x: -0.072662406, y: 0.3573373, z: 1.5002201, w: -0.069153465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.008889096, y: 0.033646975, z: 0.14321707, w: 0.98907924} + inSlope: {x: -0.017725535, y: 0.095300145, z: 0.24484977, w: -0.023839172} + outSlope: {x: -0.017725535, y: 0.095300145, z: 0.24484977, w: -0.023839172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.0076814406, y: 0.02852994, z: 0.10415354, w: 0.99412227} + inSlope: {x: 0.02935407, y: -0.13112918, z: -0.85786307, w: 0.07774548} + outSlope: {x: 0.02935407, y: -0.13112918, z: -0.85786307, w: 0.07774548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.0049776663, y: 0.016174013, z: 0.028906824, w: 0.9994388} + inSlope: {x: 0.044590157, y: -0.20308875, z: -1.1928627, w: 0.03281588} + outSlope: {x: 0.044590157, y: -0.20308875, z: -1.1928627, w: 0.03281588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.0017398024, y: 0.0014683652, z: -0.054795407, w: 0.998495} + inSlope: {x: 0.044960354, y: -0.20014994, z: -1.1085452, w: -0.04936159} + outSlope: {x: 0.044960354, y: -0.20014994, z: -1.1085452, w: -0.04936159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.0010133006, y: -0.010495966, z: -0.118806824, w: 0.9928614} + inSlope: {x: 0.03210968, y: -0.13081363, z: -0.6571737, w: -0.06613544} + outSlope: {x: 0.03210968, y: -0.13081363, z: -0.6571737, w: -0.06613544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.0025388126, y: -0.01596255, z: -0.1423638, w: 0.98968244} + inSlope: {x: 0.02125002, y: -0.06791933, z: -0.22634567, w: -0.03166941} + outSlope: {x: 0.02125002, y: -0.06791933, z: -0.22634567, w: -0.03166941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.0038448658, y: -0.019546216, z: -0.14896739, w: 0.98864144} + inSlope: {x: 0.01860432, y: -0.045529112, z: -0.023159929, w: -0.0043139} + outSlope: {x: 0.01860432, y: -0.045529112, z: -0.023159929, w: -0.0043139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.005017838, y: -0.022029305, z: -0.14544986, w: 0.9891076} + inSlope: {x: 0.0153937265, y: -0.026483208, z: 0.118738264, w: 0.016276428} + outSlope: {x: 0.0153937265, y: -0.026483208, z: 0.118738264, w: 0.016276428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.00589608, y: -0.023075104, z: -0.13314551, w: 0.9908103} + inSlope: {x: 0.009758506, y: -0.0023753513, z: 0.24079445, w: 0.03132856} + outSlope: {x: 0.009758506, y: -0.0023753513, z: 0.24079445, w: 0.03132856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.006318159, y: -0.02234582, z: -0.113364, w: 0.99328214} + inSlope: {x: 0.00170121, y: 0.026800185, z: 0.3431965, w: 0.03866407} + outSlope: {x: 0.00170121, y: 0.026800185, z: 0.3431965, w: 0.03866407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.006122766, y: -0.019503979, z: -0.08741458, w: 0.99596226} + inSlope: {x: -0.008773873, y: 0.06101612, z: 0.42580405, w: 0.037514918} + outSlope: {x: -0.008773873, y: 0.06101612, z: 0.42580405, w: 0.037514918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.0051490404, y: -0.014215423, z: -0.056625616, w: 0.998281} + inSlope: {x: -0.06638857, y: 0.26429924, z: 1.0666237, w: 0.01810505} + outSlope: {x: -0.06638857, y: 0.26429924, z: 1.0666237, w: 0.01810505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.0027235106, y: 0.015713893, z: 0.054713022, w: 0.99837476} + inSlope: {x: -0.114728615, y: 0.42395782, z: 1.4991357, w: -0.0715427} + outSlope: {x: -0.114728615, y: 0.42395782, z: 1.4991357, w: -0.0715427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.010138534, y: 0.04227691, z: 0.14313406, w: 0.98874795} + inSlope: {x: -0.04870021, y: 0.15424018, z: 0.37042245, w: -0.033839535} + outSlope: {x: -0.04870021, y: 0.15424018, z: 0.37042245, w: -0.033839535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.009212798, y: 0.036266338, z: 0.10407159, w: 0.99386567} + inSlope: {x: 0.029476408, y: -0.15418531, z: -0.8557366, w: 0.07934538} + outSlope: {x: 0.029476408, y: -0.15418531, z: -0.8557366, w: 0.07934538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.0062107956, y: 0.021731682, z: 0.029106952, w: 0.99932075} + inSlope: {x: 0.05128507, y: -0.2400051, z: -1.1925148, w: 0.034656048} + outSlope: {x: 0.05128507, y: -0.2400051, z: -1.1925148, w: 0.034656048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.0023790644, y: 0.004285664, z: -0.054830994, w: 0.9984836} + inSlope: {x: 0.05322554, y: -0.23697582, z: -1.1090552, w: -0.04830557} + outSlope: {x: 0.05322554, y: -0.23697582, z: -1.1090552, w: -0.04830557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.0008814947, y: -0.009845289, z: -0.118674375, w: 0.99288404} + inSlope: {x: 0.0367669, y: -0.15273005, z: -0.6514099, w: -0.06527349} + outSlope: {x: 0.0367669, y: -0.15273005, z: -0.6514099, w: -0.06527349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.0025201219, y: -0.0160656, z: -0.14163129, w: 0.9897859} + inSlope: {x: 0.019174373, y: -0.06479886, z: -0.18642202, w: -0.025624359} + outSlope: {x: 0.019174373, y: -0.06479886, z: -0.18642202, w: -0.025624359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.0034364844, y: -0.018479753, z: -0.14351515, w: 0.9894696} + inSlope: {x: 0.011082079, y: -0.020902583, z: 0.062526554, w: 0.008273998} + outSlope: {x: 0.011082079, y: -0.020902583, z: 0.062526554, w: 0.008273998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.0039968095, y: -0.018850872, z: -0.13329965, w: 0.9908884} + inSlope: {x: 0.0066228965, y: 0.004438038, z: 0.21159574, w: 0.027679864} + outSlope: {x: 0.0066228965, y: 0.004438038, z: 0.21159574, w: 0.027679864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.0043189838, y: -0.017888386, z: -0.11532007, w: 0.9931579} + inSlope: {x: 0.004030465, y: 0.0191167, z: 0.2978897, w: 0.034349717} + outSlope: {x: 0.004030465, y: 0.0191167, z: 0.2978897, w: 0.034349717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.0045338687, y: -0.016303571, z: -0.09360584, w: 0.9954655} + inSlope: {x: 0.0033560193, y: 0.022877254, z: 0.31995195, w: 0.030582383} + outSlope: {x: 0.0033560193, y: 0.022877254, z: 0.31995195, w: 0.030582383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.004766174, y: -0.014839986, z: -0.0726864, w: 0.99723303} + inSlope: {x: 0.0034867537, y: 0.02196746, z: 0.3139873, w: 0.026529275} + outSlope: {x: 0.0034867537, y: 0.02196746, z: 0.3139873, w: 0.026529275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone19/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.43009937, y: -0.56126165, z: -0.5257862, w: 0.47280946} + inSlope: {x: 0.849022, y: 0.7245563, z: -0.70165294, w: -0.8680463} + outSlope: {x: 0.849022, y: 0.7245563, z: -0.70165294, w: -0.8680463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.48666546, y: -0.5129881, z: -0.57253385, w: 0.41497588} + inSlope: {x: 0.7135447, y: 0.6587454, z: -0.580551, w: -0.7784933} + outSlope: {x: 0.7135447, y: 0.6587454, z: -0.580551, w: -0.7784933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.5251792, y: -0.47348383, z: -0.60314465, w: 0.36907524} + inSlope: {x: 0.38407063, y: 0.42553604, z: -0.32274765, w: -0.4754411} + outSlope: {x: 0.38407063, y: 0.42553604, z: -0.32274765, w: -0.4754411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.53784287, y: -0.45628542, z: -0.61553997, w: 0.35162336} + inSlope: {x: 0.1252118, y: 0.1945008, z: -0.14327615, w: -0.18214867} + outSlope: {x: 0.1252118, y: 0.1945008, z: -0.14327615, w: -0.18214867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.5418637, y: -0.4475666, z: -0.6222362, w: 0.34480393} + inSlope: {x: 0.008803595, y: 0.027131855, z: -0.02230757, w: -0.01761166} + outSlope: {x: 0.008803595, y: 0.027131855, z: -0.02230757, w: -0.01761166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.53901595, y: -0.4526701, z: -0.61851245, w: 0.3492766} + inSlope: {x: -0.08927815, y: -0.21761912, z: 0.177213, w: 0.15615813} + outSlope: {x: -0.08927815, y: -0.21761912, z: 0.177213, w: 0.15615813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.52996737, y: -0.47656435, z: -0.59862256, w: 0.365612} + inSlope: {x: -0.19585887, y: -0.49290335, z: 0.43785638, w: 0.32805368} + outSlope: {x: -0.19585887, y: -0.49290335, z: 0.43785638, w: 0.32805368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.51291776, y: -0.51834947, z: -0.5601681, w: 0.39298975} + inSlope: {x: -0.30914032, y: -0.67202723, z: 0.66223913, w: 0.44131458} + outSlope: {x: -0.30914032, y: -0.67202723, z: 0.66223913, w: 0.44131458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.48877442, y: -0.566112, z: -0.5103792, w: 0.42441717} + inSlope: {x: -0.39004654, y: -0.67865694, z: 0.75489473, w: 0.45446116} + outSlope: {x: -0.39004654, y: -0.67865694, z: 0.75489473, w: 0.45446116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.46094406, y: -0.6087805, z: -0.45957837, w: 0.4535467} + inSlope: {x: -0.4018147, y: -0.5400181, z: 0.67461705, w: 0.38754916} + outSlope: {x: -0.4018147, y: -0.5400181, z: 0.67461705, w: 0.38754916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.4352326, y: -0.6380694, z: -0.42048648, w: 0.4760581} + inSlope: {x: -0.31660646, y: -0.2603012, z: 0.34365693, w: 0.2680232} + outSlope: {x: -0.31660646, y: -0.2603012, z: 0.34365693, w: 0.2680232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.41875625, y: -0.64346564, z: -0.41378608, w: 0.4892608} + inSlope: {x: -0.14251214, y: 0.22552878, z: -0.34084842, w: 0.10378209} + outSlope: {x: -0.14251214, y: 0.22552878, z: -0.34084842, w: 0.10378209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.41624287, y: -0.6080177, z: -0.46590453, w: 0.48988706} + inSlope: {x: 0.08512706, y: 0.61691594, z: -0.84052634, w: -0.12346259} + outSlope: {x: 0.08512706, y: 0.61691594, z: -0.84052634, w: -0.12346259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.43009943, y: -0.5612616, z: -0.5257862, w: 0.4728094} + inSlope: {x: 0.49444702, y: 0.72339416, z: -0.8185281, w: -0.53523946} + outSlope: {x: 0.49444702, y: 0.72339416, z: -0.8185281, w: -0.53523946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.48212793, y: -0.5116254, z: -0.5749734, w: 0.4185664} + inSlope: {x: 0.74440205, y: 0.69327486, z: -0.60454893, w: -0.8180988} + outSlope: {x: 0.74440205, y: 0.69327486, z: -0.60454893, w: -0.8180988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.5292909, y: -0.4688828, z: -0.6063423, w: 0.36379784} + inSlope: {x: 0.45137584, y: 0.4549126, z: -0.32988256, w: -0.54740936} + outSlope: {x: 0.45137584, y: 0.4549126, z: -0.32988256, w: -0.54740936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.5422737, y: -0.45100835, z: -0.6189302, w: 0.34562418} + inSlope: {x: 0.12728712, y: 0.20022719, z: -0.1442582, w: -0.18816516} + outSlope: {x: 0.12728712, y: 0.20022719, z: -0.1442582, w: -0.18816516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.54625195, y: -0.44220248, z: -0.62556475, w: 0.3387248} + inSlope: {x: 0.006758826, y: 0.025070217, z: -0.02069173, w: -0.015198242} + outSlope: {x: 0.006758826, y: 0.025070217, z: -0.02069173, w: -0.015198242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.5431743, y: -0.44766772, z: -0.6216874, w: 0.343599} + inSlope: {x: -0.09317084, y: -0.22491434, z: 0.1792137, w: 0.16432437} + outSlope: {x: -0.09317084, y: -0.22491434, z: 0.1792137, w: 0.16432437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.53383696, y: -0.47217226, z: -0.6016846, w: 0.36062098} + inSlope: {x: -0.2025801, y: -0.5064174, z: 0.4423136, w: 0.34238344} + outSlope: {x: -0.2025801, y: -0.5064174, z: 0.4423136, w: 0.34238344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.5161805, y: -0.51514786, z: -0.5627491, w: 0.3892216} + inSlope: {x: -0.3193233, y: -0.68868315, z: 0.6693176, w: 0.45948613} + outSlope: {x: -0.3193233, y: -0.68868315, z: 0.6693176, w: 0.45948613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.49128705, y: -0.56393945, z: -0.51249784, w: 0.4218476} + inSlope: {x: -0.40398377, y: -0.6952348, z: 0.7656616, w: 0.47325146} + outSlope: {x: -0.40398377, y: -0.6952348, z: 0.7656616, w: 0.47325146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.46234968, y: -0.6077879, z: -0.46072468, w: 0.45228237} + inSlope: {x: -0.41707805, y: -0.5539462, z: 0.6873139, w: 0.4038979} + outSlope: {x: -0.41707805, y: -0.5539462, z: 0.6873139, w: 0.4038979} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.4357115, y: -0.63775265, z: -0.42091343, w: 0.4756669} + inSlope: {x: -0.31418103, y: -0.26768535, z: 0.35318157, w: 0.26723516} + outSlope: {x: -0.31418103, y: -0.26768535, z: 0.35318157, w: 0.26723516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.42048508, y: -0.64345694, z: -0.4136633, w: 0.48789144} + inSlope: {x: -0.081849664, y: 0.22630715, z: -0.3370942, w: 0.055642013} + outSlope: {x: -0.081849664, y: 0.22630715, z: -0.3370942, w: 0.055642013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.42480502, y: -0.6075972, z: -0.4658313, w: 0.48308122} + inSlope: {x: 0.06483945, y: 0.5382319, z: -0.78300816, w: -0.072198205} + outSlope: {x: 0.06483945, y: 0.5382319, z: -0.78300816, w: -0.072198205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.07231984, y: 0.1391972, z: 0.18647897, w: 0.9698554} + inSlope: {x: -0.40442145, y: -0.16510576, z: -1.6125828, w: 0.20626473} + outSlope: {x: -0.40442145, y: -0.16510576, z: -1.6125828, w: 0.20626473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.09926442, y: 0.12819703, z: 0.07904065, w: 0.9835978} + inSlope: {x: -0.39504853, y: -0.17720729, z: -1.620045, w: 0.11341299} + outSlope: {x: -0.39504853, y: -0.17720729, z: -1.620045, w: 0.11341299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.12496006, y: 0.11558433, z: -0.029392004, w: 0.9849677} + inSlope: {x: -0.32235628, y: -0.16933294, z: -1.3998597, w: -0.039795328} + outSlope: {x: -0.32235628, y: -0.16933294, z: -1.3998597, w: -0.039795328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.1422184, y: 0.105633415, z: -0.10749066, w: 0.9782951} + inSlope: {x: -0.20312196, y: -0.12625182, z: -0.9327935, w: -0.1022203} + outSlope: {x: -0.20312196, y: -0.12625182, z: -0.9327935, w: -0.1022203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.15202606, y: 0.098761275, z: -0.15368673, w: 0.97134686} + inSlope: {x: -0.121356286, y: -0.091523156, z: -0.575417, w: -0.095730655} + outSlope: {x: -0.121356286, y: -0.091523156, z: -0.575417, w: -0.095730655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.15838912, y: 0.093437955, z: -0.18416497, w: 0.965539} + inSlope: {x: -0.05847965, y: -0.0521714, z: -0.31205872, w: -0.060574874} + outSlope: {x: -0.05847965, y: -0.0521714, z: -0.31205872, w: -0.060574874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.15981847, y: 0.09180944, z: -0.19526856, w: 0.96327525} + inSlope: {x: 0.027702067, y: 0.018663019, z: 0.0069831386, w: 0.003988702} + outSlope: {x: 0.027702067, y: 0.018663019, z: 0.0069831386, w: 0.003988702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.15469782, y: 0.0959248, z: -0.18323447, w: 0.9660705} + inSlope: {x: 0.1593798, y: 0.13340336, z: 0.4335916, w: 0.085131094} + outSlope: {x: 0.1593798, y: 0.13340336, z: 0.4335916, w: 0.085131094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.13858111, y: 0.109585434, z: -0.13749248, w: 0.974619} + inSlope: {x: 0.31290627, y: 0.25589365, z: 0.90533787, w: 0.12749714} + outSlope: {x: 0.31290627, y: 0.25589365, z: 0.90533787, w: 0.12749714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.11300306, y: 0.13002263, z: -0.0625982, w: 0.98305947} + inSlope: {x: 0.39728606, y: 0.30016822, z: 1.1960714, w: 0.07633063} + outSlope: {x: 0.39728606, y: 0.30016822, z: 1.1960714, w: 0.07633063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.08564275, y: 0.14958285, z: 0.02188404, w: 0.98479} + inSlope: {x: 0.36050248, y: 0.23665315, z: 1.1875646, w: -0.022459209} + outSlope: {x: 0.36050248, y: 0.23665315, z: 1.1875646, w: -0.022459209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.064966105, y: 0.16155666, z: 0.09564478, w: 0.9800668} + inSlope: {x: 0.18512172, y: 0.03741539, z: 1.0858293, w: -0.0965224} + outSlope: {x: 0.18512172, y: 0.03741539, z: 1.0858293, w: -0.0965224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.06097528, y: 0.15456845, z: 0.16657078, w: 0.9719284} + inSlope: {x: -0.055187635, y: -0.16780083, z: 0.68168205, w: -0.07663301} + outSlope: {x: -0.055187635, y: -0.16780083, z: 0.68168205, w: -0.07663301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.07231986, y: 0.1391972, z: 0.18647891, w: 0.9698554} + inSlope: {x: -0.26093274, y: -0.19884232, z: -0.46511304, w: 0.072397836} + outSlope: {x: -0.26093274, y: -0.19884232, z: -0.46511304, w: 0.072397836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.095744565, y: 0.12807271, z: 0.10459447, w: 0.9815754} + inSlope: {x: -0.38321212, y: -0.17639568, z: -1.523732, w: 0.11705552} + outSlope: {x: -0.38321212, y: -0.17639568, z: -1.523732, w: 0.11705552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.12338282, y: 0.1156925, z: -0.01655814, w: 0.98545307} + inSlope: {x: -0.34877175, y: -0.1684001, z: -1.5916333, w: -0.0246178} + outSlope: {x: -0.34877175, y: -0.1684001, z: -1.5916333, w: -0.0246178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.14221838, y: 0.1056334, z: -0.1074906, w: 0.9782951} + inSlope: {x: -0.21476266, y: -0.12691188, z: -1.0281916, w: -0.10570289} + outSlope: {x: -0.21476266, y: -0.12691188, z: -1.0281916, w: -0.10570289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.152, y: 0.09878146, z: -0.1535649, w: 0.97136813} + inSlope: {x: -0.12135624, y: -0.09152314, z: -0.57541686, w: -0.09573064} + outSlope: {x: -0.12135624, y: -0.09152314, z: -0.57541686, w: -0.09573064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.1583891, y: 0.09343794, z: -0.18416493, w: 0.965539} + inSlope: {x: -0.058711577, y: -0.05234421, z: -0.31296834, w: -0.060737357} + outSlope: {x: -0.058711577, y: -0.05234421, z: -0.31296834, w: -0.060737357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.1598233, y: 0.091806605, z: -0.19526786, w: 0.9632749} + inSlope: {x: 0.027701981, y: 0.018662998, z: 0.0069824904, w: 0.003988635} + outSlope: {x: 0.027701981, y: 0.018662998, z: 0.0069824904, w: 0.003988635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.1546978, y: 0.095924795, z: -0.18323447, w: 0.9660705} + inSlope: {x: 0.15889922, y: 0.13299371, z: 0.43209824, w: 0.08489834} + outSlope: {x: 0.15889922, y: 0.13299371, z: 0.43209824, w: 0.08489834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.13864994, y: 0.10952805, z: -0.13769066, w: 0.9745876} + inSlope: {x: 0.31290644, y: 0.25589368, z: 0.9053384, w: 0.12749714} + outSlope: {x: 0.31290644, y: 0.25589368, z: 0.9053384, w: 0.12749714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.11300304, y: 0.13002262, z: -0.06259818, w: 0.98305947} + inSlope: {x: 0.39720577, y: 0.30020565, z: 1.1956258, w: 0.0766166} + outSlope: {x: 0.39720577, y: 0.30020565, z: 1.1956258, w: 0.0766166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.085722364, y: 0.14953038, z: 0.021626173, w: 0.98479676} + inSlope: {x: 0.3605025, y: 0.23665336, z: 1.1875648, w: -0.022459123} + outSlope: {x: 0.3605025, y: 0.23665336, z: 1.1875648, w: -0.022459123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.06496609, y: 0.16155666, z: 0.09564482, w: 0.9800668} + inSlope: {x: 0.1621046, y: 0.03989792, z: 0.92645264, w: -0.072602585} + outSlope: {x: 0.1621046, y: 0.03989792, z: 0.92645264, w: -0.072602585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.06412189, y: 0.15484679, z: 0.1450762, w: 0.97512245} + inSlope: {x: 0.012670941, y: -0.10071087, z: 0.74193317, w: -0.07421112} + outSlope: {x: 0.012670941, y: -0.10071087, z: 0.74193317, w: -0.07421112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.0021667108, y: -0.14837001, z: 0.11979449, w: 0.9816471} + inSlope: {x: -0.24680646, y: 0.7510365, z: 0.57447094, w: 0.011541607} + outSlope: {x: -0.24680646, y: 0.7510365, z: 0.57447094, w: 0.011541607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.014276769, y: -0.098332204, z: 0.15806861, w: 0.98241603} + inSlope: {x: -0.17687833, y: 0.665143, z: 0.2621439, w: 0.03204784} + outSlope: {x: -0.17687833, y: 0.665143, z: 0.2621439, w: 0.03204784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.021402327, y: -0.05973971, z: 0.15472516, w: 0.98591745} + inSlope: {x: 0.088224456, y: 0.38045704, z: -0.93207115, w: 0.119107746} + outSlope: {x: 0.088224456, y: 0.38045704, z: -0.93207115, w: 0.119107746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.0025208616, y: -0.047636304, z: 0.033870127, w: 0.99828714} + inSlope: {x: 0.34290606, y: 0.08455358, z: -2.0711606, w: 0.039188318} + outSlope: {x: 0.34290606, y: 0.08455358, z: -2.0711606, w: 0.039188318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.024289904, y: -0.048472945, z: -0.121257, w: 0.9911393} + inSlope: {x: 0.3022176, y: -0.07142678, z: -1.8205216, w: -0.17044738} + outSlope: {x: 0.3022176, y: -0.07142678, z: -1.8205216, w: -0.17044738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.037749633, y: -0.05715392, z: -0.20871438, w: 0.97557503} + inSlope: {x: 0.14146714, y: -0.19441384, z: -0.9941592, w: -0.20782855} + outSlope: {x: 0.14146714, y: -0.19441384, z: -0.9941592, w: -0.20782855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.0431404, y: -0.07437859, z: -0.25372872, w: 0.96344614} + inSlope: {x: 0.056122303, y: -0.27658576, z: -0.5509181, w: -0.16424805} + outSlope: {x: 0.056122303, y: -0.27658576, z: -0.5509181, w: -0.16424805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.04522793, y: -0.094008975, z: -0.28212422, w: 0.953689} + inSlope: {x: 0.02606132, y: -0.25605708, z: -0.41986024, w: -0.14983109} + outSlope: {x: 0.02606132, y: -0.25605708, z: -0.41986024, w: -0.14983109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.04661307, y: -0.10849819, z: -0.3096751, w: 0.94348115} + inSlope: {x: 0.025293756, y: -0.115295686, z: -0.6028011, w: -0.22064723} + outSlope: {x: 0.025293756, y: -0.115295686, z: -0.6028011, w: -0.22064723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.048598323, y: -0.109372124, z: -0.36244747, w: 0.92428774} + inSlope: {x: 0.0076395436, y: 0.019334607, z: -0.6248698, w: -0.23474702} + outSlope: {x: 0.0076395436, y: 0.019334607, z: -0.6248698, w: -0.23474702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.04763104, y: -0.10592186, z: -0.392939, w: 0.9122011} + inSlope: {x: -0.070130266, y: -0.06836937, z: 0.4320733, w: 0.14927465} + outSlope: {x: -0.070130266, y: -0.06836937, z: 0.4320733, w: 0.14927465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.039253466, y: -0.118482344, z: -0.3048737, w: 0.9441786} + inSlope: {x: -0.1939384, y: -0.2902653, z: 2.3639905, w: 0.5551543} + outSlope: {x: -0.1939384, y: -0.2902653, z: 2.3639905, w: 0.5551543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.02178875, y: -0.1445997, z: -0.07793728, w: 0.9861754} + inSlope: {x: -0.27832478, y: -0.2242977, z: 3.1870043, w: 0.281189} + outSlope: {x: -0.27832478, y: -0.2242977, z: 3.1870043, w: 0.281189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.002166688, y: -0.14837001, z: 0.1197946, w: 0.981647} + inSlope: {x: -0.3128085, y: 0.28759634, z: 1.9571083, w: -0.06752524} + outSlope: {x: -0.3128085, y: 0.28759634, z: 1.9571083, w: -0.06752524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.019892987, y: -0.106277496, z: 0.18284738, w: 0.9771777} + inSlope: {x: -0.24144027, y: 0.6550286, z: 0.25818622, w: 0.030365158} + outSlope: {x: -0.24144027, y: 0.6550286, z: 0.25818622, w: 0.030365158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.03000521, y: -0.061087538, z: 0.15419796, w: 0.98569316} + inSlope: {x: 0.08542768, y: 0.4330231, z: -1.1207879, w: 0.15792474} + outSlope: {x: 0.08542768, y: 0.4330231, z: -1.1207879, w: 0.15792474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.008509692, y: -0.048577227, z: 0.03350224, w: 0.99822116} + inSlope: {x: 0.39650586, y: 0.09314171, z: -2.0647392, w: 0.041358165} + outSlope: {x: 0.39650586, y: 0.09314171, z: -2.0647392, w: 0.041358165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.022829289, y: -0.048676383, z: -0.12092903, w: 0.99120414} + inSlope: {x: 0.3511892, y: -0.063724324, z: -1.8175018, w: -0.17001627} + outSlope: {x: 0.3511892, y: -0.063724324, z: -1.8175018, w: -0.17001627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.038286295, y: -0.05706848, z: -0.20868, w: 0.9755665} + inSlope: {x: 0.15773062, y: -0.19157115, z: -0.9954808, w: -0.20815277} + outSlope: {x: 0.15773062, y: -0.19157115, z: -0.9954808, w: -0.20815277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.043846857, y: -0.07420319, z: -0.2535766, w: 0.96346784} + inSlope: {x: 0.054335054, y: -0.27687111, z: -0.55103564, w: -0.16421407} + outSlope: {x: 0.054335054, y: -0.27687111, z: -0.55103564, w: -0.16421407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.045526434, y: -0.09396156, z: -0.28210548, w: 0.953685} + inSlope: {x: 0.020715542, y: -0.25715172, z: -0.42024377, w: -0.14971766} + outSlope: {x: 0.020715542, y: -0.25715172, z: -0.42024377, w: -0.14971766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.046607208, y: -0.10846872, z: -0.3095742, w: 0.9435179} + inSlope: {x: 0.02466865, y: -0.11545821, z: -0.60270286, w: -0.22058606} + outSlope: {x: 0.02466865, y: -0.11545821, z: -0.60270286, w: -0.22058606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.04881353, y: -0.10934639, z: -0.36241558, w: 0.9242919} + inSlope: {x: 0.00993132, y: 0.019393574, z: -0.6255728, w: -0.23508516} + outSlope: {x: 0.00993132, y: 0.019393574, z: -0.6255728, w: -0.23508516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.047930554, y: -0.10588453, z: -0.3929316, w: 0.9121929} + inSlope: {x: -0.076647855, y: -0.0511491, z: 0.38498908, w: 0.13631627} + outSlope: {x: -0.076647855, y: -0.0511491, z: 0.38498908, w: 0.13631627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.038600188, y: -0.11616203, z: -0.3111156, w: 0.9424561} + inSlope: {x: -0.2134561, y: -0.21962512, z: 2.1378343, w: 0.5443055} + outSlope: {x: -0.2134561, y: -0.21962512, z: 2.1378343, w: 0.5443055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.019487478, y: -0.13514963, z: -0.10806468, w: 0.9847217} + inSlope: {x: -0.28686944, y: -0.28499156, z: 3.047663, w: 0.63437927} + outSlope: {x: -0.28686944, y: -0.28499156, z: 3.047663, w: 0.63437927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.003977031, y: -0.039899558, z: 0.09571764, w: 0.9946006} + inSlope: {x: -2.7458692, y: -0.72986627, z: 1.6633279, w: -0.55160487} + outSlope: {x: -2.7458692, y: -0.72986627, z: 1.6633279, w: -0.55160487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.17896649, y: -0.0885269, z: 0.20653686, w: 0.9578499} + inSlope: {x: -1.3266231, y: -0.42083508, z: 0.4671168, w: -0.20368238} + outSlope: {x: -1.3266231, y: -0.42083508, z: 0.4671168, w: -0.20368238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.17279549, y: -0.09597583, z: 0.15796095, w: 0.9674599} + inSlope: {x: 0.14692882, y: -0.09040359, z: -0.830019, w: 0.14658582} + outSlope: {x: 0.14692882, y: -0.09040359, z: -0.830019, w: 0.14658582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.15938823, y: -0.100573175, z: 0.095936835, w: 0.9773825} + inSlope: {x: 0.25831446, y: -0.05146666, z: -0.9931267, w: 0.12933068} + outSlope: {x: 0.25831446, y: -0.05146666, z: -0.9931267, w: 0.12933068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.13837509, y: -0.10283376, z: 0.025626827, w: 0.9846932} + inSlope: {x: 0.37197396, y: -0.021421663, z: -1.0769407, w: 0.07525618} + outSlope: {x: 0.37197396, y: -0.021421663, z: -1.0769407, w: 0.07525618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.1098227, y: -0.10342761, z: -0.047565497, w: 0.98741037} + inSlope: {x: 0.48128122, y: -0.0026884717, z: -1.0789871, w: 0.0009885635} + outSlope: {x: 0.48128122, y: -0.0026884717, z: -1.0789871, w: 0.0009885635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.074244365, y: -0.103192, z: -0.11814819, w: 0.98482496} + inSlope: {x: 0.5799147, y: 0.002319381, z: -0.9996188, w: -0.07389455} + outSlope: {x: 0.5799147, y: 0.002319381, z: -0.9996188, w: -0.07389455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.03254907, y: -0.103118554, z: -0.1807647, w: 0.9775639} + inSlope: {x: 0.6624079, y: -0.008408393, z: -0.8422519, w: -0.1308256} + outSlope: {x: 0.6624079, y: -0.008408393, z: -0.8422519, w: -0.1308256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.014021485, y: -0.10431242, z: -0.23037826, w: 0.96739244} + inSlope: {x: 0.8747289, y: -0.060533494, z: -0.5408275, w: -0.15115649} + outSlope: {x: 0.8747289, y: -0.060533494, z: -0.5408275, w: -0.15115649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.08400855, y: -0.11118464, z: -0.25282997, w: 0.9574223} + inSlope: {x: 1.6252604, y: -0.19152997, z: 0.21246673, w: -0.18348524} + outSlope: {x: 1.6252604, y: -0.19152997, z: 0.21246673, w: -0.18348524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.23058742, y: -0.12983379, z: -0.20206706, w: 0.94294304} + inSlope: {x: 1.6963565, y: -0.157159, z: 1.0122983, w: -0.17518756} + outSlope: {x: 1.6963565, y: -0.157159, z: 1.0122983, w: -0.17518756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.31004804, y: -0.13212608, z: -0.117941216, w: 0.9340786} + inSlope: {x: -0.2279219, y: 0.32561803, z: 1.3751619, w: 0.24619827} + outSlope: {x: -0.2279219, y: 0.32561803, z: 1.3751619, w: 0.24619827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.20021683, y: -0.08644519, z: -0.01882673, w: 0.97574896} + inSlope: {x: -2.296968, y: 0.69213164, z: 1.6034443, w: 0.45419902} + outSlope: {x: -2.296968, y: 0.69213164, z: 1.6034443, w: 0.45419902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.003977081, y: -0.03989954, z: 0.095717736, w: 0.9946006} + inSlope: {x: -2.970903, y: -0.04257238, z: 1.6794529, w: -0.15886149} + outSlope: {x: -2.970903, y: -0.04257238, z: 1.6794529, w: -0.15886149} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.195656, y: -0.09211796, z: 0.20496038, w: 0.95458066} + inSlope: {x: -1.4484618, y: -0.44714624, z: 0.45517838, w: -0.22722262} + outSlope: {x: -1.4484618, y: -0.44714624, z: 0.45517838, w: -0.22722262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.18903047, y: -0.09948176, z: 0.15637034, w: 0.96432316} + inSlope: {x: 0.16155085, y: -0.08747288, z: -0.82947564, w: 0.15080623} + outSlope: {x: 0.16155085, y: -0.08747288, z: -0.82947564, w: 0.15080623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.17412934, y: -0.10377371, z: 0.09443272, w: 0.9746756} + inSlope: {x: 0.2861598, y: -0.04555073, z: -0.9894085, w: 0.13709939} + outSlope: {x: 0.2861598, y: -0.04555073, z: -0.9894085, w: 0.13709939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.1508996, y: -0.10555141, z: 0.024531426, w: 0.9825917} + inSlope: {x: 0.41059142, y: -0.013293322, z: -1.0736203, w: 0.08513461} + outSlope: {x: 0.41059142, y: -0.013293322, z: -1.0736203, w: 0.08513461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.11941805, y: -0.10554505, z: -0.04862717, w: 0.9860198} + inSlope: {x: 0.5253996, y: 0.0067696683, z: -1.0748165, w: 0.011188694} + outSlope: {x: 0.5253996, y: 0.0067696683, z: -1.0748165, w: 0.011188694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.08089023, y: -0.10464935, z: -0.11868761, w: 0.9840826} + inSlope: {x: 0.62542677, y: 0.012211295, z: -0.99478585, w: -0.06560441} + outSlope: {x: 0.62542677, y: 0.012211295, z: -0.99478585, w: -0.06560441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.036079917, y: -0.1039179, z: -0.18118237, w: 0.977278} + inSlope: {x: 0.703645, y: 0.0008535865, z: -0.8381043, w: -0.1252912} + outSlope: {x: 0.703645, y: 0.0008535865, z: -0.8381043, w: -0.1252912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.012870628, y: -0.10453561, z: -0.2303652, w: 0.9673875} + inSlope: {x: 0.90426344, y: -0.053633526, z: -0.5371327, w: -0.14902504} + outSlope: {x: 0.90426344, y: -0.053633526, z: -0.5371327, w: -0.14902504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.08441315, y: -0.11106455, z: -0.25275534, w: 0.9574204} + inSlope: {x: 1.6285572, y: -0.18928255, z: 0.21095529, w: -0.18236817} + outSlope: {x: 1.6285572, y: -0.18928255, z: 0.21095529, w: -0.18236817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.22987548, y: -0.12975746, z: -0.20225546, w: 0.943087} + inSlope: {x: 1.6933212, y: -0.15806067, z: 1.011738, w: -0.17517331} + outSlope: {x: 1.6933212, y: -0.15806067, z: 1.011738, w: -0.17517331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.31004807, y: -0.13212611, z: -0.11794121, w: 0.9340786} + inSlope: {x: -0.21888751, y: 0.26020068, z: 1.3797129, w: 0.23838416} + outSlope: {x: -0.21888751, y: 0.26020068, z: 1.3797129, w: 0.23838416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.20070866, y: -0.095085666, z: -0.01840838, w: 0.9748517} + inSlope: {x: -1.641114, y: 0.55595315, z: 1.4939234, w: 0.6119787} + outSlope: {x: -1.641114, y: 0.55595315, z: 1.4939234, w: 0.6119787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.0811511, y: -0.4570596, z: 0.008091806, w: 0.8856893} + inSlope: {x: -1.7406472, y: -0.6241548, z: -0.23659214, w: -0.29442415} + outSlope: {x: -1.7406472, y: -0.6241548, z: -0.23659214, w: -0.29442415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.03481952, y: -0.4986439, z: -0.0076711443, w: 0.8660733} + inSlope: {x: -1.0019438, y: -0.41383225, z: -0.1617515, w: -0.21409273} + outSlope: {x: -1.0019438, y: -0.41383225, z: -0.1617515, w: -0.21409273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.052357916, y: -0.51220274, z: -0.01346158, w: 0.85716146} + inSlope: {x: 0.11305782, y: -0.13421243, z: -0.055994026, w: -0.07628142} + outSlope: {x: 0.11305782, y: -0.13421243, z: -0.055994026, w: -0.07628142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.019754566, y: -0.5165277, z: -0.015132348, w: 0.8559088} + inSlope: {x: 0.59547997, y: -0.035618752, z: -0.0152751235, w: -0.012841949} + outSlope: {x: 0.59547997, y: -0.035618752, z: -0.0152751235, w: -0.012841949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.026989792, y: -0.51694894, z: -0.01549699, w: 0.8554503} + inSlope: {x: 0.71243155, y: 0.026846021, z: 0.0030485876, w: -0.006871197} + outSlope: {x: 0.71243155, y: 0.026846021, z: 0.0030485876, w: -0.006871197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.07517693, y: -0.5129505, z: -0.014726124, w: 0.8549932} + inSlope: {x: 0.6391318, y: 0.08818893, z: 0.018429264, w: 0.0010149563} + outSlope: {x: 0.6391318, y: 0.08818893, z: 0.018429264, w: 0.0010149563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.112154104, y: -0.50519776, z: -0.01304129, w: 0.8555855} + inSlope: {x: 0.3906452, y: 0.1403062, z: 0.03189122, w: 0.03676701} + outSlope: {x: 0.3906452, y: 0.1403062, z: 0.03189122, w: 0.03676701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.1272304, y: -0.49425468, z: -0.010476619, w: 0.8598924} + inSlope: {x: 0.09984813, y: 0.21290264, z: 0.051483076, w: 0.1079884} + outSlope: {x: 0.09984813, y: 0.21290264, z: 0.051483076, w: 0.1079884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.12545887, y: -0.4768285, z: -0.0061811707, w: 0.869975} + inSlope: {x: -0.10179439, y: 0.28899908, z: 0.07247171, w: 0.17208186} + outSlope: {x: -0.10179439, y: 0.28899908, z: 0.07247171, w: 0.17208186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.1136663, y: -0.45574555, z: -0.0008197647, w: 0.88282233} + inSlope: {x: -0.20806399, y: 0.3138662, z: 0.08156298, w: 0.18852201} + outSlope: {x: -0.20806399, y: 0.3138662, z: 0.08156298, w: 0.18852201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.09773434, y: -0.4350058, z: 0.004687097, w: 0.8950955} + inSlope: {x: -0.22528046, y: 0.276254, z: 0.07683894, w: 0.15972927} + outSlope: {x: -0.22528046, y: 0.276254, z: 0.07683894, w: 0.15972927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.08364768, y: -0.4189347, z: 0.009419024, w: 0.90410626} + inSlope: {x: -0.10655667, y: 0.11273307, z: 0.055123366, w: 0.06381253} + outSlope: {x: -0.10655667, y: 0.11273307, z: 0.055123366, w: 0.06381253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.083535664, y: -0.41998413, z: 0.012032285, w: 0.90359855} + inSlope: {x: -0.018735765, y: -0.28611618, z: -0.009960951, w: -0.13821389} + outSlope: {x: -0.018735765, y: -0.28611618, z: -0.009960951, w: -0.13821389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.08115114, y: -0.45705968, z: 0.008091727, w: 0.88568926} + inSlope: {x: -0.8704923, y: -0.58850634, z: -0.1561066, w: -0.27996245} + outSlope: {x: -0.8704923, y: -0.58850634, z: -0.1561066, w: -0.27996245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.03245743, y: -0.4984026, z: -0.00876892, w: 0.86629355} + inSlope: {x: -1.0292704, y: -0.4135146, z: -0.17797677, w: -0.21590537} + outSlope: {x: -1.0292704, y: -0.4135146, z: -0.17797677, w: -0.21590537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.055999093, y: -0.5121605, z: -0.015623665, w: 0.8569199} + inSlope: {x: 0.07331495, y: -0.13619663, z: -0.060973193, w: -0.07883212} + outSlope: {x: 0.07331495, y: -0.13619663, z: -0.060973193, w: -0.07883212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.022688113, y: -0.5165508, z: -0.016893588, w: 0.8557892} + inSlope: {x: 0.6076516, y: -0.036508843, z: -0.007666529, w: -0.011076827} + outSlope: {x: 0.6076516, y: -0.036508843, z: -0.007666529, w: -0.011076827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.024970619, y: -0.5170253, z: -0.016645232, w: 0.8554439} + inSlope: {x: 0.7285093, y: 0.026562486, z: 0.01239226, w: -0.005796301} + outSlope: {x: 0.7285093, y: 0.026562486, z: 0.01239226, w: -0.005796301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.07438574, y: -0.51301134, z: -0.015242321, w: 0.8550168} + inSlope: {x: 0.65292394, y: 0.08842885, z: 0.026388606, w: 0.0010346402} + outSlope: {x: 0.65292394, y: 0.08842885, z: 0.026388606, w: 0.0010346402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.11197258, y: -0.50524217, z: -0.013128957, w: 0.85558176} + inSlope: {x: 0.39568585, y: 0.14079285, z: 0.035515383, w: 0.03673654} + outSlope: {x: 0.39568585, y: 0.14079285, z: 0.035515383, w: 0.03673654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.12711084, y: -0.49425068, z: -0.010509896, w: 0.859912} + inSlope: {x: 0.09489423, y: 0.21267995, z: 0.049337473, w: 0.108599246} + outSlope: {x: 0.09489423, y: 0.21267995, z: 0.049337473, w: 0.108599246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.124617256, y: -0.4769025, z: -0.006554727, w: 0.87005264} + inSlope: {x: -0.11582589, y: 0.2886836, z: 0.06613122, w: 0.17368373} + outSlope: {x: -0.11582589, y: 0.2886836, z: 0.06613122, w: 0.17368373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.11167706, y: -0.4557836, z: -0.001697913, w: 0.8830553} + inSlope: {x: -0.22467044, y: 0.31358474, z: 0.07371306, w: 0.19004276} + outSlope: {x: -0.22467044, y: 0.31358474, z: 0.07371306, w: 0.19004276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.094679974, y: -0.43511742, z: 0.0032675203, w: 0.8953758} + inSlope: {x: -0.23922339, y: 0.27617043, z: 0.07025929, w: 0.16054298} + outSlope: {x: -0.23922339, y: 0.27617043, z: 0.07025929, w: 0.16054298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.079800546, y: -0.4189839, z: 0.0076641357, w: 0.9044477} + inSlope: {x: -0.14847037, y: 0.10964395, z: 0.04938545, w: 0.065764494} + outSlope: {x: -0.14847037, y: 0.10964395, z: 0.04938545, w: 0.065764494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.07489626, y: -0.42050734, z: 0.009848143, w: 0.9041389} + inSlope: {x: -0.07361015, y: -0.022865778, z: 0.03278054, w: -0.004634169} + outSlope: {x: -0.07361015, y: -0.022865778, z: 0.03278054, w: -0.004634169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16/Bone28 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.0010653781, y: 0.0073477863, z: -0.08735083, w: 0.99614996} + inSlope: {x: 0.04442462, y: 0.0011012042, z: 2.6161702, w: 0.0004974136} + outSlope: {x: 0.04442462, y: 0.0011012042, z: 2.6161702, w: 0.0004974136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.001894412, y: 0.007421154, z: 0.08695152, w: 0.9961831} + inSlope: {x: 0.02776287, y: 0.0003732629, z: 1.5633384, w: -0.026447466} + outSlope: {x: 0.02776287, y: 0.0003732629, z: 1.5633384, w: -0.026447466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.002634024, y: 0.0073975236, z: 0.12096402, w: 0.99262583} + inSlope: {x: 0.009180723, y: -0.0006265582, z: 0.021609977, w: -0.0019359775} + outSlope: {x: 0.009180723, y: -0.0006265582, z: 0.021609977, w: -0.0019359775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.0031177432, y: 0.007337665, z: 0.08983105, w: 0.9959251} + inSlope: {x: 0.0068143373, y: -0.0010934811, z: -0.6049963, w: 0.048984952} + outSlope: {x: 0.0068143373, y: -0.0010934811, z: -0.6049963, w: 0.048984952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.0035420344, y: 0.0072518173, z: 0.040348265, w: 0.9991531} + inSlope: {x: 0.0015533272, y: -0.0011681546, z: -0.7906282, w: 0.029441789} + outSlope: {x: 0.0015533272, y: -0.0011681546, z: -0.7906282, w: 0.029441789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.003324724, y: 0.0071820086, z: -0.015520152, w: 0.99984825} + inSlope: {x: -0.012280116, y: -0.000494852, z: -0.79543066, w: -0.010038183} + outSlope: {x: -0.012280116, y: -0.000494852, z: -0.79543066, w: -0.010038183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.001905709, y: 0.007185878, z: -0.06564286, w: 0.9978155} + inSlope: {x: -0.034305867, y: 0.001155532, z: -0.6189302, w: -0.035188884} + outSlope: {x: -0.034305867, y: 0.001155532, z: -0.6189302, w: -0.035188884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.0012465324, y: 0.007335983, z: -0.09799261, w: 0.9951593} + inSlope: {x: -0.078174084, y: 0.004798335, z: -0.30686104, w: -0.026817394} + outSlope: {x: -0.078174084, y: 0.004798335, z: -0.30686104, w: -0.026817394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.008510987, y: 0.007825256, z: -0.1065321, w: 0.9942421} + inSlope: {x: -0.13691768, y: 0.009574297, z: -0.008424833, w: -0.0023381123} + outSlope: {x: -0.13691768, y: 0.009574297, z: -0.008424833, w: -0.0023381123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.019490814, y: 0.008611758, z: -0.099115215, w: 0.9948478} + inSlope: {x: -0.1653201, y: 0.011964353, z: 0.1638733, w: 0.01239866} + outSlope: {x: -0.1653201, y: 0.011964353, z: 0.1638733, w: 0.01239866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.03053989, y: 0.009419506, z: -0.08469598, w: 0.9958942} + inSlope: {x: -0.13910273, y: 0.01023679, z: 0.20149037, w: 0.0132270865} + outSlope: {x: -0.13910273, y: 0.01023679, z: 0.20149037, w: 0.0132270865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.03802625, y: 0.009975811, z: -0.07226662, w: 0.9966103} + inSlope: {x: -0.009644505, y: 0.0009574138, z: 0.02721735, w: 0.001953422} + outSlope: {x: -0.009644505, y: 0.0009574138, z: 0.02721735, w: 0.001953422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.03182502, y: 0.009547082, z: -0.08106927, w: 0.9961545} + inSlope: {x: 0.25510094, y: -0.017614257, z: -0.1130846, w: -0.003517233} + outSlope: {x: 0.25510094, y: -0.017614257, z: -0.1130846, w: -0.003517233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.0040340535, y: 0.007628711, z: -0.08733515, w: 0.9961416} + inSlope: {x: 0.25636196, y: -0.016093327, z: 1.1968536, w: 0.005526122} + outSlope: {x: 0.25636196, y: -0.016093327, z: 1.1968536, w: 0.005526122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.002335211, y: 0.007402646, z: 0.07841149, w: 0.99689084} + inSlope: {x: 0.051788, y: -0.0018901448, z: 1.5632122, w: -0.026387582} + outSlope: {x: 0.051788, y: -0.0018901448, z: 1.5632122, w: -0.026387582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.0028666963, y: 0.007376849, z: 0.120962806, w: 0.9926255} + inSlope: {x: 0.01143037, y: -0.0009405859, z: 0.08567312, w: -0.0072613563} + outSlope: {x: 0.01143037, y: -0.0009405859, z: 0.08567312, w: -0.0072613563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.0038583085, y: 0.0072773127, z: 0.0898273, w: 0.9959233} + inSlope: {x: 0.013677709, y: -0.0016001805, z: -0.60374784, w: 0.048906587} + outSlope: {x: 0.013677709, y: -0.0016001805, z: -0.60374784, w: 0.048906587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.0046892543, y: 0.0071636247, z: 0.040513266, w: 0.9991423} + inSlope: {x: 0.005565388, y: -0.0014237664, z: -0.7906507, w: 0.02942207} + outSlope: {x: 0.005565388, y: -0.0014237664, z: -0.7906507, w: 0.02942207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.004599898, y: 0.0070875958, z: -0.015526895, w: 0.9998438} + inSlope: {x: -0.013721973, y: -0.00034570825, z: -0.79569644, w: -0.009906691} + outSlope: {x: -0.013721973, y: -0.00034570825, z: -0.79569644, w: -0.009906691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.0028608048, y: 0.007117559, z: -0.0655131, w: 0.9978222} + inSlope: {x: -0.043875497, y: 0.0018641943, z: -0.61887956, w: -0.035155326} + outSlope: {x: -0.043875497, y: 0.0018641943, z: -0.61887956, w: -0.035155326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.0012465161, y: 0.007336, z: -0.09799256, w: 0.9951593} + inSlope: {x: -0.10334879, y: 0.0065727285, z: -0.30774507, w: -0.027044581} + outSlope: {x: -0.10334879, y: 0.0065727285, z: -0.30774507, w: -0.027044581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.010910446, y: 0.007993377, z: -0.1065202, w: 0.9942185} + inSlope: {x: -0.18385905, y: 0.012858743, z: -0.008067489, w: -0.0033986755} + outSlope: {x: -0.18385905, y: 0.012858743, z: -0.008067489, w: -0.0033986755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.025745723, y: 0.009049427, z: -0.09906758, w: 0.99470645} + inSlope: {x: -0.22284132, y: 0.01597926, z: 0.16413662, w: 0.009855249} + outSlope: {x: -0.22284132, y: 0.01597926, z: 0.16413662, w: 0.009855249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.040604, y: 0.010122609, z: -0.084649034, w: 0.99553174} + inSlope: {x: -0.18719092, y: 0.013586306, z: 0.20211956, w: 0.010058763} + outSlope: {x: -0.18719092, y: 0.013586306, z: 0.20211956, w: 0.010058763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.050688904, y: 0.010859801, z: -0.07213516, w: 0.9960468} + inSlope: {x: -0.022567362, y: 0.0019632662, z: 0.092140734, w: 0.0062887818} + outSlope: {x: -0.022567362, y: 0.0019632662, z: 0.092140734, w: 0.0062887818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.043611106, y: 0.010384215, z: -0.07237126, w: 0.9963697} + inSlope: {x: 0.10623318, y: -0.007138245, z: -0.0035437304, w: 0.00484709} + outSlope: {x: 0.10623318, y: -0.007138245, z: -0.0035437304, w: 0.00484709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16/Bone28/Bone29 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.043123066, y: -0.7683388, z: -0.0066993586, w: 0.6385538} + inSlope: {x: 0.28362685, y: 0.90160066, z: -0.2957804, w: 0.96304107} + outSlope: {x: 0.28362685, y: 0.90160066, z: -0.2957804, w: 0.96304107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.062019706, y: -0.70826966, z: -0.026405727, w: 0.7027164} + inSlope: {x: 0.2749707, y: 0.8453182, z: -0.27760577, w: 0.8327974} + outSlope: {x: 0.2749707, y: 0.8453182, z: -0.27760577, w: 0.8327974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.07976291, y: -0.65570015, z: -0.043690328, w: 0.74952406} + inSlope: {x: 0.27427, y: 0.6687069, z: -0.2427535, w: 0.55621576} + outSlope: {x: 0.27427, y: 0.6687069, z: -0.2427535, w: 0.55621576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: 0.09856618, y: -0.61916447, z: -0.05875263, w: 0.77683216} + inSlope: {x: 0.29447514, y: 0.5458582, z: -0.22937979, w: 0.3810439} + outSlope: {x: 0.29447514, y: 0.5458582, z: -0.22937979, w: 0.3810439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: 0.119001724, y: -0.58296454, z: -0.07425518, w: 0.80029815} + inSlope: {x: 0.2879661, y: 0.4815402, z: -0.21463887, w: 0.29273462} + outSlope: {x: 0.2879661, y: 0.4815402, z: -0.21463887, w: 0.29273462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: 0.13693766, y: -0.55499923, z: -0.08735326, w: 0.81583905} + inSlope: {x: 0.22066943, y: 0.2937411, z: -0.15802802, w: 0.15127458} + outSlope: {x: 0.22066943, y: 0.2937411, z: -0.15802802, w: 0.15127458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: 0.14840592, y: -0.54382354, z: -0.09531242, w: 0.8204555} + inSlope: {x: 0.098136425, y: -0.02047626, z: -0.063223526, w: -0.03843907} + outSlope: {x: 0.098136425, y: -0.02047626, z: -0.063223526, w: -0.03843907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: 0.15001434, y: -0.5577277, z: -0.095777795, w: 0.81071705} + inSlope: {x: -0.036966622, y: -0.39712393, z: 0.040783275, w: -0.27080995} + outSlope: {x: -0.036966622, y: -0.39712393, z: 0.040783275, w: -0.27080995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: 0.14348012, y: -0.5967403, z: -0.089878045, w: 0.78437006} + inSlope: {x: -0.14417917, y: -0.684833, z: 0.12447536, w: -0.49108547} + outSlope: {x: -0.14417917, y: -0.684833, z: 0.12447536, w: -0.49108547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: 0.13080247, y: -0.6489817, z: -0.079191454, w: 0.7452799} + inSlope: {x: -0.22144271, y: -0.7941155, z: 0.18429041, w: -0.637686} + outSlope: {x: -0.22144271, y: -0.7941155, z: 0.18429041, w: -0.637686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: 0.11397288, y: -0.7025562, z: -0.06532135, w: 0.6993984} + inSlope: {x: -0.2647389, y: -0.7405272, z: 0.217433, w: -0.67559236} + outSlope: {x: -0.2647389, y: -0.7405272, z: 0.217433, w: -0.67559236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: 0.09552601, y: -0.74765694, z: -0.050218508, w: 0.6552572} + inSlope: {x: -0.31715512, y: -0.5469962, z: 0.26270318, w: -0.54634} + outSlope: {x: -0.31715512, y: -0.5469962, z: 0.26270318, w: -0.54634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: 0.07171196, y: -0.77544343, z: -0.030316152, w: 0.6265986} + inSlope: {x: -0.39326668, y: -0.15521096, z: 0.32659763, w: -0.1253536} + outSlope: {x: -0.39326668, y: -0.15521096, z: 0.32659763, w: -0.1253536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.043123227, y: -0.7683388, z: -0.0066993767, w: 0.63855386} + inSlope: {x: -0.110963576, y: 0.45677197, z: 0.063764684, w: 0.52754295} + outSlope: {x: -0.110963576, y: 0.45677197, z: 0.063764684, w: 0.52754295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.05692606, y: -0.71457857, z: -0.02181951, w: 0.6968937} + inSlope: {x: 0.27496982, y: 0.84531903, z: -0.27760562, w: 0.8327981} + outSlope: {x: 0.27496982, y: 0.84531903, z: -0.27760562, w: 0.8327981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.07976291, y: -0.65570015, z: -0.043690287, w: 0.7495241} + inSlope: {x: 0.31327528, y: 0.7159838, z: -0.27624285, w: 0.5998293} + outSlope: {x: 0.31327528, y: 0.7159838, z: -0.27624285, w: 0.5998293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.09866998, y: -0.61917377, z: -0.058628857, w: 0.7768209} + inSlope: {x: 0.29622984, y: 0.54486775, z: -0.22638848, w: 0.38033736} + outSlope: {x: 0.29622984, y: 0.54486775, z: -0.22638848, w: 0.38033736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.11923561, y: -0.5830964, z: -0.07385661, w: 0.80020416} + inSlope: {x: 0.29018563, y: 0.48133078, z: -0.21199748, w: 0.2925064} + outSlope: {x: 0.29018563, y: 0.48133078, z: -0.21199748, w: 0.2925064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.13733722, y: -0.5550364, z: -0.086877525, w: 0.8157974} + inSlope: {x: 0.22053349, y: 0.294566, z: -0.15879394, w: 0.15183578} + outSlope: {x: 0.22053349, y: 0.294566, z: -0.15879394, w: 0.15183578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.14862165, y: -0.54384553, z: -0.09501586, w: 0.82043624} + inSlope: {x: 0.09197402, y: -0.019915447, z: -0.070564725, w: -0.037794746} + outSlope: {x: 0.09197402, y: -0.019915447, z: -0.070564725, w: -0.037794746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.14959274, y: -0.5576902, z: -0.09628026, w: 0.8107612} + inSlope: {x: -0.051876973, y: -0.3947055, z: 0.022221142, w: -0.26843023} + outSlope: {x: -0.051876973, y: -0.3947055, z: 0.022221142, w: -0.26843023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.14170903, y: -0.59644014, z: -0.09205489, w: 0.78466785} + inSlope: {x: -0.16711327, y: -0.6830287, z: 0.09705734, w: -0.48848316} + outSlope: {x: -0.16711327, y: -0.6830287, z: 0.09705734, w: -0.48848316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: 0.12732491, y: -0.64870375, z: -0.08334738, w: 0.74567086} + inSlope: {x: -0.24458817, y: -0.79237103, z: 0.15615931, w: -0.6344401} + outSlope: {x: -0.24458817, y: -0.79237103, z: 0.15615931, w: -0.6344401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: 0.10911772, y: -0.7020234, z: -0.0712467, w: 0.70012885} + inSlope: {x: -0.2808587, y: -0.7395227, z: 0.19802134, w: -0.67316926} + outSlope: {x: -0.2808587, y: -0.7395227, z: 0.19802134, w: -0.67316926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: 0.089900486, y: -0.74724513, z: -0.056961033, w: 0.65597105} + inSlope: {x: -0.28685343, y: -0.522779, z: 0.2508631, w: -0.51946354} + outSlope: {x: -0.28685343, y: -0.522779, z: 0.2508631, w: -0.51946354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: 0.07089443, y: -0.7716838, z: -0.03781913, w: 0.6309102} + inSlope: {x: -0.28526866, y: -0.3668088, z: 0.28730762, w: -0.3761469} + outSlope: {x: -0.28526866, y: -0.3668088, z: 0.28730762, w: -0.3761469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.002184848, y: -0.031244854, z: -0.06972231, w: 0.9970746} + inSlope: {x: -0.014980939, y: 0.82274127, z: 1.3455361, w: 0.036747772} + outSlope: {x: -0.014980939, y: 0.82274127, z: 1.3455361, w: 0.036747772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: 0.001186743, y: 0.023570282, z: 0.01992403, w: 0.9995229} + inSlope: {x: -0.013897911, y: 0.6870705, z: 1.0379086, w: -0.009406576} + outSlope: {x: -0.013897911, y: 0.6870705, z: 1.0379086, w: -0.009406576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: 0.0003329515, y: 0.060307294, z: 0.068578996, w: 0.9958212} + inSlope: {x: -0.009921867, y: 0.32169425, z: 0.17135324, w: -0.019878205} + outSlope: {x: -0.009921867, y: 0.32169425, z: 0.17135324, w: -0.019878205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.00013534586, y: 0.066436045, z: 0.042756848, w: 0.99687415} + inSlope: {x: -0.0056430106, y: 0.04475202, z: -0.5333313, w: 0.014839208} + outSlope: {x: -0.0056430106, y: 0.04475202, z: -0.5333313, w: 0.014839208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.0004189797, y: 0.0662705, z: -0.0024873926, w: 0.9977985} + inSlope: {x: -0.0041496707, y: -0.037663426, z: -0.74729633, w: -0.0028583393} + outSlope: {x: -0.0041496707, y: -0.037663426, z: -0.74729633, w: -0.0028583393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.0006882895, y: 0.061417393, z: -0.056820385, w: 0.9964933} + inSlope: {x: -0.005212504, y: -0.0945472, z: -0.80550313, w: -0.039759092} + outSlope: {x: -0.005212504, y: -0.0945472, z: -0.80550313, w: -0.039759092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.0011135458, y: 0.053672086, z: -0.10982069, w: 0.9925006} + inSlope: {x: -0.008822124, y: -0.123092204, z: -0.70832694, w: -0.06767823} + outSlope: {x: -0.008822124, y: -0.123092204, z: -0.70832694, w: -0.06767823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.0018638376, y: 0.045015357, z: -0.15120494, w: 0.98747516} + inSlope: {x: -0.016552333, y: -0.12793836, z: -0.46206635, w: -0.059918217} + outSlope: {x: -0.016552333, y: -0.12793836, z: -0.46206635, w: -0.059918217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.003319144, y: 0.0366243, z: -0.17139103, w: 0.9845165} + inSlope: {x: -0.033180423, y: -0.15029326, z: -0.14033797, w: -0.017648343} + outSlope: {x: -0.033180423, y: -0.15029326, z: -0.14033797, w: -0.017648343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.006285129, y: 0.02498878, z: -0.16990498, w: 0.9851235} + inSlope: {x: -0.0463932, y: -0.19196394, z: 0.1242512, w: 0.024889022} + outSlope: {x: -0.0463932, y: -0.19196394, z: 0.1242512, w: 0.024889022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.009501038, y: 0.011045108, z: -0.15483455, w: 0.98783296} + inSlope: {x: -0.038572956, y: -0.21287563, z: 0.264946, w: 0.042812463} + outSlope: {x: -0.038572956, y: -0.21287563, z: 0.264946, w: 0.042812463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.0114249755, y: -0.0033768986, z: -0.13460092, w: 0.9908283} + inSlope: {x: 0.010632545, y: -0.23910336, z: 0.3128351, w: 0.041231208} + outSlope: {x: 0.010632545, y: -0.23910336, z: 0.3128351, w: 0.041231208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.008084252, y: -0.020815415, z: -0.11314928, w: 0.993327} + inSlope: {x: 0.1021375, y: -0.20914027, z: 0.48689383, w: 0.04687676} + outSlope: {x: 0.1021375, y: -0.20914027, z: 0.48689383, w: 0.04687676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: 0.0021848464, y: -0.031244839, z: -0.069722325, w: 0.9970746} + inSlope: {x: 0.07659738, y: 0.28495935, z: 0.97312456, w: 0.04793287} + outSlope: {x: 0.07659738, y: 0.28495935, z: 0.97312456, w: 0.04793287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: 0.0021223496, y: 0.017155418, z: 0.01651957, w: 0.9997141} + inSlope: {x: -0.013898026, y: 0.6870712, z: 1.0379094, w: -0.009406626} + outSlope: {x: -0.013898026, y: 0.6870712, z: 1.0379094, w: -0.009406626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: 0.0003329377, y: 0.060307316, z: 0.06857901, w: 0.9958212} + inSlope: {x: -0.010135552, y: 0.3687479, z: 0.1966781, w: -0.02123274} + outSlope: {x: -0.010135552, y: 0.3687479, z: 0.1966781, w: -0.02123274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.00077179127, y: 0.066291004, z: 0.042726785, w: 0.9968848} + inSlope: {x: 0.010908018, y: 0.042197444, z: -0.5326352, w: 0.014998874} + outSlope: {x: 0.010908018, y: 0.042197444, z: -0.5326352, w: 0.014998874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: 0.0017864337, y: 0.065930136, z: -0.0023947505, w: 0.9978198} + inSlope: {x: 0.015412689, y: -0.040754937, z: -0.7478876, w: -0.002756829} + outSlope: {x: 0.015412689, y: -0.040754937, z: -0.7478876, w: -0.002756829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: 0.002825532, y: 0.060860418, z: -0.056929223, w: 0.9965175} + inSlope: {x: 0.011533061, y: -0.09711851, z: -0.80613804, w: -0.03967373} + outSlope: {x: 0.011533061, y: -0.09711851, z: -0.80613804, w: -0.03967373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: 0.0033232113, y: 0.052989118, z: -0.10981245, w: 0.99253327} + inSlope: {x: -0.00061318907, y: -0.124567434, z: -0.7087877, w: -0.06781509} + outSlope: {x: -0.00061318907, y: -0.124567434, z: -0.7087877, w: -0.06781509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: 0.0027438228, y: 0.044261806, z: -0.15137516, w: 0.9874811} + inSlope: {x: -0.02397066, y: -0.12710822, z: -0.46328762, w: -0.060165025} + outSlope: {x: -0.02397066, y: -0.12710822, z: -0.46328762, w: -0.060165025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: 0.00012911517, y: 0.036051918, z: -0.17154564, w: 0.98451626} + inSlope: {x: -0.06826154, y: -0.14554581, z: -0.14033946, w: -0.017893871} + outSlope: {x: -0.06826154, y: -0.14554581, z: -0.14033946, w: -0.017893871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.006352021, y: 0.024867833, z: -0.17007543, w: 0.98509675} + inSlope: {x: -0.10531968, y: -0.18369439, z: 0.12390598, w: 0.024217647} + outSlope: {x: -0.10531968, y: -0.18369439, z: 0.12390598, w: 0.024217647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.0139047075, y: 0.011574686, z: -0.1550352, w: 0.98774326} + inSlope: {x: -0.09699391, y: -0.20467266, z: 0.26546136, w: 0.042018026} + outSlope: {x: -0.09699391, y: -0.20467266, z: 0.26546136, w: 0.042018026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.019276455, y: -0.002404802, z: -0.1347027, w: 0.99069566} + inSlope: {x: -0.015678326, y: -0.20734124, z: 0.32819042, w: 0.043413125} + outSlope: {x: -0.015678326, y: -0.20734124, z: 0.32819042, w: 0.043413125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.015993848, y: -0.016053583, z: -0.11130375, w: 0.99352807} + inSlope: {x: 0.049269807, y: -0.2048594, z: 0.35120314, w: 0.042512685} + outSlope: {x: 0.049269807, y: -0.2048594, z: 0.35120314, w: 0.042512685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone25/Bone26 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.00967479, y: -0.021610618, z: -0.37552744} + inSlope: {x: 0, y: 0.037985045, z: -0.00007559614} + outSlope: {x: 0, y: 0.037985045, z: -0.00007559614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13262498 + value: {x: -0.00967479, y: -0.019079864, z: -0.37553248} + inSlope: {x: -0.000000006989288, y: 0.07186464, z: -0.00014336428} + outSlope: {x: -0.000000006989288, y: 0.07186464, z: -0.00014336428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.19924998 + value: {x: -0.009674791, y: -0.012034655, z: -0.37554654} + inSlope: {x: -0.000000006989288, y: 0.13346475, z: -0.00026838866} + outSlope: {x: -0.000000006989288, y: 0.13346475, z: -0.00026838866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26587498 + value: {x: -0.009674791, y: -0.0012956858, z: -0.37556824} + inSlope: {x: -0.000000006989288, y: 0.18274763, z: -0.00037194195} + outSlope: {x: -0.000000006989288, y: 0.18274763, z: -0.00037194195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33249998 + value: {x: -0.009674792, y: 0.012316465, z: -0.3755961} + inSlope: {x: 0.0000000139785765, y: 0.21971369, z: -0.00045245854} + outSlope: {x: 0.0000000139785765, y: 0.21971369, z: -0.00045245854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.39912498 + value: {x: -0.009674789, y: 0.027981162, z: -0.37562853} + inSlope: {x: 0.0000000069892883, y: 0.24436206, z: -0.00051239866} + outSlope: {x: 0.0000000069892883, y: 0.24436206, z: -0.00051239866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46574998 + value: {x: -0.009674791, y: 0.044877708, z: -0.37566438} + inSlope: {x: -0.000000006989288, y: 0.2566936, z: -0.000550644} + outSlope: {x: -0.000000006989288, y: 0.2566936, z: -0.000550644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.532375 + value: {x: -0.00967479, y: 0.062185585, z: -0.3757019} + inSlope: {x: 0.000000006989288, y: 0.25670838, z: -0.00056585274} + outSlope: {x: 0.000000006989288, y: 0.25670838, z: -0.00056585274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.599 + value: {x: -0.00967479, y: 0.0790841, z: -0.37573978} + inSlope: {x: 0, y: 0.24440588, z: -0.000559814} + outSlope: {x: 0, y: 0.24440588, z: -0.000559814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.665625 + value: {x: -0.00967479, y: 0.09475267, z: -0.3757765} + inSlope: {x: 0, y: 0.21978569, z: -0.00053163315} + outSlope: {x: 0, y: 0.21978569, z: -0.00053163315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73225 + value: {x: -0.00967479, y: 0.10837054, z: -0.37581062} + inSlope: {x: 0, y: 0.18284872, z: -0.00048220495} + outSlope: {x: 0, y: 0.18284872, z: -0.00048220495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.798875 + value: {x: -0.00967479, y: 0.11911726, z: -0.37584075} + inSlope: {x: 0, y: 0.13359448, z: -0.00041063462} + outSlope: {x: 0, y: 0.13359448, z: -0.00041063462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8655 + value: {x: -0.00967479, y: 0.126172, z: -0.37586534} + inSlope: {x: 0, y: 0.07202299, z: -0.00031692226} + outSlope: {x: 0, y: 0.07202299, z: -0.00031692226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.932125 + value: {x: -0.00967479, y: 0.12871432, z: -0.37588298} + inSlope: {x: 0, y: 0.0125051215, z: -0.00022723572} + outSlope: {x: 0, y: 0.0125051215, z: -0.00022723572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.99875 + value: {x: -0.00967479, y: 0.12783831, z: -0.37589562} + inSlope: {x: -0.0000000069893002, y: -0.026485074, z: -0.0001737818} + outSlope: {x: -0.0000000069893002, y: -0.026485074, z: -0.0001737818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0653749 + value: {x: -0.009674791, y: 0.12518519, z: -0.37590614} + inSlope: {x: -0.0000000069893002, y: -0.053157926, z: -0.00014224602} + outSlope: {x: -0.0000000069893002, y: -0.053157926, z: -0.00014224602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.009674791, y: 0.12075502, z: -0.37591457} + inSlope: {x: 0.000000013978551, y: -0.07966432, z: -0.00011003915} + outSlope: {x: 0.000000013978551, y: -0.07966432, z: -0.00011003915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1986251 + value: {x: -0.009674789, y: 0.1145699, z: -0.3759208} + inSlope: {x: 0.000000013978551, y: -0.1065038, z: -0.00007827999} + outSlope: {x: 0.000000013978551, y: -0.1065038, z: -0.00007827999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.26525 + value: {x: -0.009674789, y: 0.10656339, z: -0.375925} + inSlope: {x: 0, y: -0.13309282, z: -0.00004741541} + outSlope: {x: 0, y: -0.13309282, z: -0.00004741541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3318748 + value: {x: -0.009674789, y: 0.096835315, z: -0.37592712} + inSlope: {x: -0.0000000069892754, y: -0.15984868, z: -0.000016103348} + outSlope: {x: -0.0000000069892754, y: -0.15984868, z: -0.000016103348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3985 + value: {x: -0.00967479, y: 0.08526355, z: -0.37592715} + inSlope: {x: -0.0000000069892754, y: -0.18643808, z: 0.000015655976} + outSlope: {x: -0.0000000069892754, y: -0.18643808, z: 0.000015655976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4651251 + value: {x: -0.00967479, y: 0.0719924, z: -0.37592503} + inSlope: {x: 0, y: -0.2131941, z: 0.000047415357} + outSlope: {x: 0, y: -0.2131941, z: 0.000047415357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.53175 + value: {x: -0.00967479, y: 0.05685544, z: -0.37592083} + inSlope: {x: 0.0000000069893002, y: -0.23978421, z: 0.00007872748} + outSlope: {x: 0.0000000069893002, y: -0.23978421, z: 0.00007872748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5983748 + value: {x: -0.009674789, y: 0.04004121, z: -0.37591454} + inSlope: {x: 2.4868996e-14, y: -0.26653987, z: 0.000110262976} + outSlope: {x: 2.4868996e-14, y: -0.26653987, z: 0.000110262976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.665 + value: {x: -0.00967479, y: 0.021339, z: -0.37590614} + inSlope: {x: -0.0000000069892754, y: -0.29312864, z: 0.0001417984} + outSlope: {x: -0.0000000069892754, y: -0.29312864, z: 0.0001417984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7316251 + value: {x: -0.00967479, y: 0.0009817481, z: -0.37589565} + inSlope: {x: 0, y: -0.3055492, z: 0.00015745439} + outSlope: {x: 0, y: -0.3055492, z: 0.00015745439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.066222, y: -0.00000004774588, z: -0.000000006925113} + inSlope: {x: 0, y: 0.000000034681204, z: 0.000000035088277} + outSlope: {x: 0, y: 0.000000034681204, z: 0.000000035088277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.066222, y: -0.0000000107757145, z: 0.00000003047899} + inSlope: {x: 0, y: 0.000000034681204, z: 0.000000035088277} + outSlope: {x: 0, y: 0.000000034681204, z: 0.000000035088277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.4952394, y: 0.0000000014788973, z: -0.000000010237076} + inSlope: {x: 0.00000019570005, y: 0.000000013288819, z: -0.000000020532163} + outSlope: {x: 0.00000019570005, y: 0.000000013288819, z: -0.000000020532163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.49523962, y: 0.000000015644778, z: -0.000000032124362} + inSlope: {x: 0.00000019570005, y: 0.000000013288819, z: -0.000000020532163} + outSlope: {x: 0.00000019570005, y: 0.000000013288819, z: -0.000000020532163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: -0.12838054, y: 0.000000005298359, z: 0.016854659} + inSlope: {x: 0.000000013978576, y: -0.0000000035833652, z: -0.000000013978576} + outSlope: {x: 0.000000013978576, y: -0.0000000035833652, z: -0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: -0.12838052, y: 0.0000000014784921, z: 0.016854644} + inSlope: {x: 0.000000013978576, y: -0.0000000035833652, z: -0.000000013978576} + outSlope: {x: 0.000000013978576, y: -0.0000000035833652, z: -0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.0879214, y: -0.000000029489795, z: 0.000000028036945} + inSlope: {x: 0, y: -0.00000003176377, z: 0.0000000028996827} + outSlope: {x: 0, y: -0.00000003176377, z: 0.0000000028996827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.0879214, y: -0.00000006334997, z: 0.000000031128007} + inSlope: {x: 0, y: -0.00000003176377, z: 0.0000000028996827} + outSlope: {x: 0, y: -0.00000003176377, z: 0.0000000028996827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.7828152, y: 0.000000027765697, z: 0.000000021047066} + inSlope: {x: -0.000000111828605, y: -0.000000020235678, z: -0.000000049494336} + outSlope: {x: -0.000000111828605, y: -0.000000020235678, z: -0.000000049494336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.7828151, y: 0.000000006194465, z: -0.000000031713896} + inSlope: {x: -0.000000111828605, y: -0.000000020235678, z: -0.000000049494336} + outSlope: {x: -0.000000111828605, y: -0.000000020235678, z: -0.000000049494336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.08987414, y: 0.46088412, z: 0.22426057} + inSlope: {x: 0, y: -0.000000055914303, z: -0.000000013978576} + outSlope: {x: 0, y: -0.000000055914303, z: -0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.08987414, y: 0.46088406, z: 0.22426055} + inSlope: {x: 0, y: -0.000000055914303, z: -0.000000013978576} + outSlope: {x: 0, y: -0.000000055914303, z: -0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.8933065, y: 0.000000081948194, z: 0.000000028287793} + inSlope: {x: 0, y: -0.00000011125608, z: 0.000000006385976} + outSlope: {x: 0, y: -0.00000011125608, z: 0.000000006385976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.8933065, y: -0.000000036650782, z: 0.000000035095244} + inSlope: {x: 0, y: -0.00000011125608, z: 0.000000006385976} + outSlope: {x: 0, y: -0.00000011125608, z: 0.000000006385976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.82752305, y: -0.022484807, z: -0.08368302} + inSlope: {x: -0.0000002795715, y: -0.000000038441083, z: 0.00000006290359} + outSlope: {x: -0.0000002795715, y: -0.000000038441083, z: 0.00000006290359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.82752275, y: -0.022484848, z: -0.083682954} + inSlope: {x: -0.0000002795715, y: -0.000000038441083, z: 0.00000006290359} + outSlope: {x: -0.0000002795715, y: -0.000000038441083, z: 0.00000006290359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone32 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.18128702, y: 0.000000013390766, z: 0.00000011188003} + inSlope: {x: 0, y: -0.000000056926318, z: -0.00000018282809} + outSlope: {x: 0, y: -0.000000056926318, z: -0.00000018282809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.18128702, y: -0.00000004729269, z: -0.00000008301471} + inSlope: {x: 0, y: -0.000000056926318, z: -0.00000018282809} + outSlope: {x: 0, y: -0.000000056926318, z: -0.00000018282809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone32/Bone33 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.81593394, y: -0.027253432, z: 0.03705612} + inSlope: {x: -0.00000016774291, y: -0.000000019220542, z: -0.000000013978576} + outSlope: {x: -0.00000016774291, y: -0.000000019220542, z: -0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.81593376, y: -0.027253453, z: 0.037056103} + inSlope: {x: -0.00000016774291, y: -0.000000019220542, z: -0.000000013978576} + outSlope: {x: -0.00000016774291, y: -0.000000019220542, z: -0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone38 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.20202586, y: -0.00000004030499, z: 0.000005123788} + inSlope: {x: 0.00000009785003, y: 0.0000000447391, z: -0.000000018028215} + outSlope: {x: 0.00000009785003, y: 0.0000000447391, z: -0.000000018028215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.20202596, y: 0.0000000073868915, z: 0.00000510457} + inSlope: {x: 0.00000009785003, y: 0.0000000447391, z: -0.000000018028215} + outSlope: {x: 0.00000009785003, y: 0.0000000447391, z: -0.000000018028215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone38/Bone39 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.8394335, y: 0.03439667, z: 0.013941525} + inSlope: {x: -0.00000033548582, y: -0.000000041935728, z: 0.000000050672337} + outSlope: {x: -0.00000033548582, y: -0.000000041935728, z: 0.000000050672337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.83943313, y: 0.034396626, z: 0.013941579} + inSlope: {x: -0.00000033548582, y: -0.000000041935728, z: 0.000000050672337} + outSlope: {x: -0.00000033548582, y: -0.000000041935728, z: 0.000000050672337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone36 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.19358592, y: 0.0000001196706, z: 0.000000055937353} + inSlope: {x: 0.000000027957151, y: -0.00000014743259, z: -0.000000036336186} + outSlope: {x: 0.000000027957151, y: -0.00000014743259, z: -0.000000036336186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.19358595, y: -0.000000037492534, z: 0.000000017202979} + inSlope: {x: 0.000000027957151, y: -0.00000014743259, z: -0.000000036336186} + outSlope: {x: 0.000000027957151, y: -0.00000014743259, z: -0.000000036336186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone36/Bone37 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.85443294, y: 0.105950646, z: -0.016025603} + inSlope: {x: -0.0000002795715, y: -0.000000048925013, z: 0.00000008037681} + outSlope: {x: -0.0000002795715, y: -0.000000048925013, z: 0.00000008037681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.85443264, y: 0.105950594, z: -0.016025517} + inSlope: {x: -0.0000002795715, y: -0.000000048925013, z: 0.00000008037681} + outSlope: {x: -0.0000002795715, y: -0.000000048925013, z: 0.00000008037681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone34 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.1453958, y: 0.000000030409776, z: -0.00000011964141} + inSlope: {x: -0.00000006989288, y: -0.000000022263057, z: 0.00000015982616} + outSlope: {x: -0.00000006989288, y: -0.000000022263057, z: 0.00000015982616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.14539573, y: 0.0000000066773573, z: 0.000000050733263} + inSlope: {x: -0.00000006989288, y: -0.000000022263057, z: 0.00000015982616} + outSlope: {x: -0.00000006989288, y: -0.000000022263057, z: 0.00000015982616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone04/Bone31/Bone34/Bone35 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.022776095, y: -0.4227184, z: 0.28143868} + inSlope: {x: 0.000000027957151, y: 0.000000027957151, z: -0.000000027957151} + outSlope: {x: 0.000000027957151, y: 0.000000027957151, z: -0.000000027957151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.022776125, y: -0.42271838, z: 0.28143865} + inSlope: {x: 0.000000027957151, y: 0.000000027957151, z: -0.000000027957151} + outSlope: {x: 0.000000027957151, y: 0.000000027957151, z: -0.000000027957151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.9671909, y: -0.00000006408266, z: -0.000000071051524} + inSlope: {x: -0.000000111828605, y: 0.00000005617505, z: -0.00000005033327} + outSlope: {x: -0.000000111828605, y: 0.00000005617505, z: -0.00000005033327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.9671908, y: -0.000000004200063, z: -0.00000012470679} + inSlope: {x: -0.000000111828605, y: 0.00000005617505, z: -0.00000005033327} + outSlope: {x: -0.000000111828605, y: 0.00000005617505, z: -0.00000005033327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.84992737, y: 0.0972618, z: 0.016424228} + inSlope: {x: 0.000000055914303, y: -0.000000020967864, z: -0.00000031801258} + outSlope: {x: 0.000000055914303, y: -0.000000020967864, z: -0.00000031801258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.8499274, y: 0.09726178, z: 0.016423889} + inSlope: {x: 0.000000055914303, y: -0.000000020967864, z: -0.00000031801258} + outSlope: {x: 0.000000055914303, y: -0.000000020967864, z: -0.00000031801258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone48 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.18542728, y: 0.00000006275689, z: -0.000000013413353} + inSlope: {x: -0.000000013978576, y: -0.0000000422728, z: -0.00000000505096} + outSlope: {x: -0.000000013978576, y: -0.0000000422728, z: -0.00000000505096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.18542726, y: 0.000000017694088, z: -0.000000018797676} + inSlope: {x: -0.000000013978576, y: -0.0000000422728, z: -0.00000000505096} + outSlope: {x: -0.000000013978576, y: -0.0000000422728, z: -0.00000000505096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone48/Bone49 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.80560535, y: -0.042435393, z: 0.11009511} + inSlope: {x: 0.00000016774291, y: -0.00000001747322, z: -0.00000020268935} + outSlope: {x: 0.00000016774291, y: -0.00000001747322, z: -0.00000020268935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.80560553, y: -0.04243541, z: 0.1100949} + inSlope: {x: 0.00000016774291, y: -0.00000001747322, z: -0.00000020268935} + outSlope: {x: 0.00000016774291, y: -0.00000001747322, z: -0.00000020268935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone42 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.16663647, y: -0.000000009138041, z: -0.00000013705629} + inSlope: {x: -0.00000018172148, y: 0.000000027948406, z: 0.00000002113998} + outSlope: {x: -0.00000018172148, y: 0.000000027948406, z: 0.00000002113998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.16663627, y: 0.000000020654959, z: -0.00000011452107} + inSlope: {x: -0.00000018172148, y: 0.000000027948406, z: 0.00000002113998} + outSlope: {x: -0.00000018172148, y: 0.000000027948406, z: 0.00000002113998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone42/Bone43 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.8161566, y: -0.055076532, z: -0.027107494} + inSlope: {x: -0.000000055914303, y: -0.000000013978576, z: -0.00000031626527} + outSlope: {x: -0.000000055914303, y: -0.000000013978576, z: -0.00000031626527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.81615657, y: -0.055076547, z: -0.027107831} + inSlope: {x: -0.000000055914303, y: -0.000000013978576, z: -0.00000031626527} + outSlope: {x: -0.000000055914303, y: -0.000000013978576, z: -0.00000031626527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone44 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.17679785, y: -0.00000005904699, z: -0.00000006041165} + inSlope: {x: 0.000000027957151, y: 0.000000034170412, z: -0.000000002909086} + outSlope: {x: 0.000000027957151, y: 0.000000034170412, z: -0.000000002909086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.17679788, y: -0.000000022621329, z: -0.000000063512736} + inSlope: {x: 0.000000027957151, y: 0.000000034170412, z: -0.000000002909086} + outSlope: {x: 0.000000027957151, y: 0.000000034170412, z: -0.000000002909086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone44/Bone45 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.84286064, y: 0.037644807, z: -0.07515257} + inSlope: {x: 0.000000111828605, y: -0.000000010483932, z: -0.00000023064649} + outSlope: {x: 0.000000111828605, y: -0.000000010483932, z: -0.00000023064649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.84286076, y: 0.037644796, z: -0.075152814} + inSlope: {x: 0.000000111828605, y: -0.000000010483932, z: -0.00000023064649} + outSlope: {x: 0.000000111828605, y: -0.000000010483932, z: -0.00000023064649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone46 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.20230329, y: -0.00000006077995, z: -0.00000007023906} + inSlope: {x: 0.000000013978576, y: 0.00000007125146, z: 0.00000010186667} + outSlope: {x: 0.000000013978576, y: 0.00000007125146, z: 0.00000010186667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.2023033, y: 0.000000015174107, z: 0.000000038350805} + inSlope: {x: 0.000000013978576, y: 0.00000007125146, z: 0.00000010186667} + outSlope: {x: 0.000000013978576, y: 0.00000007125146, z: 0.00000010186667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone40/Bone41/Bone46/Bone47 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.6709825, y: 0.36193228, z: 0.51245314} + inSlope: {x: 0, y: 0, z: 0.000000055914303} + outSlope: {x: 0, y: 0, z: 0.000000055914303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.6709825, y: 0.36193228, z: 0.5124532} + inSlope: {x: 0, y: 0, z: 0.000000055914303} + outSlope: {x: 0, y: 0, z: 0.000000055914303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.6272873, y: -0.000000017653067, z: 0.000000024781071} + inSlope: {x: -0.000000055914303, y: 0.000000017270942, z: -0.00000011362862} + outSlope: {x: -0.000000055914303, y: 0.000000017270942, z: -0.00000011362862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.62728727, y: 7.577576e-10, z: -0.00000009634704} + inSlope: {x: -0.000000055914303, y: 0.000000017270942, z: -0.00000011362862} + outSlope: {x: -0.000000055914303, y: 0.000000017270942, z: -0.00000011362862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.7611977, y: -0.000000021364944, z: -0.0000000030109} + inSlope: {x: -0.000000111828605, y: 0.00000020999934, z: 0.00000013462969} + outSlope: {x: -0.000000111828605, y: 0.00000020999934, z: 0.00000013462969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.7611976, y: 0.00000020249436, z: 0.00000014050435} + inSlope: {x: -0.000000111828605, y: 0.00000020999934, z: 0.00000013462969} + outSlope: {x: -0.000000111828605, y: 0.00000020999934, z: 0.00000013462969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.9312023, y: 0.00000013857422, z: -0.00000013945926} + inSlope: {x: 0.000000111828605, y: -0.00000004825539, z: -0.0000000560007} + outSlope: {x: 0.000000111828605, y: -0.00000004825539, z: -0.0000000560007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.9312024, y: 0.00000008713398, z: -0.000000199156} + inSlope: {x: 0.000000111828605, y: -0.00000004825539, z: -0.0000000560007} + outSlope: {x: 0.000000111828605, y: -0.00000004825539, z: -0.0000000560007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.41807866, y: -0.009233012, z: -0.18509744} + inSlope: {x: 0.000000055914303, y: 0.000000013978576, z: -0.000000041935728} + outSlope: {x: 0.000000055914303, y: 0.000000013978576, z: -0.000000041935728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.41807872, y: -0.009232997, z: -0.18509749} + inSlope: {x: 0.000000055914303, y: 0.000000013978576, z: -0.000000041935728} + outSlope: {x: 0.000000055914303, y: 0.000000013978576, z: -0.000000041935728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11/Bone22 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.0412054, y: -0.0000000050595474, z: 0.000000070720844} + inSlope: {x: 0.000000111828605, y: 0.00000019030755, z: -0.00000021885442} + outSlope: {x: 0.000000111828605, y: 0.00000019030755, z: -0.00000021885442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.0412055, y: 0.00000019780829, z: -0.00000016257798} + inSlope: {x: 0.000000111828605, y: 0.00000019030755, z: -0.00000021885442} + outSlope: {x: 0.000000111828605, y: 0.00000019030755, z: -0.00000021885442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone11/Bone22/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.61298925, y: 0.038055252, z: -0.103270255} + inSlope: {x: -0.000000055914303, y: 0.000000024462507, z: 0.000000048925013} + outSlope: {x: -0.000000055914303, y: 0.000000024462507, z: 0.000000048925013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.6129892, y: 0.03805528, z: -0.1032702} + inSlope: {x: -0.000000055914303, y: 0.000000024462507, z: 0.000000048925013} + outSlope: {x: -0.000000055914303, y: 0.000000024462507, z: 0.000000048925013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.1747338, y: -0.00000010612212, z: -0.00000020235959} + inSlope: {x: 0.000000111828605, y: 0.000000029373084, z: 0.0000001024472} + outSlope: {x: 0.000000111828605, y: 0.000000029373084, z: 0.0000001024472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.1747339, y: -0.000000074810416, z: -0.000000093150874} + inSlope: {x: 0.000000111828605, y: 0.000000029373084, z: 0.0000001024472} + outSlope: {x: 0.000000111828605, y: 0.000000029373084, z: 0.0000001024472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone09/Bone10/Bone19/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.69153357, y: -0.40540123, z: 0.5001286} + inSlope: {x: 0, y: 0.000000083871456, z: 0.000000055914303} + outSlope: {x: 0, y: 0.000000083871456, z: 0.000000055914303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.69153357, y: -0.40540114, z: 0.5001287} + inSlope: {x: 0, y: 0.000000083871456, z: 0.000000055914303} + outSlope: {x: 0, y: 0.000000083871456, z: 0.000000055914303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.8219536, y: 0.000000029554517, z: 0.000000039632354} + inSlope: {x: -0.00000022365721, y: -0.000000026813112, z: -0.000000010943743} + outSlope: {x: -0.00000022365721, y: -0.000000026813112, z: -0.000000010943743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.82195336, y: 9.717407e-10, z: 0.000000027966324} + inSlope: {x: -0.00000022365721, y: -0.000000026813112, z: -0.000000010943743} + outSlope: {x: -0.00000022365721, y: -0.000000026813112, z: -0.000000010943743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.5936666, y: 0.00000021349322, z: 0.000000076266254} + inSlope: {x: 0, y: -0.00000006866714, z: -0.000000056285757} + outSlope: {x: 0, y: -0.00000006866714, z: -0.000000056285757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.5936666, y: 0.00000014029405, z: 0.00000001626564} + inSlope: {x: 0, y: -0.00000006866714, z: -0.000000056285757} + outSlope: {x: 0, y: -0.00000006866714, z: -0.000000056285757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.8708661, y: 0.00000023194202, z: 0.00000007529867} + inSlope: {x: -0.000000111828605, y: 0.000000084386684, z: -0.00000006018589} + outSlope: {x: -0.000000111828605, y: 0.000000084386684, z: -0.00000006018589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.870866, y: 0.00000032189823, z: 0.0000000111405125} + inSlope: {x: -0.000000111828605, y: 0.000000084386684, z: -0.00000006018589} + outSlope: {x: -0.000000111828605, y: 0.000000084386684, z: -0.00000006018589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.31873405, y: 0.046694778, z: 0.074004754} + inSlope: {x: 0.000000027957151, y: 0.000000052419658, z: 0.000000013978576} + outSlope: {x: 0.000000027957151, y: 0.000000052419658, z: 0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.31873408, y: 0.046694834, z: 0.07400477} + inSlope: {x: 0.000000027957151, y: 0.000000052419658, z: 0.000000013978576} + outSlope: {x: 0.000000027957151, y: 0.000000052419658, z: 0.000000013978576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16/Bone28 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.0704447, y: -0.00000004428951, z: -0.0000002575007} + inSlope: {x: 0.000000111828605, y: 0.00000013634012, z: 0.000000013917173} + outSlope: {x: 0.000000111828605, y: 0.00000013634012, z: 0.000000013917173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.0704448, y: 0.000000101049054, z: -0.00000024266498} + inSlope: {x: 0.000000111828605, y: 0.00000013634012, z: 0.000000013917173} + outSlope: {x: 0.000000111828605, y: 0.00000013634012, z: 0.000000013917173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone16/Bone28/Bone29 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 0.12644598, y: -0.010540198, z: 0.0643144} + inSlope: {x: 0, y: -0.00000004455671, z: 0.000000006989288} + outSlope: {x: 0, y: -0.00000004455671, z: 0.000000006989288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 0.12644598, y: -0.010540245, z: 0.06431441} + inSlope: {x: 0, y: -0.00000004455671, z: 0.000000006989288} + outSlope: {x: 0, y: -0.00000004455671, z: 0.000000006989288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.065999985 + value: {x: 1.1467432, y: 0.000000055936997, z: -0.000000014978284} + inSlope: {x: 0, y: -0.000000027594409, z: 0.00000006862702} + outSlope: {x: 0, y: -0.000000027594409, z: 0.00000006862702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.132 + value: {x: 1.1467432, y: 0.000000026521358, z: 0.000000058178117} + inSlope: {x: 0, y: -0.000000027594409, z: 0.00000006862702} + outSlope: {x: 0, y: -0.000000027594409, z: 0.00000006862702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone14/Bone15/Bone25/Bone26 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 15 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 2635294239 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2635294239 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 151497704 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2211011888 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3876178628 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 60992699 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 13420908 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1965112346 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3759743090 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 70568396 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 127995253 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4127651577 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3920587865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1512935592 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2215168985 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2504353162 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2507469464 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2383476772 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1973492614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4278521330 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2630008499 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3490292032 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1926029215 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2082653969 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3483123387 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2932878035 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3880811876 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3724198554 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4141322585 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3263292124 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3918263638 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3409767360 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2822140743 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1388634062 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1672611134 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4251695763 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1190786241 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3318313615 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3516270407 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 373547744 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1940412030 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 151497704 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2211011888 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3876178628 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 60992699 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 13420908 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1965112346 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3759743090 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 70568396 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 127995253 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4127651577 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3920587865 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1512935592 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2215168985 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2504353162 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2507469464 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2383476772 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1973492614 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4278521330 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2630008499 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3490292032 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1926029215 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2082653969 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3483123387 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2932878035 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3880811876 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3724198554 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4141322585 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3263292124 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3918263638 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3409767360 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2822140743 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1388634062 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1672611134 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4251695763 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1190786241 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3318313615 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3516270407 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 373547744 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1940412030 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.7316251 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim.meta new file mode 100644 index 0000000000..6dd4ce8032 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/雕5/tcks_雕1/飞行悬停.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41c54ec559ae6704b99fc7eeb78e8491 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐.meta new file mode 100644 index 0000000000..119d8cbdc0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8b68e0bb7f7b7748bc21fc08022eec0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐.meta new file mode 100644 index 0000000000..489495cc07 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 369753b60a12d964888a230d9dbedb44 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller new file mode 100644 index 0000000000..fe745d8326 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-7009586738630614635 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: e98da0e992cf51e4a8e1b4a2fe60ae7a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-6403457881858744967 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -7009586738630614635} + m_Position: {x: 305, y: 195, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -7009586738630614635} +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "tcks_\u98DE\u9CD0" + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -6403457881858744967} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller.meta new file mode 100644 index 0000000000..eed0d5f89e --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/tcks_飞鳐.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63641816614452a4e9a1cdb2e09e1b7d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim new file mode 100644 index 0000000000..6b3df8adea --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim @@ -0,0 +1,9017 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.04197978, y: -0.6344824, z: -0.047848728, w: 0.7703118} + inSlope: {x: -0.26370278, y: -1.129122, z: 0.25076684, w: -1.0035216} + outSlope: {x: -0.26370278, y: -1.129122, z: 0.25076684, w: -1.0035216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.024572885, y: -0.7090152, z: -0.031295728, w: 0.7040698} + inSlope: {x: -0.34136498, y: -1.0524427, z: 0.34768832, w: -1.0334437} + outSlope: {x: -0.34136498, y: -1.0524427, z: 0.34768832, w: -1.0334437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: -0.0030868957, y: -0.77342486, z: -0.0019472511, w: 0.6338775} + inSlope: {x: -0.36679602, y: -0.32444856, z: 0.423348, w: -0.3455916} + outSlope: {x: -0.36679602, y: -0.32444856, z: 0.423348, w: -0.3455916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: -0.023851177, y: -0.7518486, z: 0.02459427, w: 0.6584451} + inSlope: {x: -0.31120312, y: 0.5451756, z: 0.41122383, w: 0.5722011} + outSlope: {x: -0.31120312, y: 0.5451756, z: 0.41122383, w: 0.5722011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: -0.044171635, y: -0.7014513, z: 0.052342124, w: 0.70941895} + inSlope: {x: -0.2612152, y: 0.7435596, z: 0.3582933, w: 0.70169425} + outSlope: {x: -0.2612152, y: 0.7435596, z: 0.3582933, w: 0.70169425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: -0.058336556, y: -0.65368456, z: 0.07189581, w: 0.7510821} + inSlope: {x: -0.078494795, y: 0.305986, z: 0.09811704, w: 0.27329212} + outSlope: {x: -0.078494795, y: 0.305986, z: 0.09811704, w: 0.27329212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: -0.054534443, y: -0.6610553, z: 0.06529544, w: 0.7454987} + inSlope: {x: 0.29456133, y: -0.6742751, z: -0.4364161, w: -0.62032396} + outSlope: {x: 0.29456133, y: -0.6742751, z: -0.4364161, w: -0.62032396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: -0.019448854, y: -0.7427017, z: 0.014280571, w: 0.66918755} + inSlope: {x: 0.26576158, y: -0.61844397, z: -0.38642055, w: -0.57803154} + outSlope: {x: 0.26576158, y: -0.61844397, z: -0.38642055, w: -0.57803154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: -0.019448854, y: -0.7427017, z: 0.014280571, w: 0.66918755} + inSlope: {x: 0.14731486, y: 0.24754076, z: -0.10816653, w: 0.2650557} + outSlope: {x: 0.14731486, y: 0.24754076, z: -0.10816653, w: 0.2650557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: -0.0000004865885, y: -0.7100216, z: 0.0000005285435, w: 0.70417994} + inSlope: {x: 0.14731486, y: 0.24754076, z: -0.10816653, w: 0.2650557} + outSlope: {x: 0.14731486, y: 0.24754076, z: -0.10816653, w: 0.2650557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: -0.0000004865885, y: -0.7100216, z: 0.0000005285435, w: 0.70417994} + inSlope: {x: 0.0000002638629, y: 0.0000009029704, z: 0.00000010172213, w: 0} + outSlope: {x: 0.0000002638629, y: 0.0000009029704, z: 0.00000010172213, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: -0.00000045175355, y: -0.7100215, z: 0.0000005419728, w: 0.70417994} + inSlope: {x: 0.0000002638629, y: 0.0000009029704, z: 0.00000010172213, w: 0} + outSlope: {x: 0.0000002638629, y: 0.0000009029704, z: 0.00000010172213, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: -0.00000045175355, y: -0.7100215, z: 0.0000005419728, w: 0.70417994} + inSlope: {x: -0.000000019329573, y: -0.0000004514852, z: 0.000000009571998, w: 0} + outSlope: {x: -0.000000019329573, y: -0.0000004514852, z: 0.000000009571998, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: -0.00000045430542, y: -0.71002156, z: 0.00000054323647, w: 0.70417994} + inSlope: {x: -0.000000019329573, y: -0.0000004514852, z: 0.000000009571998, w: 0} + outSlope: {x: -0.000000019329573, y: -0.0000004514852, z: 0.000000009571998, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: -0.00000045430542, y: -0.71002156, z: 0.00000054323647, w: 0.70417994} + inSlope: {x: 0.00000015142668, y: 0, z: -0.000000011408378, w: 0} + outSlope: {x: 0.00000015142668, y: 0, z: -0.000000011408378, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: -0.00000043431422, y: -0.71002156, z: 0.00000054173034, w: 0.70417994} + inSlope: {x: 0.00000015142668, y: 0, z: -0.000000011408378, w: 0} + outSlope: {x: 0.00000015142668, y: 0, z: -0.000000011408378, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: -0.00000043431422, y: -0.71002156, z: 0.00000054173034, w: 0.70417994} + inSlope: {x: -0.000000060352974, y: 0, z: -0.000000089825484, w: 0} + outSlope: {x: -0.000000060352974, y: 0, z: -0.000000089825484, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: -0.00000044228196, y: -0.71002156, z: 0.00000052987167, w: 0.70417994} + inSlope: {x: -0.000000060352974, y: 0, z: -0.000000089825484, w: 0} + outSlope: {x: -0.000000060352974, y: 0, z: -0.000000089825484, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: -0.00000044228196, y: -0.71002156, z: 0.00000052987167, w: 0.70417994} + inSlope: {x: -0.00000008363066, y: 0.0000004514852, z: 0.00000011116495, w: 0.0000004514852} + outSlope: {x: -0.00000008363066, y: 0.0000004514852, z: 0.00000011116495, w: 0.0000004514852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: -0.0000004533228, y: -0.7100215, z: 0.00000054454756, w: 0.70418} + inSlope: {x: -0.00000008363066, y: 0.0000004514852, z: 0.00000011116495, w: 0.0000004514852} + outSlope: {x: -0.00000008363066, y: 0.0000004514852, z: 0.00000011116495, w: 0.0000004514852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: -0.0000004533228, y: -0.7100215, z: 0.00000054454756, w: 0.70418} + inSlope: {x: -0.16376047, y: -0.023151258, z: 0.02197969, w: -0.026016384} + outSlope: {x: -0.16376047, y: -0.023151258, z: 0.02197969, w: -0.026016384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: -0.021619953, y: -0.7130779, z: 0.0029022822, w: 0.70074534} + inSlope: {x: -0.16376047, y: -0.023151258, z: 0.02197969, w: -0.026016384} + outSlope: {x: -0.16376047, y: -0.023151258, z: 0.02197969, w: -0.026016384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: -0.021619953, y: -0.7130779, z: 0.0029022822, w: 0.70074534} + inSlope: {x: -0.00000008465348, y: 0, z: -0.000000015872526, w: 0} + outSlope: {x: -0.00000008465348, y: 0, z: -0.000000015872526, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: -0.021619964, y: -0.7130779, z: 0.00290228, w: 0.70074534} + inSlope: {x: -0.00000008465348, y: 0, z: -0.000000015872526, w: 0} + outSlope: {x: -0.00000008465348, y: 0, z: -0.000000015872526, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: -0.021619964, y: -0.7130779, z: 0.00290228, w: 0.70074534} + inSlope: {x: 0.16376057, y: 0.023151258, z: -0.021979656, w: 0.026016384} + outSlope: {x: 0.16376057, y: 0.023151258, z: -0.021979656, w: 0.026016384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: -0.00000045014028, y: -0.7100215, z: 0.00000054685586, w: 0.70418} + inSlope: {x: 0.32752115, y: 0.046302516, z: -0.043959312, w: 0.05203277} + outSlope: {x: 0.32752115, y: 0.046302516, z: -0.043959312, w: 0.05203277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: -5.1628868e-11, y: -0.004716769, z: -0.0000000013207039, w: 0.99998885} + inSlope: {x: 5.4317767e-10, y: 0, z: 0.00000002811989, w: 0} + outSlope: {x: 5.4317767e-10, y: 0, z: 0.00000002811989, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: -1.5773969e-11, y: -0.004716769, z: 5.354766e-10, w: 0.99998885} + inSlope: {x: 0.00028547502, y: 0.0000011463492, z: -0.060520984, w: -0.00024154458} + outSlope: {x: 0.00028547502, y: 0.0000011463492, z: -0.060520984, w: -0.00024154458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.00003768809, y: -0.0047166175, z: -0.0079899235, w: 0.99995697} + inSlope: {x: 0.00062491954, y: 0.0000054707307, z: -0.13248369, w: -0.001158511} + outSlope: {x: 0.00062491954, y: 0.0000054707307, z: -0.13248369, w: -0.001158511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.00008250126, y: -0.0047160466, z: -0.017490368, w: 0.9998359} + inSlope: {x: 0.00069232704, y: 0.000012239481, z: -0.14677414, w: -0.0025951369} + outSlope: {x: 0.00069232704, y: 0.000012239481, z: -0.14677414, w: -0.0025951369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.00012908844, y: -0.0047150017, z: -0.027366906, w: 0.99961436} + inSlope: {x: 0.0006786898, y: 0.000018320423, z: -0.14388305, w: -0.0038845786} + outSlope: {x: 0.0006786898, y: 0.000018320423, z: -0.14388305, w: -0.0038845786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.00017210124, y: -0.004713628, z: -0.036485672, w: 0.99932307} + inSlope: {x: 0.0005840789, y: 0.000020771848, z: -0.1238254, w: -0.0044042384} + outSlope: {x: 0.0005840789, y: 0.000020771848, z: -0.1238254, w: -0.0044042384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.00020619798, y: -0.0047122594, z: -0.043714218, w: 0.9990329} + inSlope: {x: 0.00040860148, y: 0.000017258728, z: -0.08662401, w: -0.0036592875} + outSlope: {x: 0.00040860148, y: 0.000017258728, z: -0.08662401, w: -0.0036592875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.00022604442, y: -0.0047113495, z: -0.04792169, w: 0.99884} + inSlope: {x: 0.00015232786, y: 0.000006987439, z: -0.032293666, w: -0.0014817744} + outSlope: {x: 0.00015232786, y: 0.000006987439, z: -0.032293666, w: -0.0014817744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.00022630816, y: -0.004711337, z: -0.047977597, w: 0.9988373} + inSlope: {x: -0.00012228063, y: -0.000005654147, z: 0.025923688, w: 0.0011991448} + outSlope: {x: -0.00012228063, y: -0.000005654147, z: 0.025923688, w: 0.0011991448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.00020990105, y: -0.004712096, z: -0.04449927, w: 0.9989983} + inSlope: {x: -0.00031753344, y: -0.000013833789, z: 0.06731743, w: 0.0029332994} + outSlope: {x: -0.00031753344, y: -0.000013833789, z: 0.06731743, w: 0.0029332994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.0001843877, y: -0.0047131632, z: -0.039090414, w: 0.99922454} + inSlope: {x: -0.00044304843, y: -0.000016983602, z: 0.09392679, w: 0.003600143} + outSlope: {x: -0.00044304843, y: -0.000016983602, z: 0.09392679, w: 0.003600143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.00015141022, y: -0.004714338, z: -0.032099146, w: 0.9994736} + inSlope: {x: -0.00054367335, y: -0.000017124694, z: 0.11525938, w: 0.0036303925} + outSlope: {x: -0.00054367335, y: -0.000017124694, z: 0.11525938, w: 0.0036303925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.00011261246, y: -0.004715424, z: -0.023873981, w: 0.9997038} + inSlope: {x: -0.0006193728, y: -0.000014514544, z: 0.13130777, w: 0.0030777748} + outSlope: {x: -0.0006193728, y: -0.000014514544, z: 0.13130777, w: 0.0030777748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.00006964121, y: -0.0047162543, z: -0.01476402, w: 0.9998799} + inSlope: {x: -0.0006701034, y: -0.000009713986, z: 0.14206274, w: 0.0020596755} + outSlope: {x: -0.0006701034, y: -0.000009713986, z: 0.14206274, w: 0.0020596755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.00002414605, y: -0.0047167065, z: -0.0051189945, w: 0.99997574} + inSlope: {x: -0.0006958276, y: -0.0000034990103, z: 0.14751628, w: 0.0007413387} + outSlope: {x: -0.0006958276, y: -0.0000034990103, z: 0.14751628, w: 0.0007413387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: -0.000022221288, y: -0.0047167162, z: 0.0047109365, w: 0.99997777} + inSlope: {x: -0.0006965231, y: 0.0000032238866, z: 0.14766373, w: -0.0006830971} + outSlope: {x: -0.0006965231, y: 0.0000032238866, z: 0.14766373, w: -0.0006830971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: -0.00006780827, y: -0.004716281, z: 0.01437543, w: 0.99988556} + inSlope: {x: -0.0006721895, y: 0.0000094917705, z: 0.14250499, w: -0.0020122696} + outSlope: {x: -0.0006721895, y: 0.0000094917705, z: 0.14250499, w: -0.0020122696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: -0.000110963105, y: -0.004715463, z: 0.023524309, w: 0.9997121} + inSlope: {x: -0.00062198413, y: 0.000014359346, z: 0.13186139, w: -0.0030443647} + outSlope: {x: -0.00062198413, y: 0.000014359346, z: 0.13186139, w: -0.0030443647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: -0.00014992202, y: -0.004714385, z: 0.031783644, w: 0.99948364} + inSlope: {x: -0.0005485355, y: 0.000017121165, z: 0.11629018, w: -0.003629941} + outSlope: {x: -0.0005485355, y: 0.000017121165, z: 0.11629018, w: -0.003629941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: -0.00018338024, y: -0.004713203, z: 0.038876828, w: 0.9992329} + inSlope: {x: -0.00044964463, y: 0.000017128219, z: 0.09532517, w: -0.0036321986} + outSlope: {x: -0.00044964463, y: 0.000017128219, z: 0.09532517, w: -0.0036321986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: -0.00020928368, y: -0.004712124, z: 0.044368383, w: 0.9990041} + inSlope: {x: -0.00032516447, y: 0.000014133603, z: 0.068935245, w: -0.0029965073} + outSlope: {x: -0.00032516447, y: 0.000014133603, z: 0.068935245, w: -0.0029965073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: -0.00022630814, y: -0.004711337, z: 0.047977593, w: 0.9988373} + inSlope: {x: -0.00010473144, y: 0.000004807612, z: 0.022203196, w: -0.001019002} + outSlope: {x: -0.00010473144, y: 0.000004807612, z: 0.022203196, w: -0.001019002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: -0.00022311023, y: -0.004711489, z: 0.047299627, w: 0.9988696} + inSlope: {x: 0.00023710281, y: -0.000010599321, z: -0.050266106, w: 0.0022470418} + outSlope: {x: 0.00023710281, y: -0.000010599321, z: -0.050266106, w: 0.0022470418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: -0.00019500605, y: -0.0047127362, z: 0.04134151, w: 0.99913394} + inSlope: {x: 0.0005495083, y: -0.000021784163, z: -0.11649642, w: 0.0046182424} + outSlope: {x: 0.0005495083, y: -0.000021784163, z: -0.11649642, w: 0.0046182424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: -0.00015056467, y: -0.004714365, z: 0.03191988, w: 0.9994793} + inSlope: {x: 0.0007383948, y: -0.00002290582, z: -0.15654059, w: 0.0048566265} + outSlope: {x: 0.0007383948, y: -0.00002290582, z: -0.15654059, w: 0.0048566265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: -0.00009752389, y: -0.0047157602, z: 0.020675171, w: 0.9997751} + inSlope: {x: 0.00080353225, y: -0.00002113515, z: -0.17034982, w: 0.0044814423} + outSlope: {x: 0.00080353225, y: -0.00002113515, z: -0.17034982, w: 0.0044814423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.0008922425, y: 0.012006575, z: 0.091348015, w: 0.99574625} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.0008922425, y: 0.012006575, z: 0.091348015, w: 0.99574625} + inSlope: {x: -0.00016428992, y: 0.000019293939, z: -0.021971077, w: 0.0019833746} + outSlope: {x: -0.00016428992, y: 0.000019293939, z: -0.021971077, w: 0.0019833746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.0008705531, y: 0.012009122, z: 0.088447414, w: 0.9960081} + inSlope: {x: -0.00068285194, y: 0.00007511585, z: -0.09130848, w: 0.007819273} + outSlope: {x: -0.00068285194, y: 0.00007511585, z: -0.09130848, w: 0.007819273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.000802093, y: 0.012016492, z: 0.07929356, w: 0.99677855} + inSlope: {x: -0.0014571503, y: 0.00013720212, z: -0.19479144, w: 0.014768081} + outSlope: {x: -0.0014571503, y: 0.00013720212, z: -0.19479144, w: 0.014768081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.0006781815, y: 0.012027236, z: 0.062731236, w: 0.99795777} + inSlope: {x: -0.0022055523, y: 0.00015133925, z: -0.29470733, w: 0.01767113} + outSlope: {x: -0.0022055523, y: 0.00015133925, z: -0.29470733, w: 0.01767113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.0005109181, y: 0.012036472, z: 0.040386576, w: 0.9991115} + inSlope: {x: -0.0026027386, y: 0.000094261646, z: -0.34758472, w: 0.013845246} + outSlope: {x: -0.0026027386, y: 0.000094261646, z: -0.34758472, w: 0.013845246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.00033457042, y: 0.01203968, z: 0.01684343, w: 0.9997856} + inSlope: {x: -0.0026903786, y: -0.00000264542, z: -0.35905752, w: 0.0059948205} + outSlope: {x: -0.0026903786, y: -0.00000264542, z: -0.35905752, w: 0.0059948205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.00015573687, y: 0.012036122, z: -0.0070158546, w: 0.9999029} + inSlope: {x: -0.0026806267, y: -0.00010355237, z: -0.35752285, w: -0.0024149944} + outSlope: {x: -0.0026806267, y: -0.00010355237, z: -0.35752285, w: -0.0024149944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: -0.000019323372, y: 0.012026009, z: -0.030356396, w: 0.9994668} + inSlope: {x: -0.0025760494, y: -0.0001943009, z: -0.34335643, w: -0.010196342} + outSlope: {x: -0.0025760494, y: -0.0001943009, z: -0.34335643, w: -0.010196342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: -0.00018435069, y: 0.012010471, z: -0.05234544, w: 0.9985568} + inSlope: {x: -0.002376886, y: -0.00026162862, z: -0.31662005, w: -0.016252112} + outSlope: {x: -0.002376886, y: -0.00026162862, z: -0.31662005, w: -0.016252112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: -0.00033311758, y: 0.011991469, z: -0.07215627, w: 0.9973212} + inSlope: {x: -0.0020837537, y: -0.0002943966, z: -0.27742207, w: -0.01965315} + outSlope: {x: -0.0020837537, y: -0.0002943966, z: -0.27742207, w: -0.01965315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: -0.00045944587, y: 0.011971605, z: -0.08897044, w: 0.9959622} + inSlope: {x: -0.0016974404, y: -0.0002847461, z: -0.2258864, w: -0.019742996} + outSlope: {x: -0.0016974404, y: -0.0002847461, z: -0.2258864, w: -0.019742996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: -0.00055721204, y: 0.011953877, z: -0.10197758, w: 0.99471474} + inSlope: {x: -0.0012186537, y: -0.00022927689, z: -0.16211456, w: -0.01623902} + outSlope: {x: -0.0012186537, y: -0.00022927689, z: -0.16211456, w: -0.01623902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: -0.0006203314, y: 0.011941336, z: -0.11037265, w: 0.99381834} + inSlope: {x: -0.000647738, y: -0.0001302676, z: -0.08614778, w: -0.009329039} + outSlope: {x: -0.000647738, y: -0.0001302676, z: -0.08614778, w: -0.009329039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: -0.0006427258, y: 0.0119366795, z: -0.11335073, w: 0.9934831} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: -0.0006203314, y: 0.011941336, z: -0.11037265, w: 0.99381834} + inSlope: {x: 0.000647738, y: 0.0001302676, z: 0.08614778, w: 0.009329039} + outSlope: {x: 0.000647738, y: 0.0001302676, z: 0.08614778, w: 0.009329039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: -0.00055721204, y: 0.011953877, z: -0.10197758, w: 0.99471474} + inSlope: {x: 0.001218654, y: 0.00022927689, z: 0.16211456, w: 0.01623902} + outSlope: {x: 0.001218654, y: 0.00022927689, z: 0.16211456, w: 0.01623902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: -0.00045944584, y: 0.011971605, z: -0.08897044, w: 0.9959622} + inSlope: {x: 0.0016941619, y: 0.00028428048, z: 0.22544986, w: 0.019711392} + outSlope: {x: 0.0016941619, y: 0.00028428048, z: 0.22544986, w: 0.019711392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: -0.00033355042, y: 0.011991408, z: -0.0722139, w: 0.997317} + inSlope: {x: 0.0020837532, y: 0.00029439657, z: 0.27742216, w: 0.01965315} + outSlope: {x: 0.0020837532, y: 0.00029439657, z: 0.27742216, w: 0.01965315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: -0.00018435075, y: 0.012010471, z: -0.05234543, w: 0.9985568} + inSlope: {x: 0.0023761159, y: 0.00026177676, z: 0.31651688, w: 0.016267464} + outSlope: {x: 0.0023761159, y: 0.00026177676, z: 0.31651688, w: 0.016267464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: -0.000019857858, y: 0.012025967, z: -0.030427646, w: 0.99946463} + inSlope: {x: 0.002576051, y: 0.0001943009, z: 0.34335643, w: 0.010196794} + outSlope: {x: 0.002576051, y: 0.0001943009, z: 0.34335643, w: 0.010196794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.00015573704, y: 0.012036122, z: -0.007015839, w: 0.99990296} + inSlope: {x: 0.0026804474, y: 0.00010386982, z: 0.3574983, w: 0.0024407292} + outSlope: {x: 0.0026804474, y: 0.00010386982, z: 0.3574983, w: 0.0024407292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.00033401226, y: 0.01203968, z: 0.016768938, w: 0.99978685} + inSlope: {x: 0.0026903774, y: 0.000002638366, z: 0.3590575, w: -0.0059952717} + outSlope: {x: 0.0026903774, y: 0.000002638366, z: 0.3590575, w: -0.0059952717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.0005109181, y: 0.012036471, z: 0.040386584, w: 0.9991115} + inSlope: {x: 0.0026032943, y: -0.00009397947, z: 0.3476583, w: -0.013824025} + outSlope: {x: 0.0026032943, y: -0.00009397947, z: 0.3476583, w: -0.013824025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.00067769666, y: 0.012027273, z: 0.06266645, w: 0.9979618} + inSlope: {x: 0.002205553, y: -0.00015133925, z: 0.2947073, w: -0.01767113} + outSlope: {x: 0.002205553, y: -0.00015133925, z: 0.2947073, w: -0.01767113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.00080209307, y: 0.012016491, z: 0.07929356, w: 0.99677855} + inSlope: {x: 0.0018845221, y: -0.00016333889, z: 0.25188947, w: -0.01792577} + outSlope: {x: 0.0018845221, y: -0.00016333889, z: 0.25188947, w: -0.01792577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: -0.00012486686, y: -0.014307351, z: 0.008725364, w: 0.9998596} + inSlope: {x: 0.00000012786202, y: -0.00000025396042, z: -0.0000001128713, w: 0} + outSlope: {x: 0.00000012786202, y: -0.00000025396042, z: -0.0000001128713, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: -0.00012485842, y: -0.014307368, z: 0.008725356, w: 0.9998596} + inSlope: {x: -0.0016450338, y: 0.00002672228, z: 0.11496512, w: -0.001875921} + outSlope: {x: -0.0016450338, y: 0.00002672228, z: 0.11496512, w: -0.001875921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: -0.00034204265, y: -0.014303823, z: 0.023902949, w: 0.9996119} + inSlope: {x: -0.0036455567, y: 0.00009317526, z: 0.2547642, w: -0.006510868} + outSlope: {x: -0.0036455567, y: 0.00009317526, z: 0.2547642, w: -0.006510868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: -0.00060614134, y: -0.014295067, z: 0.04235908, w: 0.999} + inSlope: {x: -0.00408825, y: 0.00017502811, z: 0.2857011, w: -0.0122320885} + outSlope: {x: -0.00408825, y: 0.00017502811, z: 0.2857011, w: -0.0122320885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: -0.0008817695, y: -0.014280716, z: 0.061620932, w: 0.99799705} + inSlope: {x: -0.0039955406, y: 0.00024341402, z: 0.27922213, w: -0.017010156} + outSlope: {x: -0.0039955406, y: 0.00024341402, z: 0.27922213, w: -0.017010156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: -0.0011336288, y: -0.014262931, z: 0.07922172, w: 0.99675435} + inSlope: {x: -0.003369512, y: 0.00026083854, z: 0.23547316, w: -0.018228263} + outSlope: {x: -0.003369512, y: 0.00026083854, z: 0.23547316, w: -0.018228263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: -0.0013266093, y: -0.01424628, z: 0.09270787, w: 0.99559057} + inSlope: {x: -0.002212959, y: 0.00019872404, z: 0.1546492, w: -0.0138881365} + outSlope: {x: -0.002212959, y: 0.00019872404, z: 0.1546492, w: -0.0138881365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: -0.0014257815, y: -0.014236696, z: 0.09963836, w: 0.99492085} + inSlope: {x: -0.00052728795, y: 0.000050397037, z: 0.03684887, w: -0.0035224878} + outSlope: {x: -0.00052728795, y: 0.000050397037, z: 0.03684887, w: -0.0035224878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: -0.0013962213, y: -0.014239627, z: 0.097572625, w: 0.99512553} + inSlope: {x: 0.001301437, y: -0.00012242304, z: -0.09094876, w: 0.008554742} + outSlope: {x: 0.001301437, y: -0.00012242304, z: -0.09094876, w: 0.008554742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: -0.001253967, y: -0.014252858, z: 0.08763139, w: 0.99605024} + inSlope: {x: 0.0026485068, y: -0.00022692776, z: -0.18508704, w: 0.01585887} + outSlope: {x: 0.0026485068, y: -0.00022692776, z: -0.18508704, w: 0.01585887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: -0.001046568, y: -0.014269586, z: 0.07313761, w: 0.9972192} + inSlope: {x: 0.0035429522, y: -0.00025326206, z: -0.24759386, w: 0.017699575} + outSlope: {x: 0.0035429522, y: -0.00025326206, z: -0.24759386, w: 0.017699575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: -0.0007862299, y: -0.014286294, z: 0.054944284, w: 0.9983869} + inSlope: {x: 0.0042517562, y: -0.00022796475, z: -0.29712763, w: 0.015931107} + outSlope: {x: 0.0042517562, y: -0.00022796475, z: -0.29712763, w: 0.015931107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: -0.00048525524, y: -0.014299681, z: 0.033911105, w: 0.9993224} + inSlope: {x: 0.004773259, y: -0.00015730732, z: -0.33357194, w: 0.010992762} + outSlope: {x: 0.004773259, y: -0.00015730732, z: -0.33357194, w: 0.010992762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: -0.00015606881, y: -0.014307061, z: 0.010906436, w: 0.9998382} + inSlope: {x: 0.0051056985, y: -0.000052908425, z: -0.356804, w: 0.003697664} + outSlope: {x: 0.0051056985, y: -0.000052908425, z: -0.356804, w: 0.003697664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.00018879419, y: -0.014306666, z: -0.01319382, w: 0.9998106} + inSlope: {x: 0.0052477885, y: 0.00006983206, z: -0.36673385, w: -0.004880555} + outSlope: {x: 0.0052477885, y: 0.00006983206, z: -0.36673385, w: -0.004880555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.0005367392, y: -0.014297842, z: -0.037509415, w: 0.99919385} + inSlope: {x: 0.0051991027, y: 0.00019348256, z: -0.36333132, w: -0.013522433} + outSlope: {x: 0.0051991027, y: 0.00019348256, z: -0.36333132, w: -0.013522433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.0008751747, y: -0.014281123, z: -0.06116047, w: 0.99802536} + inSlope: {x: 0.0049602315, y: 0.00030020945, z: -0.34663835, w: -0.020979615} + outSlope: {x: 0.0049602315, y: 0.00030020945, z: -0.34663835, w: -0.020979615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.0011915842, y: -0.014258209, z: -0.08327228, w: 0.99642414} + inSlope: {x: 0.0045265425, y: 0.00037274335, z: -0.3163308, w: -0.026047988} + outSlope: {x: 0.0045265425, y: 0.00037274335, z: -0.3163308, w: -0.026047988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.0014727645, y: -0.014231914, z: -0.10292216, w: 0.9945865} + inSlope: {x: 0.003918665, y: 0.0003993175, z: -0.2738501, w: -0.02790585} + outSlope: {x: 0.003918665, y: 0.0003993175, z: -0.2738501, w: -0.02790585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.0017089226, y: -0.014205491, z: -0.11942571, w: 0.99274004} + inSlope: {x: 0.0031229989, y: 0.00036904681, z: -0.21824615, w: -0.025790188} + outSlope: {x: 0.0031229989, y: 0.00036904681, z: -0.21824615, w: -0.025790188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.0018850599, y: -0.0141831925, z: -0.1317348, w: 0.99118173} + inSlope: {x: 0.0021388978, y: 0.0002789332, z: -0.14947394, w: -0.019492421} + outSlope: {x: 0.0021388978, y: 0.0002789332, z: -0.14947394, w: -0.019492421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.0019912978, y: -0.014168667, z: -0.13915911, w: 0.99016666} + inSlope: {x: 0.00034708192, y: 0.00004671461, z: -0.024255928, w: -0.0032637864} + outSlope: {x: 0.00034708192, y: 0.00004671461, z: -0.024255928, w: -0.0032637864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.0019308813, y: -0.014177025, z: -0.13493705, w: 0.99075085} + inSlope: {x: -0.002505443, y: -0.0003223534, z: 0.17508811, w: 0.022529563} + outSlope: {x: -0.002505443, y: -0.0003223534, z: 0.17508811, w: 0.022529563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.0016605316, y: -0.014211223, z: -0.11604415, w: 0.993141} + inSlope: {x: -0.0051431097, y: -0.00057572126, z: 0.35941726, w: 0.040236816} + outSlope: {x: -0.0051431097, y: -0.00057572126, z: 0.35941726, w: 0.040236816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.0012518929, y: -0.014253031, z: -0.087487124, w: 0.9960629} + inSlope: {x: -0.0067505124, y: -0.00057551666, z: 0.47174793, w: 0.040222365} + outSlope: {x: -0.0067505124, y: -0.00057551666, z: 0.47174793, w: 0.040222365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.0007693354, y: -0.014287203, z: -0.05376444, w: 0.9984511} + inSlope: {x: -0.007310422, y: -0.0005176701, z: 0.51087606, w: 0.036180217} + outSlope: {x: -0.007310422, y: -0.0005176701, z: 0.51087606, w: 0.036180217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.00042691774, y: 0.0034770814, z: -0.08284172, w: 0.9965566} + inSlope: {x: -4.3655787e-10, y: 0, z: -0.000000111758816, w: 0} + outSlope: {x: -4.3655787e-10, y: 0, z: -0.000000111758816, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.00042691777, y: 0.0034770814, z: -0.082841724, w: 0.9965566} + inSlope: {x: 0.0011511267, y: 0.00006563211, z: 0.16887265, w: 0.012120467} + outSlope: {x: 0.0011511267, y: 0.00006563211, z: 0.16887265, w: 0.012120467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.00027343433, y: 0.0034858324, z: -0.060325384, w: 0.99817264} + inSlope: {x: 0.0024674986, y: 0.0001243175, z: 0.36208156, w: 0.021298515} + outSlope: {x: 0.0024674986, y: 0.0001243175, z: 0.36208156, w: 0.021298515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.00009791762, y: 0.003493657, z: -0.034564137, w: 0.9993964} + inSlope: {x: 0.0027270727, y: 0.00010221021, z: 0.40037435, w: 0.013478527} + outSlope: {x: 0.0027270727, y: 0.00010221021, z: 0.40037435, w: 0.013478527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.00009017565, y: 0.0034994604, z: -0.006942094, w: 0.9999698} + inSlope: {x: 0.0028443253, y: 0.00006723689, z: 0.41781598, w: 0.0028038053} + outSlope: {x: 0.0028443253, y: 0.00006723689, z: 0.41781598, w: 0.0028038053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.0002813254, y: 0.003502622, z: 0.02114461, w: 0.9997702} + inSlope: {x: 0.0028187744, y: 0.000026930382, z: 0.4142921, w: -0.008572347} + outSlope: {x: 0.0028187744, y: 0.000026930382, z: 0.4142921, w: -0.008572347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.0004660119, y: 0.0035030511, z: 0.048296798, w: 0.9988268} + inSlope: {x: 0.0026509399, y: -0.000010840606, z: 0.38983345, w: -0.018402208} + outSlope: {x: 0.0026509399, y: -0.000010840606, z: 0.38983345, w: -0.018402208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.0006347837, y: 0.0035011766, z: 0.07312235, w: 0.9973166} + inSlope: {x: 0.0023422209, y: -0.000038860635, z: 0.34460384, w: -0.02463075} + outSlope: {x: 0.0023422209, y: -0.000038860635, z: 0.34460384, w: -0.02463075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.00077830773, y: 0.0034978697, z: 0.09424393, w: 0.9955427} + inSlope: {x: 0.0018944545, y: -0.000051599298, z: 0.27884206, w: -0.02568705} + outSlope: {x: 0.0018944545, y: -0.000051599298, z: 0.27884206, w: -0.02568705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.00088737777, y: 0.0034942967, z: 0.110301316, w: 0.99389166} + inSlope: {x: 0.0013092507, y: -0.000046203444, z: 0.19276822, w: -0.02076698} + outSlope: {x: 0.0013092507, y: -0.000046203444, z: 0.19276822, w: -0.02076698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.0009528747, y: 0.0034917092, z: 0.11994639, w: 0.9927738} + inSlope: {x: 0.0005872079, y: -0.000023492052, z: 0.0864745, w: -0.01010568} + outSlope: {x: 0.0005872079, y: -0.000023492052, z: 0.0864745, w: -0.01010568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.0009656721, y: 0.0034911644, z: 0.12183124, w: 0.99254423} + inSlope: {x: -0.0001871982, y: 0.000007688657, z: -0.027566152, w: 0.0032790035} + outSlope: {x: -0.0001871982, y: 0.000007688657, z: -0.027566152, w: 0.0032790035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.000927915, y: 0.0034927344, z: 0.11627091, w: 0.993211} + inSlope: {x: -0.00085403724, y: 0.000032988057, z: -0.12575734, w: 0.014360561} + outSlope: {x: -0.00085403724, y: 0.000032988057, z: -0.12575734, w: 0.014360561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.00085180055, y: 0.0034955628, z: 0.10506361, w: 0.994459} + inSlope: {x: -0.0013855404, y: 0.00004567094, z: -0.20397788, w: 0.02105715} + outSlope: {x: -0.0013855404, y: 0.00004567094, z: -0.20397788, w: 0.02105715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.00074317644, y: 0.0034988238, z: 0.08907388, w: 0.9960186} + inSlope: {x: -0.0018292018, y: 0.000045421155, z: -0.26920757, w: 0.023547094} + outSlope: {x: -0.0018292018, y: 0.000045421155, z: -0.26920757, w: 0.023547094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.0006079067, y: 0.003501619, z: 0.06916923, w: 0.9975986} + inSlope: {x: -0.0021844269, y: 0.000032130585, z: -0.32135952, w: 0.021796502} + outSlope: {x: -0.0021844269, y: 0.000032130585, z: -0.32135952, w: 0.021796502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.0004519193, y: 0.003503108, z: 0.046225913, w: 0.9989248} + inSlope: {x: -0.0024501225, y: 0.0000075018106, z: -0.36028308, w: 0.016289517} + outSlope: {x: -0.0024501225, y: 0.0000075018106, z: -0.36028308, w: 0.016289517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.00028122406, y: 0.0035026192, z: 0.021131532, w: 0.9997705} + inSlope: {x: -0.0026208074, y: -0.000025220821, z: -0.38518992, w: 0.00791923} + outSlope: {x: -0.0026208074, y: -0.000025220821, z: -0.38518992, w: 0.00791923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.00010247864, y: 0.0034997452, z: -0.005132695, w: 0.9999807} + inSlope: {x: -0.0027082234, y: -0.00006218505, z: -0.3978296, w: -0.002144428} + outSlope: {x: -0.0027082234, y: -0.00006218505, z: -0.3978296, w: -0.002144428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.00007987206, y: 0.003494328, z: -0.031912364, w: 0.9994846} + inSlope: {x: -0.0026992105, y: -0.00009827616, z: -0.39629668, w: -0.012514752} + outSlope: {x: -0.0026992105, y: -0.00009827616, z: -0.39629668, w: -0.012514752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.00025741576, y: 0.0034866417, z: -0.0579722, w: 0.99831206} + inSlope: {x: -0.002597532, y: -0.00012902729, z: -0.38116983, w: -0.021893999} + outSlope: {x: -0.002597532, y: -0.00012902729, z: -0.38116983, w: -0.021893999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.00042620933, y: 0.0034771243, z: -0.08273496, w: 0.9965654} + inSlope: {x: -0.002405042, y: -0.00014947014, z: -0.35275018, w: -0.02884981} + outSlope: {x: -0.002405042, y: -0.00014947014, z: -0.35275018, w: -0.02884981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.0005780883, y: 0.0034667123, z: -0.10500559, w: 0.9944654} + inSlope: {x: -0.0021203582, y: -0.00015593994, z: -0.31085604, w: -0.03234205} + outSlope: {x: -0.0021203582, y: -0.00015593994, z: -0.31085604, w: -0.03234205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.000708924, y: 0.0034563323, z: -0.12418247, w: 0.9922531} + inSlope: {x: -0.0017481977, y: -0.00014554666, z: -0.2561987, w: -0.031519562} + outSlope: {x: -0.0017481977, y: -0.00014554666, z: -0.2561987, w: -0.031519562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.0008111811, y: 0.003447306, z: -0.13916539, w: 0.9902628} + inSlope: {x: -0.00052513287, y: -0.00004570237, z: -0.076951474, w: -0.010035494} + outSlope: {x: -0.00052513287, y: -0.00004570237, z: -0.076951474, w: -0.010035494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.00077894167, y: 0.0034502386, z: -0.13444266, w: 0.99091506} + inSlope: {x: 0.00048359175, y: 0.000043987573, z: 0.07084101, w: 0.009783814} + outSlope: {x: 0.00048359175, y: 0.000043987573, z: 0.07084101, w: 0.009783814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.0004132125, y: -0.03156533, z: -0.013083074, w: 0.999416} + inSlope: {x: 8.7311575e-10, y: -0.000000111758816, z: 0, w: 0} + outSlope: {x: 8.7311575e-10, y: -0.000000111758816, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.00041321255, y: -0.03156534, z: -0.013083074, w: 0.999416} + inSlope: {x: 0.0053042895, y: 0.00012888585, z: -0.16794343, w: -0.0040809847} + outSlope: {x: 0.0053042895, y: 0.00012888585, z: -0.16794343, w: -0.0040809847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.0011204504, y: -0.031548146, z: -0.03547551, w: 0.99887186} + inSlope: {x: 0.011577215, y: 0.00043502008, z: -0.3665557, w: -0.013774016} + outSlope: {x: 0.011577215, y: 0.00043502008, z: -0.3665557, w: -0.013774016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.0019568428, y: -0.031507336, z: -0.061957218, w: 0.99757946} + inSlope: {x: 0.012778237, y: 0.000800192, z: -0.40458238, w: -0.025336582} + outSlope: {x: 0.012778237, y: 0.000800192, z: -0.40458238, w: -0.025336582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.0028242168, y: -0.031441454, z: -0.08941987, w: 0.99549365} + inSlope: {x: 0.01251051, y: 0.0011107988, z: -0.39610547, w: -0.035169158} + outSlope: {x: 0.01251051, y: 0.0011107988, z: -0.39610547, w: -0.035169158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.0036249093, y: -0.03135923, z: -0.11477123, w: 0.99289024} + inSlope: {x: 0.010786016, y: 0.001218674, z: -0.34150475, w: -0.03858585} + outSlope: {x: 0.010786016, y: 0.001218674, z: -0.34150475, w: -0.03858585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.004262351, y: -0.031278964, z: -0.1349538, w: 0.9903489} + inSlope: {x: 0.007621499, y: 0.0010066675, z: -0.24131075, w: -0.031871825} + outSlope: {x: 0.007621499, y: 0.0010066675, z: -0.24131075, w: -0.031871825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.004641108, y: -0.031225007, z: -0.14694597, w: 0.98864067} + inSlope: {x: 0.0030277665, y: 0.00043252058, z: -0.095864706, w: -0.013694478} + outSlope: {x: 0.0030277665, y: 0.00043252058, z: -0.095864706, w: -0.013694478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.0046660528, y: -0.031221295, z: -0.14773574, w: 0.98852295} + inSlope: {x: -0.0018691379, y: -0.00027023174, z: 0.059180528, w: 0.00855488} + outSlope: {x: -0.0018691379, y: -0.00027023174, z: 0.059180528, w: 0.00855488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.004391889, y: -0.031261038, z: -0.1390552, w: 0.9897813} + inSlope: {x: -0.00532588, y: -0.00073421246, z: 0.16862693, w: 0.023247141} + outSlope: {x: -0.00532588, y: -0.00073421246, z: 0.16862693, w: 0.023247141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.003955935, y: -0.03131919, z: -0.12525214, w: 0.99162257} + inSlope: {x: -0.0075420346, y: -0.00093639916, z: 0.23879433, w: 0.02964872} + outSlope: {x: -0.0075420346, y: -0.00093639916, z: 0.23879433, w: 0.02964872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.0033862854, y: -0.03138589, z: -0.10721599, w: 0.9937345} + inSlope: {x: -0.009335207, y: -0.0009915242, z: 0.29556972, w: 0.031393945} + outSlope: {x: -0.009335207, y: -0.0009915242, z: 0.29556972, w: 0.031393945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.002711242, y: -0.031451393, z: -0.085842885, w: 0.9958084} + inSlope: {x: -0.010701072, y: -0.00090957707, z: 0.3388155, w: 0.02879846} + outSlope: {x: -0.010701072, y: -0.00090957707, z: 0.3388155, w: 0.02879846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.001959477, y: -0.031507168, z: -0.06204064, w: 0.99757427} + inSlope: {x: -0.011633868, y: -0.00071492116, z: 0.36834946, w: 0.022635631} + outSlope: {x: -0.011633868, y: -0.00071492116, z: 0.36834946, w: 0.022635631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.0011600611, y: -0.031546716, z: -0.03672967, w: 0.9988265} + inSlope: {x: -0.012128152, y: -0.00044259234, z: 0.38399935, w: 0.014014092} + outSlope: {x: -0.012128152, y: -0.00044259234, z: 0.38399935, w: 0.014014092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.0003423889, y: -0.03156618, z: -0.010840681, w: 0.9994428} + inSlope: {x: -0.012180222, y: -0.00013433358, z: 0.385648, w: 0.004253524} + outSlope: {x: -0.012180222, y: -0.00013433358, z: 0.385648, w: 0.004253524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.0004639698, y: -0.031564627, z: 0.014690106, w: 0.99939364} + inSlope: {x: -0.011788866, y: 0.00016568245, z: 0.37325692, w: -0.005246406} + outSlope: {x: -0.011788866, y: 0.00016568245, z: 0.37325692, w: -0.005246406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.0012294583, y: -0.03154409, z: 0.03892686, w: 0.9987433} + inSlope: {x: -0.01094026, y: 0.00041395467, z: 0.34638852, w: -0.013106626} + outSlope: {x: -0.01094026, y: 0.00041395467, z: 0.34638852, w: -0.013106626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.0019226697, y: -0.031509433, z: 0.0608752, w: 0.9976461} + inSlope: {x: -0.009683792, y: 0.00057634024, z: 0.30660635, w: -0.018247532} + outSlope: {x: -0.009683792, y: 0.00057634024, z: 0.30660635, w: -0.018247532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.0025206292, y: -0.031467244, z: 0.07980767, w: 0.9963103} + inSlope: {x: -0.007984374, y: 0.0006229436, z: 0.25279984, w: -0.019722302} + outSlope: {x: -0.007984374, y: 0.0006229436, z: 0.25279984, w: -0.019722302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.0029872518, y: -0.031426374, z: 0.09458181, w: 0.99501646} + inSlope: {x: -0.0058434894, y: 0.0005410524, z: 0.18501559, w: -0.017130392} + outSlope: {x: -0.0058434894, y: 0.0005410524, z: 0.18501559, w: -0.017130392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.0032997604, y: -0.031395104, z: 0.10447639, w: 0.99402624} + inSlope: {x: -0.002101444, y: 0.00020915671, z: 0.066535465, w: -0.0066241715} + outSlope: {x: -0.002101444, y: 0.00020915671, z: 0.066535465, w: -0.0066241715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.003267444, y: -0.031398486, z: 0.1034532, w: 0.99413323} + inSlope: {x: 0.0036498096, y: -0.00035505768, z: -0.11555959, w: 0.011241593} + outSlope: {x: 0.0036498096, y: -0.00035505768, z: -0.11555959, w: 0.011241593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.0028131194, y: -0.031442445, z: 0.08906846, w: 0.9955251} + inSlope: {x: 0.00889981, y: -0.0007567189, z: -0.2817842, w: 0.023960195} + outSlope: {x: 0.00889981, y: -0.0007567189, z: -0.2817842, w: 0.023960195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.0020808037, y: -0.031499382, z: 0.065882005, w: 0.9973279} + inSlope: {x: 0.012086965, y: -0.00077040936, z: -0.38269526, w: 0.024391584} + outSlope: {x: 0.012086965, y: -0.00077040936, z: -0.38269526, w: 0.024391584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.0012015257, y: -0.031545166, z: 0.03804247, w: 0.99877733} + inSlope: {x: 0.013189184, y: -0.0006867579, z: -0.41759342, w: 0.021741113} + outSlope: {x: 0.013189184, y: -0.0006867579, z: -0.41759342, w: 0.021741113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.119434476, y: 0.041922223, z: 0.1741824, w: 0.97654414} + inSlope: {x: -0.000000111758816, y: -0.000000111758816, z: -0.0000006705529, w: 0} + outSlope: {x: -0.000000111758816, y: -0.000000111758816, z: -0.0000006705529, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.11943447, y: 0.041922215, z: 0.17418236, w: 0.97654414} + inSlope: {x: -0.024789168, y: 0.0022063146, z: -0.03271538, w: 0.008651921} + outSlope: {x: -0.024789168, y: 0.0022063146, z: -0.03271538, w: 0.008651921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.11612926, y: 0.042216398, z: 0.16982035, w: 0.97769773} + inSlope: {x: -0.103153944, y: 0.009100105, z: -0.13616166, w: 0.034433246} + outSlope: {x: -0.103153944, y: 0.009100105, z: -0.13616166, w: 0.034433246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.105680585, y: 0.043135565, z: 0.15602744, w: 0.98113525} + inSlope: {x: -0.2206228, y: 0.019096846, z: -0.2913343, w: 0.066550046} + outSlope: {x: -0.2206228, y: 0.019096846, z: -0.2913343, w: 0.066550046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.086712874, y: 0.044762645, z: 0.13097577, w: 0.9865711} + inSlope: {x: -0.33497632, y: 0.028103514, z: -0.44261968, w: 0.0837677} + outSlope: {x: -0.33497632, y: 0.028103514, z: -0.44261968, w: 0.0837677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.06101712, y: 0.046882696, z: 0.09701154, w: 0.99230427} + inSlope: {x: -0.39649528, y: 0.03193441, z: -0.5243266, w: 0.073375925} + outSlope: {x: -0.39649528, y: 0.03193441, z: -0.5243266, w: 0.073375925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.033846885, y: 0.049020562, z: 0.061065618, w: 0.9963545} + inSlope: {x: -0.4107374, y: 0.031507827, z: -0.5436567, w: 0.04552026} + outSlope: {x: -0.4107374, y: 0.031507827, z: -0.5436567, w: 0.04552026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.006252186, y: 0.051083736, z: 0.024524046, w: 0.9983736} + inSlope: {x: -0.40955245, y: 0.029833235, z: -0.54258734, w: 0.014704332} + outSlope: {x: -0.40955245, y: 0.029833235, z: -0.54258734, w: 0.014704332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.020760056, y: 0.052998323, z: -0.01127929, w: 0.9983151} + inSlope: {x: -0.3933019, y: 0.027163465, z: -0.5215261, w: -0.014671199} + outSlope: {x: -0.3933019, y: 0.027163465, z: -0.5215261, w: -0.014671199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.046188105, y: 0.054705534, z: -0.045012824, w: 0.99641746} + inSlope: {x: -0.3621924, y: 0.023722578, z: -0.48068154, w: -0.03854914} + outSlope: {x: -0.3621924, y: 0.023722578, z: -0.48068154, w: -0.03854914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.06905242, y: 0.056161337, z: -0.07537022, w: 0.9931752} + inSlope: {x: -0.31663337, y: 0.019715903, z: -0.42054048, w: -0.053515486} + outSlope: {x: -0.31663337, y: 0.019715903, z: -0.42054048, w: -0.053515486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.08840585, y: 0.05733432, z: -0.101084836, w: 0.9892821} + inSlope: {x: -0.25711316, y: 0.015301263, z: -0.34171128, w: -0.057183854} + outSlope: {x: -0.25711316, y: 0.015301263, z: -0.34171128, w: -0.057183854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.103334144, y: 0.058201503, z: -0.120931685, w: 0.9855507} + inSlope: {x: -0.18404782, y: 0.010559866, z: -0.24472907, w: -0.04855071} + outSlope: {x: -0.18404782, y: 0.010559866, z: -0.24472907, w: -0.04855071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.112945534, y: 0.0587423, z: -0.13371535, w: 0.98280865} + inSlope: {x: -0.0976206, y: 0.005467828, z: -0.12984832, w: -0.028333096} + outSlope: {x: -0.0976206, y: 0.005467828, z: -0.12984832, w: -0.028333096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.11635021, y: 0.058930546, z: -0.13824478, w: 0.98177296} + inSlope: {x: -0.00000009126961, y: -0.000000022817403, z: -0.00000012293458, w: -0.000000027939677} + outSlope: {x: -0.00000009126961, y: -0.000000022817403, z: -0.00000012293458, w: -0.000000027939677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.112945534, y: 0.058742296, z: -0.13371535, w: 0.98280865} + inSlope: {x: 0.09762051, y: -0.005467823, z: 0.12984815, w: 0.028333068} + outSlope: {x: 0.09762051, y: -0.005467823, z: 0.12984815, w: 0.028333068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.103334144, y: 0.058201503, z: -0.12093169, w: 0.9855507} + inSlope: {x: 0.18404788, y: -0.010559782, z: 0.24472918, w: 0.04855071} + outSlope: {x: 0.18404788, y: -0.010559782, z: 0.24472918, w: 0.04855071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.08840584, y: 0.057334326, z: -0.10108482, w: 0.9892821} + inSlope: {x: 0.256615, y: -0.015270278, z: 0.34104955, w: 0.05709713} + outSlope: {x: 0.256615, y: -0.015270278, z: 0.34104955, w: 0.05709713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.06911884, y: 0.056165468, z: -0.07545846, w: 0.99316365} + inSlope: {x: 0.31663343, y: -0.01971596, z: 0.42054045, w: 0.053515486} + outSlope: {x: 0.31663343, y: -0.01971596, z: 0.42054045, w: 0.053515486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.04618809, y: 0.054705534, z: -0.045012813, w: 0.99641746} + inSlope: {x: 0.36207294, y: -0.023711002, z: 0.48052448, w: 0.03861133} + outSlope: {x: 0.36207294, y: -0.023711002, z: 0.48052448, w: 0.03861133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.020842494, y: 0.053004004, z: -0.011388591, w: 0.9983118} + inSlope: {x: 0.39330262, y: -0.02716354, z: 0.5215273, w: 0.01467125} + outSlope: {x: 0.39330262, y: -0.02716354, z: 0.5215273, w: 0.01467125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.006252209, y: 0.051083732, z: 0.024524093, w: 0.9983736} + inSlope: {x: 0.40952438, y: -0.029826222, z: 0.5425515, w: -0.014607718} + outSlope: {x: 0.40952438, y: -0.029826222, z: 0.5425515, w: -0.014607718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.0337608, y: 0.04902717, z: 0.06095167, w: 0.9963641} + inSlope: {x: 0.41073665, y: -0.031507745, z: 0.54365563, w: -0.045520656} + outSlope: {x: 0.41073665, y: -0.031507745, z: 0.54365563, w: -0.045520656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.06101714, y: 0.046882696, z: 0.09701157, w: 0.9923042} + inSlope: {x: 0.3965835, y: -0.03193695, z: 0.5244449, w: -0.07330306} + outSlope: {x: 0.3965835, y: -0.03193695, z: 0.5244449, w: -0.07330306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.08663855, y: 0.044768915, z: 0.13087758, w: 0.9865904} + inSlope: {x: 0.33497632, y: -0.028103486, z: 0.44261962, w: -0.08376725} + outSlope: {x: 0.33497632, y: -0.028103486, z: 0.44261962, w: -0.08376725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.10568061, y: 0.04313557, z: 0.15602747, w: 0.98113525} + inSlope: {x: 0.28563118, y: -0.024500215, z: 0.3772486, w: -0.08182712} + outSlope: {x: 0.28563118, y: -0.024500215, z: 0.3772486, w: -0.08182712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.000000035323396, y: 0.024505937, z: 0.000000060090834, w: 0.99969965} + inSlope: {x: -0.00000056622144, y: -0.00000008381911, z: -0.0000009154624, w: 0} + outSlope: {x: -0.00000056622144, y: -0.00000008381911, z: -0.0000009154624, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.0000000024246647, y: 0.024505932, z: -9.399325e-10, w: 0.99969965} + inSlope: {x: 0.24212712, y: 0.079373665, z: 0.28135678, w: -0.011563014} + outSlope: {x: 0.24212712, y: 0.079373665, z: 0.28135678, w: -0.011563014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.03228362, y: 0.035089083, z: 0.037514262, w: 0.9981579} + inSlope: {x: 0.52867216, y: 0.1737813, z: 0.6066528, w: -0.04961899} + outSlope: {x: 0.52867216, y: 0.1737813, z: 0.6066528, w: -0.04961899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.07048969, y: 0.047676794, z: 0.08088712, w: 0.9930838} + inSlope: {x: 0.5823714, y: 0.19141123, z: 0.65953594, w: -0.10524404} + outSlope: {x: 0.5823714, y: 0.19141123, z: 0.65953594, w: -0.10524404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.109933205, y: 0.0606106, z: 0.12545246, w: 0.9841254} + inSlope: {x: 0.56642973, y: 0.1846615, z: 0.6431184, w: -0.15465185} + outSlope: {x: 0.56642973, y: 0.1846615, z: 0.6431184, w: -0.15465185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.14601359, y: 0.0722983, z: 0.16663615, w: 0.97246355} + inSlope: {x: 0.4831056, y: 0.15484396, z: 0.55985355, w: -0.17562763} + outSlope: {x: 0.4831056, y: 0.15484396, z: 0.55985355, w: -0.17562763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.17434722, y: 0.08125644, z: 0.20009953, w: 0.9607084} + inSlope: {x: 0.33585078, y: 0.10356544, z: 0.41343743, w: -0.15071437} + outSlope: {x: 0.33585078, y: 0.10356544, z: 0.41343743, w: -0.15071437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.19079365, y: 0.086107016, z: 0.22176109, w: 0.9523683} + inSlope: {x: 0.12722613, y: 0.031897083, z: 0.20637216, w: -0.07329232} + outSlope: {x: 0.12722613, y: 0.031897083, z: 0.20637216, w: -0.07329232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.19131069, y: 0.08550938, z: 0.22761579, w: 0.9509361} + inSlope: {x: -0.093469694, y: -0.044172082, z: -0.008174524, w: 0.023829985} + outSlope: {x: -0.093469694, y: -0.044172082, z: -0.008174524, w: 0.023829985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.17833099, y: 0.08021739, z: 0.22067113, w: 0.95554566} + inSlope: {x: -0.2507499, y: -0.09969029, z: -0.15247773, w: 0.088622384} + outSlope: {x: -0.2507499, y: -0.09969029, z: -0.15247773, w: 0.088622384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.15787736, y: 0.07221734, z: 0.20728542, w: 0.9627524} + inSlope: {x: -0.35353404, y: -0.13686289, z: -0.24260426, w: 0.11838388} + outSlope: {x: -0.35353404, y: -0.13686289, z: -0.24260426, w: 0.11838388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.13119316, y: 0.061969023, z: 0.18832393, w: 0.97133017} + inSlope: {x: -0.43745613, y: -0.1670748, z: -0.31948224, w: 0.12963888} + outSlope: {x: -0.43745613, y: -0.1670748, z: -0.31948224, w: 0.12963888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.09954993, y: 0.04994072, z: 0.16468783, w: 0.98003757} + inSlope: {x: -0.5018857, y: -0.19010602, z: -0.3823259, w: 0.12319934} + outSlope: {x: -0.5018857, y: -0.19010602, z: -0.3823259, w: 0.12319934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.06427513, y: 0.036621578, z: 0.13734719, w: 0.9877567} + inSlope: {x: -0.5459374, y: -0.20561436, z: -0.4299993, w: 0.10175819} + outSlope: {x: -0.5459374, y: -0.20561436, z: -0.4299993, w: 0.10175819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.026758341, y: 0.022525499, z: 0.10735464, w: 0.9936053} + inSlope: {x: -0.5687816, y: -0.21325879, z: -0.46129638, w: 0.06946874} + outSlope: {x: -0.5687816, y: -0.21325879, z: -0.46129638, w: 0.06946874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.011562483, y: 0.008187049, z: 0.07584095, w: 0.99701923} + inSlope: {x: -0.5699041, y: -0.21280414, z: -0.47518975, w: 0.031466722} + outSlope: {x: -0.5699041, y: -0.21280414, z: -0.47518975, w: 0.031466722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.04922894, y: -0.0058484105, z: 0.043995954, w: 0.9978009} + inSlope: {x: -0.5492583, y: -0.20418516, z: -0.47100148, w: -0.0066617196} + outSlope: {x: -0.5492583, y: -0.20418516, z: -0.47100148, w: -0.0066617196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.08479685, y: -0.019037612, z: 0.013040814, w: 0.996131} + inSlope: {x: -0.5065956, y: -0.18726806, z: -0.44783482, w: -0.039338656} + outSlope: {x: -0.5065956, y: -0.18726806, z: -0.44783482, w: -0.039338656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.116774954, y: -0.030817462, z: -0.0157153, w: 0.99255574} + inSlope: {x: -0.4448731, y: -0.16310693, z: -0.4077525, w: -0.062060118} + outSlope: {x: -0.4448731, y: -0.16310693, z: -0.4077525, w: -0.062060118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.14411321, y: -0.040785182, z: -0.04132614, w: 0.9878563} + inSlope: {x: -0.36332136, y: -0.13141268, z: -0.34943163, w: -0.07092304} + outSlope: {x: -0.36332136, y: -0.13141268, z: -0.34943163, w: -0.07092304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.16521776, y: -0.048339136, z: -0.06230614, w: 0.98309934} + inSlope: {x: -0.26274016, y: -0.09247053, z: -0.27332744, w: -0.06413704} + outSlope: {x: -0.26274016, y: -0.09247053, z: -0.27332744, w: -0.06413704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.1791452, y: -0.053114574, z: -0.077769764, w: 0.97930473} + inSlope: {x: -0.08848812, y: -0.023134569, z: -0.15055843, w: -0.027706802} + outSlope: {x: -0.08848812, y: -0.023134569, z: -0.15055843, w: -0.027706802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.17701615, y: -0.051423736, z: -0.08238059, w: 0.9794051} + inSlope: {x: 0.18017985, y: 0.08592293, z: 0.024747435, w: 0.036739588} + outSlope: {x: 0.18017985, y: 0.08592293, z: 0.024747435, w: 0.036739588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.15512124, y: -0.04165819, z: -0.074470125, w: 0.98420334} + inSlope: {x: 0.42713153, y: 0.18648574, z: 0.18161163, w: 0.0847467} + outSlope: {x: 0.42713153, y: 0.18648574, z: 0.18161163, w: 0.0847467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.12006534, y: -0.026558995, z: -0.058165733, w: 0.99070466} + inSlope: {x: 0.5792215, y: 0.24785513, z: 0.27801758, w: 0.090146005} + outSlope: {x: 0.5792215, y: 0.24785513, z: 0.27801758, w: 0.090146005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.077891774, y: -0.008610872, z: -0.03740115, w: 0.9962228} + inSlope: {x: 0.63260406, y: 0.2692221, z: 0.31146902, w: 0.08277216} + outSlope: {x: 0.63260406, y: 0.2692221, z: 0.31146902, w: 0.08277216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.0008874514, y: 0.05084388, z: -0.01742958, w: 0.9985541} + inSlope: {x: -0.00000002444724, y: 0.00000016763822, z: -0.000000055879408, w: 0} + outSlope: {x: -0.00000002444724, y: 0.00000016763822, z: -0.000000055879408, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.00088745303, y: 0.05084389, z: -0.017429585, w: 0.9985541} + inSlope: {x: -0.007804633, y: -0.00021608567, z: -0.15328011, w: -0.004245494} + outSlope: {x: -0.007804633, y: -0.00021608567, z: -0.15328011, w: -0.004245494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.0019280682, y: 0.05081507, z: -0.03786691, w: 0.99798805} + inSlope: {x: -0.017135404, y: -0.0006847166, z: -0.33653346, w: -0.013447234} + outSlope: {x: -0.017135404, y: -0.0006847166, z: -0.33653346, w: -0.013447234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.0031721757, y: 0.050752595, z: -0.062300757, w: 0.99676114} + inSlope: {x: -0.019029625, y: -0.0011990308, z: -0.37373525, w: -0.023547996} + outSlope: {x: -0.019029625, y: -0.0011990308, z: -0.37373525, w: -0.023547996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.0044653537, y: 0.050655197, z: -0.08769832, w: 0.9948483} + inSlope: {x: -0.018613223, y: -0.0016218999, z: -0.36555713, w: -0.03185439} + outSlope: {x: -0.018613223, y: -0.0016218999, z: -0.36555713, w: -0.03185439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.0056539364, y: 0.050536342, z: -0.111041665, w: 0.9925139} + inSlope: {x: -0.015903322, y: -0.0017387716, z: -0.31233588, w: -0.034148578} + outSlope: {x: -0.015903322, y: -0.0017387716, z: -0.31233588, w: -0.034148578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.0065857945, y: 0.05042336, z: -0.12934306, w: 0.9902952} + inSlope: {x: -0.010922859, y: -0.0013819258, z: -0.21452127, w: -0.027140852} + outSlope: {x: -0.010922859, y: -0.0013819258, z: -0.21452127, w: -0.027140852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.0071103163, y: 0.050352085, z: -0.13964447, w: 0.9888951} + inSlope: {x: -0.0036850618, y: -0.00049953396, z: -0.07237322, w: -0.009811977} + outSlope: {x: -0.0036850618, y: -0.00049953396, z: -0.07237322, w: -0.009811977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.0070771356, y: 0.050356757, z: -0.13899282, w: 0.9889869} + inSlope: {x: 0.0040888395, y: 0.0005547969, z: 0.080303356, w: 0.010896895} + outSlope: {x: 0.0040888395, y: 0.0005547969, z: 0.080303356, w: 0.010896895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.0065651364, y: 0.05042606, z: -0.12893733, w: 0.99034804} + inSlope: {x: 0.009683266, y: 0.0012347095, z: 0.19017607, w: 0.024249837} + outSlope: {x: 0.009683266, y: 0.0012347095, z: 0.19017607, w: 0.024249837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.005786033, y: 0.050521385, z: -0.113635994, w: 0.9922202} + inSlope: {x: 0.013331269, y: 0.0014977078, z: 0.2618217, w: 0.02941492} + outSlope: {x: 0.013331269, y: 0.0014977078, z: 0.2618217, w: 0.02941492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.0047876355, y: 0.050625753, z: -0.09402781, w: 0.99427} + inSlope: {x: 0.016258672, y: 0.0015102248, z: 0.31931472, w: 0.029660344} + outSlope: {x: 0.016258672, y: 0.0015102248, z: 0.31931472, w: 0.029660344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.0036182122, y: 0.050722748, z: -0.07106074, w: 0.99617493} + inSlope: {x: 0.018457007, y: 0.0012946699, z: 0.36248928, w: 0.025426919} + outSlope: {x: 0.018457007, y: 0.0012946699, z: 0.36248928, w: 0.025426919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.0023267036, y: 0.050798375, z: -0.04569595, w: 0.9976603} + inSlope: {x: 0.019916125, y: 0.00089826144, z: 0.39114588, w: 0.017642247} + outSlope: {x: 0.019916125, y: 0.00089826144, z: 0.39114588, w: 0.017642247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.00096273166, y: 0.050842516, z: -0.018908007, w: 0.9985272} + inSlope: {x: 0.020627141, y: 0.00038621033, z: 0.40511, w: 0.0075848433} + outSlope: {x: 0.020627141, y: 0.00038621033, z: 0.40511, w: 0.0075848433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.00042358405, y: 0.05084987, z: 0.008318763, w: 0.9986716} + inSlope: {x: 0.020584963, y: -0.00016587821, z: 0.40428168, w: -0.0032579969} + outSlope: {x: 0.020584963, y: -0.00016587821, z: 0.40428168, w: -0.0032579969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.0017819323, y: 0.0508204, z: 0.034996264, w: 0.99809283} + inSlope: {x: 0.019789357, y: -0.0006788789, z: 0.38865617, w: -0.013333274} + outSlope: {x: 0.019789357, y: -0.0006788789, z: 0.38865617, w: -0.013333274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.0030621625, y: 0.050759353, z: 0.060139537, w: 0.9968938} + inSlope: {x: 0.01821978, y: -0.0010758463, z: 0.35783023, w: -0.021128673} + outSlope: {x: 0.01821978, y: -0.0010758463, z: 0.35783023, w: -0.021128673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.004211234, y: 0.050676953, z: 0.08270691, w: 0.9952757} + inSlope: {x: 0.015959928, y: -0.0012996432, z: 0.31344742, w: -0.025523031} + outSlope: {x: 0.015959928, y: -0.0012996432, z: 0.31344742, w: -0.025523031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.005190151, y: 0.050586067, z: 0.10193249, w: 0.99349076} + inSlope: {x: 0.012954471, y: -0.0012995035, z: 0.25442123, w: -0.02552169} + outSlope: {x: 0.012954471, y: -0.0012995035, z: 0.25442123, w: -0.02552169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.005938495, y: 0.050503686, z: 0.11662971, w: 0.9918728} + inSlope: {x: 0.009204634, y: -0.0010575177, z: 0.18077587, w: -0.020769704} + outSlope: {x: 0.009204634, y: -0.0010575177, z: 0.18077587, w: -0.020769704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.006417434, y: 0.050445065, z: 0.12603591, w: 0.99072146} + inSlope: {x: 0.0025203712, y: -0.00030490645, z: 0.049499176, w: -0.0059876} + outSlope: {x: 0.0025203712, y: -0.00030490645, z: 0.049499176, w: -0.0059876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.0062745437, y: 0.050463032, z: 0.123229586, w: 0.99107444} + inSlope: {x: -0.007935788, y: 0.0009252228, z: -0.15585607, w: 0.018170632} + outSlope: {x: -0.007935788, y: 0.0009252228, z: -0.15585607, w: 0.018170632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.0053593297, y: 0.050568428, z: 0.10525511, w: 0.9931442} + inSlope: {x: -0.017545627, y: 0.0017707904, z: -0.34459007, w: 0.034777556} + outSlope: {x: -0.017545627, y: 0.0017707904, z: -0.34459007, w: 0.034777556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.003935129, y: 0.050699137, z: 0.077284284, w: 0.99571145} + inSlope: {x: -0.023393665, y: 0.0017537472, z: -0.4594438, w: 0.03444362} + outSlope: {x: -0.023393665, y: 0.0017537472, z: -0.4594438, w: 0.03444362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.0022401775, y: 0.05080226, z: 0.043995995, w: 0.9977367} + inSlope: {x: -0.025424296, y: 0.0015468538, z: -0.4993248, w: 0.03037873} + outSlope: {x: -0.025424296, y: 0.0015468538, z: -0.4993248, w: 0.03037873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.13975379, y: -0.040353373, z: 0.17399797, w: 0.9739431} + inSlope: {x: 0, y: -0.00000016763822, z: 0, w: 0} + outSlope: {x: 0, y: -0.00000016763822, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.13975379, y: -0.040353384, z: 0.17399797, w: 0.9739431} + inSlope: {x: 0.028744256, y: -0.0038329363, z: -0.034689937, w: 0.010016272} + outSlope: {x: 0.028744256, y: -0.0038329363, z: -0.034689937, w: 0.010016272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.13592122, y: -0.04086443, z: 0.16937265, w: 0.9752786} + inSlope: {x: 0.119657494, y: -0.015845178, z: -0.14441882, w: 0.039781116} + outSlope: {x: 0.119657494, y: -0.015845178, z: -0.14441882, w: 0.039781116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.12379943, y: -0.042466078, z: 0.15474209, w: 0.9792473} + inSlope: {x: 0.25611266, y: -0.03341537, z: -0.30915657, w: 0.07649031} + outSlope: {x: 0.25611266, y: -0.03341537, z: -0.30915657, w: 0.07649031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.10177286, y: -0.045319814, z: 0.12815176, w: 0.9854773} + inSlope: {x: 0.38926804, y: -0.04957319, z: -0.4699995, w: 0.09519392} + outSlope: {x: 0.38926804, y: -0.04957319, z: -0.4699995, w: 0.09519392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.071897075, y: -0.04907583, z: 0.09207555, w: 0.9919398} + inSlope: {x: 0.46123964, y: -0.056928124, z: -0.5570614, w: 0.08140378} + outSlope: {x: 0.46123964, y: -0.056928124, z: -0.5570614, w: 0.08140378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.0402743, y: -0.052910224, z: 0.053876977, w: 0.99633116} + inSlope: {x: 0.47819674, y: -0.056881495, z: -0.5777348, w: 0.047304377} + outSlope: {x: 0.47819674, y: -0.056881495, z: -0.5777348, w: 0.047304377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.00813757, y: -0.056660023, z: 0.0150443055, w: 0.998247} + inSlope: {x: 0.47700453, y: -0.05458826, z: -0.5764891, w: 0.00988842} + outSlope: {x: 0.47700453, y: -0.05458826, z: -0.5764891, w: 0.00988842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.023326244, y: -0.06018865, z: -0.02298816, w: 0.9976496} + inSlope: {x: 0.45806146, y: -0.0504025, z: -0.55377793, w: -0.025487192} + outSlope: {x: 0.45806146, y: -0.0504025, z: -0.55377793, w: -0.025487192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.052937336, y: -0.06338036, z: -0.05879281, w: 0.9948487} + inSlope: {x: 0.42165577, y: -0.044641584, z: -0.5099236, w: -0.053885553} + outSlope: {x: 0.42165577, y: -0.044641584, z: -0.5099236, w: -0.053885553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.07954706, y: -0.06614087, z: -0.090978034, w: 0.99046487} + inSlope: {x: 0.36836338, y: -0.037609972, z: -0.4456007, w: -0.07116399} + outSlope: {x: 0.36836338, y: -0.037609972, z: -0.4456007, w: -0.07116399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.102052405, y: -0.06839502, z: -0.11820618, w: 0.9853602} + inSlope: {x: 0.29887375, y: -0.029551826, z: -0.361628, w: -0.07443987} + outSlope: {x: 0.29887375, y: -0.029551826, z: -0.361628, w: -0.07443987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.11939686, y: -0.07008111, z: -0.13919505, w: 0.98053956} + inSlope: {x: 0.21377406, y: -0.020602345, z: -0.25870854, w: -0.062518775} + outSlope: {x: 0.21377406, y: -0.020602345, z: -0.25870854, w: -0.062518775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.13055559, y: -0.071141995, z: -0.15270062, w: 0.9770244} + inSlope: {x: 0.11332361, y: -0.010740022, z: -0.13716014, w: -0.036287192} + outSlope: {x: 0.11332361, y: -0.010740022, z: -0.13716014, w: -0.036287192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.13450666, y: -0.07151311, z: -0.15748306, w: 0.9757013} + inSlope: {x: 0.00000021792948, y: -0.000000009778887, z: -0.000000014901161, w: -0.0000004824251} + outSlope: {x: 0.00000021792948, y: -0.000000009778887, z: -0.000000014901161, w: -0.0000004824251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.1305556, y: -0.071141995, z: -0.1527006, w: 0.9770243} + inSlope: {x: -0.113323495, y: 0.010740012, z: 0.13716012, w: 0.03628716} + outSlope: {x: -0.113323495, y: 0.010740012, z: 0.13716012, w: 0.03628716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.11939686, y: -0.07008111, z: -0.13919504, w: 0.98053956} + inSlope: {x: -0.21377422, y: 0.020602345, z: 0.25870848, w: 0.06251922} + outSlope: {x: -0.21377422, y: 0.020602345, z: 0.25870848, w: 0.06251922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.1020524, y: -0.06839502, z: -0.11820617, w: 0.9853602} + inSlope: {x: -0.29829425, y: 0.029492762, z: 0.3609269, w: 0.07432498} + outSlope: {x: -0.29829425, y: 0.029492762, z: 0.3609269, w: 0.07432498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.07962433, y: -0.06614874, z: -0.0910715, w: 0.99044955} + inSlope: {x: -0.36836338, y: 0.037610028, z: 0.44560084, w: 0.07116399} + outSlope: {x: -0.36836338, y: 0.037610028, z: 0.44560084, w: 0.07116399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.052937325, y: -0.06338035, z: -0.058792785, w: 0.9948487} + inSlope: {x: -0.42151594, y: 0.04462161, z: 0.5097549, w: 0.053958945} + outSlope: {x: -0.42151594, y: 0.04462161, z: 0.5097549, w: 0.053958945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.023422258, y: -0.0601992, z: -0.023104245, w: 0.99764407} + inSlope: {x: -0.45806238, y: 0.050402556, z: 0.55377895, w: 0.025487268} + outSlope: {x: -0.45806238, y: 0.050402556, z: 0.55377895, w: 0.025487268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.008137601, y: -0.05666002, z: 0.015044339, w: 0.998247} + inSlope: {x: -0.47697213, y: 0.05457788, z: 0.5764506, w: -0.0097721405} + outSlope: {x: -0.47697213, y: 0.05457788, z: 0.5764506, w: -0.0097721405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.040174082, y: -0.052922145, z: 0.053755898, w: 0.9963411} + inSlope: {x: -0.47819576, y: 0.05688142, z: 0.57773376, w: -0.047304325} + outSlope: {x: -0.47819576, y: 0.05688142, z: 0.57773376, w: -0.047304325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.07189709, y: -0.049075823, z: 0.09207557, w: 0.9919398} + inSlope: {x: -0.46134353, y: 0.056934744, z: 0.55718744, w: -0.08131392} + outSlope: {x: -0.46134353, y: 0.056934744, z: 0.55718744, w: -0.08131392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.10168649, y: -0.045330852, z: 0.12804748, w: 0.98549926} + inSlope: {x: -0.38926792, y: 0.04957319, z: 0.46999934, w: -0.09519392} + outSlope: {x: -0.38926792, y: 0.04957319, z: 0.46999934, w: -0.09519392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.12379943, y: -0.04246607, z: 0.15474209, w: 0.9792473} + inSlope: {x: -0.33169436, y: 0.042971767, z: 0.40041953, w: -0.09377995} + outSlope: {x: -0.33169436, y: 0.042971767, z: 0.40041953, w: -0.09377995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.0011789579, y: -0.045024186, z: 0.02615039, w: 0.99864286} + inSlope: {x: -0.00000066182173, y: -0.00000027939703, z: -0.00000008381911, w: 0} + outSlope: {x: -0.00000066182173, y: -0.00000027939703, z: -0.00000008381911, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.001179002, y: -0.045024205, z: 0.026150385, w: 0.99864286} + inSlope: {x: -0.19620258, y: -0.0628198, z: 0.20086327, w: -0.01386301} + outSlope: {x: -0.19620258, y: -0.0628198, z: 0.20086327, w: -0.01386301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.027339278, y: -0.05340015, z: 0.052932136, w: 0.99679446} + inSlope: {x: -0.42771575, y: -0.1357874, z: 0.43924028, w: -0.044584505} + outSlope: {x: -0.42771575, y: -0.1357874, z: 0.43924028, w: -0.044584505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.058207825, y: -0.06312921, z: 0.08471581, w: 0.99269825} + inSlope: {x: -0.47098, y: -0.14759603, z: 0.48489127, w: -0.0790089} + outSlope: {x: -0.47098, y: -0.14759603, z: 0.48489127, w: -0.0790089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.09013666, y: -0.07307964, z: 0.117584355, w: 0.98625994} + inSlope: {x: -0.45984286, y: -0.14284962, z: 0.4722978, w: -0.1076832} + outSlope: {x: -0.45984286, y: -0.14284962, z: 0.4722978, w: -0.1076832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.11952015, y: -0.082175806, z: 0.14768879, w: 0.9783405} + inSlope: {x: -0.3954218, y: -0.12252247, z: 0.40297496, w: -0.11674281} + outSlope: {x: -0.3954218, y: -0.12252247, z: 0.40297496, w: -0.11674281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.14285952, y: -0.08941595, z: 0.1713143, w: 0.97069424} + inSlope: {x: -0.2793781, y: -0.08762339, z: 0.2789386, w: -0.095362455} + outSlope: {x: -0.2793781, y: -0.08762339, z: 0.2789386, w: -0.095362455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.15677053, y: -0.09385891, z: 0.18488057, w: 0.9656255} + inSlope: {x: -0.112788446, y: -0.0386462, z: 0.10144862, w: -0.039855428} + outSlope: {x: -0.112788446, y: -0.0386462, z: 0.10144862, w: -0.039855428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.15789796, y: -0.094568774, z: 0.18484077, w: 0.9653802} + inSlope: {x: 0.06389416, y: 0.012619909, z: -0.08758216, w: 0.027494352} + outSlope: {x: 0.06389416, y: 0.012619909, z: -0.08758216, w: 0.027494352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.14825128, y: -0.09217625, z: 0.17320292, w: 0.96929145} + inSlope: {x: 0.18853652, y: 0.048347697, z: -0.22294948, w: 0.071855895} + outSlope: {x: 0.18853652, y: 0.048347697, z: -0.22294948, w: 0.071855895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.13275975, y: -0.08812241, z: 0.15511416, w: 0.974961} + inSlope: {x: 0.26905963, y: 0.07155755, z: -0.3116198, w: 0.091059744} + outSlope: {x: 0.26905963, y: 0.07155755, z: -0.3116198, w: 0.091059744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.1123767, y: -0.08263525, z: 0.13165365, w: 0.98143274} + inSlope: {x: 0.3350907, y: 0.091282085, z: -0.38390398, w: 0.09600216} + outSlope: {x: 0.3350907, y: 0.091282085, z: -0.38390398, w: 0.09600216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.08808103, y: -0.07595148, z: 0.10392701, w: 0.98776126} + inSlope: {x: 0.38612878, y: 0.107315734, z: -0.4392686, w: 0.087635} + outSlope: {x: 0.38612878, y: 0.107315734, z: -0.4392686, w: 0.087635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.06089291, y: -0.0683265, z: 0.07308456, w: 0.9931174} + inSlope: {x: 0.42153573, y: 0.11934123, z: -0.47701615, w: 0.06832799} + outSlope: {x: 0.42153573, y: 0.11934123, z: -0.47701615, w: 0.06832799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.031876322, y: -0.06003933, z: 0.040324915, w: 0.99687165} + inSlope: {x: 0.44072258, y: 0.12700275, z: -0.49649757, w: 0.041513436} + outSlope: {x: 0.44072258, y: 0.12700275, z: -0.49649757, w: 0.041513436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.0021298516, y: -0.05139279, z: 0.006884827, w: 0.9986525} + inSlope: {x: 0.44330227, y: 0.12996879, z: -0.49728847, w: 0.011300556} + outSlope: {x: 0.44330227, y: 0.12996879, z: -0.49728847, w: 0.011300556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.0272307, y: -0.042710144, z: -0.025980271, w: 0.9983784} + inSlope: {x: 0.42917544, y: 0.12797932, z: -0.47928622, w: -0.017939972} + outSlope: {x: 0.42917544, y: 0.12797932, z: -0.47928622, w: -0.017939972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.05509349, y: -0.034328897, z: -0.05701994, w: 0.9962605} + inSlope: {x: 0.39798814, y: 0.12069997, z: -0.44211474, w: -0.04191581} + outSlope: {x: 0.39798814, y: 0.12069997, z: -0.44211474, w: -0.04191581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.080295734, y: -0.02661683, z: -0.08492885, w: 0.9927896} + inSlope: {x: 0.35183865, y: 0.108579904, z: -0.38811138, w: -0.057300977} + outSlope: {x: 0.35183865, y: 0.108579904, z: -0.38811138, w: -0.057300977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.102005266, y: -0.01985159, z: -0.108768076, w: 0.9886204} + inSlope: {x: 0.28982112, y: 0.0911852, z: -0.3163185, w: -0.061225057} + outSlope: {x: 0.28982112, y: 0.0911852, z: -0.3163185, w: -0.061225057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.11893851, y: -0.0144588165, z: -0.12710461, w: 0.9846263} + inSlope: {x: 0.2122998, y: 0.068563245, z: -0.22714476, w: -0.052540056} + outSlope: {x: 0.2122998, y: 0.068563245, z: -0.22714476, w: -0.052540056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.13031188, y: -0.010709832, z: -0.13905402, w: 0.98161507} + inSlope: {x: 0.07865962, y: 0.02940536, z: -0.0707206, w: -0.019039692} + outSlope: {x: 0.07865962, y: 0.02940536, z: -0.0707206, w: -0.019039692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.12942645, y: -0.010538105, z: -0.136534, w: 0.9820877} + inSlope: {x: -0.12567645, y: -0.029700609, z: 0.1719359, w: 0.037480317} + outSlope: {x: -0.12567645, y: -0.029700609, z: 0.1719359, w: 0.037480317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.11355503, y: -0.014669909, z: -0.11612924, w: 0.98661244} + inSlope: {x: -0.31302246, y: -0.083039746, z: 0.39514887, w: 0.07717349} + outSlope: {x: -0.31302246, y: -0.083039746, z: 0.39514887, w: 0.07717349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.08769016, y: -0.02161006, z: -0.08384754, w: 0.99237746} + inSlope: {x: -0.42841953, y: -0.114794195, z: 0.5320917, w: 0.07740371} + outSlope: {x: -0.42841953, y: -0.114794195, z: 0.5320917, w: 0.07740371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.056432478, y: -0.029975787, z: -0.045183755, w: 0.9969329} + inSlope: {x: -0.46886566, y: -0.12548602, z: 0.5799573, w: 0.068332024} + outSlope: {x: -0.46886566, y: -0.12548602, z: 0.5799573, w: 0.068332024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.1650834, y: 0.64566773, z: -0.07127721, w: 0.74214566} + inSlope: {x: 0.00000044703526, y: 0.0000008940705, z: -0.00000022351763, w: -0.0000008940705} + outSlope: {x: 0.00000044703526, y: 0.0000008940705, z: -0.00000022351763, w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.16508336, y: 0.6456678, z: -0.07127722, w: 0.7421456} + inSlope: {x: 0.04755103, y: 0.0048776018, z: 0.008329888, w: 0.0069183176} + outSlope: {x: 0.04755103, y: 0.0048776018, z: 0.008329888, w: 0.0069183176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.15874326, y: 0.6463181, z: -0.07016656, w: 0.7430681} + inSlope: {x: 0.19785762, y: 0.018902836, z: 0.034749914, w: 0.027180117} + outSlope: {x: 0.19785762, y: 0.018902836, z: 0.034749914, w: 0.027180117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.1387023, y: 0.6481882, z: -0.06664389, w: 0.7457696} + inSlope: {x: 0.42306978, y: 0.034133773, z: 0.074705675, w: 0.05085019} + outSlope: {x: 0.42306978, y: 0.034133773, z: 0.074705675, w: 0.05085019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.10233394, y: 0.65086925, z: -0.0602058, w: 0.7498481} + inSlope: {x: 0.6419329, y: 0.03648478, z: 0.11433089, w: 0.05945614} + outSlope: {x: 0.6419329, y: 0.03648478, z: 0.11433089, w: 0.05945614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.053111333, y: 0.6530528, z: -0.05139979, w: 0.7536971} + inSlope: {x: 0.7588502, y: 0.020280201, z: 0.1366152, w: 0.043863993} + outSlope: {x: 0.7588502, y: 0.020280201, z: 0.1366152, w: 0.043863993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.0011540059, y: 0.6535733, z: -0.041990455, w: 0.75569665} + inSlope: {x: 0.78445655, y: -0.0060975607, z: 0.14295512, w: 0.014051659} + outSlope: {x: 0.78445655, y: -0.0060975607, z: 0.14295512, w: 0.014051659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.051482774, y: 0.6522398, z: -0.032339126, w: 0.75557065} + inSlope: {x: 0.77996856, y: -0.03335464, z: 0.14388193, w: -0.017586367} + outSlope: {x: 0.77996856, y: -0.03335464, z: 0.14388193, w: -0.017586367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.102841705, y: 0.649126, z: -0.022806216, w: 0.7533518} + inSlope: {x: 0.7464064, y: -0.057601266, z: 0.13933241, w: -0.04652509} + outSlope: {x: 0.7464064, y: -0.057601266, z: 0.13933241, w: -0.04652509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.1510037, y: 0.6445596, z: -0.013761457, w: 0.7493673} + inSlope: {x: 0.6846569, y: -0.07524798, z: 0.12923837, w: -0.06859164} + outSlope: {x: 0.6846569, y: -0.07524798, z: 0.12923837, w: -0.06859164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.19412938, y: 0.6390929, z: -0.005574418, w: 0.74420625} + inSlope: {x: 0.5960755, y: -0.08332066, z: 0.113655835, w: -0.08030899} + outSlope: {x: 0.5960755, y: -0.08332066, z: 0.113655835, w: -0.08030899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.23048036, y: 0.6334502, z: 0.0013926402, w: 0.73865944} + inSlope: {x: 0.48213178, y: -0.079783276, z: 0.092721745, w: -0.07928394} + outSlope: {x: 0.48213178, y: -0.079783276, z: 0.092721745, w: -0.07928394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.25841355, y: 0.62845516, z: 0.0067884685, w: 0.73363507} + inSlope: {x: 0.34398705, y: -0.06382546, z: 0.06659542, w: -0.06454742} + outSlope: {x: 0.34398705, y: -0.06382546, z: 0.06659542, w: -0.06454742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.27634525, y: 0.62494016, z: 0.010272021, w: 0.7300531} + inSlope: {x: 0.18204975, y: -0.036125366, z: 0.035394646, w: -0.036873706} + outSlope: {x: 0.18204975, y: -0.036125366, z: 0.035394646, w: -0.036873706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.28268683, y: 0.62363845, z: 0.0115077505, w: 0.7287186} + inSlope: {x: 0.00000016763806, y: -0.000000034458935, z: -0.00000019744039, w: -0.000000035390258} + outSlope: {x: 0.00000016763806, y: -0.000000034458935, z: -0.00000019744039, w: -0.000000035390258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.27634525, y: 0.62494016, z: 0.010271991, w: 0.7300531} + inSlope: {x: -0.18204959, y: 0.036124885, z: -0.035394542, w: 0.036874115} + outSlope: {x: -0.18204959, y: 0.036124885, z: -0.035394542, w: 0.036874115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.25841355, y: 0.6284551, z: 0.0067884782, w: 0.7336351} + inSlope: {x: -0.34398738, y: 0.06382501, z: -0.066595115, w: 0.06454742} + outSlope: {x: -0.34398738, y: 0.06382501, z: -0.066595115, w: 0.06454742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.23048031, y: 0.63345015, z: 0.0013926502, w: 0.73865944} + inSlope: {x: -0.48119414, y: 0.07965051, z: -0.0925429, w: 0.079154745} + outSlope: {x: -0.48119414, y: 0.07965051, z: -0.0925429, w: 0.079154745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.1942544, y: 0.63907516, z: -0.005550564, w: 0.7441891} + inSlope: {x: -0.5960753, y: 0.083321564, z: -0.11365594, w: 0.08030899} + outSlope: {x: -0.5960753, y: 0.083321564, z: -0.11365594, w: 0.08030899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.15100369, y: 0.6445597, z: -0.013761462, w: 0.7493673} + inSlope: {x: -0.68442243, y: 0.07528968, z: -0.12919837, w: 0.06864584} + outSlope: {x: -0.68442243, y: 0.07528968, z: -0.12919837, w: 0.06864584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.10299816, y: 0.6491138, z: -0.022776997, w: 0.75334185} + inSlope: {x: -0.746408, y: 0.05760094, z: -0.13933264, w: 0.046525195} + outSlope: {x: -0.746408, y: 0.05760094, z: -0.13933264, w: 0.046525195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.051482722, y: 0.6522398, z: -0.03233913, w: 0.75557065} + inSlope: {x: -0.77990746, y: 0.03343686, z: -0.14387608, w: 0.017683372} + outSlope: {x: -0.77990746, y: 0.03343686, z: -0.14387608, w: 0.017683372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.0009895846, y: 0.653572, z: -0.04196049, w: 0.75569963} + inSlope: {x: -0.7844552, y: 0.0060970783, z: -0.14295489, w: -0.014051663} + outSlope: {x: -0.7844552, y: 0.0060970783, z: -0.14295489, w: -0.014051663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.053111386, y: 0.65305275, z: -0.051399797, w: 0.7536971} + inSlope: {x: -0.7590151, y: -0.020205546, z: -0.13664997, w: -0.043782186} + outSlope: {x: -0.7590151, y: -0.020205546, z: -0.13664997, w: -0.043782186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.1021915, y: 0.65087795, z: -0.060180467, w: 0.749862} + inSlope: {x: -0.6419326, y: -0.036484335, z: -0.11433101, w: -0.05945614} + outSlope: {x: -0.6419326, y: -0.036484335, z: -0.11433101, w: -0.05945614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.13870232, y: 0.6481882, z: -0.066643916, w: 0.7457696} + inSlope: {x: -0.5476628, y: -0.04034672, z: -0.096951835, w: -0.06138599} + outSlope: {x: -0.5476628, y: -0.04034672, z: -0.096951835, w: -0.06138599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.081053816, y: 0.040226422, z: -0.08538884, w: 0.99223024} + inSlope: {x: 0.000000111758816, y: 0, z: 0.000000111758816, w: 0} + outSlope: {x: 0.000000111758816, y: 0, z: 0.000000111758816, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.08105382, y: 0.040226422, z: -0.08538883, w: 0.99223024} + inSlope: {x: 0.022596572, y: -0.000742777, z: -0.06628739, w: -0.0078539625} + outSlope: {x: 0.022596572, y: -0.000742777, z: -0.06628739, w: -0.0078539625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.08406669, y: 0.040127385, z: -0.09422715, w: 0.99118304} + inSlope: {x: 0.10700083, y: -0.0004864032, z: -0.29359496, w: -0.04065908} + outSlope: {x: 0.10700083, y: -0.0004864032, z: -0.29359496, w: -0.04065908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.09532063, y: 0.04016157, z: -0.1245349, w: 0.986809} + inSlope: {x: 0.20050031, y: 0.0026488507, z: -0.52522516, w: -0.088832945} + outSlope: {x: 0.20050031, y: 0.0026488507, z: -0.52522516, w: -0.088832945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.11080008, y: 0.040480565, z: -0.16425721, w: 0.97933865} + inSlope: {x: 0.22804543, y: 0.0038755722, z: -0.58877635, w: -0.12446937} + outSlope: {x: 0.22804543, y: 0.0038755722, z: -0.58877635, w: -0.12446937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.12572666, y: 0.04067831, z: -0.20303833, w: 0.9702131} + inSlope: {x: 0.19587147, y: -0.00090331864, z: -0.53002274, w: -0.13397646} + outSlope: {x: 0.19587147, y: -0.00090331864, z: -0.53002274, w: -0.13397646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.13691625, y: 0.040360123, z: -0.23492685, w: 0.96147513} + inSlope: {x: 0.11693716, y: -0.011311557, z: -0.3836215, w: -0.10680477} + outSlope: {x: 0.11693716, y: -0.011311557, z: -0.3836215, w: -0.10680477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.14131826, y: 0.039170105, z: -0.25418782, w: 0.9559725} + inSlope: {x: -0.0074255913, y: -0.026974134, z: -0.15159814, w: -0.03659252} + outSlope: {x: -0.0074255913, y: -0.026974134, z: -0.15159814, w: -0.03659252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.13592617, y: 0.036763575, z: -0.25513992, w: 0.95659614} + inSlope: {x: -0.13488898, y: -0.042459212, z: 0.08893732, w: 0.043251418} + outSlope: {x: -0.13488898, y: -0.042459212, z: 0.08893732, w: 0.043251418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.12333304, y: 0.03350887, z: -0.24232948, w: 0.96173936} + inSlope: {x: -0.22397394, y: -0.055307128, z: 0.24482332, w: 0.09078825} + outSlope: {x: -0.22397394, y: -0.055307128, z: 0.24482332, w: 0.09078825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.10606296, y: 0.029389286, z: -0.2224968, w: 0.96870124} + inSlope: {x: -0.28735584, y: -0.06684955, z: 0.34179947, w: 0.11032696} + outSlope: {x: -0.28735584, y: -0.06684955, z: 0.34179947, w: 0.11032696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.08501896, y: 0.024595605, z: -0.19675626, w: 0.9764496} + inSlope: {x: -0.33703333, y: -0.07551057, z: 0.42171362, w: 0.114699855} + outSlope: {x: -0.33703333, y: -0.07551057, z: 0.42171362, w: 0.114699855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.06112523, y: 0.01932122, z: -0.16626836, w: 0.98399454} + inSlope: {x: -0.37261128, y: -0.08122744, z: 0.48371017, w: 0.10529602} + outSlope: {x: -0.37261128, y: -0.08122744, z: 0.48371017, w: 0.10529602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.035337508, y: 0.01376529, z: -0.13226163, w: 0.99048907} + inSlope: {x: -0.39362788, y: -0.08391254, z: 0.52674353, w: 0.084844604} + outSlope: {x: -0.39362788, y: -0.08391254, z: 0.52674353, w: 0.084844604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.008641563, y: 0.008132893, z: -0.09603596, w: 0.99530715} + inSlope: {x: -0.3997195, y: -0.08349158, z: 0.5498296, w: 0.05705101} + outSlope: {x: -0.3997195, y: -0.08349158, z: 0.5498296, w: 0.05705101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.01795847, y: 0.0026330703, z: -0.058950964, w: 0.99809587} + inSlope: {x: -0.39074337, y: -0.079932354, z: 0.5522442, w: 0.026202898} + outSlope: {x: -0.39074337, y: -0.079932354, z: 0.5522442, w: 0.026202898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.0434576, y: -0.0025247643, z: -0.022403335, w: 0.9988009} + inSlope: {x: -0.36683115, y: -0.07325876, z: 0.53363454, w: -0.003256652} + outSlope: {x: -0.36683115, y: -0.07325876, z: 0.53363454, w: -0.003256652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.066869244, y: -0.007134754, z: 0.012200236, w: 0.99766165} + inSlope: {x: -0.32793823, y: -0.063469976, z: 0.49334997, w: -0.02710509} + outSlope: {x: -0.32793823, y: -0.063469976, z: 0.49334997, w: -0.02710509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.087182656, y: -0.01098742, z: 0.043376595, w: 0.99518687} + inSlope: {x: -0.27593678, y: -0.050928697, z: 0.43378016, w: -0.042117428} + outSlope: {x: -0.27593678, y: -0.050928697, z: 0.43378016, w: -0.042117428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.10366078, y: -0.01392524, z: 0.07003754, w: 0.992046} + inSlope: {x: -0.21035585, y: -0.035584763, z: 0.35363725, w: -0.045801893} + outSlope: {x: -0.21035585, y: -0.035584763, z: 0.35363725, w: -0.045801893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.115230076, y: -0.01573205, z: 0.09052818, w: 0.98907995} + inSlope: {x: -0.13143899, y: -0.01748913, z: 0.25316954, w: -0.037436076} + outSlope: {x: -0.13143899, y: -0.01748913, z: 0.25316954, w: -0.037436076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.12118596, y: -0.016257122, z: 0.10379344, w: 0.9870545} + inSlope: {x: 0.016846474, y: 0.018570457, z: 0.07577837, w: -0.005108755} + outSlope: {x: 0.016846474, y: 0.018570457, z: 0.07577837, w: -0.005108755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.11298385, y: -0.013255981, z: 0.100631945, w: 0.9883988} + inSlope: {x: 0.26030865, y: 0.08009525, z: -0.20007871, w: 0.046458103} + outSlope: {x: 0.26030865, y: 0.08009525, z: -0.20007871, w: 0.046458103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.086478144, y: -0.005577756, z: 0.077116296, w: 0.99324894} + inSlope: {x: 0.48841363, y: 0.13797495, z: -0.45415568, w: 0.07228158} + outSlope: {x: 0.48841363, y: 0.13797495, z: -0.45415568, w: 0.07228158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.047862094, y: 0.0051406617, z: 0.04007791, w: 0.9980363} + inSlope: {x: 0.6281331, y: 0.17271365, z: -0.6095826, w: 0.04939784} + outSlope: {x: 0.6281331, y: 0.17271365, z: -0.6095826, w: 0.04939784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.002727141, y: 0.017450709, z: -0.0041613043, w: 0.9998353} + inSlope: {x: 0.67702496, y: 0.18465088, z: -0.6635889, w: 0.026984837} + outSlope: {x: 0.67702496, y: 0.18465088, z: -0.6635889, w: 0.026984837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.15027462, y: -0.67364967, z: -0.058395036, w: 0.7212515} + inSlope: {x: 0.0000006705529, y: 0, z: -0.00000055879406, w: 0} + outSlope: {x: 0.0000006705529, y: 0, z: -0.00000055879406, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.15027466, y: -0.67364967, z: -0.058395073, w: 0.7212515} + inSlope: {x: -0.04372016, y: -0.0033102962, z: 0.0047410326, w: 0.0062173666} + outSlope: {x: -0.04372016, y: -0.0033102962, z: 0.0047410326, w: 0.0062173666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.14444527, y: -0.67409104, z: -0.0577629, w: 0.72208047} + inSlope: {x: -0.18186642, y: -0.012585798, z: 0.019795898, w: 0.024575697} + outSlope: {x: -0.18186642, y: -0.012585798, z: 0.019795898, w: 0.024575697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.12602577, y: -0.6753278, z: -0.055755615, w: 0.72452825} + inSlope: {x: -0.38865757, y: -0.021529634, z: 0.042634733, w: 0.04670126} + outSlope: {x: -0.38865757, y: -0.021529634, z: 0.042634733, w: 0.04670126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.09262425, y: -0.67696166, z: -0.052078266, w: 0.7283073} + inSlope: {x: -0.58928883, y: -0.019560922, z: 0.06544744, w: 0.056628637} + outSlope: {x: -0.58928883, y: -0.019560922, z: 0.06544744, w: 0.056628637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.047453996, y: -0.6779359, z: -0.047029298, w: 0.73207873} + inSlope: {x: -0.696184, y: -0.0035673415, z: 0.0785204, w: 0.045716062} + outSlope: {x: -0.696184, y: -0.0035673415, z: 0.0785204, w: 0.045716062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.00020019176, y: -0.6774373, z: -0.04160889, w: 0.7344028} + inSlope: {x: -0.71946204, y: 0.019474197, z: 0.082569115, w: 0.02213674} + outSlope: {x: -0.71946204, y: 0.019474197, z: 0.082569115, w: 0.02213674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.048474178, y: -0.67533934, z: -0.036020093, w: 0.7350303} + inSlope: {x: -0.7154693, y: 0.042730313, z: 0.08354677, w: -0.003314766} + outSlope: {x: -0.7154693, y: 0.042730313, z: 0.08354677, w: -0.003314766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.09559601, y: -0.67173994, z: -0.03046933, w: 0.7339608} + inSlope: {x: -0.68511546, y: 0.06289818, z: 0.08135313, w: -0.027003096} + outSlope: {x: -0.68511546, y: 0.06289818, z: 0.08135313, w: -0.027003096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.13982297, y: -0.6669529, z: -0.025173001, w: 0.7314299} + inSlope: {x: -0.6290774, y: 0.07692436, z: 0.07587707, w: -0.045576967} + outSlope: {x: -0.6290774, y: 0.07692436, z: 0.07587707, w: -0.045576967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.17947307, y: -0.66148335, z: -0.020352378, w: 0.7278839} + inSlope: {x: -0.5483866, y: 0.08227416, z: 0.06707953, w: -0.056226753} + outSlope: {x: -0.5483866, y: 0.08227416, z: 0.06707953, w: -0.056226753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.21294111, y: -0.65598303, z: -0.016229073, w: 0.723933} + inSlope: {x: -0.44416028, y: 0.077209696, z: 0.054980204, w: -0.057001017} + outSlope: {x: -0.44416028, y: 0.077209696, z: 0.054980204, w: -0.057001017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.23869438, y: -0.65118873, z: -0.013021692, w: 0.72028375} + inSlope: {x: -0.31728128, y: 0.06103462, z: 0.039635852, w: -0.047094718} + outSlope: {x: -0.31728128, y: 0.06103462, z: 0.039635852, w: -0.047094718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.25524524, y: -0.6478451, z: -0.010944298, w: 0.7176537} + inSlope: {x: -0.16805899, y: 0.034326497, z: 0.021117233, w: -0.027110454} + outSlope: {x: -0.16805899, y: 0.034326497, z: 0.021117233, w: -0.027110454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.26110223, y: -0.64661187, z: -0.010206063, w: 0.716669} + inSlope: {x: -0.00000015646219, y: 0.0000004796311, z: 0.000000019557774, w: -0.000000026542693} + outSlope: {x: -0.00000015646219, y: 0.0000004796311, z: 0.000000019557774, w: -0.000000026542693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.25524524, y: -0.64784503, z: -0.010944298, w: 0.7176537} + inSlope: {x: 0.16805862, y: -0.034326464, z: -0.02111729, w: 0.02710998} + outSlope: {x: 0.16805862, y: -0.034326464, z: -0.02111729, w: 0.02710998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.23869441, y: -0.65118873, z: -0.013021702, w: 0.7202837} + inSlope: {x: 0.31728128, y: -0.061035067, z: -0.039635696, w: 0.047094718} + outSlope: {x: 0.31728128, y: -0.061035067, z: -0.039635696, w: 0.047094718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.21294111, y: -0.65598303, z: -0.016229052, w: 0.723933} + inSlope: {x: 0.44329774, y: -0.07707827, z: -0.05487436, w: 0.056911163} + outSlope: {x: 0.44329774, y: -0.07707827, z: -0.05487436, w: 0.056911163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.17958811, y: -0.6614658, z: -0.020338276, w: 0.72787184} + inSlope: {x: 0.5483866, y: -0.08227416, z: -0.06707961, w: 0.056226306} + outSlope: {x: 0.5483866, y: -0.08227416, z: -0.06707961, w: 0.056226306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.13982297, y: -0.6669529, z: -0.025172992, w: 0.7314298} + inSlope: {x: 0.6288643, y: -0.07695578, z: -0.07585491, w: 0.045623973} + outSlope: {x: 0.6288643, y: -0.07695578, z: -0.07585491, w: 0.045623973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.09573962, y: -0.6717266, z: -0.030452255, w: 0.733955} + inSlope: {x: 0.68511665, y: -0.062898755, z: -0.08135308, w: 0.027003612} + outSlope: {x: 0.68511665, y: -0.062898755, z: -0.08135308, w: 0.027003612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.048474174, y: -0.6753394, z: -0.03602006, w: 0.7350303} + inSlope: {x: 0.7154138, y: -0.042799994, z: -0.0835446, w: 0.003393014} + outSlope: {x: 0.7154138, y: -0.042799994, z: -0.0835446, w: 0.003393014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.0003510305, y: -0.67743325, z: -0.041591544, w: 0.7344074} + inSlope: {x: 0.71946055, y: -0.019473694, z: -0.082568884, w: -0.022136722} + outSlope: {x: 0.71946055, y: -0.019473694, z: -0.082568884, w: -0.022136722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.047453977, y: -0.6779359, z: -0.047029253, w: 0.73207873} + inSlope: {x: 0.696334, y: 0.0035011803, z: -0.07854141, w: -0.045652136} + outSlope: {x: 0.696334, y: 0.0035011803, z: -0.07854141, w: -0.045652136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.092493415, y: -0.6769664, z: -0.052063722, w: 0.7283205} + inSlope: {x: 0.5892886, y: 0.019560922, z: -0.06544739, w: -0.056628637} + outSlope: {x: 0.5892886, y: 0.019560922, z: -0.06544739, w: -0.056628637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.12602572, y: -0.6753278, z: -0.055755563, w: 0.72452825} + inSlope: {x: 0.50298506, y: 0.024579788, z: -0.055377666, w: -0.05688345} + outSlope: {x: 0.50298506, y: 0.024579788, z: -0.055377666, w: -0.05688345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.085486665, y: 0.006234421, z: -0.079878375, w: 0.99311256} + inSlope: {x: -0.00000022351763, y: -0.000000020954777, z: -0.00000033527644, w: 0} + outSlope: {x: -0.00000022351763, y: -0.000000020954777, z: -0.00000033527644, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.08548668, y: 0.0062344195, z: -0.0798784, w: 0.99311256} + inSlope: {x: -0.003198705, y: -0.0036302372, z: -0.043791965, w: -0.0039061941} + outSlope: {x: -0.003198705, y: -0.0036302372, z: -0.043791965, w: -0.0039061941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.08591316, y: 0.00575039, z: -0.0857173, w: 0.99259174} + inSlope: {x: -0.024998246, y: -0.017957129, z: -0.1974071, w: -0.020625252} + outSlope: {x: -0.024998246, y: -0.017957129, z: -0.1974071, w: -0.020625252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.08881979, y: 0.0038401312, z: -0.10619939, w: 0.9903625} + inSlope: {x: -0.05936861, y: -0.034781367, z: -0.35824418, w: -0.044947546} + outSlope: {x: -0.05936861, y: -0.034781367, z: -0.35824418, w: -0.044947546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.093828976, y: 0.0011128719, z: -0.13348322, w: 0.98659873} + inSlope: {x: -0.07286228, y: -0.040396083, z: -0.40485007, w: -0.061546475} + outSlope: {x: -0.07286228, y: -0.040396083, z: -0.40485007, w: -0.061546475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.09853475, y: -0.0015460078, z: -0.16017935, w: 0.98215634} + inSlope: {x: -0.052477412, y: -0.03451032, z: -0.36211476, w: -0.06334266} + outSlope: {x: -0.052477412, y: -0.03451032, z: -0.36211476, w: -0.06334266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.10082596, y: -0.0034884992, z: -0.18176514, w: 0.97815305} + inSlope: {x: -0.0007601287, y: -0.018925369, z: -0.25207984, w: -0.04569684} + outSlope: {x: -0.0007601287, y: -0.018925369, z: -0.25207984, w: -0.04569684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.0986361, y: -0.004069388, z: -0.19378996, w: 0.97606343} + inSlope: {x: 0.08188445, y: 0.006317639, z: -0.07527515, w: -0.0063738283} + outSlope: {x: 0.08188445, y: 0.006317639, z: -0.07527515, w: -0.0063738283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.08990804, y: -0.0026461482, z: -0.19180182, w: 0.9773032} + inSlope: {x: 0.16580078, y: 0.032280356, z: 0.10827552, w: 0.03555128} + outSlope: {x: 0.16580078, y: 0.032280356, z: 0.10827552, w: 0.03555128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.0765293, y: 0.00023466576, z: -0.17935319, w: 0.9808036} + inSlope: {x: 0.22963953, y: 0.050551936, z: 0.22985044, w: 0.058761798} + outSlope: {x: 0.22963953, y: 0.050551936, z: 0.22985044, w: 0.058761798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.05928942, y: 0.0040941136, z: -0.16115507, w: 0.9851381} + inSlope: {x: 0.28120548, y: 0.06366349, z: 0.30860218, w: 0.06593904} + outSlope: {x: 0.28120548, y: 0.06366349, z: 0.30860218, w: 0.06593904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.03903527, y: 0.008723123, z: -0.13820627, w: 0.9895955} + inSlope: {x: 0.31996396, y: 0.07361691, z: 0.37211514, w: 0.06289026} + outSlope: {x: 0.31996396, y: 0.07361691, z: 0.37211514, w: 0.06289026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.016627597, y: 0.013909692, z: -0.11153977, w: 0.9935235} + inSlope: {x: 0.34568954, y: 0.08037378, z: 0.4198148, w: 0.051024158} + outSlope: {x: 0.34568954, y: 0.08037378, z: 0.4198148, w: 0.051024158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.0070566228, y: 0.019439617, z: -0.08223102, w: 0.9963987} + inSlope: {x: 0.35817552, y: 0.08391683, z: 0.45107993, w: 0.03265503} + outSlope: {x: 0.35817552, y: 0.08391683, z: 0.45107993, w: 0.03265503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.031129092, y: 0.025098592, z: -0.05139584, w: 0.9978775} + inSlope: {x: 0.3573273, y: 0.08426668, z: 0.4653815, w: 0.010715883} + outSlope: {x: 0.3573273, y: 0.08426668, z: 0.4653815, w: 0.010715883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.054700304, y: 0.030675184, z: -0.020180104, w: 0.9978275} + inSlope: {x: 0.34322196, y: 0.081489965, z: 0.46238908, w: -0.011547366} + outSlope: {x: 0.34322196, y: 0.081489965, z: 0.46238908, w: -0.011547366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.07689206, y: 0.03596393, z: 0.01025609, w: 0.99633783} + inSlope: {x: 0.3161184, y: 0.07569626, z: 0.44201243, w: -0.030893713} + outSlope: {x: 0.3161184, y: 0.07569626, z: 0.44201243, w: -0.030893713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.09684938, y: 0.04076801, z: 0.03875483, w: 0.9937083} + inSlope: {x: 0.27606857, y: 0.06693663, z: 0.40383303, w: -0.04432176} + outSlope: {x: 0.27606857, y: 0.06693663, z: 0.40383303, w: -0.04432176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.11370117, y: 0.044888806, z: 0.064100444, w: 0.99042827} + inSlope: {x: 0.22461522, y: 0.05561845, z: 0.34978977, w: -0.049782295} + outSlope: {x: 0.22461522, y: 0.05561845, z: 0.34978977, w: -0.049782295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.12679805, y: 0.048183795, z: 0.08539342, w: 0.9870707} + inSlope: {x: 0.161359, y: 0.041646253, z: 0.2787922, w: -0.045696393} + outSlope: {x: 0.161359, y: 0.041646253, z: 0.2787922, w: -0.045696393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.13521568, y: 0.050441634, z: 0.1012727, w: 0.9843354} + inSlope: {x: 0.08630563, y: 0.025025649, z: 0.19085081, w: -0.031893283} + outSlope: {x: 0.08630563, y: 0.025025649, z: 0.19085081, w: -0.031893283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.13830546, y: 0.051520545, z: 0.11084017, w: 0.98281825} + inSlope: {x: -0.060218148, y: -0.0063299397, z: 0.03125322, w: 0.0050644036} + outSlope: {x: -0.060218148, y: -0.0063299397, z: 0.03125322, w: 0.0050644036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.12718657, y: 0.049597636, z: 0.105439775, w: 0.9850107} + inSlope: {x: -0.3075436, y: -0.05833196, z: -0.22281244, w: 0.061196387} + outSlope: {x: -0.3075436, y: -0.05833196, z: -0.22281244, w: 0.061196387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.09729964, y: 0.04374295, z: 0.08113185, w: 0.99097776} + inSlope: {x: -0.54147995, y: -0.10783529, z: -0.45889997, w: 0.089048974} + outSlope: {x: -0.54147995, y: -0.10783529, z: -0.45889997, w: 0.089048974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.054989304, y: 0.03521961, z: 0.044253167, w: 0.99688387} + inSlope: {x: -0.68514144, y: -0.13921995, z: -0.6037204, w: 0.06515449} + outSlope: {x: -0.68514144, y: -0.13921995, z: -0.6037204, w: 0.06515449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.005947535, y: 0.025180308, z: 0.0006358767, w: 0.999665} + inSlope: {x: -0.73562723, y: -0.15058967, z: -0.65426, w: 0.04171733} + outSlope: {x: -0.73562723, y: -0.15058967, z: -0.65426, w: 0.04171733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.026176242, y: 0.9996318, z: 0.00018700598, w: 0.0071397605} + inSlope: {x: -0.13086443, y: 0.0028556613, z: -0.0009353233, w: 0.000020514728} + outSlope: {x: -0.13086443, y: 0.0028556613, z: -0.0009353233, w: 0.000020514728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.017451955, y: 0.9998222, z: 0.00012465115, w: 0.007141128} + inSlope: {x: -0.21251369, y: 0.0025525712, z: -0.0015182209, w: 0.000018293522} + outSlope: {x: -0.21251369, y: 0.0025525712, z: -0.0015182209, w: 0.000018293522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.0021588884, y: 0.99997216, z: -0.000015423291, w: 0.0071421997} + inSlope: {x: -0.31728068, y: -0.0011743534, z: -0.0022662394, w: -0.000008388837} + outSlope: {x: -0.31728068, y: -0.0011743534, z: -0.0022662394, w: -0.000008388837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.024852175, y: 0.9996656, z: -0.00017751442, w: 0.0071400097} + inSlope: {x: -0.34954464, y: -0.008905828, z: -0.0024966886, w: -0.00006361166} + outSlope: {x: -0.34954464, y: -0.008905828, z: -0.0024966886, w: -0.00006361166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.048764877, y: 0.9987847, z: -0.00034831537, w: 0.007133718} + inSlope: {x: -0.35386738, y: -0.017167943, z: -0.0025275648, w: -0.00012261688} + outSlope: {x: -0.35386738, y: -0.017167943, z: -0.0025275648, w: -0.00012261688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.07203445, y: 0.99737656, z: -0.0005145227, w: 0.0071236608} + inSlope: {x: -0.3303276, y: -0.023447894, z: -0.0023594284, w: -0.00016747408} + outSlope: {x: -0.3303276, y: -0.023447894, z: -0.0023594284, w: -0.00016747408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.092808515, y: 0.99565834, z: -0.0006629055, w: 0.0071113883} + inSlope: {x: -0.27912715, y: -0.025410378, z: -0.0019937232, w: -0.00018149283} + outSlope: {x: -0.27912715, y: -0.025410378, z: -0.0019937232, w: -0.00018149283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.109251365, y: 0.9939885, z: -0.0007803522, w: 0.0070994617} + inSlope: {x: -0.20050643, y: -0.021412095, z: -0.0014321674, w: -0.00015293146} + outSlope: {x: -0.20050643, y: -0.021412095, z: -0.0014321674, w: -0.00015293146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.11954268, y: 0.9928034, z: -0.000853861, w: 0.0070909974} + inSlope: {x: -0.094611704, y: -0.011007789, z: -0.0006758012, w: -0.00007861528} + outSlope: {x: -0.094611704, y: -0.011007789, z: -0.0006758012, w: -0.00007861528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.121866256, y: 0.9925208, z: -0.000870459, w: 0.0070889797} + inSlope: {x: 0.016243985, y: 0.0019379053, z: 0.000115995615, w: 0.00001384767} + outSlope: {x: 0.016243985, y: 0.0019379053, z: 0.000115995615, w: 0.00001384767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.11737683, y: 0.9930618, z: -0.000838395, w: 0.0070928438} + inSlope: {x: 0.09746375, y: 0.011320721, z: 0.0006961108, w: 0.000080861} + outSlope: {x: 0.09746375, y: 0.011320721, z: 0.0006961108, w: 0.000080861} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.1088711, y: 0.99403024, z: -0.00077764434, w: 0.007099761} + inSlope: {x: 0.1529301, y: 0.016487554, z: 0.0010922791, w: 0.00011776935} + outSlope: {x: 0.1529301, y: 0.016487554, z: 0.0010922791, w: 0.00011776935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.09698617, y: 0.9952601, z: -0.0006927579, w: 0.0071085463} + inSlope: {x: 0.1988318, y: 0.019100923, z: 0.0014201314, w: 0.00013643656} + outSlope: {x: 0.1988318, y: 0.019100923, z: 0.0014201314, w: 0.00013643656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.08236022, y: 0.996577, z: -0.00058829365, w: 0.0071179527} + inSlope: {x: 0.23513067, y: 0.019184966, z: 0.0016793986, w: 0.00013703726} + outSlope: {x: 0.23513067, y: 0.019184966, z: 0.0016793986, w: 0.00013703726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.06563544, y: 0.9978181, z: -0.0004688383, w: 0.007126818} + inSlope: {x: 0.26175764, y: 0.01702978, z: 0.0018695856, w: 0.00012164578} + outSlope: {x: 0.26175764, y: 0.01702978, z: 0.0018695856, w: 0.00012164578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.047459174, y: 0.99884766, z: -0.00033901536, w: 0.007134172} + inSlope: {x: 0.27863705, y: 0.013129845, z: 0.0019901516, w: 0.000093789895} + outSlope: {x: 0.27863705, y: 0.013129845, z: 0.0019901516, w: 0.000093789895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.02848381, y: 0.99956876, z: -0.00020348452, w: 0.0071393233} + inSlope: {x: 0.28570253, y: 0.008122183, z: 0.0020406235, w: 0.00005802378} + outSlope: {x: 0.28570253, y: 0.008122183, z: 0.0020406235, w: 0.00005802378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.009365538, y: 0.9999306, z: -0.0000669325, w: 0.0071419086} + inSlope: {x: 0.2824875, y: 0.002726915, z: 0.002017668, w: 0.000019487943} + outSlope: {x: 0.2824875, y: 0.002726915, z: 0.002017668, w: 0.000019487943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.009181156, y: 0.99993235, z: 0.00006553762, w: 0.0071419217} + inSlope: {x: 0.2702592, y: -0.0023384416, z: 0.0019303369, w: -0.000016693974} + outSlope: {x: 0.2702592, y: -0.0023384416, z: 0.0019303369, w: -0.000016693974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.026668992, y: 0.9996188, z: 0.00019044551, w: 0.007139683} + inSlope: {x: 0.24785227, y: -0.006374276, z: 0.001770306, w: -0.000045527748} + outSlope: {x: 0.24785227, y: -0.006374276, z: 0.001770306, w: -0.000045527748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.042228095, y: 0.99908245, z: 0.0003015782, w: 0.0071358513} + inSlope: {x: 0.21548206, y: -0.008850851, z: 0.0015391133, w: -0.00006321707} + outSlope: {x: 0.21548206, y: -0.008850851, z: 0.0015391133, w: -0.00006321707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.055399906, y: 0.9984387, z: 0.00039566043, w: 0.007131254} + inSlope: {x: 0.17360699, y: -0.0093546435, z: 0.0012400341, w: -0.000066814195} + outSlope: {x: 0.17360699, y: -0.0093546435, z: 0.0012400341, w: -0.000066814195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.06537571, y: 0.99783516, z: 0.0004669162, w: 0.0071269427} + inSlope: {x: 0.09332508, y: -0.005762269, z: 0.00066665886, w: -0.00004117253} + outSlope: {x: 0.09332508, y: -0.005762269, z: 0.00066665886, w: -0.00004117253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.06784327, y: 0.9976704, z: 0.00048454845, w: 0.007125764} + inSlope: {x: -0.03040787, y: 0.0019302983, z: -0.00021702885, w: 0.000013749827} + outSlope: {x: -0.03040787, y: 0.0019302983, z: -0.00021702885, w: 0.000013749827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.06132133, y: 0.99809253, z: 0.00043797903, w: 0.007128776} + inSlope: {x: -0.13688287, y: 0.008051999, z: -0.000977457, w: 0.00005746848} + outSlope: {x: -0.13688287, y: 0.008051999, z: -0.000977457, w: 0.00005746848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.04959224, y: 0.998744, z: 0.00035422097, w: 0.0071334266} + inSlope: {x: -0.17593649, y: 0.009772191, z: -0.0012563721, w: 0.000069758455} + outSlope: {x: -0.17593649, y: 0.009772191, z: -0.0012563721, w: 0.000069758455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: -0.12718166, y: -0.704205, z: 0.13051671, w: 0.68621105} + inSlope: {x: 0.0000004514852, y: 0, z: -0.0000004514852, w: -0.0000009029704} + outSlope: {x: 0.0000004514852, y: 0, z: -0.0000004514852, w: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: -0.12718163, y: -0.704205, z: 0.13051668, w: 0.686211} + inSlope: {x: 0.033034045, y: -0.006171803, z: -0.033899993, w: 0.0060133315} + outSlope: {x: 0.033034045, y: -0.006171803, z: -0.033899993, w: 0.0060133315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: -0.12282054, y: -0.7050198, z: 0.12604126, w: 0.6870049} + inSlope: {x: 0.13924685, y: -0.024514742, z: -0.14289823, w: 0.02388763} + outSlope: {x: 0.13924685, y: -0.024514742, z: -0.14289823, w: 0.02388763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: -0.1087984, y: -0.7074414, z: 0.11165139, w: 0.6893646} + inSlope: {x: 0.29722485, y: -0.045624383, z: -0.30501908, w: 0.044459105} + outSlope: {x: 0.29722485, y: -0.045624383, z: -0.30501908, w: 0.044459105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: -0.0835812, y: -0.71104306, z: 0.08577294, w: 0.6928744} + inSlope: {x: 0.4152629, y: -0.050077386, z: -0.42615217, w: 0.048798777} + outSlope: {x: 0.4152629, y: -0.050077386, z: -0.42615217, w: 0.048798777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: -0.053975787, y: -0.71405256, z: 0.055391192, w: 0.695807} + inSlope: {x: 0.4553306, y: -0.03597705, z: -0.4672705, w: 0.035057828} + outSlope: {x: 0.4553306, y: -0.03597705, z: -0.4672705, w: 0.035057828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: -0.023468893, y: -0.7157927, z: 0.024084335, w: 0.6975027} + inSlope: {x: 0.45745057, y: -0.01602005, z: -0.46944606, w: 0.015610552} + outSlope: {x: 0.45745057, y: -0.01602005, z: -0.46944606, w: 0.015610552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.0064163995, y: -0.7161675, z: -0.006584625, w: 0.6978679} + inSlope: {x: 0.43648583, y: 0.0034326422, z: -0.44793156, w: -0.0033450539} + outSlope: {x: 0.43648583, y: 0.0034326422, z: -0.44793156, w: -0.0033450539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.03415555, y: -0.71533954, z: -0.03505116, w: 0.69706106} + inSlope: {x: 0.39259595, y: 0.018697357, z: -0.40289074, w: -0.018220138} + outSlope: {x: 0.39259595, y: 0.018697357, z: -0.40289074, w: -0.018220138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.058246538, y: -0.7136991, z: -0.059773877, w: 0.69546247} + inSlope: {x: 0.3262218, y: 0.026811901, z: -0.3347761, w: -0.026126998} + outSlope: {x: 0.3262218, y: 0.026811901, z: -0.3347761, w: -0.026126998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.07722304, y: -0.71179986, z: -0.07924798, w: 0.6936118} + inSlope: {x: 0.2378836, y: 0.026020447, z: -0.24412143, w: -0.02535541} + outSlope: {x: 0.2378836, y: 0.026020447, z: -0.24412143, w: -0.02535541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.089651704, y: -0.7102639, z: -0.092002556, w: 0.69211507} + inSlope: {x: 0.12792951, y: 0.016239472, z: -0.13128416, w: -0.015824556} + outSlope: {x: 0.12792951, y: 0.016239472, z: -0.13128416, w: -0.015824556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.09411217, y: -0.70965594, z: -0.09657999, w: 0.69152266} + inSlope: {x: 0.015356479, y: 0.0020646416, z: -0.015759204, w: -0.002011818} + outSlope: {x: 0.015356479, y: 0.0020646416, z: -0.015759204, w: -0.002011818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.09167905, y: -0.70999134, z: -0.09408307, w: 0.69184947} + inSlope: {x: -0.07086382, y: -0.009397213, z: 0.07272202, w: 0.009157022} + outSlope: {x: -0.07086382, y: -0.009397213, z: 0.07272202, w: 0.009157022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.0847568, y: -0.71089655, z: -0.0869793, w: 0.69273156} + inSlope: {x: -0.1346246, y: -0.0165072, z: 0.13815476, w: 0.016085515} + outSlope: {x: -0.1346246, y: -0.0165072, z: 0.13815476, w: 0.016085515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.07390604, y: -0.7121706, z: -0.07584401, w: 0.69397306} + inSlope: {x: -0.1898973, y: -0.020278908, z: 0.19487682, w: 0.019760605} + outSlope: {x: -0.1898973, y: -0.020278908, z: 0.19487682, w: 0.019760605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.05968674, y: -0.71357375, z: -0.06125185, w: 0.69534034} + inSlope: {x: -0.2366449, y: -0.02035792, z: 0.24285026, w: 0.019837808} + outSlope: {x: -0.2366449, y: -0.02035792, z: 0.24285026, w: 0.019837808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.04266441, y: -0.71485823, z: -0.043783154, w: 0.69659203} + inSlope: {x: -0.27427447, y: -0.016805634, z: 0.2814666, w: 0.016376723} + outSlope: {x: -0.27427447, y: -0.016805634, z: 0.2814666, w: 0.016376723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.023477286, y: -0.7157924, z: -0.024092898, w: 0.6975024} + inSlope: {x: -0.30406123, y: -0.010111012, z: 0.3120345, w: 0.009852761} + outSlope: {x: -0.30406123, y: -0.010111012, z: 0.3120345, w: 0.009852761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.0025225338, y: -0.7161931, z: -0.0025886593, w: 0.6978928} + inSlope: {x: -0.3243671, y: -0.0009860438, z: 0.3328728, w: 0.0009607605} + outSlope: {x: -0.3243671, y: -0.0009860438, z: 0.3328728, w: 0.0009607605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: -0.01934535, y: -0.7159226, z: 0.019852653, w: 0.6976292} + inSlope: {x: -0.3357003, y: 0.009702417, z: 0.3445032, w: -0.009453649} + outSlope: {x: -0.3357003, y: 0.009702417, z: 0.3445032, w: -0.009453649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: -0.0417963, y: -0.7149122, z: 0.042892322, w: 0.6966447} + inSlope: {x: -0.3378693, y: 0.020738974, z: 0.34672913, w: -0.020209381} + outSlope: {x: -0.3378693, y: 0.020738974, z: 0.34672913, w: -0.020209381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: -0.06395053, y: -0.71318465, z: 0.0656275, w: 0.6949612} + inSlope: {x: -0.33093512, y: 0.031114101, z: 0.33961305, w: -0.03031949} + outSlope: {x: -0.33093512, y: 0.031114101, z: 0.33961305, w: -0.03031949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: -0.08548604, y: -0.7108045, z: 0.08772771, w: 0.692642} + inSlope: {x: -0.30786315, y: 0.03844803, z: 0.31593603, w: -0.037465595} + outSlope: {x: -0.30786315, y: 0.03844803, z: 0.31593603, w: -0.037465595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: -0.10459433, y: -0.7081088, z: 0.10733707, w: 0.690015} + inSlope: {x: -0.24324861, y: 0.0367211, z: 0.24962723, w: -0.03578291} + outSlope: {x: -0.24324861, y: 0.0367211, z: 0.24962723, w: -0.03578291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: -0.11759949, y: -0.70595664, z: 0.12068326, w: 0.68791795} + inSlope: {x: -0.19701946, y: 0.032603554, z: 0.2021858, w: -0.03176921} + outSlope: {x: -0.19701946, y: 0.032603554, z: 0.2021858, w: -0.03176921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: -6.117442e-12, y: 0.031313073, z: -0.00000001838122, w: 0.99950963} + inSlope: {x: 0.0000000071371375, y: -0.00000005643565, z: 0.00000010167138, w: 0} + outSlope: {x: 0.0000000071371375, y: -0.00000005643565, z: 0.00000010167138, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 4.6500157e-10, y: 0.03131307, z: -0.000000011669941, w: 0.99950963} + inSlope: {x: -0.00094721507, y: -0.000062756444, z: 0.17422591, w: -0.00200324} + outSlope: {x: -0.00094721507, y: -0.000062756444, z: 0.17422591, w: -0.00200324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: -0.00012505043, y: 0.031304788, z: 0.023001121, w: 0.99924517} + inSlope: {x: -0.0020615808, y: -0.00029735945, z: 0.3791964, w: -0.009493379} + outSlope: {x: -0.0020615808, y: -0.00029735945, z: 0.3791964, w: -0.009493379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: -0.00027216744, y: 0.031273812, z: 0.050061133, w: 0.9982563} + inSlope: {x: -0.0022690608, y: -0.0006617503, z: 0.41735786, w: -0.021122735} + outSlope: {x: -0.0022690608, y: -0.0006617503, z: 0.41735786, w: -0.021122735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: -0.00042460967, y: 0.031217424, z: 0.07810031, w: 0.99645656} + inSlope: {x: -0.0022233855, y: -0.0009900788, z: 0.40895683, w: -0.031603515} + outSlope: {x: -0.0022233855, y: -0.0009900788, z: 0.40895683, w: -0.031603515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: -0.0005656967, y: 0.031143103, z: 0.104051225, w: 0.99408406} + inSlope: {x: -0.0019263725, y: -0.0011321555, z: 0.35432762, w: -0.03614094} + outSlope: {x: -0.0019263725, y: -0.0011321555, z: 0.35432762, w: -0.03614094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: -0.0006789275, y: 0.031067958, z: 0.1248783, w: 0.9916853} + inSlope: {x: -0.0013807942, y: -0.0009680689, z: 0.25397786, w: -0.030901453} + outSlope: {x: -0.0013807942, y: -0.0009680689, z: 0.25397786, w: -0.030901453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: -0.0007479878, y: 0.0310153, z: 0.13758114, w: 0.9900045} + inSlope: {x: -0.0005885841, y: -0.00045155574, z: 0.10826276, w: -0.014413213} + outSlope: {x: -0.0005885841, y: -0.00045155574, z: 0.10826276, w: -0.014413213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: -0.00075663184, y: 0.031008344, z: 0.13917105, w: 0.98978245} + inSlope: {x: 0.00025259538, y: 0.00019749656, z: -0.04645986, w: 0.006304088} + outSlope: {x: 0.00025259538, y: 0.00019749656, z: -0.04645986, w: 0.006304088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: -0.0007146404, y: 0.031041373, z: 0.13144755, w: 0.99083674} + inSlope: {x: 0.0008397867, y: 0.0006291023, z: -0.1544628, w: 0.02008161} + outSlope: {x: 0.0008397867, y: 0.0006291023, z: -0.1544628, w: 0.02008161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: -0.000645764, y: 0.031091398, z: 0.11877902, w: 0.9924336} + inSlope: {x: 0.0012122497, y: 0.0008206872, z: -0.22296959, w: 0.02619743} + outSlope: {x: 0.0012122497, y: 0.0008206872, z: -0.22296959, w: 0.02619743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: -0.0005546004, y: 0.031149719, z: 0.10201132, w: 0.9942953} + inSlope: {x: 0.0015148206, y: 0.0008804385, z: -0.2786222, w: 0.028104052} + outSlope: {x: 0.0015148206, y: 0.0008804385, z: -0.2786222, w: 0.028104052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: -0.00044577883, y: 0.031207632, z: 0.081995584, w: 0.9961439} + inSlope: {x: 0.0017468913, y: 0.0008158338, z: -0.32130867, w: 0.026041215} + outSlope: {x: 0.0017468913, y: 0.0008158338, z: -0.32130867, w: 0.026041215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: -0.00032397747, y: 0.031257425, z: 0.059592463, w: 0.99773324} + inSlope: {x: 0.0019076364, y: 0.00064768374, z: -0.35087502, w: 0.020675313} + outSlope: {x: 0.0019076364, y: 0.00064768374, z: -0.35087502, w: 0.020675313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: -0.00019393451, y: 0.03129314, z: 0.0356734, w: 0.9988734} + inSlope: {x: 0.0019962383, y: 0.0004068164, z: -0.36717218, w: 0.012987424} + outSlope: {x: 0.0019962383, y: 0.0004068164, z: -0.36717218, w: 0.012987424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: -0.000060436014, y: 0.031311132, z: 0.011118743, w: 0.9994478} + inSlope: {x: 0.0020121215, y: 0.00013030993, z: -0.37009412, w: 0.0041608876} + outSlope: {x: 0.0020121215, y: 0.00013030993, z: -0.37009412, w: 0.0041608876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.00007170381, y: 0.031310342, z: -0.013186076, w: 0.9994227} + inSlope: {x: 0.001955077, y: -0.0001421614, z: -0.35960218, w: -0.004536975} + outSlope: {x: 0.001955077, y: -0.0001421614, z: -0.35960218, w: -0.004536975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.00019767137, y: 0.031292364, z: -0.036355592, w: 0.99884886} + inSlope: {x: 0.0018227414, y: -0.00037109264, z: -0.33526123, w: -0.011845166} + outSlope: {x: 0.0018227414, y: -0.00037109264, z: -0.33526123, w: -0.011845166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.0003123404, y: 0.03126135, z: -0.05744694, w: 0.99785894} + inSlope: {x: 0.0016232971, y: -0.00052513374, z: -0.29857716, w: -0.016761389} + outSlope: {x: 0.0016232971, y: -0.00052513374, z: -0.29857716, w: -0.016761389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.0004119775, y: 0.031223036, z: -0.07577346, w: 0.99663603} + inSlope: {x: 0.001350737, y: -0.0005761657, z: -0.24844503, w: -0.018390797} + outSlope: {x: 0.001350737, y: -0.0005761657, z: -0.24844503, w: -0.018390797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.0004906634, y: 0.031185286, z: -0.09024642, w: 0.995431} + inSlope: {x: 0.0010053688, y: -0.0005114904, z: -0.18492112, w: -0.016326608} + outSlope: {x: 0.0010053688, y: -0.0005114904, z: -0.18492112, w: -0.016326608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.0005447053, y: 0.03115551, z: -0.10018657, w: 0.9944806} + inSlope: {x: 0.0004098908, y: -0.00022586959, z: -0.075394474, w: -0.007209316} + outSlope: {x: 0.0004098908, y: -0.00022586959, z: -0.075394474, w: -0.007209316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.0005447768, y: 0.031155467, z: -0.10019992, w: 0.99447924} + inSlope: {x: -0.0004941417, y: 0.0002692545, z: 0.090884306, w: 0.008594472} + outSlope: {x: -0.0004941417, y: 0.0002692545, z: 0.090884306, w: 0.008594472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.0004794692, y: 0.031191057, z: -0.08818811, w: 0.99561524} + inSlope: {x: -0.001315736, y: 0.0006406575, z: 0.24200025, w: 0.020448668} + outSlope: {x: -0.001315736, y: 0.0006406575, z: 0.24200025, w: 0.020448668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.0003710746, y: 0.031240046, z: -0.06825128, w: 0.99717885} + inSlope: {x: -0.0018141407, y: 0.0006930439, z: 0.3336719, w: 0.022120517} + outSlope: {x: -0.0018141407, y: 0.0006930439, z: 0.3336719, w: 0.022120517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.00023996808, y: 0.03128255, z: -0.044137068, w: 0.9985356} + inSlope: {x: -0.0019861758, y: 0.00064393075, z: 0.3653142, w: 0.020553412} + outSlope: {x: -0.0019861758, y: 0.00064393075, z: 0.3653142, w: 0.020553412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.14285164, y: 0.68356013, z: 0.13907188, w: 0.7021381} + inSlope: {x: 0.00000044703526, y: 0, z: 0.00000022351763, w: 0} + outSlope: {x: 0.00000044703526, y: 0, z: 0.00000022351763, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.14285167, y: 0.68356013, z: 0.1390719, w: 0.7021381} + inSlope: {x: -0.039892532, y: 0.0077489093, z: -0.038837083, w: 0.007959016} + outSlope: {x: -0.039892532, y: 0.0077489093, z: -0.038837083, w: 0.007959016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.13753264, y: 0.6845933, z: 0.13389361, w: 0.7031993} + inSlope: {x: -0.16824907, y: 0.030616917, z: -0.16379735, w: 0.03144885} + outSlope: {x: -0.16824907, y: 0.030616917, z: -0.16379735, w: 0.03144885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.120418414, y: 0.6876424, z: 0.11723221, w: 0.7063313} + inSlope: {x: -0.3594734, y: 0.05621103, z: -0.34996206, w: 0.057739884} + outSlope: {x: -0.3594734, y: 0.05621103, z: -0.34996206, w: 0.057739884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.089602835, y: 0.6920881, z: 0.087231986, w: 0.710898} + inSlope: {x: -0.502761, y: 0.059871435, z: -0.48945826, w: 0.061498642} + outSlope: {x: -0.502761, y: 0.059871435, z: -0.48945826, w: 0.061498642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.05338368, y: 0.69562525, z: 0.05197117, w: 0.7145311} + inSlope: {x: -0.5516962, y: 0.03975708, z: -0.53709865, w: 0.04083667} + outSlope: {x: -0.5516962, y: 0.03975708, z: -0.53709865, w: 0.04083667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.016043419, y: 0.69738907, z: 0.015618903, w: 0.71634287} + inSlope: {x: -0.5543171, y: 0.012393606, z: -0.5396503, w: 0.012730223} + outSlope: {x: -0.5543171, y: 0.012393606, z: -0.5396503, w: 0.012730223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.0205252, y: 0.6972777, z: -0.019982137, w: 0.7162285} + inSlope: {x: -0.5285764, y: -0.013807131, z: -0.51459056, w: -0.014182194} + outSlope: {x: -0.5285764, y: -0.013807131, z: -0.51459056, w: -0.014182194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.05443336, y: 0.6955481, z: -0.05299311, w: 0.7144519} + inSlope: {x: -0.47483867, y: -0.03378864, z: -0.46227476, w: -0.0347064} + outSlope: {x: -0.47483867, y: -0.03378864, z: -0.46227476, w: -0.0347064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.08383707, y: 0.69277257, z: -0.081618816, w: 0.71160096} + inSlope: {x: -0.39393875, y: -0.043498248, z: -0.3835153, w: -0.0446811} + outSlope: {x: -0.39393875, y: -0.043498248, z: -0.3835153, w: -0.0446811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.10695858, y: 0.68974835, z: -0.10412854, w: 0.7084944} + inSlope: {x: -0.28681448, y: -0.040558167, z: -0.27922565, w: -0.041660555} + outSlope: {x: -0.28681448, y: -0.040558167, z: -0.27922565, w: -0.041660555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.12207896, y: 0.6873648, z: -0.11884887, w: 0.7060462} + inSlope: {x: -0.15406467, y: -0.024877511, z: -0.14998849, w: -0.025552982} + outSlope: {x: -0.15406467, y: -0.024877511, z: -0.14998849, w: -0.025552982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.12750052, y: 0.68643135, z: -0.124126986, w: 0.70508736} + inSlope: {x: -0.018484125, y: -0.0031435518, z: -0.017994845, w: -0.003229383} + outSlope: {x: -0.018484125, y: -0.0031435518, z: -0.017994845, w: -0.003229383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.12454351, y: 0.6869457, z: -0.12124818, w: 0.70561564} + inSlope: {x: 0.08530645, y: 0.0143279275, z: 0.08304954, w: 0.014717295} + outSlope: {x: 0.08530645, y: 0.0143279275, z: 0.08304954, w: 0.014717295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.116126336, y: 0.68834174, z: -0.113053724, w: 0.70704967} + inSlope: {x: 0.16217628, y: 0.02538529, z: 0.15788513, w: 0.026075512} + outSlope: {x: 0.16217628, y: 0.02538529, z: 0.15788513, w: 0.026075512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.10291998, y: 0.6903304, z: -0.1001968, w: 0.7090924} + inSlope: {x: 0.22899821, y: 0.031704582, z: 0.2229391, w: 0.03256602} + outSlope: {x: 0.22899821, y: 0.031704582, z: 0.2229391, w: 0.03256602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.08559322, y: 0.692569, z: -0.08332849, w: 0.7113918} + inSlope: {x: 0.2857179, y: 0.032797188, z: 0.27815792, w: 0.033688575} + outSlope: {x: 0.2857179, y: 0.032797188, z: 0.27815792, w: 0.033688575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.0648243, y: 0.69470334, z: -0.063109115, w: 0.7135842} + inSlope: {x: 0.33155626, y: 0.028727826, z: 0.3227834, w: 0.029508796} + outSlope: {x: 0.33155626, y: 0.028727826, z: 0.3227834, w: 0.029508796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.041385762, y: 0.6963994, z: -0.040290743, w: 0.7153263} + inSlope: {x: 0.36796632, y: 0.020188559, z: 0.3582302, w: 0.020737518} + outSlope: {x: 0.36796632, y: 0.020188559, z: 0.3582302, w: 0.020737518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.015762169, y: 0.69739515, z: -0.015345132, w: 0.7163492} + inSlope: {x: 0.39286673, y: 0.00811816, z: 0.38247174, w: 0.008338996} + outSlope: {x: 0.39286673, y: 0.00811816, z: 0.38247174, w: 0.008338996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.010996415, y: 0.6974818, z: 0.01070544, w: 0.7164382} + inSlope: {x: 0.4067911, y: -0.0062826336, z: 0.39602768, w: -0.0064538484} + outSlope: {x: 0.4067911, y: -0.0062826336, z: 0.39602768, w: -0.0064538484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.038476594, y: 0.69655746, z: 0.037458513, w: 0.7154887} + inSlope: {x: 0.4094521, y: -0.021349458, z: 0.39861828, w: -0.02192971} + outSlope: {x: 0.4094521, y: -0.021349458, z: 0.39861828, w: -0.02192971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.065590076, y: 0.6946352, z: 0.06385459, w: 0.7135142} + inSlope: {x: 0.40091437, y: -0.035691243, z: 0.39030653, w: -0.03666131} + outSlope: {x: 0.40091437, y: -0.035691243, z: 0.39030653, w: -0.03666131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.09193189, y: 0.6917986, z: 0.08949943, w: 0.7106005} + inSlope: {x: 0.37270498, y: -0.046194836, z: 0.36284348, w: -0.047450557} + outSlope: {x: 0.37270498, y: -0.046194836, z: 0.36284348, w: -0.047450557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.115284026, y: 0.6884759, z: 0.112233676, w: 0.7071875} + inSlope: {x: 0.29422793, y: -0.045161292, z: 0.28644288, w: -0.046388403} + outSlope: {x: 0.29422793, y: -0.045161292, z: 0.28644288, w: -0.046388403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.13116224, y: 0.6857771, z: 0.12769178, w: 0.7044154} + inSlope: {x: 0.23817345, y: -0.040481724, z: 0.23187171, w: -0.041581433} + outSlope: {x: 0.23817345, y: -0.040481724, z: 0.23187171, w: -0.041581433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: -4.237986e-11, y: -0.009668282, z: 0.000000019081483, w: 0.99995327} + inSlope: {x: -0.0000000026708384, y: -0.000000014108912, z: -0.00000019098401, w: 0} + outSlope: {x: -0.0000000026708384, y: -0.000000014108912, z: -0.00000019098401, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: -2.1868063e-10, y: -0.009668283, z: 0.000000006474719, w: 0.99995327} + inSlope: {x: 0.0073945182, y: 0.000026256686, z: 0.20260641, w: -0.0027138775} + outSlope: {x: 0.0073945182, y: 0.000026256686, z: 0.20260641, w: -0.0027138775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.00097621715, y: -0.009664816, z: 0.026747921, w: 0.999595} + inSlope: {x: 0.0161466, y: 0.00012520954, z: 0.44240975, w: -0.012947693} + outSlope: {x: 0.0161466, y: 0.00012520954, z: 0.44240975, w: -0.012947693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.0021316586, y: -0.009651753, z: 0.05840652, w: 0.9982439} + inSlope: {x: 0.017827768, y: 0.00027960338, z: 0.48847306, w: -0.02891808} + outSlope: {x: 0.017827768, y: 0.00027960338, z: 0.48847306, w: -0.02891808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.003329822, y: -0.009627903, z: 0.09123567, w: 0.99577725} + inSlope: {x: 0.017446673, y: 0.00041824463, z: 0.47803116, w: -0.043256797} + outSlope: {x: 0.017446673, y: 0.00041824463, z: 0.47803116, w: -0.043256797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.0044349516, y: -0.009596537, z: 0.121515736, w: 0.9925332} + inSlope: {x: 0.0150235, y: 0.00047541392, z: 0.41163713, w: -0.049168997} + outSlope: {x: 0.0150235, y: 0.00047541392, z: 0.41163713, w: -0.049168997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.00531321, y: -0.009565139, z: 0.1455796, w: 0.989286} + inSlope: {x: 0.010588601, y: 0.0003991623, z: 0.2901228, w: -0.041282} + outSlope: {x: 0.010588601, y: 0.0003991623, z: 0.2901228, w: -0.041282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.0058328486, y: -0.00954384, z: 0.15981747, w: 0.9870832} + inSlope: {x: 0.004162267, y: 0.00017107761, z: 0.114044376, w: -0.0176928} + outSlope: {x: 0.004162267, y: 0.00017107761, z: 0.114044376, w: -0.0176928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.0058627087, y: -0.009542554, z: 0.16063564, w: 0.9869502} + inSlope: {x: -0.0026870952, y: -0.00011180608, z: -0.073625274, w: 0.011563439} + outSlope: {x: -0.0026870952, y: -0.00011180608, z: -0.073625274, w: 0.011563439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.005478101, y: -0.0095586, z: 0.15009753, w: 0.9886098} + inSlope: {x: -0.007530911, y: -0.0002969644, z: -0.20634386, w: 0.03071183} + outSlope: {x: -0.007530911, y: -0.0002969644, z: -0.20634386, w: 0.03071183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.004868485, y: -0.009581759, z: 0.13339432, w: 0.99100477} + inSlope: {x: -0.01064535, y: -0.00037275747, z: -0.2916779, w: 0.038552772} + outSlope: {x: -0.01064535, y: -0.00037275747, z: -0.2916779, w: 0.038552772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.004072712, y: -0.009607811, z: 0.1115905, w: 0.9936995} + inSlope: {x: -0.013167919, y: -0.0003851945, z: -0.36079538, w: 0.03983815} + outSlope: {x: -0.013167919, y: -0.0003851945, z: -0.36079538, w: 0.03983815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.003130069, y: -0.009632612, z: 0.085762456, w: 0.99626416} + inSlope: {x: -0.015089944, y: -0.00033879027, z: -0.4134583, w: 0.03503661} + outSlope: {x: -0.015089944, y: -0.00033879027, z: -0.4134583, w: 0.03503661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.0020805518, y: -0.009652538, z: 0.05700613, w: 0.998325} + inSlope: {x: -0.016400393, y: -0.0002445639, z: -0.4493637, w: 0.025292654} + outSlope: {x: -0.016400393, y: -0.0002445639, z: -0.4493637, w: 0.025292654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.0009649049, y: -0.009664899, z: 0.026437888, w: 0.9996033} + inSlope: {x: -0.017089196, y: -0.00011841611, z: -0.46823668, w: 0.012246085} + outSlope: {x: -0.017089196, y: -0.00011841611, z: -0.46823668, w: 0.012246085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: -0.00017554741, y: -0.009668171, z: -0.004810026, w: 0.9999417} + inSlope: {x: -0.017149974, y: 0.000020845919, z: -0.469902, w: -0.0021558418} + outSlope: {x: -0.017149974, y: 0.000020845919, z: -0.469902, w: -0.0021558418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: -0.0012992182, y: -0.009662147, z: -0.035598125, w: 0.99931866} + inSlope: {x: -0.016581617, y: 0.00015321575, z: -0.45432937, w: -0.015848033} + outSlope: {x: -0.016581617, y: 0.00015321575, z: -0.45432937, w: -0.015848033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: -0.0023646369, y: -0.009647944, z: -0.06479015, w: 0.99784946} + inSlope: {x: -0.015367102, y: 0.00025899732, z: -0.42105204, w: -0.02679023} + outSlope: {x: -0.015367102, y: 0.00025899732, z: -0.42105204, w: -0.02679023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: -0.0033279683, y: -0.009627954, z: -0.09118501, w: 0.99578184} + inSlope: {x: -0.01357913, y: 0.00032321404, z: -0.37206236, w: -0.033430673} + outSlope: {x: -0.01357913, y: 0.00032321404, z: -0.37206236, w: -0.033430673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: -0.0041573406, y: -0.009605274, z: -0.11390947, w: 0.993436} + inSlope: {x: -0.011172427, y: 0.00033225078, z: -0.30611956, w: -0.034364346} + outSlope: {x: -0.011172427, y: 0.00033225078, z: -0.30611956, w: -0.034364346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: -0.0048029413, y: -0.009584091, z: -0.13159862, w: 0.9912451} + inSlope: {x: -0.008151919, y: 0.0002805628, z: -0.22335899, w: -0.029017407} + outSlope: {x: -0.008151919, y: 0.0002805628, z: -0.22335899, w: -0.029017407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: -0.005233549, y: -0.009568234, z: -0.14339711, w: 0.9896051} + inSlope: {x: -0.002879033, y: 0.00010545707, z: -0.07888451, w: -0.010908334} + outSlope: {x: -0.002879033, y: 0.00010545707, z: -0.07888451, w: -0.010908334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: -0.0051830285, y: -0.009570168, z: -0.14201288, w: 0.989805} + inSlope: {x: 0.0052322764, y: -0.000187578, z: 0.14336218, w: 0.019401673} + outSlope: {x: 0.0052322764, y: -0.000187578, z: 0.14336218, w: 0.019401673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: -0.004542789, y: -0.009592998, z: -0.12447057, w: 0.9921665} + inSlope: {x: 0.012650393, y: -0.0004027248, z: 0.3466159, w: 0.041654475} + outSlope: {x: 0.012650393, y: -0.0004027248, z: 0.3466159, w: 0.041654475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: -0.0035129357, y: -0.009623336, z: -0.09625298, w: 0.99530417} + inSlope: {x: 0.017171461, y: -0.00042756356, z: 0.47049108, w: 0.04422207} + outSlope: {x: 0.017171461, y: -0.00042756356, z: 0.47049108, w: 0.04422207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: -0.002275829, y: -0.009649444, z: -0.06235679, w: 0.9980047} + inSlope: {x: 0.018741338, y: -0.00039552926, z: 0.51350456, w: 0.04091088} + outSlope: {x: 0.018741338, y: -0.00039552926, z: 0.51350456, w: 0.04091088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.04903133, y: -0.6603856, z: 0.043283895, w: 0.74807304} + inSlope: {x: 0.00000027939703, y: -0.0000008940705, z: 0.00000050291465, w: -0.0000008940705} + outSlope: {x: 0.00000027939703, y: -0.0000008940705, z: 0.00000050291465, w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.04903131, y: -0.66038567, z: 0.04328393, w: 0.748073} + inSlope: {x: -0.10600829, y: 0.0070224768, z: 0.09358267, w: -0.007955886} + outSlope: {x: -0.10600829, y: 0.0070224768, z: 0.09358267, w: -0.007955886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.063165754, y: -0.6594493, z: 0.055761572, w: 0.74701226} + inSlope: {x: -0.23662794, y: 0.018129475, z: 0.20889097, w: -0.020536754} + outSlope: {x: -0.23662794, y: 0.018129475, z: 0.20889097, w: -0.020536754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.08058173, y: -0.6579684, z: 0.07113609, w: 0.74533474} + inSlope: {x: -0.26708633, y: 0.025623128, z: 0.23577908, w: -0.029025506} + outSlope: {x: -0.26708633, y: 0.025623128, z: 0.23577908, w: -0.029025506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.098777294, y: -0.65603286, z: 0.08719881, w: 0.7431422} + inSlope: {x: -0.26018134, y: 0.0302701, z: 0.22968352, w: -0.034289837} + outSlope: {x: -0.26018134, y: 0.0302701, z: 0.22968352, w: -0.034289837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.115272544, y: -0.6539324, z: 0.10176053, w: 0.74076277} + inSlope: {x: -0.21632226, y: 0.02917531, z: 0.19096541, w: -0.03304887} + outSlope: {x: -0.21632226, y: 0.02917531, z: 0.19096541, w: -0.03304887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.12762024, y: -0.6521428, z: 0.11266084, w: 0.7387357} + inSlope: {x: -0.13594504, y: 0.02018543, z: 0.120009854, w: -0.02286496} + outSlope: {x: -0.13594504, y: 0.02018543, z: 0.120009854, w: -0.02286496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.13339853, y: -0.651241, z: 0.11776183, w: 0.7377141} + inSlope: {x: -0.019200277, y: 0.0029584793, z: 0.01694979, w: -0.0033514234} + outSlope: {x: -0.019200277, y: 0.0029584793, z: 0.01694979, w: -0.0033514234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.13018027, y: -0.65174836, z: 0.11492081, w: 0.7382888} + inSlope: {x: 0.10828008, y: -0.016322553, z: -0.09558766, w: 0.018489774} + outSlope: {x: 0.10828008, y: -0.016322553, z: -0.09558766, w: 0.018489774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.11896116, y: -0.65341735, z: 0.10501678, w: 0.7401794} + inSlope: {x: 0.20410505, y: -0.028367471, z: -0.18018037, w: 0.032134183} + outSlope: {x: 0.20410505, y: -0.028367471, z: -0.18018037, w: 0.032134183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.10296625, y: -0.6555307, z: 0.09089675, w: 0.7425734} + inSlope: {x: 0.2690687, y: -0.0323126, z: -0.23752917, w: 0.036602803} + outSlope: {x: 0.2690687, y: -0.0323126, z: -0.23752917, w: 0.036602803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.08308537, y: -0.6577257, z: 0.07334626, w: 0.7450598} + inSlope: {x: 0.3205584, y: -0.030997425, z: -0.28298336, w: 0.03511283} + outSlope: {x: 0.3205584, y: -0.030997425, z: -0.28298336, w: 0.03511283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.06022517, y: -0.6596637, z: 0.05316567, w: 0.7472551} + inSlope: {x: 0.35828638, y: -0.025067056, z: -0.3162889, w: 0.028396126} + outSlope: {x: 0.35828638, y: -0.025067056, z: -0.3162889, w: 0.028396126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.035313904, y: -0.66106796, z: 0.031174446, w: 0.74884593} + inSlope: {x: 0.38194108, y: -0.01566054, z: -0.33717087, w: 0.017740147} + outSlope: {x: 0.38194108, y: -0.01566054, z: -0.33717087, w: 0.017740147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.009299745, y: -0.66175175, z: 0.008209597, w: 0.74962044} + inSlope: {x: 0.39127702, y: -0.004255332, z: -0.3454125, w: 0.004819938} + outSlope: {x: 0.39127702, y: -0.004255332, z: -0.3454125, w: 0.004819938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.016856404, y: -0.66163534, z: -0.014880593, w: 0.7494886} + inSlope: {x: 0.38618088, y: 0.0074851555, z: -0.3409137, w: -0.008478914} + outSlope: {x: 0.38618088, y: 0.0074851555, z: -0.3409137, w: -0.008478914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.04219108, y: -0.6607537, z: -0.0372456, w: 0.7484899} + inSlope: {x: 0.36669546, y: 0.017871577, z: -0.3237124, w: -0.020244438} + outSlope: {x: 0.36669546, y: 0.017871577, z: -0.3237124, w: -0.020244438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.06574909, y: -0.65925246, z: -0.058042206, w: 0.74678934} + inSlope: {x: 0.33255714, y: 0.025308901, z: -0.29357564, w: -0.028669264} + outSlope: {x: 0.33255714, y: 0.025308901, z: -0.29357564, w: -0.028669264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.08653199, y: -0.6573792, z: -0.076388985, w: 0.74466735} + inSlope: {x: 0.28539473, y: 0.02868357, z: -0.25194153, w: -0.03249231} + outSlope: {x: 0.28539473, y: 0.02868357, z: -0.25194153, w: -0.03249231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.10380168, y: -0.655428, z: -0.09163438, w: 0.74245703} + inSlope: {x: 0.22436321, y: 0.027068432, z: -0.1980639, w: -0.030662147} + outSlope: {x: 0.22436321, y: 0.027068432, z: -0.1980639, w: -0.030662147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.116447054, y: -0.6537701, z: -0.10279748, w: 0.74057907} + inSlope: {x: 0.14948139, y: 0.020261873, z: -0.13195956, w: -0.022952132} + outSlope: {x: 0.14948139, y: 0.020261873, z: -0.13195956, w: -0.022952132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.123732515, y: -0.6527264, z: -0.10922897, w: 0.73939675} + inSlope: {x: 0.011762209, y: 0.0016433238, z: -0.010383591, w: -0.0018623737} + outSlope: {x: 0.011762209, y: 0.0016433238, z: -0.010383591, w: -0.0018623737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.11801533, y: -0.653551, z: -0.10418194, w: 0.74033076} + inSlope: {x: -0.20979652, y: -0.02741218, z: 0.18520467, w: 0.031052385} + outSlope: {x: -0.20979652, y: -0.02741218, z: 0.18520467, w: 0.031052385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.09575965, y: -0.65638137, z: -0.08453502, w: 0.74353707} + inSlope: {x: -0.41591662, y: -0.044574782, z: 0.36716387, w: 0.050493974} + outSlope: {x: -0.41591662, y: -0.044574782, z: 0.36716387, w: 0.050493974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.06255983, y: -0.6594943, z: -0.055226803, w: 0.7470633} + inSlope: {x: -0.5421431, y: -0.03822554, z: 0.4785943, w: 0.04330118} + outSlope: {x: -0.5421431, y: -0.03822554, z: 0.4785943, w: 0.04330118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.023473978, y: -0.6614781, z: -0.020722505, w: 0.74931055} + inSlope: {x: -0.58628833, y: -0.029757349, z: 0.51756495, w: 0.033709142} + outSlope: {x: -0.58628833, y: -0.029757349, z: 0.51756495, w: 0.033709142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.007333765, y: -0.06563249, z: -0.12598576, w: 0.9898314} + inSlope: {x: 0.000000013969852, y: -0.000000111758816, z: 0, w: 0} + outSlope: {x: 0.000000013969852, y: -0.000000111758816, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.0073337657, y: -0.0656325, z: -0.12598576, w: 0.9898314} + inSlope: {x: -0.012912041, y: -0.0016478837, z: 0.22181638, w: 0.024852479} + outSlope: {x: -0.012912041, y: -0.0016478837, z: 0.22181638, w: 0.024852479} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.005612161, y: -0.06585221, z: -0.09641027, w: 0.99314505} + inSlope: {x: -0.027560987, y: -0.0029827263, z: 0.47347075, w: 0.044983298} + outSlope: {x: -0.027560987, y: -0.0029827263, z: 0.47347075, w: 0.044983298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.003658964, y: -0.0660302, z: -0.062856264, w: 0.99582916} + inSlope: {x: -0.03039316, y: -0.0021406235, z: 0.52212447, w: 0.032283474} + outSlope: {x: -0.03039316, y: -0.0021406235, z: 0.52212447, w: 0.032283474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.0015597364, y: -0.06613763, z: -0.026793618, w: 0.9974495} + inSlope: {x: -0.03192948, y: -0.00095810834, z: 0.5485171, w: 0.014451755} + outSlope: {x: -0.03192948, y: -0.00095810834, z: 0.5485171, w: 0.014451755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.000598296, y: -0.066157945, z: 0.01027928, w: 0.99775606} + inSlope: {x: -0.0321517, y: 0.0003680218, z: 0.55233455, w: -0.005549943} + outSlope: {x: -0.0321517, y: 0.0003680218, z: 0.55233455, w: -0.005549943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.002727153, y: -0.06608856, z: 0.04685092, w: 0.9967095} + inSlope: {x: -0.031056743, y: 0.0016265379, z: 0.53352404, w: -0.024531508} + outSlope: {x: -0.031056743, y: 0.0016265379, z: 0.53352404, w: -0.024531508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.0047391914, y: -0.06594107, z: 0.08141575, w: 0.9944852} + inSlope: {x: -0.028657362, y: 0.0026135356, z: 0.4923053, w: -0.03941644} + outSlope: {x: -0.028657362, y: 0.0026135356, z: 0.4923053, w: -0.03941644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.006548131, y: -0.065740086, z: 0.11249156, w: 0.991454} + inSlope: {x: -0.024978502, y: 0.003154722, z: 0.42910638, w: -0.047577426} + outSlope: {x: -0.024978502, y: 0.003154722, z: 0.42910638, w: -0.047577426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.0080696605, y: -0.06552044, z: 0.13862997, w: 0.98814154} + inSlope: {x: -0.020049693, y: 0.0031270059, z: 0.34443402, w: -0.04715945} + outSlope: {x: -0.020049693, y: 0.0031270059, z: 0.34443402, w: -0.04715945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.009221426, y: -0.06532315, z: 0.15841615, w: 0.9851661} + inSlope: {x: -0.013894785, y: 0.00247909, z: 0.23869894, w: -0.037389133} + outSlope: {x: -0.013894785, y: 0.00247909, z: 0.23869894, w: -0.037389133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.009922297, y: -0.0651899, z: 0.17045647, w: 0.9831563} + inSlope: {x: -0.0065218043, y: 0.0012513075, z: 0.11203889, w: -0.0188707} + outSlope: {x: -0.0065218043, y: 0.0012513075, z: 0.11203889, w: -0.0188707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.010090999, y: -0.06515631, z: 0.17335466, w: 0.98265} + inSlope: {x: 0.001477221, y: -0.0002885054, z: -0.025376739, w: 0.0043505467} + outSlope: {x: 0.001477221, y: -0.0002885054, z: -0.025376739, w: 0.0043505467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.009725334, y: -0.065228365, z: 0.1670729, w: 0.9837364} + inSlope: {x: 0.008779905, y: -0.0016575509, z: -0.15082958, w: 0.024997765} + outSlope: {x: 0.008779905, y: -0.0016575509, z: -0.15082958, w: 0.024997765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.008920346, y: -0.06537732, z: 0.15324406, w: 0.985983} + inSlope: {x: 0.014897838, y: -0.0025782706, z: -0.25592926, w: 0.038885284} + outSlope: {x: 0.014897838, y: -0.0025782706, z: -0.25592926, w: 0.038885284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.0077389535, y: -0.065572135, z: 0.13294896, w: 0.9889211} + inSlope: {x: 0.020070525, y: -0.003008095, z: -0.34479067, w: 0.045365058} + outSlope: {x: 0.020070525, y: -0.003008095, z: -0.34479067, w: 0.045365058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.006244275, y: -0.0657784, z: 0.10727195, w: 0.9920317} + inSlope: {x: 0.02428813, y: -0.002929478, z: -0.417245, w: 0.04418139} + outSlope: {x: 0.02428813, y: -0.002929478, z: -0.417245, w: 0.04418139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.004500539, y: -0.06596273, z: 0.07731635, w: 0.99481195} + inSlope: {x: 0.027483828, y: -0.0023837038, z: -0.47214392, w: 0.035951022} + outSlope: {x: 0.027483828, y: -0.0023837038, z: -0.47214392, w: 0.035951022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.002579768, y: -0.066096224, z: 0.044319484, w: 0.99682516} + inSlope: {x: 0.029774716, y: -0.0014697402, z: -0.51149905, w: 0.022165349} + outSlope: {x: 0.029774716, y: -0.0014697402, z: -0.51149905, w: 0.022165349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.00053058064, y: -0.0661587, z: 0.009116545, w: 0.9977673} + inSlope: {x: 0.030998088, y: -0.00031197473, z: -0.5325155, w: 0.004704599} + outSlope: {x: 0.030998088, y: -0.00031197473, z: -0.5325155, w: 0.004704599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.0015533067, y: -0.06613782, z: -0.026682522, w: 0.99745244} + inSlope: {x: 0.031195734, y: 0.0009476589, z: -0.5359112, w: -0.014292164} + outSlope: {x: 0.031195734, y: 0.0009476589, z: -0.5359112, w: -0.014292164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.0036288467, y: -0.06603234, z: -0.06233821, w: 0.9958617} + inSlope: {x: 0.030364942, y: 0.0021336386, z: -0.5216391, w: -0.032177523} + outSlope: {x: 0.030364942, y: 0.0021336386, z: -0.5216391, w: -0.032177523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.005601969, y: -0.065853335, z: -0.096234456, w: 0.9931621} + inSlope: {x: 0.02850705, y: 0.0031038728, z: -0.4897225, w: -0.04681033} + outSlope: {x: 0.02850705, y: 0.0031038728, z: -0.4897225, w: -0.04681033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.00742979, y: -0.06561849, z: -0.1276346, w: 0.9896203} + inSlope: {x: 0.025666203, y: 0.003708381, z: -0.44091994, w: -0.055928133} + outSlope: {x: 0.025666203, y: 0.003708381, z: -0.44091994, w: -0.055928133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.009024126, y: -0.065358885, z: -0.15502372, w: 0.985705} + inSlope: {x: 0.021832604, y: 0.003847018, z: -0.37506282, w: -0.058018025} + outSlope: {x: 0.021832604, y: 0.003847018, z: -0.37506282, w: -0.058018025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.010340801, y: -0.06510556, z: -0.17764293, w: 0.9818846} + inSlope: {x: 0.019750144, y: 0.0037999116, z: -0.33928835, w: -0.057306346} + outSlope: {x: 0.019750144, y: 0.0037999116, z: -0.33928835, w: -0.057306346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.044245426, y: 0.033210468, z: -0.17222728, w: 0.9835025} + inSlope: {x: 0.00000033527644, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000033527644, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.044245403, y: 0.033210468, z: -0.17222728, w: 0.9835025} + inSlope: {x: -0.04198882, y: 0.004932615, z: -0.06555593, w: -0.013961358} + outSlope: {x: -0.04198882, y: 0.004932615, z: -0.06555593, w: -0.013961358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.04984393, y: 0.03386815, z: -0.18096806, w: 0.981641} + inSlope: {x: -0.12163122, y: 0.011654129, z: -0.18865258, w: -0.042448133} + outSlope: {x: -0.12163122, y: 0.011654129, z: -0.18865258, w: -0.042448133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.06046292, y: 0.034764353, z: -0.19738099, w: 0.97784275} + inSlope: {x: -0.050152346, y: 0.020579245, z: -0.08396452, w: -0.019439228} + outSlope: {x: -0.050152346, y: 0.020579245, z: -0.08396452, w: -0.019439228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.05653094, y: 0.03661205, z: -0.19216338, w: 0.9790491} + inSlope: {x: 0.16114232, y: 0.03369056, z: 0.23074284, w: 0.04969646} + outSlope: {x: 0.16114232, y: 0.03369056, z: 0.23074284, w: 0.04969646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.0389773, y: 0.039256424, z: -0.1666153, w: 0.98446894} + inSlope: {x: 0.29021716, y: 0.04244709, z: 0.42380294, w: 0.07982977} + outSlope: {x: 0.29021716, y: 0.04244709, z: 0.42380294, w: 0.07982977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: -0.017835356, y: 0.042271655, z: -0.13565637, w: 0.98969305} + inSlope: {x: 0.3375371, y: 0.046936773, z: 0.4959336, w: 0.07056854} + outSlope: {x: 0.3375371, y: 0.046936773, z: 0.4959336, w: 0.07056854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.00602761, y: 0.045514654, z: -0.10049089, w: 0.99387807} + inSlope: {x: 0.37163574, y: 0.04931841, z: 0.5495392, w: 0.04993786} + outSlope: {x: 0.37163574, y: 0.04931841, z: 0.5495392, w: 0.04993786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.031716026, y: 0.048847437, z: -0.062384553, w: 0.9963514} + inSlope: {x: 0.3921544, y: 0.04969861, z: 0.58374095, w: 0.021000367} + outSlope: {x: 0.3921544, y: 0.04969861, z: 0.58374095, w: 0.021000367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.058314905, y: 0.05214114, z: -0.0226587, w: 0.9966781} + inSlope: {x: 0.39892262, y: 0.048243284, z: 0.5978511, w: -0.012360087} + outSlope: {x: 0.39892262, y: 0.048243284, z: 0.5978511, w: -0.012360087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.08490575, y: 0.05527988, z: 0.017328992, w: 0.9947034} + inSlope: {x: 0.3920321, y: 0.0451697, z: 0.5915253, w: -0.04581441} + outSlope: {x: 0.3920321, y: 0.0451697, z: 0.5915253, w: -0.04581441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.1105858, y: 0.058163762, z: 0.056211267, w: 0.99056953} + inSlope: {x: 0.37185326, y: 0.04073061, z: 0.564831, w: -0.07498212} + outSlope: {x: 0.37185326, y: 0.04073061, z: 0.564831, w: -0.07498212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.13448614, y: 0.060710624, z: 0.09263972, w: 0.9847058} + inSlope: {x: 0.33899283, y: 0.035191175, z: 0.51822716, w: -0.095828265} + outSlope: {x: 0.33899283, y: 0.035191175, z: 0.51822716, w: -0.095828265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.1557848, y: 0.062855914, z: 0.12530816, w: 0.97779244} + inSlope: {x: 0.2941836, y: 0.028798793, z: 0.45244086, w: -0.10503988} + outSlope: {x: 0.2941836, y: 0.028798793, z: 0.45244086, w: -0.10503988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.17371058, y: 0.06455046, z: 0.15296511, w: 0.9707005} + inSlope: {x: 0.23813029, y: 0.021749128, z: 0.3682749, w: -0.10036595} + outSlope: {x: 0.23813029, y: 0.021749128, z: 0.3682749, w: -0.10036595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.18753552, y: 0.0657558, z: 0.1744115, w: 0.9644103} + inSlope: {x: 0.1713345, y: 0.014151987, z: 0.2663787, w: -0.0809311} + outSlope: {x: 0.1713345, y: 0.014151987, z: 0.2663787, w: -0.0809311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.19655521, y: 0.06643739, z: 0.18848231, w: 0.9599097} + inSlope: {x: 0.09391753, y: 0.0059981514, z: 0.14701593, w: -0.047521636} + outSlope: {x: 0.09391753, y: 0.0059981514, z: 0.14701593, w: -0.047521636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.20005785, y: 0.06655555, z: 0.19401361, w: 0.9580741} + inSlope: {x: -0.003671836, y: -0.0041694418, z: -0.00416201, w: 0.0018538553} + outSlope: {x: -0.003671836, y: -0.0041694418, z: -0.00416201, w: 0.0018538553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.19606563, y: 0.06588147, z: 0.18792738, w: 0.96015686} + inSlope: {x: -0.12140226, y: -0.0170055, z: -0.18622908, w: 0.060529914} + outSlope: {x: -0.12140226, y: -0.0170055, z: -0.18622908, w: 0.060529914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.1838709, y: 0.064288154, z: 0.16918309, w: 0.96614474} + inSlope: {x: -0.23385432, y: -0.029887855, z: -0.35895276, w: 0.106468156} + outSlope: {x: -0.23385432, y: -0.029887855, z: -0.35895276, w: 0.106468156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: 0.16488509, y: 0.061896425, z: 0.14006706, w: 0.9743526} + inSlope: {x: -0.32796752, y: -0.041386582, z: -0.50157, w: 0.12698886} + outSlope: {x: -0.32796752, y: -0.041386582, z: -0.50157, w: 0.12698886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: 0.14014193, y: 0.05876995, z: 0.102307156, w: 0.9830766} + inSlope: {x: -0.40200526, y: -0.05131332, z: -0.6114062, w: 0.12135869} + outSlope: {x: -0.40200526, y: -0.05131332, z: -0.6114062, w: 0.12135869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: 0.11128434, y: 0.055054642, z: 0.058546152, w: 0.99053377} + inSlope: {x: -0.45553046, y: -0.05946909, z: -0.6881908, w: 0.0930949} + outSlope: {x: -0.45553046, y: -0.05946909, z: -0.6881908, w: 0.0930949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: 0.079404496, y: 0.05084073, z: 0.010548313, w: 0.99548924} + inSlope: {x: -0.4862929, y: -0.06527318, z: -0.72932696, w: 0.049203385} + outSlope: {x: -0.4862929, y: -0.06527318, z: -0.72932696, w: 0.049203385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: 0.046445344, y: 0.04635156, z: -0.03869735, w: 0.9970942} + inSlope: {x: -0.49336594, y: -0.068271056, z: -0.73432195, w: -0.0021037478} + outSlope: {x: -0.49336594, y: -0.068271056, z: -0.73432195, w: -0.0021037478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.013622434, y: 0.041737933, z: -0.08736119, w: 0.99520874} + inSlope: {x: -0.49234414, y: -0.069204465, z: -0.72995824, w: -0.028282132} + outSlope: {x: -0.49234414, y: -0.069204465, z: -0.72995824, w: -0.028282132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.056701567, y: 0.6421294, z: 0.047718197, w: 0.76300573} + inSlope: {x: -0.0000045821116, y: -0.0000098347755, z: 0.000005587941, w: 0.000008046634} + outSlope: {x: -0.0000045821116, y: -0.0000098347755, z: 0.000005587941, w: 0.000008046634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.05670126, y: 0.64212877, z: 0.04771857, w: 0.76300627} + inSlope: {x: 0.09196865, y: -0.0063827694, z: 0.077403404, w: -0.0075750127} + outSlope: {x: 0.09196865, y: -0.0063827694, z: 0.077403404, w: -0.0075750127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.06896404, y: 0.6412784, z: 0.05803864, w: 0.76199573} + inSlope: {x: 0.2065655, y: -0.016082954, z: 0.17384088, w: -0.019110717} + outSlope: {x: 0.2065655, y: -0.016082954, z: 0.17384088, w: -0.019110717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.08424336, y: 0.63998437, z: 0.07089738, w: 0.7604582} + inSlope: {x: 0.23460907, y: -0.021972196, z: 0.19744176, w: -0.02610816} + outSlope: {x: 0.23460907, y: -0.021972196, z: 0.19744176, w: -0.02610816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.100245275, y: 0.63834876, z: 0.08436423, w: 0.75851464} + inSlope: {x: 0.22838032, y: -0.025206083, z: 0.19219968, w: -0.029951364} + outSlope: {x: 0.22838032, y: -0.025206083, z: 0.19219968, w: -0.029951364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.11469404, y: 0.63662356, z: 0.09652398, w: 0.75646466} + inSlope: {x: 0.18820202, y: -0.023610614, z: 0.15838662, w: -0.028055038} + outSlope: {x: 0.18820202, y: -0.023610614, z: 0.15838662, w: -0.028055038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.12533885, y: 0.6352007, z: 0.10548242, w: 0.754774} + inSlope: {x: 0.11439839, y: -0.015593037, z: 0.09627497, w: -0.018528271} + outSlope: {x: 0.11439839, y: -0.015593037, z: 0.09627497, w: -0.018528271} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.12994714, y: 0.6345445, z: 0.10936063, w: 0.7539942} + inSlope: {x: 0.0070563406, y: -0.0009901831, z: 0.005938472, w: -0.0011765966} + outSlope: {x: 0.0070563406, y: -0.0009901831, z: 0.005938472, w: -0.0011765966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.1262797, y: 0.63506866, z: 0.10627422, w: 0.7546171} + inSlope: {x: -0.11073515, y: 0.0151245035, z: -0.09319191, w: 0.017971665} + outSlope: {x: -0.11073515, y: 0.0151245035, z: -0.09319191, w: 0.017971665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.11518243, y: 0.6365611, z: 0.09693502, w: 0.75639045} + inSlope: {x: -0.20025764, y: 0.025154633, z: -0.16853227, w: 0.029890072} + outSlope: {x: -0.20025764, y: 0.025154633, z: -0.16853227, w: 0.029890072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.09957866, y: 0.6384226, z: 0.08380324, w: 0.75860244} + inSlope: {x: -0.26144087, y: 0.028350975, z: -0.2200226, w: 0.03368768} + outSlope: {x: -0.26144087, y: 0.028350975, z: -0.2200226, w: 0.03368768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.08032368, y: 0.6403412, z: 0.0675987, w: 0.76088214} + inSlope: {x: -0.30968434, y: 0.02704161, z: -0.26062304, w: 0.032132} + outSlope: {x: -0.30968434, y: 0.02704161, z: -0.26062304, w: 0.032132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.05828746, y: 0.64202815, z: 0.04905353, w: 0.7628867} + inSlope: {x: -0.34473968, y: 0.021814426, z: -0.2901249, w: 0.02592134} + outSlope: {x: -0.34473968, y: 0.021814426, z: -0.2901249, w: 0.02592134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.034358438, y: 0.6432498, z: 0.028915418, w: 0.7643383} + inSlope: {x: -0.36634368, y: 0.013666315, z: -0.3083064, w: 0.01623945} + outSlope: {x: -0.36634368, y: 0.013666315, z: -0.3083064, w: 0.01623945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.00944168, y: 0.6438503, z: 0.007946053, w: 0.76505196} + inSlope: {x: -0.37429208, y: 0.0038744567, z: -0.3149956, w: 0.004604466} + outSlope: {x: -0.37429208, y: 0.0038744567, z: -0.3149956, w: 0.004604466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.015547218, y: 0.6437664, z: -0.013084027, w: 0.76495224} + inSlope: {x: -0.36849353, y: -0.006134663, z: -0.31011564, w: -0.0072898013} + outSlope: {x: -0.36849353, y: -0.006134663, z: -0.31011564, w: -0.0072898013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.039690834, y: 0.6430324, z: -0.033402734, w: 0.76408} + inSlope: {x: -0.34898815, y: -0.014925167, z: -0.29370043, w: -0.017734783} + outSlope: {x: -0.34898815, y: -0.014925167, z: -0.29370043, w: -0.017734783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.062078927, y: 0.6417764, z: -0.05224405, w: 0.7625876} + inSlope: {x: -0.31550962, y: -0.021148792, z: -0.26552576, w: -0.025130086} + outSlope: {x: -0.31550962, y: -0.021148792, z: -0.26552576, w: -0.025130086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.081758745, y: 0.64021254, z: -0.068806134, w: 0.7607293} + inSlope: {x: -0.2695667, y: -0.023873024, z: -0.22686127, w: -0.028367516} + outSlope: {x: -0.2695667, y: -0.023873024, z: -0.22686127, w: -0.028367516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.09802112, y: 0.6385933, z: -0.08249219, w: 0.7588053} + inSlope: {x: -0.2103311, y: -0.022338351, z: -0.17701015, w: -0.026543614} + outSlope: {x: -0.2103311, y: -0.022338351, z: -0.17701015, w: -0.026543614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.109802864, y: 0.6372341, z: -0.092407465, w: 0.75719017} + inSlope: {x: -0.13777487, y: -0.016409323, z: -0.115948714, w: -0.019498784} + outSlope: {x: -0.13777487, y: -0.016409323, z: -0.115948714, w: -0.019498784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.116391085, y: 0.6364054, z: -0.097952, w: 0.75620544} + inSlope: {x: -0.003199041, y: -0.00039072987, z: -0.002692856, w: -0.00046583544} + outSlope: {x: -0.003199041, y: -0.00039072987, z: -0.002692856, w: -0.00046583544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.11022938, y: 0.637182, z: -0.09276649, w: 0.75712806} + inSlope: {x: 0.21456078, y: 0.024316015, z: 0.18056843, w: 0.028890522} + outSlope: {x: 0.21456078, y: 0.024316015, z: 0.18056843, w: 0.028890522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.08778299, y: 0.63964754, z: -0.07387622, w: 0.7600575} + inSlope: {x: 0.41735435, y: 0.038078018, z: 0.35123432, w: 0.045243546} + outSlope: {x: 0.41735435, y: 0.038078018, z: 0.35123432, w: 0.045243546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.05458219, y: 0.64225906, z: -0.045935296, w: 0.7631605} + inSlope: {x: 0.54129434, y: 0.03088656, z: 0.4555391, w: 0.03669802} + outSlope: {x: 0.54129434, y: 0.03088656, z: 0.4555391, w: 0.03669802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.015610483, y: 0.64376575, z: -0.013137727, w: 0.7649506} + inSlope: {x: 0.5845762, y: 0.022600316, z: 0.49196398, w: 0.026850726} + outSlope: {x: 0.5845762, y: 0.022600316, z: 0.49196398, w: 0.026850726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: -0.01598673, y: 0.052270308, z: -0.13389967, w: 0.9894863} + inSlope: {x: 0.000011455279, y: -0.000006705529, z: -0.000001788141, w: 0} + outSlope: {x: 0.000011455279, y: -0.000006705529, z: -0.000001788141, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: -0.015985966, y: 0.05226986, z: -0.1338998, w: 0.9894863} + inSlope: {x: 0.025132455, y: 0.0013570593, z: 0.21041396, w: 0.025738055} + outSlope: {x: 0.025132455, y: 0.0013570593, z: 0.21041396, w: 0.025738055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: -0.012635739, y: 0.05245125, z: -0.105844505, w: 0.992918} + inSlope: {x: 0.05357019, y: 0.0025125854, z: 0.44860488, w: 0.04753452} + outSlope: {x: 0.05357019, y: 0.0025125854, z: 0.44860488, w: 0.04753452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.008843267, y: 0.052604873, z: -0.07408575, w: 0.9958242} + inSlope: {x: 0.05898471, y: 0.001934988, z: 0.49394745, w: 0.036597356} + outSlope: {x: 0.05898471, y: 0.001934988, z: 0.49394745, w: 0.036597356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: -0.0047711045, y: 0.052709248, z: -0.039984796, w: 0.99779767} + inSlope: {x: 0.061937198, y: 0.0010997906, z: 0.5186727, w: 0.020783115} + outSlope: {x: 0.061937198, y: 0.0010997906, z: 0.5186727, w: 0.020783115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: -0.0005849821, y: 0.05275151, z: -0.004929452, w: 0.9985953} + inSlope: {x: 0.062391363, y: 0.00014601288, z: 0.5224768, w: 0.0027282562} + outSlope: {x: 0.062391363, y: 0.00014601288, z: 0.5224768, w: 0.0027282562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.0035477355, y: 0.052728716, z: 0.029678708, w: 0.99816144} + inSlope: {x: 0.060337037, y: -0.00077641645, z: 0.5052738, w: -0.014730706} + outSlope: {x: 0.060337037, y: -0.00077641645, z: 0.5052738, w: -0.014730706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: 0.0074599483, y: 0.05264799, z: 0.062440325, w: 0.9966312} + inSlope: {x: 0.05579146, y: -0.0015225182, z: 0.46720853, w: -0.028852103} + outSlope: {x: 0.05579146, y: -0.0015225182, z: 0.46720853, w: -0.028852103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: 0.01098659, y: 0.052525714, z: 0.09197312, w: 0.9943145} + inSlope: {x: 0.048793662, y: -0.0019680131, z: 0.4086079, w: -0.037281774} + outSlope: {x: 0.048793662, y: -0.0019680131, z: 0.4086079, w: -0.037281774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: 0.013965774, y: 0.052385587, z: 0.11692142, w: 0.9916603} + inSlope: {x: 0.03939224, y: -0.0020242836, z: 0.32987845, w: -0.0383408} + outSlope: {x: 0.03939224, y: -0.0020242836, z: 0.32987845, w: -0.0383408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: 0.016238894, y: 0.05225581, z: 0.13595696, w: 0.9892024} + inSlope: {x: 0.027628135, y: -0.0016525777, z: 0.23136315, w: -0.03129694} + outSlope: {x: 0.027628135, y: -0.0016525777, z: 0.23136315, w: -0.03129694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: 0.017649522, y: 0.052165244, z: 0.14776981, w: 0.9874874} + inSlope: {x: 0.013517634, y: -0.00087814487, z: 0.11319849, w: -0.01662837} + outSlope: {x: 0.013517634, y: -0.00087814487, z: 0.11319849, w: -0.01662837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: 0.018041244, y: 0.052138723, z: 0.15105008, w: 0.98698527} + inSlope: {x: -0.0017343573, y: 0.00011513951, z: -0.014525963, w: 0.0021842143} + outSlope: {x: -0.0017343573, y: 0.00011513951, z: -0.014525963, w: 0.0021842143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: 0.017418275, y: 0.052180596, z: 0.14583302, w: 0.9877786} + inSlope: {x: -0.015541572, y: 0.0010010237, z: -0.13015197, w: 0.018965025} + outSlope: {x: -0.015541572, y: 0.0010010237, z: -0.13015197, w: 0.018965025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: 0.015969036, y: 0.052272193, z: 0.1336965, w: 0.98951393} + inSlope: {x: -0.027055625, y: 0.0015976728, z: -0.22657436, w: 0.030267354} + outSlope: {x: -0.027055625, y: 0.0015976728, z: -0.22657436, w: 0.030267354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.0138108535, y: 0.05239362, z: 0.115623064, w: 0.99181426} + inSlope: {x: -0.036808044, y: 0.0018771258, z: -0.30824405, w: 0.03556472} + outSlope: {x: -0.036808044, y: 0.0018771258, z: -0.30824405, w: 0.03556472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: 0.011061294, y: 0.052522477, z: 0.09259726, w: 0.9942559} + inSlope: {x: -0.04478494, y: 0.0018247421, z: -0.37504464, w: 0.03457862} + outSlope: {x: -0.04478494, y: 0.0018247421, z: -0.37504464, w: 0.03457862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: 0.0078395335, y: 0.052636918, z: 0.06561716, w: 0.99642473} + inSlope: {x: -0.050869733, y: 0.0014648507, z: -0.4259994, w: 0.027769383} + outSlope: {x: -0.050869733, y: 0.0014648507, z: -0.4259994, w: 0.027769383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: 0.0042786696, y: 0.05271779, z: 0.035797395, w: 0.9979585} + inSlope: {x: -0.055287845, y: 0.000859565, z: -0.4629969, w: 0.016314551} + outSlope: {x: -0.055287845, y: 0.000859565, z: -0.4629969, w: 0.016314551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: 0.00046782783, y: 0.052751526, z: 0.0038842976, w: 0.9986} + inSlope: {x: -0.05774323, y: 0.000089909954, z: -0.4835577, w: 0.0017447786} + outSlope: {x: -0.05774323, y: 0.000089909954, z: -0.4835577, w: 0.0017447786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.0034204202, y: 0.052729778, z: -0.028676905, w: 0.9981911} + inSlope: {x: -0.058318913, y: -0.000752081, z: -0.4883769, w: -0.014196945} + outSlope: {x: -0.058318913, y: -0.000752081, z: -0.4883769, w: -0.014196945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.0073080203, y: 0.05265125, z: -0.06123256, w: 0.9967071} + inSlope: {x: -0.05700706, y: -0.0015510414, z: -0.47738913, w: -0.02932366} + outSlope: {x: -0.05700706, y: -0.0015510414, z: -0.47738913, w: -0.02932366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.011021367, y: 0.052522972, z: -0.09232884, w: 0.9942813} + inSlope: {x: -0.053809278, y: -0.0022126534, z: -0.45060813, w: -0.041853163} + outSlope: {x: -0.053809278, y: -0.0022126534, z: -0.45060813, w: -0.041853163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.014482597, y: 0.05235623, z: -0.1213137, w: 0.99112666} + inSlope: {x: -0.048798252, y: -0.0026358874, z: -0.4086427, w: -0.049871698} + outSlope: {x: -0.048798252, y: -0.0026358874, z: -0.4086427, w: -0.049871698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.017527794, y: 0.05217152, z: -0.14681448, w: 0.98763174} + inSlope: {x: -0.041952234, y: -0.0027516976, z: -0.35130998, w: -0.052070666} + outSlope: {x: -0.041952234, y: -0.0027516976, z: -0.35130998, w: -0.052070666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: -0.020076223, y: 0.051989336, z: -0.16815498, w: 0.9841839} + inSlope: {x: -0.03822646, y: -0.0027327824, z: -0.32010788, w: -0.05171751} + outSlope: {x: -0.03822646, y: -0.0027327824, z: -0.32010788, w: -0.05171751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.06666565 + value: {x: 0.051921394, y: 0.011815624, z: -0.17424548, w: 0.98326147} + inSlope: {x: 0.000000055879408, y: 0.000000013969852, z: -0.00000044703526, w: 0} + outSlope: {x: 0.000000055879408, y: 0.000000013969852, z: -0.00000044703526, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333225 + value: {x: 0.051921397, y: 0.011815625, z: -0.1742455, w: 0.98326147} + inSlope: {x: -0.012531376, y: -0.0017116701, z: -0.12753446, w: -0.023068361} + outSlope: {x: -0.012531376, y: -0.0017116701, z: -0.12753446, w: -0.023068361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.19999886 + value: {x: 0.050250545, y: 0.011587402, z: -0.19125006, w: 0.9801857} + inSlope: {x: -0.026780408, y: -0.00407652, z: -0.35339946, w: -0.0700136} + outSlope: {x: -0.026780408, y: -0.00407652, z: -0.35339946, w: -0.0700136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.048350673, y: 0.011272089, z: -0.2213655, w: 0.9739263} + inSlope: {x: -0.07163207, y: -0.007567377, z: -0.23883739, w: -0.047223296} + outSlope: {x: -0.07163207, y: -0.007567377, z: -0.23883739, w: -0.047223296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3333323 + value: {x: 0.040699605, y: 0.010578418, z: -0.22309512, w: 0.97388923} + inSlope: {x: -0.15288708, y: -0.012842625, z: 0.17633653, w: 0.043946695} + outSlope: {x: -0.15288708, y: -0.012842625, z: 0.17633653, w: 0.043946695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3999989 + value: {x: 0.027965749, y: 0.00955974, z: -0.19785398, w: 0.97978586} + inSlope: {x: -0.20736289, y: -0.01659566, z: 0.42350632, w: 0.090065986} + outSlope: {x: -0.20736289, y: -0.01659566, z: 0.42350632, w: 0.090065986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666655 + value: {x: 0.013051246, y: 0.008365666, z: -0.16662766, w: 0.985898} + inSlope: {x: -0.23573191, y: -0.018915173, z: 0.5038164, w: 0.08705923} + outSlope: {x: -0.23573191, y: -0.018915173, z: 0.5038164, w: 0.08705923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5333321 + value: {x: -0.0034651435, y: 0.0070377197, z: -0.13067852, w: 0.99139374} + inSlope: {x: -0.2553226, y: -0.020596322, z: 0.5647264, w: 0.072641} + outSlope: {x: -0.2553226, y: -0.020596322, z: 0.5647264, w: 0.072641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5999987 + value: {x: -0.020991735, y: 0.005619492, z: -0.09133088, w: 0.9955835} + inSlope: {x: -0.2659743, y: -0.021607157, z: 0.60532475, w: 0.049421027} + outSlope: {x: -0.2659743, y: -0.021607157, z: 0.60532475, w: 0.049421027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.66666555 + value: {x: -0.038928416, y: 0.004156763, z: -0.04996848, w: 0.9979832} + inSlope: {x: -0.26762927, y: -0.021918207, z: 0.62484086, w: 0.02080004} + outSlope: {x: -0.26762927, y: -0.021918207, z: 0.62484086, w: 0.02080004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333216 + value: {x: -0.05667567, y: 0.0026970617, z: -0.008018695, w: 0.9983568} + inSlope: {x: -0.26038057, y: -0.021509077, z: 0.62280476, w: -0.009360918} + outSlope: {x: -0.26038057, y: -0.021509077, z: 0.62280476, w: -0.009360918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.79999876 + value: {x: -0.07364579, y: 0.0012888891, z: 0.033072073, w: 0.9967351} + inSlope: {x: -0.2444864, y: -0.020372316, z: 0.5991318, w: -0.0370932} + outSlope: {x: -0.2444864, y: -0.020372316, z: 0.5991318, w: -0.0370932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666536 + value: {x: -0.089273825, y: -0.000019244526, z: 0.07186548, w: 0.99341106} + inSlope: {x: -0.22034809, y: -0.01851386, z: 0.5541204, w: -0.058680534} + outSlope: {x: -0.22034809, y: -0.01851386, z: 0.5541204, w: -0.058680534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333197 + value: {x: -0.10302551, y: -0.0011796233, z: 0.10695473, w: 0.98891103} + inSlope: {x: -0.18844754, y: -0.015950738, z: 0.488352, w: -0.07100709} + outSlope: {x: -0.18844754, y: -0.015950738, z: 0.488352, w: -0.07100709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.99999857 + value: {x: -0.11440014, y: -0.0021460075, z: 0.13697901, w: 0.98394346} + inSlope: {x: -0.1492582, y: -0.012706267, z: 0.40252203, w: -0.07188315} + outSlope: {x: -0.1492582, y: -0.012706267, z: 0.40252203, w: -0.07188315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.122926615, y: -0.0028737932, z: 0.16062437, w: 0.9793266} + inSlope: {x: -0.10314192, y: -0.00880352, z: 0.2972266, w: -0.060347848} + outSlope: {x: -0.10314192, y: -0.00880352, z: 0.2972266, w: -0.060347848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.133332 + value: {x: -0.12815242, y: -0.0033198118, z: 0.17660928, w: 0.9758971} + inSlope: {x: -0.050245814, y: -0.004259221, z: 0.17274404, w: -0.03694925} + outSlope: {x: -0.050245814, y: -0.004259221, z: 0.17274404, w: -0.03694925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1999986 + value: {x: -0.12962605, y: -0.0034416888, z: 0.18365689, w: 0.97440004} + inSlope: {x: 0.017332789, y: 0.0016038525, z: 0.015940834, w: -0.000641495} + outSlope: {x: 0.017332789, y: 0.0016038525, z: 0.015940834, w: -0.000641495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666652 + value: {x: -0.12584138, y: -0.003105965, z: 0.17873472, w: 0.97581154} + inSlope: {x: 0.10090039, y: 0.008866843, z: -0.17015727, w: 0.042717796} + outSlope: {x: 0.10090039, y: 0.008866843, z: -0.17015727, w: 0.042717796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333318 + value: {x: -0.11617268, y: -0.0022594442, z: 0.16096927, w: 0.98009574} + inSlope: {x: 0.18116233, y: 0.01578739, z: -0.34526768, w: 0.075857416} + outSlope: {x: 0.18116233, y: 0.01578739, z: -0.34526768, w: 0.075857416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3999984 + value: {x: -0.101686426, y: -0.0010009817, z: 0.13269907, w: 0.98592585} + inSlope: {x: 0.24765278, y: 0.021409547, z: -0.48933995, w: 0.08874589} + outSlope: {x: 0.24765278, y: 0.021409547, z: -0.48933995, w: 0.08874589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.466665 + value: {x: -0.08315234, y: 0.0005951592, z: 0.09572401, w: 0.9919285} + inSlope: {x: 0.29926872, y: 0.02563738, z: -0.5998375, w: 0.08075546} + outSlope: {x: 0.29926872, y: 0.02563738, z: -0.5998375, w: 0.08075546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333319 + value: {x: -0.06178389, y: 0.0024173388, z: 0.052720662, w: 0.99669325} + inSlope: {x: 0.33592808, y: 0.028486388, z: -0.6767957, w: 0.05483009} + outSlope: {x: 0.33592808, y: 0.028486388, z: -0.6767957, w: 0.05483009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5999985 + value: {x: -0.038361896, y: 0.004393347, z: 0.0054845065, w: 0.9992392} + inSlope: {x: 0.35634357, y: 0.029894825, z: -0.7179183, w: 0.016944872} + outSlope: {x: 0.35634357, y: 0.029894825, z: -0.7179183, w: 0.016944872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666651 + value: {x: -0.0142714605, y: 0.0064033116, z: -0.04300169, w: 0.99895257} + inSlope: {x: 0.36013156, y: 0.029883571, z: -0.7229142, w: -0.02596202} + outSlope: {x: 0.36013156, y: 0.029883571, z: -0.7229142, w: -0.02596202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333317 + value: {x: 0.009655598, y: 0.008377819, z: -0.09090396, w: 0.9957776} + inSlope: {x: 0.35890624, y: 0.029617643, z: -0.71853477, w: -0.047624454} + outSlope: {x: 0.35890624, y: 0.029617643, z: -0.71853477, w: -0.047624454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21/Bone22 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: -0.008748472, y: 0.33772007, z: 0.65171546} + inSlope: {x: 0, y: -0.006865284, z: 0} + outSlope: {x: 0, y: -0.006865284, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: -0.008748472, y: 0.3372669, z: 0.65171546} + inSlope: {x: -0.000000007054456, y: 0.015692947, z: 0.0000009029704} + outSlope: {x: -0.000000007054456, y: 0.015692947, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: -0.008748473, y: 0.33979183, z: 0.6517156} + inSlope: {x: 0, y: 0.07236834, z: 0} + outSlope: {x: 0, y: 0.07236834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: -0.008748472, y: 0.3468209, z: 0.65171546} + inSlope: {x: 0, y: 0.13440083, z: 0} + outSlope: {x: 0, y: 0.13440083, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: -0.008748473, y: 0.3575353, z: 0.6517156} + inSlope: {x: -0.000000014108912, y: 0.18403079, z: 0.0000009029704} + outSlope: {x: -0.000000014108912, y: 0.18403079, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: -0.008748474, y: 0.37111646, z: 0.6517156} + inSlope: {x: 0.000000014108913, y: 0.22125778, z: -0.0000018059408} + outSlope: {x: 0.000000014108913, y: 0.22125778, z: -0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: -0.008748471, y: 0.38674554, z: 0.65171534} + inSlope: {x: 0.0000000070544575, y: 0.24608336, z: 0} + outSlope: {x: 0.0000000070544575, y: 0.24608336, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: -0.008748473, y: 0.40360415, z: 0.6517156} + inSlope: {x: -0.000000007054456, y: 0.2585069, z: 0.0000018059408} + outSlope: {x: -0.000000007054456, y: 0.2585069, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: -0.008748472, y: 0.42087337, z: 0.6517156} + inSlope: {x: 0.000000007054456, y: 0.25852674, z: -0.0000009029704} + outSlope: {x: 0.000000007054456, y: 0.25852674, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: -0.008748472, y: 0.4377346, z: 0.65171546} + inSlope: {x: 0, y: 0.24614453, z: -0.0000009029704} + outSlope: {x: 0, y: 0.24614453, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: -0.008748472, y: 0.45336914, z: 0.65171546} + inSlope: {x: 0, y: 0.22135982, z: 0} + outSlope: {x: 0, y: 0.22135982, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: -0.008748472, y: 0.4669583, z: 0.65171546} + inSlope: {x: 0, y: 0.18417278, z: 0.0000009029704} + outSlope: {x: 0, y: 0.18417278, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: -0.008748472, y: 0.47768345, z: 0.6517156} + inSlope: {x: 0, y: 0.13458322, z: 0} + outSlope: {x: 0, y: 0.13458322, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: -0.008748472, y: 0.48472586, z: 0.65171546} + inSlope: {x: 0, y: 0.07259137, z: -0.0000009029704} + outSlope: {x: 0, y: 0.07259137, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: -0.008748472, y: 0.4872669, z: 0.65171546} + inSlope: {x: -0.000000007054456, y: 0.00028308108, z: 0.0000009029704} + outSlope: {x: -0.000000007054456, y: 0.00028308108, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: -0.008748473, y: 0.48476323, z: 0.6517156} + inSlope: {x: 0, y: -0.07199428, z: 0} + outSlope: {x: 0, y: -0.07199428, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: -0.008748472, y: 0.47776228, z: 0.65171546} + inSlope: {x: 0, y: -0.1339333, z: 0} + outSlope: {x: 0, y: -0.1339333, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: -0.008748473, y: 0.4670815, z: 0.6517156} + inSlope: {x: 0.000000007054456, y: -0.18314137, z: -0.0000009029704} + outSlope: {x: 0.000000007054456, y: -0.18314137, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: -0.008748471, y: 0.45358413, z: 0.65171534} + inSlope: {x: 0.000000014108912, y: -0.22066069, z: -0.0000018059408} + outSlope: {x: 0.000000014108912, y: -0.22066069, z: -0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: -0.008748471, y: 0.43795007, z: 0.65171534} + inSlope: {x: 0, y: -0.24538943, z: 0} + outSlope: {x: 0, y: -0.24538943, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: -0.008748471, y: 0.42118806, z: 0.65171534} + inSlope: {x: -0.000000007054456, y: -0.25785154, z: 0.0000018059408} + outSlope: {x: -0.000000007054456, y: -0.25785154, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: -0.008748472, y: 0.40390876, z: 0.6517156} + inSlope: {x: -0.000000007054456, y: -0.25789106, z: 0} + outSlope: {x: -0.000000007054456, y: -0.25789106, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: -0.008748472, y: 0.38714153, z: 0.65171534} + inSlope: {x: 0, y: -0.2455084, z: -0.0000009029704} + outSlope: {x: 0, y: -0.2455084, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: -0.008748472, y: 0.37149698, z: 0.65171546} + inSlope: {x: 0.000000007054456, y: -0.22085822, z: 0.0000009029704} + outSlope: {x: 0.000000007054456, y: -0.22085822, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: -0.008748471, y: 0.35798404, z: 0.65171546} + inSlope: {x: 0, y: -0.18363056, z: 0.0000009029704} + outSlope: {x: 0, y: -0.18363056, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: -0.008748472, y: 0.34725425, z: 0.6517156} + inSlope: {x: -0.000000014108912, y: -0.16254912, z: 0.0000018059408} + outSlope: {x: -0.000000014108912, y: -0.16254912, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.03779651, y: -0.00000019301805, z: 0.08896949} + inSlope: {x: -0.0000002257426, y: -0.000000020051637, z: -0.0000004514852} + outSlope: {x: -0.0000002257426, y: -0.000000020051637, z: -0.0000004514852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.037796494, y: -0.00000019434165, z: 0.08896946} + inSlope: {x: -0.0000001128713, y: -0.000000010025818, z: -0.0000002257426} + outSlope: {x: -0.0000001128713, y: -0.000000010025818, z: -0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.037796494, y: -0.00000019434165, z: 0.08896946} + inSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + outSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.0377965, y: -0.00000019368646, z: 0.08896948} + inSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + outSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.0377965, y: -0.00000019368646, z: 0.08896948} + inSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + outSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.037796505, y: -0.00000019701218, z: 0.08896947} + inSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + outSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.037796505, y: -0.00000019701218, z: 0.08896947} + inSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + outSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.037796468, y: -0.0000001941296, z: 0.0889695} + inSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + outSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.037796468, y: -0.0000001941296, z: 0.0889695} + inSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + outSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.037796486, y: -0.00000019338897, z: 0.08896948} + inSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + outSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.037796486, y: -0.00000019338897, z: 0.08896948} + inSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + outSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.037796486, y: -0.00000019040966, z: 0.08896947} + inSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + outSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.037796486, y: -0.00000019040966, z: 0.08896947} + inSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + outSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + outSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: -0.00000005212834, z: 0} + outSlope: {x: 0, y: -0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: -0.00000005212834, z: 0} + outSlope: {x: 0, y: -0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0.00000042326738, y: -0.000000005873403, z: 0.00000005643565} + outSlope: {x: 0.00000042326738, y: -0.000000005873403, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.037796542, y: -0.00000019170227, z: 0.08896947} + inSlope: {x: 0.00000084653476, y: -0.000000011746806, z: 0.0000001128713} + outSlope: {x: 0.00000084653476, y: -0.000000011746806, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.16918491, y: -2.990317e-10, z: 0.000000036659337} + inSlope: {x: -0.0000002257426, y: -0.000000093030586, z: -0.0000011940916} + outSlope: {x: -0.0000002257426, y: -0.000000093030586, z: -0.0000011940916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.1691849, y: -0.0000000064399366, z: -0.000000042162082} + inSlope: {x: -0.0000001128713, y: -0.000000046515293, z: -0.0000005970458} + outSlope: {x: -0.0000001128713, y: -0.000000046515293, z: -0.0000005970458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.1691849, y: -0.0000000064399366, z: -0.000000042162082} + inSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + outSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.16918491, y: 9.344068e-10, z: 0.00000002460617} + inSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + outSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.16918491, y: 9.344068e-10, z: 0.00000002460617} + inSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + outSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.16918491, y: -2.7425895e-10, z: 0.000000037284284} + inSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + outSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.16918491, y: -2.7425895e-10, z: 0.000000037284284} + inSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + outSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.16918495, y: 0.0000000034814576, z: 0.0000000066248242} + inSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + outSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.16918495, y: 0.0000000034814576, z: 0.0000000066248242} + inSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + outSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.16918491, y: -0.000000002510999, z: 0.0000000056680443} + inSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + outSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.16918491, y: -0.000000002510999, z: 0.0000000056680443} + inSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + outSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.1691849, y: 9.884902e-10, z: 0.000000005242545} + inSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + outSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.1691849, y: 9.884902e-10, z: 0.000000005242545} + inSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + outSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + outSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + outSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + outSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + outSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + outSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.0000000714401, z: -0.000000027345996} + outSlope: {x: 0, y: 0.0000000714401, z: -0.000000027345996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.16918491, y: -0.0000000019785045, z: 0.000000011792214} + inSlope: {x: 0, y: 0.0000001428802, z: -0.00000005469199} + outSlope: {x: 0, y: 0.0000001428802, z: -0.00000005469199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.16660501, y: -0.0000000012261461, z: 0.0000000034901215} + inSlope: {x: 0, y: -0.0000000596757, z: -0.00000075608915} + outSlope: {x: 0, y: -0.0000000596757, z: -0.00000075608915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.16660501, y: -0.000000005165311, z: -0.00000004641896} + inSlope: {x: 0, y: -0.00000002983785, z: -0.00000037804458} + outSlope: {x: 0, y: -0.00000002983785, z: -0.00000037804458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.16660501, y: -0.000000005165311, z: -0.00000004641896} + inSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + outSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.16660503, y: 0.0000000034442624, z: 0.000000008398947} + inSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + outSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.16660503, y: 0.0000000034442624, z: 0.000000008398947} + inSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + outSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.16660501, y: 0.0000000033272507, z: -0.0000000022970028} + inSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + outSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.16660501, y: 0.0000000033272507, z: -0.0000000022970028} + inSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + outSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.16660503, y: 0.000000010056783, z: 0.000000023844498} + inSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + outSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.16660503, y: 0.000000010056783, z: 0.000000023844498} + inSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + outSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.16660503, y: -6.768852e-10, z: 3.2232889e-10} + inSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + outSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.16660503, y: -6.768852e-10, z: 3.2232889e-10} + inSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + outSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.16660501, y: 0.0000000011205037, z: -0.000000007300324} + inSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + outSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.16660501, y: 0.0000000011205037, z: -0.000000007300324} + inSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + outSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.166605, y: -2.0020985e-10, z: 0.00000002334521} + inSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + outSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.166605, y: -2.0020985e-10, z: 0.00000002334521} + inSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + outSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.16660501, y: -3.1732195e-10, z: -0.000000008699833} + inSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + outSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.16660501, y: -3.1732195e-10, z: -0.000000008699833} + inSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + outSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + outSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + outSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + outSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0, y: 0.00000007599632, z: 0.00000008279898} + outSlope: {x: 0, y: 0.00000007599632, z: 0.00000008279898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.166605, y: 0.0000000010452248, z: 0.000000022922272} + inSlope: {x: 0, y: 0.00000015199264, z: 0.00000016559795} + outSlope: {x: 0, y: 0.00000015199264, z: 0.00000016559795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 1.1420546, y: 0.00000010304158, z: 0.00000017860373} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 1.1420546, y: 0.00000010304158, z: 0.00000017860373} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 1.0356122, y: -0.009224207, z: 0.7847072} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 1.0356122, y: -0.009224207, z: 0.7847072} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.9198914, y: 0.0000000056464766, z: 0.000000048295984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.9198914, y: 0.0000000056464766, z: 0.000000048295984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.8174602, y: 0.00000007313465, z: 0.00000000983755} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.8174602, y: 0.00000007313465, z: 0.00000000983755} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 1.0736117, y: -0.009224207, z: -0.7910624} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 1.0736117, y: -0.009224207, z: -0.7910624} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.848197, y: -0.0000000114241, z: -0.000000029501352} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.848197, y: -0.0000000114241, z: -0.000000029501352} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.81657094, y: -0.000000010017325, z: -0.000000031725655} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.81657094, y: -0.000000010017325, z: -0.000000031725655} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.5820273, y: -0.008281411, z: -0.33933067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.5820273, y: -0.008281411, z: -0.33933067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.71559757, y: -0.0000000055035088, z: 0.0000000029377336} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.71559757, y: -0.0000000055035088, z: 0.0000000029377336} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.60945666, y: -0.008281411, z: 0.32652536} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.60945666, y: -0.008281411, z: 0.32652536} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.5980861, y: 0.000000010154258, z: 0.00000000444109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.5980861, y: 0.000000010154258, z: 0.00000000444109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: -0.007700801, y: 0, z: 0.002247423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: -0.007700801, y: 0, z: 0.002247423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.038948793, y: 0.00000032088323, z: -0.09688048} + inSlope: {x: -0.00000033861392, y: 0.0000000068602692, z: 0.0000001128713} + outSlope: {x: -0.00000033861392, y: 0.0000000068602692, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.03894877, y: 0.00000032133607, z: -0.09688047} + inSlope: {x: -0.00000016930696, y: 0.0000000034301346, z: 0.00000005643565} + outSlope: {x: -0.00000016930696, y: 0.0000000034301346, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.03894877, y: 0.00000032133607, z: -0.09688047} + inSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + outSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.038948786, y: 0.00000032434772, z: -0.09688052} + inSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + outSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.038948786, y: 0.00000032434772, z: -0.09688052} + inSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + outSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.03894878, y: 0.00000032601105, z: -0.0968805} + inSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + outSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.03894878, y: 0.00000032601105, z: -0.0968805} + inSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + outSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.038948763, y: 0.00000032301605, z: -0.09688051} + inSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + outSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.038948763, y: 0.00000032301605, z: -0.09688051} + inSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + outSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.03894876, y: 0.00000032321802, z: -0.09688052} + inSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + outSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.03894876, y: 0.00000032321802, z: -0.09688052} + inSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + outSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.03894874, y: 0.00000032582955, z: -0.09688052} + inSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + outSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.03894874, y: 0.00000032582955, z: -0.09688052} + inSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + outSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + outSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + outSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + outSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000025396042, y: 0.0000000025171114, z: -0.00000005643565} + outSlope: {x: 0.00000025396042, y: 0.0000000025171114, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.038948808, y: 0.00000032905677, z: -0.09688052} + inSlope: {x: 0.00000050792084, y: 0.000000005034223, z: -0.0000001128713} + outSlope: {x: 0.00000050792084, y: 0.000000005034223, z: -0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.14589126, y: -0.000000007190708, z: 0.000000029976878} + inSlope: {x: 0.0000002257426, y: -0.00000000375136, z: 0.00000039181813} + outSlope: {x: 0.0000002257426, y: -0.00000000375136, z: 0.00000039181813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.14589128, y: -0.0000000074383335, z: 0.000000055840605} + inSlope: {x: 0.0000001128713, y: -0.00000000187568, z: 0.00000019590907} + outSlope: {x: 0.0000001128713, y: -0.00000000187568, z: 0.00000019590907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.14589128, y: -0.0000000074383335, z: 0.000000055840605} + inSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + outSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.14589135, y: 0.000000014384659, z: 0.000000008330403} + inSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + outSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.14589135, y: 0.000000014384659, z: 0.000000008330403} + inSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + outSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.14589126, y: -0.000000007771782, z: 0.000000021444642} + inSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + outSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.14589126, y: -0.000000007771782, z: 0.000000021444642} + inSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + outSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.14589131, y: 0.0000000043922364, z: 0.000000034121623} + inSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + outSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.14589131, y: 0.0000000043922364, z: 0.000000034121623} + inSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + outSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.14589134, y: 0.000000002795229, z: 0.000000013440285} + inSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + outSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.14589134, y: 0.000000002795229, z: 0.000000013440285} + inSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + outSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.14589131, y: 0.00000000700612, z: 0.0000000036485783} + inSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + outSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.14589131, y: 0.00000000700612, z: 0.0000000036485783} + inSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + outSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.1458913, y: -1.8919921e-10, z: 0.000000024775892} + inSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + outSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.1458913, y: -1.8919921e-10, z: 0.000000024775892} + inSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + outSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.14589128, y: -0.0000000017147164, z: 0.000000024109484} + inSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + outSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.14589128, y: -0.0000000017147164, z: 0.000000024109484} + inSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + outSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + outSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + outSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + outSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0.0000002257426, y: -0.000000024595987, z: 0.000000019211516} + outSlope: {x: 0.0000002257426, y: -0.000000024595987, z: 0.000000019211516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.1458913, y: -0.000000005665944, z: 0.000000010902855} + inSlope: {x: 0.0000004514852, y: -0.000000049191975, z: 0.000000038423032} + outSlope: {x: 0.0000004514852, y: -0.000000049191975, z: 0.000000038423032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.35067046, y: -0.009224206, z: -0.34308544} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.35067046, y: -0.009224206, z: -0.34308544} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.044980764 + value: {x: 0.15576063, y: -0.000000011369518, z: -0.0000007896083} + inSlope: {x: -0.0000004514852, y: -0.000000080905785, z: -0.00000062071723} + outSlope: {x: -0.0000004514852, y: -0.000000080905785, z: -0.00000062071723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.110990286 + value: {x: 0.1557606, y: -0.00000001671007, z: -0.00000083058154} + inSlope: {x: -0.0000002257426, y: -0.000000040452893, z: -0.00000031035862} + outSlope: {x: -0.0000002257426, y: -0.000000040452893, z: -0.00000031035862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.1769998 + value: {x: 0.1557606, y: -0.00000001671007, z: -0.00000083058154} + inSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + outSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.24300933 + value: {x: 0.15576062, y: -0.000000023647786, z: -0.00000080964116} + inSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + outSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.30901885 + value: {x: 0.15576062, y: -0.000000023647786, z: -0.00000080964116} + inSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + outSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.37502837 + value: {x: 0.15576062, y: -0.0000000030251048, z: -0.00000079052694} + inSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + outSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4410379 + value: {x: 0.15576062, y: -0.0000000030251048, z: -0.00000079052694} + inSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + outSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.5070474 + value: {x: 0.15576059, y: -0.000000011294975, z: -0.00000080704217} + inSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + outSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.57305694 + value: {x: 0.15576059, y: -0.000000011294975, z: -0.00000080704217} + inSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + outSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.63906646 + value: {x: 0.1557606, y: -0.0000000032033916, z: -0.0000008074531} + inSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + outSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.705076 + value: {x: 0.1557606, y: -0.0000000032033916, z: -0.0000008074531} + inSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + outSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7710855 + value: {x: 0.15576057, y: -0.00000000704767, z: -0.00000080216506} + inSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + outSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.837095 + value: {x: 0.15576057, y: -0.00000000704767, z: -0.00000080216506} + inSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + outSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.90310454 + value: {x: 0.15576059, y: -0.0000000090004715, z: -0.0000008069034} + inSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + outSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96911407 + value: {x: 0.15576059, y: -0.0000000090004715, z: -0.0000008069034} + inSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + outSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0351236 + value: {x: 0.15576059, y: -0.000000009914647, z: -0.00000080430556} + inSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + outSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1011331 + value: {x: 0.15576059, y: -0.000000009914647, z: -0.00000080430556} + inSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + outSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1671426 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + outSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2331522 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2991617 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3651712 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + outSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4311807 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + outSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4971902 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5631998 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6292093 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0.0000001128713, y: -0.00000004565608, z: 0.0000000036572603} + outSlope: {x: 0.0000001128713, y: -0.00000004565608, z: 0.0000000036572603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6952188 + value: {x: 0.1557606, y: -0.000000019405936, z: -0.00000081089223} + inSlope: {x: 0.0000002257426, y: -0.00000009131216, z: 0.0000000073145205} + outSlope: {x: 0.0000002257426, y: -0.00000009131216, z: 0.0000000073145205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.93991613, y: -0.00828141, z: 0.2927984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.93991613, y: -0.00828141, z: 0.2927984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.5424665, y: 0.0000000041311936, z: -0.00000019516179} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.5424665, y: 0.0000000041311936, z: -0.00000019516179} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.9270634, y: -0.000000022259227, z: 0.0000000018832567} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.9270634, y: -0.000000022259227, z: 0.0000000018832567} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.9249606, y: -0.00828141, z: -0.3052871} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.9249606, y: -0.00828141, z: -0.3052871} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 0.56906635, y: -0.000000016917367, z: 0.00000013908223} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 0.56906635, y: -0.000000016917367, z: 0.00000013908223} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2666657 + value: {x: 1.0189703, y: -0.000000026109577, z: -0.0000001175429} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666654 + value: {x: 1.0189703, y: -0.000000026109577, z: -0.0000001175429} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21/Bone22 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 15 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 2635294239 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 45982632 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2635294239 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3097169453 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 45982632 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 563648882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2919814325 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 360520411 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185137064 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2325826247 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1696067156 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3716967535 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3280538074 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 960335105 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2593083981 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3495831604 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3001957094 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2709536620 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3989619677 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2037210983 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1596138282 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4035943581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2696752017 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2222384285 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3275979307 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1367437642 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3097169453 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 563648882 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2919814325 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 360520411 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185137064 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2325826247 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1696067156 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3716967535 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3280538074 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 960335105 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2593083981 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3495831604 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3001957094 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2709536620 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3989619677 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2037210983 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1596138282 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4035943581 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2696752017 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2222384285 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3275979307 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1367437642 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.7333317 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 1 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim.meta new file mode 100644 index 0000000000..4c5f9bde83 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐/tcks_飞鳐/飞行悬停.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e98da0e992cf51e4a8e1b4a2fe60ae7a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1.meta new file mode 100644 index 0000000000..2148c895cf --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd06df772e331c8479889ac18fb9603a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐.meta new file mode 100644 index 0000000000..31e4e2e4a7 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 240e17e7402493d4d8523ce4f22ee08b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller new file mode 100644 index 0000000000..a49fcf053b --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1107 &-7612431061802490230 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -917010142434361426} + m_Position: {x: 340, y: 100, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -917010142434361426} +--- !u!1102 &-917010142434361426 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: d0177b7e7935ff44fba2488c5737f118, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "tcks_\u98DE\u9CD0" + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -7612431061802490230} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller.meta new file mode 100644 index 0000000000..9660680262 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/tcks_飞鳐.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02087df28ca9b54419abdbb12b84f4ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim new file mode 100644 index 0000000000..fd344d8422 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim @@ -0,0 +1,60209 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.041979775, y: -0.6344824, z: -0.047848724, w: 0.77031183} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.25419518, y: -1.182854, z: 0.25810674, w: -0.9441375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.024572887, y: -0.7090152, z: -0.031295724, w: 0.7040697} + inSlope: {x: -0.33077782, y: -1.0514259, z: 0.35975125, w: -1.0335445} + outSlope: {x: -0.33102927, y: -1.0514259, z: 0.3601424, w: -1.0335445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.003086896, y: -0.77342486, z: -0.0019472516, w: 0.63387746} + inSlope: {x: -0.3622344, y: -0.29861924, z: 0.42700556, w: -0.36567447} + outSlope: {x: -0.36186424, y: -0.29772523, z: 0.42679954, w: -0.3638864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.023851177, y: -0.7518486, z: 0.02459427, w: 0.65844506} + inSlope: {x: -0.31828883, y: 0.53375965, z: 0.40576795, w: 0.58382756} + outSlope: {x: -0.31845638, y: 0.53375953, z: 0.40590757, w: 0.5838274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.044171643, y: -0.70145136, z: 0.052342128, w: 0.70941895} + inSlope: {x: -0.26794147, y: 0.7474421, z: 0.35081053, w: 0.6973742} + outSlope: {x: -0.26782978, y: 0.74923044, z: 0.35064298, w: 0.69648033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.058336556, y: -0.6536846, z: 0.0718958, w: 0.7510821} + inSlope: {x: -0.078175224, y: 0.31739476, z: 0.0961125, w: 0.26196244} + outSlope: {x: -0.078119345, y: 0.3165007, z: 0.09577722, w: 0.2601743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.054534443, y: -0.6610553, z: 0.06529544, w: 0.74549866} + inSlope: {x: 0.28336424, y: -0.71346766, z: -0.43954703, w: -0.57488686} + outSlope: {x: 0.2842583, y: -0.71704394, z: -0.4409999, w: -0.5757809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.019448854, y: -0.74270177, z: 0.014280568, w: 0.6691875} + inSlope: {x: 0.26048163, y: -0.5730987, z: -0.39270616, w: -0.6204844} + outSlope: {x: 0.25900072, y: -0.5704162, z: -0.39086196, w: -0.61690784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.019448854, y: -0.74270177, z: 0.014280568, w: 0.6691875} + inSlope: {x: 0.14752144, y: 0.23871651, z: -0.10626852, w: 0.27269113} + outSlope: {x: 0.14844352, y: 0.24050476, z: -0.10712073, w: 0.27269128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.00000048658836, y: -0.71002156, z: 0.00000052854347, w: 0.70417994} + inSlope: {x: 0.14848492, y: 0.25659803, z: -0.107249685, w: 0.25838616} + outSlope: {x: 0.14790326, y: 0.25391582, z: -0.10679812, w: 0.25659803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.00000048658836, y: -0.71002156, z: 0.00000052854347, w: 0.70417994} + inSlope: {x: -0.00012674749, y: 0, z: 0.00008472114, w: 0} + outSlope: {x: 0.00000062669875, y: 0, z: -0.000002707168, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00000045175355, y: -0.71002156, z: 0.0000005419728, w: 0.70417994} + inSlope: {x: 0.000003301466, y: 0, z: 0.0000009737279, w: 0} + outSlope: {x: 0.000003300187, y: 0, z: 0.0000009711699, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.00000045175355, y: -0.71002156, z: 0.0000005419728, w: 0.70417994} + inSlope: {x: 0.0000032997607, y: 0, z: 0.0000009703173, w: 0} + outSlope: {x: 0.000003301466, y: 0, z: 0.0000009737279, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00000045430542, y: -0.71002156, z: 0.00000054323647, w: 0.70417994} + inSlope: {x: -0.00000083815627, y: 0, z: -0.000003374794, w: 0} + outSlope: {x: -0.000000835172, y: 0, z: -0.0000033730887, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00000045430542, y: -0.71002156, z: 0.00000054323647, w: 0.70417994} + inSlope: {x: -0.000000833893, y: 0, z: -0.0000033730887, w: 0} + outSlope: {x: -0.0000008368773, y: 0, z: -0.000003374794, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.0000004343142, y: -0.71002156, z: 0.0000005417304, w: 0.70417994} + inSlope: {x: 0.000002511911, y: 0, z: 0.0000009848123, w: 0} + outSlope: {x: 0.0000025067927, y: 0, z: 0.0000009796955, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0000004343142, y: -0.71002156, z: 0.0000005417304, w: 0.70417994} + inSlope: {x: 0.000002508498, y: 0, z: 0.0000009814008, w: 0} + outSlope: {x: 0.0000025102079, y: 0, z: 0.0000009831078, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00000044228204, y: -0.71002156, z: 0.0000005298717, w: 0.70417994} + inSlope: {x: -0.0000013838544, y: 0, z: -0.0000027685614, w: 0} + outSlope: {x: -0.0000013834256, y: 0, z: -0.0000027677038, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.0000004533228, y: -0.7100215, z: 0.00000054454756, w: 0.70418} + inSlope: {x: 0.0000033726594, y: 0, z: 0.0000008569138, w: 0} + outSlope: {x: 0.00016740289, y: 0, z: -0.00002128987, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0000004533228, y: -0.7100215, z: 0.00000054454756, w: 0.70418} + inSlope: {x: -0.16335697, y: -0.025033975, z: 0.022052024, w: -0.025033975} + outSlope: {x: -0.16444941, y: -0.02413986, z: 0.022204448, w: -0.02503393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.021619957, y: -0.71307796, z: 0.0029022805, w: 0.70074534} + inSlope: {x: -0.16411753, y: -0.022351723, z: 0.022184085, w: -0.027716137} + outSlope: {x: -0.16327962, y: -0.021457693, z: 0.022058396, w: -0.028610257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.021619957, y: -0.71307796, z: 0.0029022805, w: 0.70074534} + inSlope: {x: 0.00016763822, y: 0, z: -0.000027939705, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.021619968, y: -0.71307796, z: 0.0029022787, w: 0.70074534} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00016763822, y: 0, z: 0.000027939705, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.021619968, y: -0.71307796, z: 0.0029022787, w: 0.70074534} + inSlope: {x: 0.16330756, y: 0.021457693, z: -0.021778999, w: 0.028610257} + outSlope: {x: 0.16431311, y: 0.022351723, z: -0.021932628, w: 0.026822068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0000004501403, y: -0.7100215, z: 0.0000005468558, w: 0.70418} + inSlope: {x: 0.32750788, y: 0.04738565, z: -0.043422814, w: 0.04827972} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12718168, y: -0.704205, z: 0.13051671, w: 0.686211} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.12718166, y: -0.704205, z: 0.13051671, w: 0.686211} + inSlope: {x: 0.033080578, y: -0.0053644176, z: -0.033527613, w: 0.007152557} + outSlope: {x: 0.033080578, y: -0.0062584872, z: -0.033974648, w: 0.0062584872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.122820556, y: -0.7050198, z: 0.12604128, w: 0.6870049} + inSlope: {x: 0.13880432, y: -0.025928019, z: -0.14260411, w: 0.025033949} + outSlope: {x: 0.13913961, y: -0.026822092, z: -0.14282764, w: 0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.108798414, y: -0.70744145, z: 0.11165139, w: 0.68936455} + inSlope: {x: 0.29683116, y: -0.047385696, z: -0.30443075, w: 0.047385696} + outSlope: {x: 0.2970546, y: -0.047385685, z: -0.30465418, w: 0.048279755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.083581224, y: -0.7110432, z: 0.08577295, w: 0.6928744} + inSlope: {x: 0.41484827, y: -0.050961964, z: -0.42568886, w: 0.050961964} + outSlope: {x: 0.4152954, y: -0.050067905, z: -0.42624775, w: 0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.053975794, y: -0.7140526, z: 0.055391196, w: 0.695807} + inSlope: {x: 0.45524913, y: -0.03576279, z: -0.46715143, w: 0.03665686} + outSlope: {x: 0.4553609, y: -0.03576279, z: -0.46731907, w: 0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.023468899, y: -0.71579266, z: 0.02408434, w: 0.6975027} + inSlope: {x: 0.4574843, y: -0.014305116, z: -0.46949837, w: 0.015199185} + outSlope: {x: 0.45742843, y: -0.016093256, z: -0.46941453, w: 0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0064164, y: -0.71616757, z: -0.0065846248, w: 0.6978678} + inSlope: {x: 0.43643874, y: 0.004470349, z: -0.44787306, w: -0.004470349} + outSlope: {x: 0.43643156, y: 0.0044703465, z: -0.44787985, w: -0.0035762773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.034155555, y: -0.71533966, z: -0.035051163, w: 0.69706106} + inSlope: {x: 0.3928317, y: 0.019669525, z: -0.4031694, w: -0.018775456} + outSlope: {x: 0.39232898, y: 0.019669535, z: -0.4025549, w: -0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.058246534, y: -0.71369904, z: -0.059773877, w: 0.6954625} + inSlope: {x: 0.3259443, y: 0.028610231, z: -0.33449385, w: -0.026822092} + outSlope: {x: 0.32627958, y: 0.026822092, z: -0.33482912, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.077223055, y: -0.7117998, z: -0.079247996, w: 0.69361186} + inSlope: {x: 0.23815782, y: 0.027716162, z: -0.2441928, w: -0.026822092} + outSlope: {x: 0.23748727, y: 0.026822092, z: -0.24374576, w: -0.027716162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.089651726, y: -0.7102639, z: -0.092002556, w: 0.692115} + inSlope: {x: 0.12774022, y: 0.017881395, z: -0.13109298, w: -0.017881395} + outSlope: {x: 0.12774022, y: 0.016093256, z: -0.1313165, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.09411219, y: -0.709656, z: -0.09658, w: 0.69152266} + inSlope: {x: 0.015199185, y: 0.0026822092, z: -0.015646221, w: -0.0026822092} + outSlope: {x: 0.015422703, y: 0.0017881395, z: -0.015646221, w: -0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.09167906, y: -0.7099913, z: -0.094083086, w: 0.69184947} + inSlope: {x: -0.07085503, y: -0.008940698, z: 0.07275493, w: 0.008940698} + outSlope: {x: -0.07107855, y: -0.009834767, z: 0.072866686, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.08475679, y: -0.71089643, z: -0.08697931, w: 0.6927316} + inSlope: {x: -0.13466926, y: -0.016093256, z: 0.13824554, w: 0.016987326} + outSlope: {x: -0.13444574, y: -0.016987326, z: 0.13791026, w: 0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.07390606, y: -0.71217066, z: -0.07584402, w: 0.6939731} + inSlope: {x: -0.18965454, y: -0.020563604, z: 0.19457193, w: 0.021457674} + outSlope: {x: -0.18987788, y: -0.020563586, z: 0.19479527, w: 0.019669516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.059686746, y: -0.7135738, z: -0.061251853, w: 0.69534034} + inSlope: {x: -0.23642536, y: -0.021457653, z: 0.24257207, w: 0.021457653} + outSlope: {x: -0.23748748, y: -0.020563623, z: 0.24363422, w: 0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.02347729, y: -0.7157925, z: -0.0240929, w: 0.6975023} + inSlope: {x: -0.30468246, y: -0.010728846, z: 0.31267324, w: 0.008940705} + outSlope: {x: -0.30392754, y: -0.010728827, z: 0.31189036, w: 0.011622896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0025225335, y: -0.7161931, z: -0.002588659, w: 0.6978928} + inSlope: {x: -0.32421872, y: 0, z: 0.33271936, w: 0} + outSlope: {x: -0.32479557, y: -0.0017881411, z: 0.3333102, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.01934535, y: -0.71592265, z: 0.019852651, w: 0.69762915} + inSlope: {x: -0.33549997, y: 0.0080466345, z: 0.344301, w: -0.008940705} + outSlope: {x: -0.33616993, y: 0.009834758, z: 0.3449709, w: -0.0080466205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.041796308, y: -0.7149123, z: 0.042892322, w: 0.6966447} + inSlope: {x: -0.33773455, y: 0.020563586, z: 0.34667522, w: -0.018775448} + outSlope: {x: -0.33767927, y: 0.022351762, z: 0.34656408, w: -0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.06395053, y: -0.71318465, z: 0.06562749, w: 0.69496113} + inSlope: {x: -0.33091787, y: 0.030398399, z: 0.33929977, w: -0.030398399} + outSlope: {x: -0.33069375, y: 0.031292412, z: 0.33952266, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.085486054, y: -0.7108046, z: 0.08772772, w: 0.692642} + inSlope: {x: -0.3075597, y: 0.039339032, z: 0.31560633, w: -0.037550896} + outSlope: {x: -0.30823082, y: 0.038445033, z: 0.31627744, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.10459435, y: -0.70810884, z: 0.10733709, w: 0.69001496} + inSlope: {x: -0.24296367, y: 0.037550963, z: 0.24933392, w: -0.037550963} + outSlope: {x: -0.24318674, y: 0.038444962, z: 0.2497805, w: -0.035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.117599495, y: -0.70595664, z: 0.12068326, w: 0.68791795} + inSlope: {x: -0.19647165, y: 0.035762757, z: 0.20161255, w: -0.033974618} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -6.1174954e-12, y: 0.031313073, z: -0.000000018381222, w: 0.99950963} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0000009469133, y: 0, z: -0.00017322275, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 4.6500157e-10, y: 0.03131307, z: -0.0000000116699415, w: 0.99950963} + inSlope: {x: -0.00094584445, y: -0.00005587935, z: 0.1738775, w: 0} + outSlope: {x: -0.00094925397, y: 0, z: 0.17454119, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.00012505037, y: 0.031304788, z: 0.023001123, w: 0.99924517} + inSlope: {x: -0.0020631705, y: -0.00039115545, z: 0.3793649, w: -0.008940696} + outSlope: {x: -0.0020614245, y: -0.00033527616, z: 0.37922525, w: -0.008046628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.00027216726, y: 0.031273816, z: 0.05006114, w: 0.9982564} + inSlope: {x: -0.0022613679, y: -0.0008381904, z: 0.41736293, w: -0.020563604} + outSlope: {x: -0.0022631134, y: -0.00078231085, z: 0.41730696, w: -0.021457668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.00042461022, y: 0.031217424, z: 0.0781003, w: 0.99645656} + inSlope: {x: -0.0022177114, y: -0.0011455265, z: 0.40892506, w: -0.031292435} + outSlope: {x: -0.0022072347, y: -0.0011734666, z: 0.4090369, w: -0.03308058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.00056569604, y: 0.031143107, z: 0.10405123, w: 0.99408406} + inSlope: {x: -0.0019103755, y: -0.0012293459, z: 0.3543869, w: -0.03665686} + outSlope: {x: -0.0019208529, y: -0.0012852253, z: 0.35427514, w: -0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.00067892764, y: 0.031067962, z: 0.1248783, w: 0.9916853} + inSlope: {x: -0.0013690443, y: -0.0010617079, z: 0.25391582, w: -0.032186512} + outSlope: {x: -0.0013620594, y: -0.0010617079, z: 0.25391582, w: -0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00074798753, y: 0.031015301, z: 0.13758115, w: 0.99000454} + inSlope: {x: -0.0005867333, y: -0.00044703486, z: 0.10818244, w: -0.014305116} + outSlope: {x: -0.000586733, y: -0.00044703466, z: 0.10795887, w: -0.015199179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0007566316, y: 0.031008346, z: 0.13917105, w: 0.9897824} + inSlope: {x: 0.00026542682, y: 0.00019557767, z: -0.046491604, w: 0.0062584854} + outSlope: {x: 0.00025844204, y: 0.00016763808, z: -0.046715144, w: 0.006258488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.00071464013, y: 0.031041374, z: 0.13144755, w: 0.99083674} + inSlope: {x: 0.0008381904, y: 0.00061467296, z: -0.15422703, w: 0.020563604} + outSlope: {x: 0.0008381904, y: 0.00061467296, z: -0.15467407, w: 0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.00064576557, y: 0.031091394, z: 0.11877901, w: 0.99243355} + inSlope: {x: 0.0012014062, y: 0.000782311, z: -0.2230704, w: 0.026822092} + outSlope: {x: 0.0012258535, y: 0.0008381904, z: -0.22284688, w: 0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00055460003, y: 0.031149717, z: 0.10201132, w: 0.9942952} + inSlope: {x: 0.0015296974, y: 0.0008381904, z: -0.27839097, w: 0.027716162} + outSlope: {x: 0.0015157276, y: 0.0008102507, z: -0.278838, w: 0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.0004457787, y: 0.03120763, z: 0.08199559, w: 0.9961438} + inSlope: {x: 0.0017497224, y: 0.000698492, z: -0.32130632, w: 0.025033953} + outSlope: {x: 0.0017427375, y: 0.00075437134, z: -0.32130632, w: 0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00032397744, y: 0.031257425, z: 0.059592467, w: 0.99773324} + inSlope: {x: 0.0019121218, y: 0.0005587936, z: -0.35069886, w: 0.020563604} + outSlope: {x: 0.001913868, y: 0.0005587936, z: -0.35103413, w: 0.021457674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00019393454, y: 0.03129314, z: 0.035673402, w: 0.9988734} + inSlope: {x: 0.0019994334, y: 0.0002793968, z: -0.3673509, w: 0.013411046} + outSlope: {x: 0.0019941947, y: 0.0002793968, z: -0.36701563, w: 0.013411046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.000060436083, y: 0.031311132, z: 0.011118743, w: 0.9994479} + inSlope: {x: 0.002007728, y: 0, z: -0.37000516, w: 0.003576279} + outSlope: {x: 0.0020120917, y: 0.000111758614, z: -0.36992103, w: 0.0044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.000071703835, y: 0.031310342, z: -0.013186075, w: 0.9994227} + inSlope: {x: 0.0019501005, y: -0.00022351723, z: -0.3594576, w: -0.0053644134} + outSlope: {x: 0.001957089, y: -0.00027939703, z: -0.36040822, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.00031233998, y: 0.03126135, z: -0.05744694, w: 0.997859} + inSlope: {x: 0.0016170103, y: -0.0006146735, z: -0.299346, w: -0.01698734} + outSlope: {x: 0.0016222461, y: -0.0005587931, z: -0.29828376, w: -0.016987309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.00041197776, y: 0.031223038, z: -0.075773455, w: 0.9966359} + inSlope: {x: 0.0013480883, y: -0.00064261205, z: -0.24832764, w: -0.018775448} + outSlope: {x: 0.0013411058, y: -0.0006426132, z: -0.24877512, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0004906631, y: 0.031185288, z: -0.09024641, w: 0.9954309} + inSlope: {x: 0.0009988444, y: -0.00055879407, z: -0.18473732, w: -0.01788141} + outSlope: {x: 0.0010128125, y: -0.0005308534, z: -0.18518403, w: -0.016093241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.0005447052, y: 0.03115551, z: -0.10018658, w: 0.9944806} + inSlope: {x: 0.00040861743, y: -0.00022351723, z: -0.07543707, w: -0.0071525513} + outSlope: {x: 0.0004051257, y: -0.00022351764, z: -0.075213686, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0005447769, y: 0.031155467, z: -0.10019992, w: 0.99447924} + inSlope: {x: -0.0004924373, y: 0.00025145733, z: 0.09074816, w: 0.008940705} + outSlope: {x: -0.0004924364, y: 0.00027939654, z: 0.090748, w: 0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.0004794686, y: 0.03119106, z: -0.08818812, w: 0.9956153} + inSlope: {x: -0.0013271335, y: 0.0006705517, z: 0.24162212, w: 0.021457653} + outSlope: {x: -0.0013166586, y: 0.0006426132, z: 0.24251664, w: 0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.000371075, y: 0.031240046, z: -0.068251275, w: 0.99717885} + inSlope: {x: -0.0018195732, y: 0.0006146735, z: 0.33360007, w: 0.022351762} + outSlope: {x: -0.0018335398, y: 0.0006705517, z: 0.33393475, w: 0.023245793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.00023996795, y: 0.03128255, z: -0.044137068, w: 0.9985356} + inSlope: {x: -0.001987208, y: 0.00039115516, z: 0.36533892, w: 0.016987309} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14285162, y: 0.68356013, z: 0.13907187, w: 0.7021381} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.14285167, y: 0.6835601, z: 0.13907191, w: 0.70213807} + inSlope: {x: -0.040009614, y: 0.0062584872, z: -0.03866851, w: 0.007152557} + outSlope: {x: -0.040009614, y: 0.008046627, z: -0.038892027, w: 0.008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.13753265, y: 0.6845933, z: 0.13389362, w: 0.7031993} + inSlope: {x: -0.16808508, y: 0.03129244, z: -0.1631677, w: 0.033080578} + outSlope: {x: -0.1678616, y: 0.03308058, z: -0.16383828, w: 0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.120418414, y: 0.68764246, z: 0.11723222, w: 0.7063314} + inSlope: {x: -0.35852197, y: 0.06079674, z: -0.34891072, w: 0.062584884} + outSlope: {x: -0.35908067, y: 0.059902657, z: -0.34991646, w: 0.059008587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.08960284, y: 0.69208807, z: 0.087231986, w: 0.7108979} + inSlope: {x: -0.50257885, y: 0.060796726, z: -0.4893913, w: 0.06258487} + outSlope: {x: -0.502579, y: 0.062584884, z: -0.48939142, w: 0.063478954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.053383686, y: 0.69562525, z: 0.051971182, w: 0.7145311} + inSlope: {x: -0.5516969, y: 0.04023314, z: -0.53700066, w: 0.04202128} + outSlope: {x: -0.5516969, y: 0.04023314, z: -0.5371124, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.01604342, y: 0.6973892, z: 0.015618902, w: 0.7163428} + inSlope: {x: -0.5542953, y: 0.011622907, z: -0.53962696, w: 0.011622907} + outSlope: {x: -0.5542953, y: 0.010728837, z: -0.539599, w: 0.012516976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.020525198, y: 0.6972778, z: -0.019982133, w: 0.71622837} + inSlope: {x: -0.52842313, y: -0.014305116, z: -0.5144533, w: -0.016093256} + outSlope: {x: -0.52850676, y: -0.015199179, z: -0.5145369, w: -0.015199179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.054433372, y: 0.6955481, z: -0.05299311, w: 0.71445185} + inSlope: {x: -0.4750302, y: -0.035762772, z: -0.4623456, w: -0.03665684} + outSlope: {x: -0.47441575, y: -0.03486872, z: -0.46195465, w: -0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.08383707, y: 0.69277257, z: -0.081618816, w: 0.71160096} + inSlope: {x: -0.39350244, y: -0.044703487, z: -0.38322064, w: -0.046491627} + outSlope: {x: -0.39383772, y: -0.044703487, z: -0.38344416, w: -0.047385696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.1069586, y: 0.6897484, z: -0.10412854, w: 0.70849437} + inSlope: {x: -0.28666112, y: -0.04112721, z: -0.27894977, w: -0.043809418} + outSlope: {x: -0.28632584, y: -0.042915348, z: -0.27894977, w: -0.042915348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.12207897, y: 0.6873649, z: -0.118848875, w: 0.7060462} + inSlope: {x: -0.15389176, y: -0.024139883, z: -0.1499802, w: -0.025033953} + outSlope: {x: -0.15389176, y: -0.027716162, z: -0.15009196, w: -0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.1275005, y: 0.6864313, z: -0.12412698, w: 0.70508736} + inSlope: {x: -0.01832843, y: -0.004470349, z: -0.017881395, w: -0.003576279} + outSlope: {x: -0.01832843, y: -0.0026822092, z: -0.017993154, w: -0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.12454351, y: 0.6869457, z: -0.121248156, w: 0.7056156} + inSlope: {x: 0.08516014, y: 0.014305116, z: 0.08303673, w: 0.016093256} + outSlope: {x: 0.0852719, y: 0.015199185, z: 0.08292497, w: 0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.11612633, y: 0.6883417, z: -0.113053724, w: 0.70704967} + inSlope: {x: 0.1621619, y: 0.025928022, z: 0.15791507, w: 0.025928022} + outSlope: {x: 0.16205014, y: 0.025928022, z: 0.15791507, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.10291997, y: 0.69033045, z: -0.10019679, w: 0.70909244} + inSlope: {x: 0.22877009, y: 0.03308058, z: 0.22284688, w: 0.03308058} + outSlope: {x: 0.22876988, y: 0.031292412, z: 0.22262317, w: 0.03308055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.08559322, y: 0.692569, z: -0.08332849, w: 0.71139175} + inSlope: {x: 0.2854315, y: 0.03308055, z: 0.27794367, w: 0.03308055} + outSlope: {x: 0.285432, y: 0.03397468, z: 0.27805594, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.0648243, y: 0.69470334, z: -0.063109115, w: 0.7135842} + inSlope: {x: 0.33147666, y: 0.028610257, z: 0.32253593, w: 0.030398399} + outSlope: {x: 0.3313643, y: 0.029504275, z: 0.32253537, w: 0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.041385762, y: 0.6963994, z: -0.040290747, w: 0.71532637} + inSlope: {x: 0.3678535, y: 0.020563586, z: 0.35813048, w: 0.021457653} + outSlope: {x: 0.36835706, y: 0.020563623, z: 0.3586899, w: 0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.01576217, y: 0.69739515, z: -0.015345131, w: 0.7163491} + inSlope: {x: 0.39277637, y: 0.0080466345, z: 0.38243866, w: 0.0080466345} + outSlope: {x: 0.39339033, y: 0.009834758, z: 0.38296884, w: 0.0080466205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.010996415, y: 0.6974818, z: 0.010705439, w: 0.7164382} + inSlope: {x: 0.40661976, y: -0.0053644134, z: 0.39583504, w: -0.0062584826} + outSlope: {x: 0.40660653, y: -0.005364423, z: 0.39586368, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.038476598, y: 0.69655746, z: 0.037458517, w: 0.7154887} + inSlope: {x: 0.40926078, y: -0.021457693, z: 0.39842018, w: -0.023245834} + outSlope: {x: 0.40931594, y: -0.020563586, z: 0.39847535, w: -0.022351723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.065590076, y: 0.6946352, z: 0.06385458, w: 0.71351415} + inSlope: {x: 0.40065464, y: -0.034868687, z: 0.39003757, w: -0.037550896} + outSlope: {x: 0.40143767, y: -0.03576282, z: 0.3908206, w: -0.03665689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.091931894, y: 0.6917986, z: 0.08949944, w: 0.7106005} + inSlope: {x: 0.37249213, y: -0.045597598, z: 0.36265737, w: -0.048279807} + outSlope: {x: 0.37305027, y: -0.046491586, z: 0.362992, w: -0.04827972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.11528403, y: 0.68847597, z: 0.112233676, w: 0.7071875} + inSlope: {x: 0.29403692, y: -0.046491586, z: 0.28632557, w: -0.04738565} + outSlope: {x: 0.29370216, y: -0.047385737, z: 0.28565553, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.13116226, y: 0.6857772, z: 0.12769179, w: 0.7044154} + inSlope: {x: 0.23759924, y: -0.042021316, z: 0.23111723, w: -0.044703525} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -4.2379877e-11, y: -0.009668282, z: 0.000000019081485, w: 0.99995327} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000073881324, y: 0, z: -0.0002032786, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -2.1868066e-10, y: -0.009668284, z: 0.0000000064747194, w: 0.99995327} + inSlope: {x: 0.0073828376, y: 0.000041909512, z: 0.20222218, w: 0} + outSlope: {x: 0.007410565, y: 0.00005587935, z: 0.20297444, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0009762172, y: -0.009664818, z: 0.026747921, w: 0.999595} + inSlope: {x: 0.016147386, y: 0.00030733642, z: 0.44253653, w: -0.011622905} + outSlope: {x: 0.01614215, y: 0.00032130632, z: 0.44250864, w: -0.011622907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0021316586, y: -0.009651753, z: 0.058406524, w: 0.9982439} + inSlope: {x: 0.017811546, y: 0.0005308539, z: 0.4886091, w: -0.028610231} + outSlope: {x: 0.01781154, y: 0.00051688397, z: 0.4885531, w: -0.028610224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0033298223, y: -0.009627904, z: 0.091235675, w: 0.9957772} + inSlope: {x: 0.017416893, y: 0.000684522, z: 0.47821543, w: -0.044703476} + outSlope: {x: 0.017423883, y: 0.0006565825, z: 0.47788027, w: -0.043809418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.004434951, y: -0.009596539, z: 0.121515736, w: 0.9925332} + inSlope: {x: 0.014996623, y: 0.0006565825, z: 0.4114956, w: -0.050067905} + outSlope: {x: 0.014996623, y: 0.00068452215, z: 0.4117191, w: -0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.005313211, y: -0.00956514, z: 0.14557959, w: 0.989286} + inSlope: {x: 0.010575169, y: 0.0005168841, z: 0.2896786, w: -0.042915348} + outSlope: {x: 0.010582154, y: 0.0004889444, z: 0.28990212, w: -0.04112721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00583285, y: -0.009543841, z: 0.15981747, w: 0.98708314} + inSlope: {x: 0.0041630124, y: 0.00018160792, z: 0.11399389, w: -0.018775465} + outSlope: {x: 0.0041490407, y: 0.00019557767, z: 0.114217356, w: -0.018775456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00586271, y: -0.009542554, z: 0.16063565, w: 0.9869503} + inSlope: {x: -0.002682208, y: -0.000097788834, z: -0.0735372, w: 0.011622901} + outSlope: {x: -0.002696179, y: -0.000111758716, z: -0.07353724, w: 0.011622907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.005478101, y: -0.0095586, z: 0.15009752, w: 0.9886098} + inSlope: {x: -0.0075297435, y: -0.00025145712, z: -0.20608307, w: 0.031292442} + outSlope: {x: -0.0075437133, y: -0.00025145712, z: -0.20653011, w: 0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.004868485, y: -0.009581759, z: 0.13339432, w: 0.99100477} + inSlope: {x: -0.010652003, y: -0.00030733648, z: -0.29191378, w: 0.04023314} + outSlope: {x: -0.010645018, y: -0.00030733648, z: -0.29146674, w: 0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.004072712, y: -0.0096078105, z: 0.1115905, w: 0.9936995} + inSlope: {x: -0.013173559, y: -0.00022351743, z: -0.36053362, w: 0.04023314} + outSlope: {x: -0.013187529, y: -0.00026542696, z: -0.36075714, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.003130069, y: -0.009632611, z: 0.08576244, w: 0.9962641} + inSlope: {x: -0.015108381, y: -0.00016763808, z: -0.413619, w: 0.03576279} + outSlope: {x: -0.015083934, y: -0.00016763808, z: -0.41317198, w: 0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.0020805516, y: -0.00965254, z: 0.05700613, w: 0.998325} + inSlope: {x: -0.016407577, y: -0.000055879358, z: -0.4491024, w: 0.025928022} + outSlope: {x: -0.016418055, y: -0.000055879358, z: -0.44943768, w: 0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.00096490467, y: -0.009664901, z: 0.026437888, w: 0.9996033} + inSlope: {x: -0.017101703, y: 0.0000698492, z: -0.46838078, w: 0.013411046} + outSlope: {x: -0.017088607, y: 0.00009778888, z: -0.46801755, w: 0.012516976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.00017554745, y: -0.0096681705, z: -0.0048100254, w: 0.9999417} + inSlope: {x: -0.017144486, y: 0.00025145712, z: -0.469666, w: -0.0026822092} + outSlope: {x: -0.017144252, y: 0.00022351723, z: -0.46967256, w: -0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0012992182, y: -0.009662146, z: -0.03559812, w: 0.99931866} + inSlope: {x: -0.016559483, y: 0.0003632155, z: -0.4542429, w: -0.016093241} + outSlope: {x: -0.016608408, y: 0.00036321615, z: -0.45530543, w: -0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.003327968, y: -0.009627954, z: -0.09118501, w: 0.9957819} + inSlope: {x: -0.013592666, y: 0.00047497498, z: -0.37305093, w: -0.03486875} + outSlope: {x: -0.01356121, y: 0.00044703446, z: -0.37170917, w: -0.033974618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.004157342, y: -0.009605274, z: -0.113909476, w: 0.993436} + inSlope: {x: -0.011161892, y: 0.00043306465, z: -0.30588332, w: -0.035762757} + outSlope: {x: -0.011175881, y: 0.00041909557, z: -0.30644268, w: -0.03486875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0048029427, y: -0.009584092, z: -0.13159862, w: 0.9912451} + inSlope: {x: -0.008137438, y: 0.0003213066, z: -0.22307059, w: -0.029504327} + outSlope: {x: -0.008151394, y: 0.00034924567, z: -0.22374074, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0052335486, y: -0.009568233, z: -0.14339711, w: 0.9896051} + inSlope: {x: -0.0028707995, y: 0.00013969827, z: -0.07890158, w: -0.011622896} + outSlope: {x: -0.0028777895, y: 0.00011175882, z: -0.07845469, w: -0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.005183029, y: -0.00957017, z: -0.14201288, w: 0.98980504} + inSlope: {x: 0.0052317097, y: -0.00019557793, z: 0.14282776, w: 0.020563623} + outSlope: {x: 0.0052317004, y: -0.00016763792, z: 0.14349806, w: 0.020563586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.0045427894, y: -0.009593, z: -0.12447056, w: 0.99216646} + inSlope: {x: 0.012649679, y: -0.00029336638, z: 0.34622818, w: 0.042915307} + outSlope: {x: 0.0126916105, y: -0.00030733674, z: 0.3467876, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.0035129362, y: -0.009623337, z: -0.09625299, w: 0.9953042} + inSlope: {x: 0.017182918, y: -0.00022351764, z: 0.47016934, w: 0.045597598} + outSlope: {x: 0.017217811, y: -0.00019557758, z: 0.47117433, w: 0.044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0022758292, y: -0.009649445, z: -0.062356796, w: 0.99800473} + inSlope: {x: 0.018761478, y: -0.000069849135, z: 0.5138661, w: 0.032186482} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.04903133, y: -0.66038567, z: 0.043283887, w: 0.748073} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0001117587, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.04903131, y: -0.6603857, z: 0.04328392, w: 0.7480729} + inSlope: {x: -0.10577961, y: 0.0053644176, z: 0.093318515, w: -0.008046627} + outSlope: {x: -0.106282525, y: 0.007152557, z: 0.094044946, w: -0.0053644176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.06316576, y: -0.65944934, z: 0.055761565, w: 0.7470122} + inSlope: {x: -0.23670493, y: 0.018775461, z: 0.20893289, w: -0.02145767} + outSlope: {x: -0.23681672, y: 0.016093256, z: 0.20904468, w: -0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.08058174, y: -0.6579684, z: 0.07113608, w: 0.7453347} + inSlope: {x: -0.2672151, y: 0.025033953, z: 0.23592265, w: -0.028610231} + outSlope: {x: -0.26710328, y: 0.025033947, z: 0.23592259, w: -0.029504294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.09877729, y: -0.6560329, z: 0.08719879, w: 0.7431421} + inSlope: {x: -0.26017424, y: 0.030398363, z: 0.2296641, w: -0.03486871} + outSlope: {x: -0.26028606, y: 0.029504301, z: 0.22988768, w: -0.03397465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.11527256, y: -0.65393245, z: 0.10176053, w: 0.74076277} + inSlope: {x: -0.21647663, y: 0.028610231, z: 0.19099565, w: -0.03308058} + outSlope: {x: -0.21636488, y: 0.029504301, z: 0.19099565, w: -0.03397465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.12762025, y: -0.6521428, z: 0.11266083, w: 0.7387356} + inSlope: {x: -0.1358986, y: 0.021457674, z: 0.119693585, w: -0.024139883} + outSlope: {x: -0.13567509, y: 0.020563604, z: 0.1199171, w: -0.024139883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.13339853, y: -0.65124094, z: 0.11776183, w: 0.7377141} + inSlope: {x: -0.018998982, y: 0.003576279, z: 0.017099084, w: -0.0026822092} + outSlope: {x: -0.018998973, y: 0.0017881386, z: 0.016875558, w: -0.0035762773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.13018028, y: -0.6517485, z: 0.11492082, w: 0.7382889} + inSlope: {x: 0.10773535, y: -0.017881386, z: -0.095106624, w: 0.020563595} + outSlope: {x: 0.108405955, y: -0.016093256, z: -0.0955537, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.11896117, y: -0.65341735, z: 0.10501677, w: 0.74017936} + inSlope: {x: 0.2038479, y: -0.029504301, z: -0.17993154, w: 0.032186512} + outSlope: {x: 0.20429493, y: -0.028610231, z: -0.18015505, w: 0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.10296626, y: -0.6555308, z: 0.09089673, w: 0.7425733} + inSlope: {x: 0.26900324, y: -0.03397465, z: -0.23748727, w: 0.03665686} + outSlope: {x: 0.26900324, y: -0.032186512, z: -0.23726375, w: 0.038445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.08308537, y: -0.6577257, z: 0.07334625, w: 0.7450598} + inSlope: {x: 0.3203005, y: -0.031292442, z: -0.28286132, w: 0.03576279} + outSlope: {x: 0.320524, y: -0.03308058, z: -0.28297308, w: 0.03486872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.06022517, y: -0.6596637, z: 0.05316567, w: 0.7472551} + inSlope: {x: 0.35835433, y: -0.025928022, z: -0.31638893, w: 0.028610231} + outSlope: {x: 0.35824257, y: -0.025033953, z: -0.31610954, w: 0.027716162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.03531391, y: -0.6610681, z: 0.031174446, w: 0.7488459} + inSlope: {x: 0.3817119, y: -0.016987326, z: -0.33698046, w: 0.016987326} + outSlope: {x: 0.38215894, y: -0.015199185, z: -0.3373437, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.009299745, y: -0.66175175, z: 0.008209597, w: 0.7496204} + inSlope: {x: 0.39150476, y: -0.0053644185, z: -0.34559986, w: 0.004470349} + outSlope: {x: 0.39109963, y: -0.003576279, z: -0.34523663, w: 0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.016856406, y: -0.66163534, z: -0.014880594, w: 0.74948865} + inSlope: {x: 0.3860146, y: 0.006258488, z: -0.34079424, w: -0.008046628} + outSlope: {x: 0.38595837, y: 0.0062584826, z: -0.34072408, w: -0.010728827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.04219109, y: -0.6607538, z: -0.0372456, w: 0.7484899} + inSlope: {x: 0.3665124, y: 0.017881379, z: -0.32365295, w: -0.019669516} + outSlope: {x: 0.36640128, y: 0.01788141, z: -0.32354176, w: -0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.065749094, y: -0.6592525, z: -0.058042206, w: 0.74678934} + inSlope: {x: 0.33237073, y: 0.025033975, z: -0.29342276, w: -0.028610257} + outSlope: {x: 0.33225837, y: 0.025927998, z: -0.29342225, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.086532004, y: -0.65737927, z: -0.076388985, w: 0.74466735} + inSlope: {x: 0.28509623, y: 0.028610205, z: -0.2516804, w: -0.032186482} + outSlope: {x: 0.28565553, y: 0.029504327, z: -0.25223964, w: -0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.10380168, y: -0.65542805, z: -0.091634385, w: 0.7424571} + inSlope: {x: 0.22396466, y: 0.027716186, z: -0.19803663, w: -0.03129247} + outSlope: {x: 0.22463481, y: 0.028610205, z: -0.19837154, w: -0.032186482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.11644706, y: -0.65377015, z: -0.10279749, w: 0.7405791} + inSlope: {x: 0.14930952, y: 0.019669516, z: -0.13176341, w: -0.02413986} + outSlope: {x: 0.14942154, y: 0.021457693, z: -0.1318754, w: -0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.12373253, y: -0.6527265, z: -0.10922895, w: 0.7393967} + inSlope: {x: 0.012069952, y: 0.0017881411, z: -0.0102818115, w: -0.0026822116} + outSlope: {x: 0.011734654, y: 0.0008940689, z: -0.010281793, w: -0.0026822067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.11801534, y: -0.65355104, z: -0.10418195, w: 0.7403307} + inSlope: {x: -0.20932388, y: -0.030398343, z: 0.18496051, w: 0.03308055} + outSlope: {x: -0.20977129, y: -0.029504327, z: 0.18518436, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.09575967, y: -0.65638155, z: -0.08453501, w: 0.743537} + inSlope: {x: -0.415184, y: -0.04917388, z: 0.36668068, w: 0.05185609} + outSlope: {x: -0.41652435, y: -0.044703446, z: 0.36723882, w: 0.052750066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.062559836, y: -0.6594943, z: -0.055226803, w: 0.7470632} + inSlope: {x: -0.54180574, y: -0.04112717, z: 0.47815925, w: 0.043809377} + outSlope: {x: -0.5419185, y: -0.041127246, z: 0.47832772, w: 0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.023473982, y: -0.6614782, z: -0.020722505, w: 0.7493105} + inSlope: {x: -0.5861191, y: -0.018775482, z: 0.5174154, w: 0.016093269} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.007333762, y: -0.06563248, z: -0.12598574, w: 0.9898314} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000013969838, y: 0.0001117587, z: -0.0002235174, w: -0.0008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.007333763, y: -0.065632485, z: -0.12598574, w: 0.9898314} + inSlope: {x: -0.012873205, y: -0.0017881392, z: 0.22105871, w: 0.028610228} + outSlope: {x: -0.01290813, y: -0.0017881392, z: 0.22150575, w: 0.027716158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.00561216, y: -0.0658522, z: -0.09641026, w: 0.993145} + inSlope: {x: -0.02757646, y: -0.0029057262, z: 0.47374514, w: 0.04559755} + outSlope: {x: -0.027562493, y: -0.0029057267, z: 0.47340992, w: 0.045597557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0036589634, y: -0.0660302, z: -0.06285626, w: 0.99582916} + inSlope: {x: -0.0303844, y: -0.0021234157, z: 0.522025, w: 0.03308058} + outSlope: {x: -0.030370424, y: -0.0022351737, z: 0.5221366, w: 0.033080574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0015597368, y: -0.066137634, z: -0.02679362, w: 0.9974495} + inSlope: {x: -0.031926315, y: -0.0008940695, z: 0.5485116, w: 0.015199182} + outSlope: {x: -0.031929813, y: -0.000782311, z: 0.5485397, w: 0.014305116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0005982961, y: -0.06615795, z: 0.01027928, w: 0.99775606} + inSlope: {x: -0.032154206, y: 0.00044703486, z: 0.5523116, w: -0.0053644185} + outSlope: {x: -0.03215246, y: 0.0005587936, z: 0.55232555, w: -0.006258488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0027271535, y: -0.06608856, z: 0.046850927, w: 0.9967095} + inSlope: {x: -0.03105146, y: 0.0016763808, z: 0.53336847, w: -0.025033953} + outSlope: {x: -0.031044476, y: 0.0017881395, z: 0.53336847, w: -0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0047391914, y: -0.065941066, z: 0.08141575, w: 0.99448514} + inSlope: {x: -0.028659126, y: 0.002793968, z: 0.49229714, w: -0.04023314} + outSlope: {x: -0.028652128, y: 0.002682208, z: 0.49218518, w: -0.03933905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0065481304, y: -0.065740086, z: 0.11249156, w: 0.99145395} + inSlope: {x: -0.024971077, y: 0.0033527599, z: 0.42926502, w: -0.048279744} + outSlope: {x: -0.024964103, y: 0.0032410028, z: 0.4288182, w: -0.047385696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.008069663, y: -0.06552045, z: 0.13862997, w: 0.98814154} + inSlope: {x: -0.02004672, y: 0.0032410028, z: 0.34421685, w: -0.048279766} + outSlope: {x: -0.02003275, y: 0.0032410028, z: 0.34444037, w: -0.048279766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.009221426, y: -0.065323144, z: 0.15841617, w: 0.9851661} + inSlope: {x: -0.013872051, y: 0.0025704505, z: 0.23826958, w: -0.038445} + outSlope: {x: -0.013872051, y: 0.0024586918, z: 0.2384931, w: -0.038445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.009922297, y: -0.0651899, z: 0.17045648, w: 0.9831563} + inSlope: {x: -0.006523915, y: 0.0012293459, z: 0.111982234, w: -0.019669535} + outSlope: {x: -0.006523915, y: 0.0011175872, z: 0.111982234, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.010091001, y: -0.06515631, z: 0.17335467, w: 0.98265} + inSlope: {x: 0.001480803, y: -0.000111758716, z: -0.02525747, w: 0.004470349} + outSlope: {x: 0.001480803, y: -0.00044703486, z: -0.02525747, w: 0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.009725332, y: -0.06522836, z: 0.16707289, w: 0.9837364} + inSlope: {x: 0.008800999, y: -0.001564622, z: -0.15109779, w: 0.025928022} + outSlope: {x: 0.00877306, y: -0.0016763808, z: -0.15065075, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.008920346, y: -0.06537731, z: 0.15324408, w: 0.98598295} + inSlope: {x: 0.014905819, y: -0.0025704505, z: -0.256151, w: 0.03933907} + outSlope: {x: 0.014877879, y: -0.0026822092, z: -0.25570396, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.0077389544, y: -0.06557215, z: 0.13294896, w: 0.9889211} + inSlope: {x: 0.020053705, y: -0.003129244, z: -0.3446639, w: 0.046491627} + outSlope: {x: 0.020053687, y: -0.002905724, z: -0.34444004, w: 0.045597516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.006244277, y: -0.06577841, z: 0.10727196, w: 0.9920317} + inSlope: {x: 0.02425162, y: -0.0030174826, z: -0.4169714, w: 0.045597516} + outSlope: {x: 0.024286587, y: -0.0029057292, z: -0.4170839, w: 0.044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.004500538, y: -0.06596273, z: 0.07731636, w: 0.99481195} + inSlope: {x: 0.027471714, y: -0.002458694, z: -0.47184572, w: 0.03665689} + outSlope: {x: 0.02746468, y: -0.0022351723, z: -0.47195664, w: 0.037550896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.0025797682, y: -0.06609623, z: 0.044319484, w: 0.99682516} + inSlope: {x: 0.02975224, y: -0.0015646206, z: -0.5111839, w: 0.022351723} + outSlope: {x: 0.029822141, y: -0.0013411058, z: -0.51219064, w: 0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0005305807, y: -0.0661587, z: 0.009116545, w: 0.9977673} + inSlope: {x: 0.030988624, y: -0.00011175882, z: -0.53233516, w: 0.0044703525} + outSlope: {x: 0.03103921, y: -0.00033527584, z: -0.53321433, w: 0.0053644134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.0015533069, y: -0.06613783, z: -0.026682526, w: 0.9974525} + inSlope: {x: 0.0311824, y: 0.0011175862, z: -0.5356311, w: -0.014305103} + outSlope: {x: 0.031184202, y: 0.0010058293, z: -0.5356321, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0036288474, y: -0.06603235, z: -0.062338214, w: 0.9958617} + inSlope: {x: 0.030352997, y: 0.0022351763, z: -0.521299, w: -0.033080608} + outSlope: {x: 0.030345956, y: 0.0021234136, z: -0.52135396, w: -0.032186482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.00560197, y: -0.065853335, z: -0.09623447, w: 0.99316204} + inSlope: {x: 0.028512416, y: 0.0031292413, z: -0.48972625, w: -0.04738565} + outSlope: {x: 0.028540408, y: 0.0031292469, z: -0.49006242, w: -0.047385737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.007429791, y: -0.065618485, z: -0.12763461, w: 0.9896203} + inSlope: {x: 0.025662618, y: 0.0037997998, z: -0.44055325, w: -0.05632644} + outSlope: {x: 0.025697496, y: 0.0037997928, z: -0.44144654, w: -0.05722041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.009024127, y: -0.06535889, z: -0.15502374, w: 0.98570496} + inSlope: {x: 0.02182087, y: 0.0039115516, z: -0.3748384, w: -0.05900855} + outSlope: {x: 0.021820908, y: 0.0039115585, z: -0.37483907, w: -0.057220515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.010340802, y: -0.065105565, z: -0.17764293, w: 0.98188454} + inSlope: {x: 0.01972543, y: 0.0040233172, z: -0.3384057, w: -0.060796797} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.044245433, y: 0.03321047, z: -0.17222728, w: 0.98350245} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0001117587, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.04424541, y: 0.03321047, z: -0.17222728, w: 0.98350245} + inSlope: {x: -0.04196539, y: 0.005085021, z: -0.065267086, w: -0.014305114} + outSlope: {x: -0.04202127, y: 0.004973262, z: -0.06571412, w: -0.0125169745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.04984394, y: 0.033868145, z: -0.18096808, w: 0.981641} + inSlope: {x: -0.12148171, y: 0.012125819, z: -0.18909572, w: -0.04202127} + outSlope: {x: -0.12176112, y: 0.01223758, z: -0.18931927, w: -0.04112721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.060462926, y: 0.034764353, z: -0.19738099, w: 0.97784275} + inSlope: {x: -0.050235543, y: 0.020619484, z: -0.08404256, w: -0.020563604} + outSlope: {x: -0.049956135, y: 0.020563599, z: -0.08337198, w: -0.019669529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.056530945, y: 0.03661205, z: -0.19216338, w: 0.9790491} + inSlope: {x: 0.16087663, y: 0.03470107, z: 0.22999938, w: 0.052750103} + outSlope: {x: 0.16093256, y: 0.034645204, z: 0.23022296, w: 0.052750114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0389773, y: 0.039256427, z: -0.16661532, w: 0.984469} + inSlope: {x: 0.28990212, y: 0.04531816, z: 0.42378905, w: 0.08225442} + outSlope: {x: 0.28984624, y: 0.045094643, z: 0.42334202, w: 0.07957221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.017835362, y: 0.042271655, z: -0.13565639, w: 0.98969305} + inSlope: {x: 0.3370643, y: 0.0506267, z: 0.49576166, w: 0.07241965} + outSlope: {x: 0.33709222, y: 0.05057082, z: 0.49553815, w: 0.07241965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0060276114, y: 0.045514658, z: -0.1004909, w: 0.9938781} + inSlope: {x: 0.37100402, y: 0.053755943, z: 0.5496294, w: 0.050961975} + outSlope: {x: 0.37094796, y: 0.053644158, z: 0.5498526, w: 0.050067883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.031716034, y: 0.048847444, z: -0.062384557, w: 0.9963515} + inSlope: {x: 0.3914906, y: 0.054705866, z: 0.58444196, w: 0.022351732} + outSlope: {x: 0.39098787, y: 0.054482374, z: 0.5840511, w: 0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.05831491, y: 0.052141145, z: -0.0226587, w: 0.9966781} + inSlope: {x: 0.39758164, y: 0.053308908, z: 0.59871936, w: -0.012516976} + outSlope: {x: 0.3979728, y: 0.053364787, z: 0.59911054, w: -0.011622907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.08490576, y: 0.05527988, z: 0.017328992, w: 0.99470335} + inSlope: {x: 0.39070848, y: 0.050179664, z: 0.59301966, w: -0.047385696} + outSlope: {x: 0.39026144, y: 0.050179664, z: 0.5926565, w: -0.045597557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.11058581, y: 0.058163766, z: 0.05621127, w: 0.9905695} + inSlope: {x: 0.37014487, y: 0.0452064, z: 0.56611377, w: -0.07689} + outSlope: {x: 0.37048015, y: 0.045150522, z: 0.56667256, w: -0.07510186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.13448617, y: 0.06071063, z: 0.09263973, w: 0.9847059} + inSlope: {x: 0.33795837, y: 0.039003793, z: 0.5199016, w: -0.09566546} + outSlope: {x: 0.3370643, y: 0.03933907, z: 0.51945454, w: -0.0974536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.15578483, y: 0.06285593, z: 0.12530816, w: 0.97779244} + inSlope: {x: 0.29280785, y: 0.031962994, z: 0.45329335, w: -0.10818244} + outSlope: {x: 0.29280785, y: 0.031739477, z: 0.4537404, w: -0.10728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.17371057, y: 0.06455047, z: 0.15296514, w: 0.9707005} + inSlope: {x: 0.23670496, y: 0.023692848, z: 0.36947432, w: -0.10281802} + outSlope: {x: 0.23759903, y: 0.023804607, z: 0.36835673, w: -0.10102988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.18753552, y: 0.0657558, z: 0.1744115, w: 0.9644103} + inSlope: {x: 0.17032029, y: 0.015087427, z: 0.2664328, w: -0.08225442} + outSlope: {x: 0.17076716, y: 0.015199171, z: 0.26643255, w: -0.08225434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.19655523, y: 0.066437386, z: 0.18848233, w: 0.9599097} + inSlope: {x: 0.09365372, y: 0.0062584826, z: 0.14752138, w: -0.04738565} + outSlope: {x: 0.09343037, y: 0.0063702525, z: 0.14640404, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.20005782, y: 0.066555575, z: 0.1940136, w: 0.9580741} + inSlope: {x: -0.0040233172, y: -0.0040233172, z: -0.004246835, w: 0.0017881411} + outSlope: {x: -0.0033527585, y: -0.004246827, z: -0.0040233103, w: 0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.19606563, y: 0.06588148, z: 0.18792742, w: 0.9601569} + inSlope: {x: -0.12136985, y: -0.016205, z: -0.18507227, w: 0.062584825} + outSlope: {x: -0.12137008, y: -0.016540304, z: -0.18663722, w: 0.061690867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.18387093, y: 0.06428815, z: 0.1691831, w: 0.96614474} + inSlope: {x: -0.23379944, y: -0.027604427, z: -0.35673413, w: 0.109076604} + outSlope: {x: -0.23446958, y: -0.027716137, z: -0.35852164, w: 0.10818234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.1648851, y: 0.061896414, z: 0.14006706, w: 0.97435254} + inSlope: {x: -0.32879385, y: -0.03721562, z: -0.4993375, w: 0.12874593} + outSlope: {x: -0.3283474, y: -0.037103925, z: -0.49911487, w: 0.12964022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.14014193, y: 0.05876996, z: 0.10230716, w: 0.9830766} + inSlope: {x: -0.40344933, y: -0.04548584, z: -0.6086385, w: 0.123381734} + outSlope: {x: -0.4032251, y: -0.045597516, z: -0.60852563, w: 0.12516965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.111284345, y: 0.055054642, z: 0.058546156, w: 0.9905337} + inSlope: {x: -0.4568692, y: -0.05241479, z: -0.6854715, w: 0.0947713} + outSlope: {x: -0.4580994, y: -0.052414883, z: -0.68664616, w: 0.095665544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.079404496, y: 0.050840735, z: 0.010548314, w: 0.99548924} + inSlope: {x: -0.48816252, y: -0.05749991, z: -0.7271308, w: 0.04917388} + outSlope: {x: -0.48872042, y: -0.057611566, z: -0.728289, w: 0.05006786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.046445347, y: 0.04635156, z: -0.038697343, w: 0.99709415} + inSlope: {x: -0.49464363, y: -0.06051729, z: -0.73257774, w: -0.0026822067} + outSlope: {x: -0.49475628, y: -0.060461517, z: -0.7326349, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.013622433, y: 0.04173793, z: -0.08736118, w: 0.9952087} + inSlope: {x: -0.49341518, y: -0.06258494, z: -0.7264323, w: -0.054538302} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -5.1628875e-11, y: -0.0047167693, z: -0.0000000013207039, w: 0.99998885} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000002828483, y: 0, z: 0.00006052253, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -1.577397e-11, y: -0.0047167693, z: 5.3547655e-10, w: 0.99998885} + inSlope: {x: 0.00028491655, y: 0, z: -0.06040422, w: 0} + outSlope: {x: 0.00028598186, y: 0, z: -0.06063006, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.000037688096, y: -0.0047166175, z: -0.0079899235, w: 0.9999569} + inSlope: {x: 0.0006250957, y: 0.000013969838, z: -0.13253185, w: -0.0017881392} + outSlope: {x: 0.00062493206, y: 0, z: -0.13250393, w: -0.00089406973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.00008250127, y: -0.0047160476, z: -0.017490366, w: 0.9998359} + inSlope: {x: 0.0006921619, y: 0.0000069849198, z: -0.14676714, w: -0.0017881395} + outSlope: {x: 0.00069227087, y: 0.000013969836, z: -0.14679503, w: -0.0026822085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.00012908847, y: -0.004715002, z: -0.027366906, w: 0.9996143} + inSlope: {x: 0.00067862845, y: 0.000013969836, z: -0.14388931, w: -0.003576278} + outSlope: {x: 0.00067841035, y: 0.0000139698395, z: -0.14388935, w: -0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.00017210124, y: -0.0047136284, z: -0.036485672, w: 0.999323} + inSlope: {x: 0.0005836774, y: 0.00002095476, z: -0.12382866, w: -0.004470349} + outSlope: {x: 0.00058389566, y: 0.00002095476, z: -0.12382866, w: -0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00020619796, y: -0.0047122594, z: -0.043714214, w: 0.9990329} + inSlope: {x: 0.00040796297, y: 0.00002095476, z: -0.08655713, w: -0.003576279} + outSlope: {x: 0.00040839953, y: 0.0000139698395, z: -0.086668886, w: -0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00022604442, y: -0.004711349, z: -0.04792169, w: 0.9988399} + inSlope: {x: 0.00015192201, y: 0.0000069849198, z: -0.03229827, w: -0.0017881395} + outSlope: {x: 0.00015170366, y: 0.0000069849166, z: -0.032242376, w: -0.0017881386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00022630816, y: -0.004711337, z: -0.047977593, w: 0.99883723} + inSlope: {x: -0.0001226726, y: -0.0000069849166, z: 0.025928011, w: 0.0008940693} + outSlope: {x: -0.00012267266, y: -0.0000069849198, z: 0.025983902, w: 0.0017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00020990105, y: -0.0047120955, z: -0.04449927, w: 0.9989982} + inSlope: {x: -0.00031781386, y: -0.0000139698395, z: 0.06733463, w: 0.0026822092} + outSlope: {x: -0.00031803214, y: -0.0000139698395, z: 0.06733463, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.00018438774, y: -0.004713164, z: -0.039090417, w: 0.99922454} + inSlope: {x: -0.00044310585, y: -0.00002095476, z: 0.09387732, w: 0.004470349} + outSlope: {x: -0.00044288757, y: -0.00002095476, z: 0.09387732, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.00015141025, y: -0.004714338, z: -0.03209915, w: 0.9994735} + inSlope: {x: -0.0005435141, y: -0.0000139698395, z: 0.11516736, w: 0.003576279} + outSlope: {x: -0.0005441689, y: -0.0000139698395, z: 0.115334995, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.00011261249, y: -0.004715425, z: -0.023873985, w: 0.9997038} + inSlope: {x: -0.00061969337, y: -0.00002095476, z: 0.13134444, w: 0.003576279} + outSlope: {x: -0.00061936595, y: -0.0000139698395, z: 0.13128856, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.000069641224, y: -0.004716255, z: -0.014764021, w: 0.99987984} + inSlope: {x: -0.0006700066, y: -0.0000069849198, z: 0.1420174, w: 0.0017881395} + outSlope: {x: -0.0006704432, y: -0.0000139698395, z: 0.14212915, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.000024146051, y: -0.004716707, z: -0.0051189945, w: 0.99997574} + inSlope: {x: -0.00069611816, y: 0, z: 0.14757739, w: 0.00089406973} + outSlope: {x: -0.0006955179, y: -0.0000069849198, z: 0.14744467, w: 0.00089406973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.000022221293, y: -0.004716717, z: 0.004710937, w: 0.99997777} + inSlope: {x: -0.00069639104, y: 0, z: 0.14764723, w: -0.00089406973} + outSlope: {x: -0.0006961176, y: 0.0000069849134, z: 0.14759122, w: -0.0008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.00006780827, y: -0.004716281, z: 0.01437543, w: 0.9998855} + inSlope: {x: -0.00067186134, y: 0.000013969827, z: 0.14245033, w: -0.0026822067} + outSlope: {x: -0.00067349966, y: 0.000006984926, z: 0.14282776, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00014992205, y: -0.0047143856, z: 0.031783648, w: 0.9994836} + inSlope: {x: -0.00054984464, y: 0.000020954778, z: 0.116620325, w: -0.0044703525} + outSlope: {x: -0.0005480974, y: 0.000013969827, z: 0.11622896, w: -0.0035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.00018338024, y: -0.0047132033, z: 0.038876824, w: 0.9992328} + inSlope: {x: -0.00044899897, y: 0.000013969827, z: 0.09527422, w: -0.0035762757} + outSlope: {x: -0.00045009117, y: 0.000013969852, z: 0.09544203, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.00020928368, y: -0.004712124, z: 0.04436838, w: 0.99900407} + inSlope: {x: -0.00032479907, y: 0.000013969852, z: 0.06889931, w: -0.0026822116} + outSlope: {x: -0.00032545332, y: 0.000013969827, z: 0.06906682, w: -0.0026822067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.00022630814, y: -0.004711337, z: 0.04797759, w: 0.99883723} + inSlope: {x: -0.0001047737, y: 0.0000069849134, z: 0.022295844, w: -0.0008940689} + outSlope: {x: -0.000104337334, y: 0.000006984926, z: 0.022184124, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.00022311024, y: -0.004711489, z: 0.047299627, w: 0.9988696} + inSlope: {x: 0.00023683265, y: -0.000013969852, z: -0.05017971, w: 0.0026822116} + outSlope: {x: 0.00023770533, y: -0.0000069849134, z: -0.050291378, w: 0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.00019500607, y: -0.0047127367, z: 0.04134151, w: 0.9991339} + inSlope: {x: 0.0005494071, y: -0.00002095474, z: -0.1163966, w: 0.0044703446} + outSlope: {x: 0.0005504995, y: -0.000020954778, z: -0.116676204, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.00015056467, y: -0.0047143656, z: 0.03191988, w: 0.9994793} + inSlope: {x: 0.00073821936, y: -0.000027939705, z: -0.15646234, w: 0.005364423} + outSlope: {x: 0.0007395277, y: -0.00002095474, z: -0.15668558, w: 0.0044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.00009752391, y: -0.004715761, z: 0.020675171, w: 0.9997751} + inSlope: {x: 0.0008034833, y: -0.000013969827, z: -0.17032012, w: 0.0035762757} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00089224253, y: 0.012006575, z: 0.091348015, w: 0.99574625} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000026193445, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.00089224253, y: 0.012006575, z: 0.091348015, w: 0.99574625} + inSlope: {x: -0.00016327247, y: 0.000027939675, z: -0.021904705, w: 0.0026822088} + outSlope: {x: -0.00016414559, y: 0.000027939675, z: -0.021904705, w: 0.0017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0008705533, y: 0.012009124, z: 0.08844742, w: 0.9960081} + inSlope: {x: -0.00068015646, y: 0.000083819024, z: -0.0911951, w: 0.008046627} + outSlope: {x: -0.0006810297, y: 0.0000698492, z: -0.09130687, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.00080209324, y: 0.012016493, z: 0.079293564, w: 0.99677855} + inSlope: {x: -0.0014528633, y: 0.0001396984, z: -0.19468369, w: 0.015199185} + outSlope: {x: -0.0014546092, y: 0.00012572853, z: -0.19468364, w: 0.016093252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.00067818165, y: 0.012027236, z: 0.06273124, w: 0.99795777} + inSlope: {x: -0.0022054878, y: 0.0001536682, z: -0.29470766, w: 0.01877546} + outSlope: {x: -0.0022072347, y: 0.0001396984, z: -0.2948195, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.0005109182, y: 0.0120364735, z: 0.040386584, w: 0.9991115} + inSlope: {x: -0.002603629, y: 0.00009778888, z: -0.3476255, w: 0.014305116} + outSlope: {x: -0.002603629, y: 0.000055879358, z: -0.3475696, w: 0.013411046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00033457042, y: 0.012039681, z: 0.016843433, w: 0.99978554} + inSlope: {x: -0.0026935597, y: 0, z: -0.3590528, w: 0.006258488} + outSlope: {x: -0.00269225, y: -0.000027939679, z: -0.3590528, w: 0.006258488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0001557369, y: 0.012036124, z: -0.0070158555, w: 0.99990296} + inSlope: {x: -0.0026782802, y: -0.000111758716, z: -0.35755107, w: -0.0026822092} + outSlope: {x: -0.0026778425, y: -0.000111758665, z: -0.35751596, w: -0.0017881386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.000019323401, y: 0.01202601, z: -0.030356396, w: 0.99946684} + inSlope: {x: -0.0025730687, y: -0.00020954749, z: -0.34349027, w: -0.010728832} + outSlope: {x: -0.0025713237, y: -0.0002095476, z: -0.34321102, w: -0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.00018435073, y: 0.012010471, z: -0.05234544, w: 0.99855673} + inSlope: {x: -0.0023770556, y: -0.0002793968, z: -0.3165007, w: -0.016987326} + outSlope: {x: -0.0023779287, y: -0.0002793968, z: -0.31666833, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.0003331175, y: 0.01199147, z: -0.07215627, w: 0.9973212} + inSlope: {x: -0.0020902373, y: -0.00029336664, z: -0.27760866, w: -0.019669535} + outSlope: {x: -0.0020867449, y: -0.00032130632, z: -0.2772734, w: -0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.0004594457, y: 0.011971604, z: -0.08897044, w: 0.9959622} + inSlope: {x: -0.0017025742, y: -0.00029336664, z: -0.2257526, w: -0.020563604} + outSlope: {x: -0.0017060667, y: -0.00029336664, z: -0.22597612, w: -0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.0005572122, y: 0.011953877, z: -0.10197759, w: 0.9947146} + inSlope: {x: -0.0012249803, y: -0.00023748727, z: -0.16238542, w: -0.016987326} + outSlope: {x: -0.0012206148, y: -0.00022351743, z: -0.16182663, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00062033144, y: 0.011941338, z: -0.11037265, w: 0.99381834} + inSlope: {x: -0.0006478513, y: -0.00012572856, z: -0.08616597, w: -0.008940698} + outSlope: {x: -0.00064959755, y: -0.0001396984, z: -0.08616597, w: -0.009834767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00064272597, y: 0.0119366795, z: -0.11335074, w: 0.9934832} + inSlope: {x: 0.0000017462299, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000087311497, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.00062033144, y: 0.011941338, z: -0.11037265, w: 0.99381834} + inSlope: {x: 0.000645232, y: 0.0001396984, z: 0.085942455, w: 0.009834767} + outSlope: {x: 0.0006452314, y: 0.00012572845, z: 0.08616589, w: 0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0005572122, y: 0.011953877, z: -0.10197759, w: 0.9947146} + inSlope: {x: 0.0012118825, y: 0.00022351723, z: 0.16182648, w: 0.016093241} + outSlope: {x: 0.0012206158, y: 0.00023748749, z: 0.1630561, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00033355062, y: 0.011991409, z: -0.07221392, w: 0.997317} + inSlope: {x: 0.0020858736, y: 0.0002933669, z: 0.27783242, w: 0.020563623} + outSlope: {x: 0.0020832506, y: 0.00029336638, z: 0.27749664, w: 0.019669516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.00018435076, y: 0.012010471, z: -0.052345432, w: 0.99855673} + inSlope: {x: 0.0023713782, y: 0.0002514569, z: 0.31627688, w: 0.016093241} + outSlope: {x: 0.0023753115, y: 0.00023748749, z: 0.31700388, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.000019857805, y: 0.012025967, z: -0.030427646, w: 0.9994647} + inSlope: {x: 0.0025739453, y: 0.00019557793, z: 0.34315544, w: 0.010728846} + outSlope: {x: 0.0025791794, y: 0.00016763792, z: 0.34379745, w: 0.009834758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.00015573706, y: 0.012036123, z: -0.00701584, w: 0.99990296} + inSlope: {x: 0.002681552, y: 0.00009778879, z: 0.3573831, w: 0.0017881378} + outSlope: {x: 0.0026813385, y: 0.000097788965, z: 0.35733485, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.00033401232, y: 0.012039681, z: 0.01676894, w: 0.9997868} + inSlope: {x: 0.0026909427, y: -0.000013969852, z: 0.35880166, w: -0.0062584938} + outSlope: {x: 0.002691811, y: -0.000013969827, z: 0.35888484, w: -0.0062584826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.00051091815, y: 0.012036472, z: 0.04038659, w: 0.9991115} + inSlope: {x: 0.0026036266, y: -0.00009778879, z: 0.3475134, w: -0.013411034} + outSlope: {x: 0.0026079968, y: -0.00012572866, z: 0.3481287, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.0006776966, y: 0.012027273, z: 0.06266645, w: 0.9979618} + inSlope: {x: 0.0022054904, y: -0.00018160808, z: 0.29448447, w: -0.018775482} + outSlope: {x: 0.0022115982, y: -0.0001536681, z: 0.29504275, w: -0.018775448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.00080209324, y: 0.012016492, z: 0.079293564, w: 0.99677855} + inSlope: {x: 0.0018859266, y: -0.00018160776, z: 0.2516804, w: -0.020563586} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00012486689, y: -0.014307353, z: 0.008725365, w: 0.9998596} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0000024010658, y: 0, z: -0.00012572855, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.00012485843, y: -0.0143073695, z: 0.008725356, w: 0.9998596} + inSlope: {x: -0.0016416742, y: 0.000013969838, z: 0.11474825, w: -0.0008940696} + outSlope: {x: -0.001647786, y: 0.000013969838, z: 0.11516734, w: -0.0008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.00034204268, y: -0.014303824, z: 0.02390295, w: 0.99961185} + inSlope: {x: -0.003645691, y: 0.00009778886, z: 0.25483778, w: -0.0062584872} + outSlope: {x: -0.0036456916, y: 0.0000698492, z: 0.2548099, w: -0.0053644185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.0006061414, y: -0.014295069, z: 0.04235908, w: 0.9990001} + inSlope: {x: -0.0040887976, y: 0.00015366824, z: 0.28571117, w: -0.011622907} + outSlope: {x: -0.0040879236, y: 0.00018160787, z: 0.28576696, w: -0.012516974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.00088176975, y: -0.014280717, z: 0.061620943, w: 0.99799705} + inSlope: {x: -0.0039953734, y: 0.00025145707, z: 0.27922907, w: -0.01788139} + outSlope: {x: -0.003994501, y: 0.00023748727, z: 0.27917328, w: -0.016987326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.001133629, y: -0.014262933, z: 0.079221725, w: 0.99675435} + inSlope: {x: -0.00337197, y: 0.00026542696, z: 0.23558737, w: -0.018775465} + outSlope: {x: -0.003364985, y: 0.0002793968, z: 0.2352521, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0013266094, y: -0.014246282, z: 0.09270787, w: 0.99559057} + inSlope: {x: -0.0022107272, y: 0.00019557776, z: 0.15456231, w: -0.014305116} + outSlope: {x: -0.0022124734, y: 0.0002095476, z: 0.15456231, w: -0.014305116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0014257816, y: -0.014236697, z: 0.099638365, w: 0.9949209} + inSlope: {x: -0.00052561524, y: 0.000055879358, z: 0.036880378, w: -0.003576279} + outSlope: {x: -0.000525615, y: 0.000055879333, z: 0.0367686, w: -0.0035762773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0013962213, y: -0.014239628, z: 0.09757263, w: 0.9951256} + inSlope: {x: 0.0013044332, y: -0.0001257285, z: -0.09097155, w: 0.008940693} + outSlope: {x: 0.0013009413, y: -0.0001396984, z: -0.0909716, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.001253967, y: -0.014252858, z: 0.08763139, w: 0.99605024} + inSlope: {x: 0.0026472847, y: -0.00023748727, z: -0.18484892, w: 0.016093256} + outSlope: {x: 0.0026490309, y: -0.00023748727, z: -0.1851842, w: 0.016987326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.0010465682, y: -0.014269587, z: 0.07313761, w: 0.99721926} + inSlope: {x: 0.0035431006, y: -0.00025145712, z: -0.24765731, w: 0.017881395} + outSlope: {x: 0.0035431006, y: -0.00026542696, z: -0.24732204, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00078623, y: -0.014286295, z: 0.054944284, w: 0.998387} + inSlope: {x: 0.0042494508, y: -0.00025145712, z: -0.2969988, w: 0.016987326} + outSlope: {x: 0.0042546894, y: -0.00022351743, z: -0.29722232, w: 0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.00048525535, y: -0.014299683, z: 0.033911113, w: 0.9993225} + inSlope: {x: 0.004774193, y: -0.00016763808, z: -0.33365566, w: 0.011622907} + outSlope: {x: 0.00477201, y: -0.00015366824, z: -0.33343214, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00015606885, y: -0.014307063, z: 0.010906437, w: 0.9998382} + inSlope: {x: 0.0051042303, y: -0.000055879358, z: -0.3566919, w: 0.003576279} + outSlope: {x: 0.005108159, y: -0.000055879358, z: -0.3569713, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.0001887942, y: -0.014306667, z: -0.01319382, w: 0.9998106} + inSlope: {x: 0.0052504768, y: 0.00008381904, z: -0.36691782, w: -0.0053644185} + outSlope: {x: 0.0052454565, y: 0.000055879358, z: -0.3665686, w: -0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0005367393, y: -0.014297843, z: -0.03750942, w: 0.99919385} + inSlope: {x: 0.0051976535, y: 0.00019557776, z: -0.36321583, w: -0.013411046} + outSlope: {x: 0.0051959027, y: 0.00018160776, z: -0.36315963, w: -0.013411034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.0008751748, y: -0.014281125, z: -0.06116048, w: 0.9980254} + inSlope: {x: 0.004955796, y: 0.00029336638, z: -0.34639582, w: -0.020563586} + outSlope: {x: 0.004970648, y: 0.00030733674, z: -0.34740227, w: -0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.0014727645, y: -0.014231916, z: -0.10292216, w: 0.9945865} + inSlope: {x: 0.003929021, y: 0.0004051257, z: -0.27470317, w: -0.028610257} + outSlope: {x: 0.0039167902, y: 0.00040512497, z: -0.27369684, w: -0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0017089228, y: -0.014205492, z: -0.119425714, w: 0.99274004} + inSlope: {x: 0.0031205101, y: 0.00037718532, z: -0.21804106, w: -0.025927998} + outSlope: {x: 0.0031275006, y: 0.00036321615, z: -0.21848848, w: -0.025928045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0018850601, y: -0.014183193, z: -0.1317348, w: 0.99118173} + inSlope: {x: 0.0021391336, y: 0.0002933669, z: -0.1495333, w: -0.020563623} + outSlope: {x: 0.0021373834, y: 0.00027939654, z: -0.14953303, w: -0.019669516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.001991298, y: -0.014168669, z: -0.13915911, w: 0.9901667} + inSlope: {x: 0.00034575321, y: 0.00004190948, z: -0.02413986, w: -0.0026822067} + outSlope: {x: 0.00034575383, y: 0.00005587941, z: -0.024139903, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0019308814, y: -0.014177028, z: -0.13493705, w: 0.9907509} + inSlope: {x: -0.0025006034, y: -0.0003492463, z: 0.17479078, w: 0.024139903} + outSlope: {x: -0.0025023452, y: -0.00033527584, z: 0.17479047, w: 0.02413986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.0016605319, y: -0.014211223, z: -0.11604416, w: 0.99314106} + inSlope: {x: -0.00513915, y: -0.00060070254, z: 0.35908043, w: 0.04202124} + outSlope: {x: -0.005149637, y: -0.00060070364, z: 0.3598634, w: 0.042021316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.0012518932, y: -0.014253032, z: -0.08748714, w: 0.99606293} + inSlope: {x: -0.0067474386, y: -0.0005867338, z: 0.4716222, w: 0.041127246} + outSlope: {x: -0.006757904, y: -0.00058673276, z: 0.47218016, w: 0.04112717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.00076933566, y: -0.0142872045, z: -0.05376445, w: 0.9984511} + inSlope: {x: -0.0073132045, y: -0.00039115516, z: 0.511128, w: 0.027716137} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00042691777, y: 0.0034770814, z: -0.08284172, w: 0.9965566} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000013096723, y: -0.0000034924594, z: -0.0001117587, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.00042691777, y: 0.0034770814, z: -0.082841724, w: 0.9965566} + inSlope: {x: 0.001144217, y: 0.000073341645, z: 0.1683086, w: 0.014305114} + outSlope: {x: 0.0011485826, y: 0.000076834105, z: 0.16897915, w: 0.013411044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.00027343436, y: 0.0034858324, z: -0.060325388, w: 0.9981726} + inSlope: {x: 0.0024730978, y: 0.000129221, z: 0.36220995, w: 0.02145767} + outSlope: {x: 0.002472225, y: 0.0001396984, z: 0.36209825, w: 0.022351744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.00009791765, y: 0.0034936573, z: -0.03456414, w: 0.9993964} + inSlope: {x: 0.0027287025, y: 0.000118743636, z: 0.40043148, w: 0.013411046} + outSlope: {x: 0.0027285928, y: 0.00011525115, z: 0.40031964, w: 0.014305112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.00009017564, y: 0.0034994604, z: -0.0069420934, w: 0.9999698} + inSlope: {x: 0.002847882, y: 0.0000768341, z: 0.4178797, w: 0.0026822085} + outSlope: {x: 0.002847992, y: 0.00008032658, z: 0.41781694, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.00028132548, y: 0.0035026225, z: 0.021144612, w: 0.9997703} + inSlope: {x: 0.0028149227, y: 0.00003841706, z: 0.41428956, w: -0.008940698} + outSlope: {x: 0.0028149227, y: 0.00003841706, z: 0.4143175, w: -0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00046601193, y: 0.0035030514, z: 0.048296794, w: 0.99882674} + inSlope: {x: 0.0026472847, y: 0.0000034924599, z: 0.38975853, w: -0.018775465} + outSlope: {x: 0.0026477212, y: -0.0000034924599, z: 0.3898144, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00063478376, y: 0.0035011766, z: 0.07312235, w: 0.99731666} + inSlope: {x: 0.0023425675, y: -0.000027939679, z: 0.34455213, w: -0.025033953} + outSlope: {x: 0.0023434395, y: -0.000027939666, z: 0.34455198, w: -0.025033941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.0007783078, y: 0.0034978697, z: 0.09424393, w: 0.99554265} + inSlope: {x: 0.0018920393, y: -0.000045401957, z: 0.27883786, w: -0.026822079} + outSlope: {x: 0.0018902939, y: -0.0000349246, z: 0.2786145, w: -0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00088737777, y: 0.003494297, z: 0.11030131, w: 0.99389166} + inSlope: {x: 0.00130618, y: -0.00004190952, z: 0.19256027, w: -0.021457674} + outSlope: {x: 0.0013079263, y: -0.00004190952, z: 0.19278379, w: -0.021457674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.0009528748, y: 0.0034917092, z: 0.11994639, w: 0.9927738} + inSlope: {x: 0.0005867333, y: -0.0000349246, z: 0.08650125, w: -0.010728837} + outSlope: {x: 0.00059022574, y: -0.00002444722, z: 0.08650125, w: -0.009834767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.00096567214, y: 0.0034911644, z: 0.121831246, w: 0.99254423} + inSlope: {x: -0.00018771972, y: 0.0000069849198, z: -0.027492644, w: 0.003576279} + outSlope: {x: -0.00018946595, y: 0.0000069849198, z: -0.027604403, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.0009279151, y: 0.0034927346, z: 0.116270915, w: 0.99321103} + inSlope: {x: -0.00086001825, y: 0.000027939679, z: -0.12572856, w: 0.014305116} + outSlope: {x: -0.000858272, y: 0.0000349246, z: -0.1256168, w: 0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.00085180067, y: 0.0034955633, z: 0.10506362, w: 0.994459} + inSlope: {x: -0.0013882528, y: 0.000055879358, z: -0.20395966, w: 0.021457674} + outSlope: {x: -0.001389126, y: 0.0000523869, z: -0.20407142, w: 0.021457674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.0007431765, y: 0.0034988238, z: 0.08907389, w: 0.9960185} + inSlope: {x: -0.0018344146, y: 0.00004889444, z: -0.26922676, w: 0.024139883} + outSlope: {x: -0.0018326683, y: 0.00004889444, z: -0.26900324, w: 0.024139883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0006079068, y: 0.0035016192, z: 0.06916924, w: 0.9975986} + inSlope: {x: -0.0021854069, y: 0.00004540198, z: -0.3210828, w: 0.022351744} + outSlope: {x: -0.0021854048, y: 0.000038417023, z: -0.32119426, w: 0.021457653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.00045191933, y: 0.003503108, z: 0.046225917, w: 0.99892473} + inSlope: {x: -0.0024499584, y: 0.00002095474, z: -0.36003038, w: 0.016093241} + outSlope: {x: -0.0024512724, y: 0.000027939705, z: -0.3601428, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.0002812241, y: 0.0035026192, z: 0.021131534, w: 0.9997705} + inSlope: {x: -0.0026189107, y: -0.000017462315, z: -0.3849812, w: 0.0080466345} + outSlope: {x: -0.0026193426, y: -0.0000069849134, z: -0.38503638, w: 0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.00010247863, y: 0.0034997456, z: -0.0051326957, w: 0.9999807} + inSlope: {x: -0.0027122202, y: -0.000048894395, z: -0.397714, w: -0.0017881378} + outSlope: {x: -0.0027166996, y: -0.000052386946, z: -0.39837128, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.00007987204, y: 0.0034943277, z: -0.031912364, w: 0.9994846} + inSlope: {x: -0.002701202, y: -0.00008731157, z: -0.396185, w: -0.0125169875} + outSlope: {x: -0.0027061084, y: -0.00008381896, z: -0.39691073, w: -0.012516965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0002574158, y: 0.0034866421, z: -0.057972208, w: 0.99831206} + inSlope: {x: -0.0025957685, y: -0.000115251074, z: -0.3809851, w: -0.021457653} + outSlope: {x: -0.0025953366, y: -0.00012572866, z: -0.38092992, w: -0.022351762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.0004262094, y: 0.0034771243, z: -0.08273497, w: 0.9965654} + inSlope: {x: -0.0024006318, y: -0.00014668345, z: -0.35259905, w: -0.029504327} + outSlope: {x: -0.0024006274, y: -0.00013271335, z: -0.35248667, w: -0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.0005780883, y: 0.003466712, z: -0.1050056, w: 0.9944655} + inSlope: {x: -0.002119048, y: -0.0001536681, z: -0.3108007, w: -0.03308055} + outSlope: {x: -0.0021225445, y: -0.00014319098, z: -0.31113654, w: -0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.00070892414, y: 0.0034563325, z: -0.12418248, w: 0.9922531} + inSlope: {x: -0.0017471046, y: -0.00014319098, z: -0.25603944, w: -0.03129247} + outSlope: {x: -0.0017479745, y: -0.00014668319, z: -0.25648603, w: -0.032186482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.00081118115, y: 0.0034473063, z: -0.13916539, w: 0.99026287} + inSlope: {x: -0.0005256147, y: -0.000048894395, z: -0.076889925, w: -0.010728827} + outSlope: {x: -0.0005238695, y: -0.00004540202, z: -0.07666655, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.00077894167, y: 0.0034502386, z: -0.13444266, w: 0.99091506} + inSlope: {x: 0.00048545236, y: 0.00004540202, z: 0.071078606, w: 0.009834776} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0004132125, y: -0.03156533, z: -0.013083074, w: 0.999416} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000005238689, y: 0, z: 0.00016763805, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.0004132126, y: -0.031565342, z: -0.013083074, w: 0.999416} + inSlope: {x: 0.005294132, y: 0.00005587935, z: -0.16762409, w: -0.0017881392} + outSlope: {x: 0.005315523, y: 0.00005587935, z: -0.16829464, w: -0.0026822088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0011204503, y: -0.031548146, z: -0.035475507, w: 0.9988718} + inSlope: {x: 0.011579249, y: 0.00039115545, z: -0.36656854, w: -0.013411044} + outSlope: {x: 0.011580997, y: 0.00044703486, z: -0.36668035, w: -0.013411046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0019568433, y: -0.03150734, z: -0.061957218, w: 0.99757946} + inSlope: {x: 0.012782403, y: 0.000782311, z: -0.40456656, w: -0.025033953} + outSlope: {x: 0.012778908, y: 0.0008381902, z: -0.40462235, w: -0.025928017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0028242168, y: -0.031441454, z: -0.08941987, w: 0.99549365} + inSlope: {x: 0.012509989, y: 0.0010617076, z: -0.3960728, w: -0.03486871} + outSlope: {x: 0.012509991, y: 0.0011734666, z: -0.3960729, w: -0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.0036249093, y: -0.031359226, z: -0.11477123, w: 0.9928902} + inSlope: {x: 0.010784716, y: 0.0012852253, z: -0.3414229, w: -0.03933907} + outSlope: {x: 0.010784716, y: 0.0012293459, z: -0.34153464, w: -0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.004262352, y: -0.031278968, z: -0.13495381, w: 0.9903489} + inSlope: {x: 0.0076275324, y: 0.0010617079, z: -0.24162234, w: -0.03308058} + outSlope: {x: 0.0076135625, y: 0.0010058285, z: -0.24095179, w: -0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0046411077, y: -0.031225007, z: -0.14694595, w: 0.98864067} + inSlope: {x: 0.0030244703, y: 0.00044703486, z: -0.09566546, w: -0.014305116} + outSlope: {x: 0.003017484, y: 0.00047497434, z: -0.0954419, w: -0.014305109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.004666053, y: -0.031221299, z: -0.14773573, w: 0.98852295} + inSlope: {x: -0.0018649728, y: -0.00027939666, z: 0.059008576, w: 0.008940693} + outSlope: {x: -0.0018719585, y: -0.00030733648, z: 0.05923212, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00439189, y: -0.031261045, z: -0.13905522, w: 0.9897813} + inSlope: {x: -0.005322509, y: -0.000782311, z: 0.16830863, w: 0.024139883} + outSlope: {x: -0.005329494, y: -0.00072643167, z: 0.16875567, w: 0.023245813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.0039559365, y: -0.031319197, z: -0.12525214, w: 0.99162257} + inSlope: {x: -0.0075506982, y: -0.0009499491, z: 0.23916365, w: 0.03039837} + outSlope: {x: -0.0075367284, y: -0.0009499491, z: 0.2384931, w: 0.03039837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.0033862856, y: -0.03138589, z: -0.10721599, w: 0.9937344} + inSlope: {x: -0.009324868, y: -0.0010058285, z: 0.29526654, w: 0.031292442} + outSlope: {x: -0.009338838, y: -0.0010058285, z: 0.29571357, w: 0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.0027112423, y: -0.031451397, z: -0.08584289, w: 0.9958084} + inSlope: {x: -0.01070439, y: -0.0009499491, z: 0.33885244, w: 0.029504301} + outSlope: {x: -0.010697405, y: -0.00089406973, z: 0.33874068, w: 0.029504301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.001959477, y: -0.031507168, z: -0.06204064, w: 0.99757427} + inSlope: {x: -0.011626399, y: -0.00072643167, z: 0.36813322, w: 0.023245813} + outSlope: {x: -0.0116368765, y: -0.00072643167, z: 0.3684126, w: 0.022351744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.0011600616, y: -0.031546723, z: -0.03672967, w: 0.9988265} + inSlope: {x: -0.012136298, y: -0.00044703486, z: 0.38428235, w: 0.014305116} + outSlope: {x: -0.012122328, y: -0.00044703486, z: 0.38377944, w: 0.014305116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.00034238893, y: -0.03156618, z: -0.010840682, w: 0.99944276} + inSlope: {x: -0.01217166, y: -0.000111758716, z: 0.38537198, w: 0.004470349} + outSlope: {x: -0.012175141, y: -0.00016763792, z: 0.38549736, w: 0.0044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.00046396995, y: -0.03156463, z: 0.014690108, w: 0.99939364} + inSlope: {x: -0.011785295, y: 0.00016763792, z: 0.37313408, w: -0.0053644134} + outSlope: {x: -0.011783133, y: 0.00016763822, z: 0.37307885, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.0012294586, y: -0.031544097, z: 0.03892686, w: 0.99874324} + inSlope: {x: -0.010934901, y: 0.00039115586, z: 0.3462288, w: -0.013411058} + outSlope: {x: -0.010936628, y: 0.00044703446, z: 0.34628406, w: -0.013411034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.0019226696, y: -0.031509433, z: 0.060875196, w: 0.9976461} + inSlope: {x: -0.009679344, y: 0.0005587931, z: 0.3064421, w: -0.018775448} + outSlope: {x: -0.009696824, y: 0.0006146735, z: 0.30705735, w: -0.018775482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0025206292, y: -0.031467244, z: 0.07980767, w: 0.9963103} + inSlope: {x: -0.007976785, y: 0.0006705529, z: 0.25257492, w: -0.020563623} + outSlope: {x: -0.007994234, y: 0.0006146724, z: 0.2530215, w: -0.020563586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0029872516, y: -0.031426374, z: 0.09458181, w: 0.99501646} + inSlope: {x: -0.0058428803, y: 0.0005587931, z: 0.18496051, w: -0.017881379} + outSlope: {x: -0.0058428906, y: 0.00055879407, z: 0.18496084, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.0032997604, y: -0.031395104, z: 0.104476385, w: 0.99402624} + inSlope: {x: -0.0021024628, y: 0.00016763822, z: 0.0664965, w: -0.0062584938} + outSlope: {x: -0.0020989664, y: 0.00022351723, z: 0.06649638, w: -0.0071525513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.003267445, y: -0.031398494, z: 0.103453204, w: 0.99413323} + inSlope: {x: 0.0036356475, y: -0.00039115516, z: -0.11511137, w: 0.012516965} + outSlope: {x: 0.0036601012, y: -0.00039115586, z: -0.11589389, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.0028131194, y: -0.03144244, z: 0.089068465, w: 0.99552506} + inSlope: {x: 0.008891811, y: -0.0007823117, z: -0.2814087, w: 0.025033975} + outSlope: {x: 0.00891275, y: -0.0008381896, z: -0.2821905, w: 0.025927998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.002080804, y: -0.031499382, z: 0.065882005, w: 0.9973279} + inSlope: {x: 0.012080408, y: -0.0007823103, z: -0.38254973, w: 0.025927998} + outSlope: {x: 0.012080429, y: -0.0007823117, z: -0.38255042, w: 0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.001201526, y: -0.031545173, z: 0.03804248, w: 0.99877733} + inSlope: {x: 0.013185794, y: -0.00050291466, z: -0.41747504, w: 0.016093269} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.11943448, y: 0.04192222, z: 0.1741824, w: 0.97654414} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.119434476, y: 0.04192222, z: 0.17418234, w: 0.97654414} + inSlope: {x: -0.024698673, y: 0.002235174, z: -0.033080578, w: 0.008940696} + outSlope: {x: -0.025033949, y: 0.002235174, z: -0.032633543, w: 0.008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.116129264, y: 0.042216394, z: 0.16982035, w: 0.97769773} + inSlope: {x: -0.10304152, y: 0.00944361, z: -0.13589859, w: 0.034868717} + outSlope: {x: -0.103153296, y: 0.009443612, z: -0.13567509, w: 0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.10568059, y: 0.04313556, z: 0.15602742, w: 0.98113525} + inSlope: {x: -0.22027643, y: 0.020675363, z: -0.29057267, w: 0.06884337} + outSlope: {x: -0.22072342, y: 0.020731237, z: -0.29057258, w: 0.06884335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.086712874, y: 0.04476264, z: 0.13097578, w: 0.98657113} + inSlope: {x: -0.33471727, y: 0.031460073, z: -0.44167036, w: 0.08761881} + outSlope: {x: -0.33482912, y: 0.03157184, z: -0.44189397, w: 0.084936626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.061017122, y: 0.046882696, z: 0.09701153, w: 0.99230427} + inSlope: {x: -0.39640817, y: 0.036489222, z: -0.5239249, w: 0.07420779} + outSlope: {x: -0.39646405, y: 0.036489222, z: -0.52370137, w: 0.07420779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.033846892, y: 0.04902056, z: 0.06106562, w: 0.9963545} + inSlope: {x: -0.4104339, y: 0.036321584, z: -0.54342675, w: 0.045597557} + outSlope: {x: -0.41054565, y: 0.036321584, z: -0.54342675, w: 0.046491627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.006252187, y: 0.051083744, z: 0.024524048, w: 0.9983736} + inSlope: {x: -0.40921152, y: 0.034589324, z: -0.5426165, w: 0.014305116} + outSlope: {x: -0.4091834, y: 0.034421667, z: -0.54275596, w: 0.014305109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.020760056, y: 0.05299832, z: -0.0112792915, w: 0.9983151} + inSlope: {x: -0.39302728, y: 0.031460065, z: -0.52223426, w: -0.016093249} + outSlope: {x: -0.3926363, y: 0.03157184, z: -0.52174556, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.04618811, y: 0.05470554, z: -0.045012828, w: 0.9964175} + inSlope: {x: -0.36131594, y: 0.027492644, z: -0.4810654, w: -0.03933907} + outSlope: {x: -0.36181885, y: 0.027380886, z: -0.48151243, w: -0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.06905242, y: 0.056161344, z: -0.07537022, w: 0.9931752} + inSlope: {x: -0.31605366, y: 0.02263114, z: -0.42110685, w: -0.056326393} + outSlope: {x: -0.31605366, y: 0.022519382, z: -0.42088333, w: -0.055432323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.08840587, y: 0.05733432, z: -0.10108484, w: 0.98928213} + inSlope: {x: -0.2563745, y: 0.017210843, z: -0.34186992, w: -0.058114532} + outSlope: {x: -0.25682154, y: 0.017266722, z: -0.34231696, w: -0.05990267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.10333416, y: 0.0582015, z: -0.120931685, w: 0.9855507} + inSlope: {x: -0.18384309, y: 0.011399389, z: -0.24508686, w: -0.050067905} + outSlope: {x: -0.18350782, y: 0.011511148, z: -0.24486335, w: -0.049173836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.11294554, y: 0.05874229, z: -0.13371535, w: 0.9828086} + inSlope: {x: -0.0974536, y: 0.005587936, z: -0.12964012, w: -0.029504301} + outSlope: {x: -0.09767712, y: 0.0056438153, z: -0.12986363, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.11635022, y: 0.05893054, z: -0.13824478, w: 0.98177296} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.11294554, y: 0.05874229, z: -0.13371535, w: 0.9828086} + inSlope: {x: 0.09778888, y: -0.0051967804, z: 0.12964012, w: 0.028610231} + outSlope: {x: 0.09745351, y: -0.0050291377, z: 0.12941648, w: 0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.10333416, y: 0.0582015, z: -0.120931685, w: 0.9855507} + inSlope: {x: 0.18384293, y: -0.009499482, z: 0.24430433, w: 0.05006786} + outSlope: {x: 0.18429029, y: -0.009275981, z: 0.24419302, w: 0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.08840586, y: 0.057334326, z: -0.101084836, w: 0.98928213} + inSlope: {x: 0.25682175, y: -0.013299299, z: 0.34019384, w: 0.059008654} + outSlope: {x: 0.2565978, y: -0.013131637, z: 0.3401932, w: 0.05811448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.06911884, y: 0.05616547, z: -0.07545847, w: 0.99316365} + inSlope: {x: 0.31683567, y: -0.016652035, z: 0.41943008, w: 0.054538205} + outSlope: {x: 0.31728327, y: -0.016875582, z: 0.42043665, w: 0.053644232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.046188097, y: 0.054705538, z: -0.045012824, w: 0.9964175} + inSlope: {x: 0.36237797, y: -0.019893069, z: 0.4795012, w: 0.040233172} + outSlope: {x: 0.3629361, y: -0.019948913, z: 0.48056206, w: 0.039339032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.020842494, y: 0.053004004, z: -0.0113885915, w: 0.99831176} + inSlope: {x: 0.3935021, y: -0.022742879, z: 0.5209209, w: 0.014305103} + outSlope: {x: 0.3935028, y: -0.02268704, z: 0.5209078, w: 0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0062522106, y: 0.05108374, z: 0.024524095, w: 0.9983736} + inSlope: {x: 0.40969384, y: -0.024866337, z: 0.5421979, w: -0.014305129} + outSlope: {x: 0.4096163, y: -0.025145689, z: 0.5422528, w: -0.014305103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.033760805, y: 0.04902717, z: 0.060951672, w: 0.99636406} + inSlope: {x: 0.41071293, y: -0.02671031, z: 0.54353803, w: -0.046491586} + outSlope: {x: 0.41132832, y: -0.026766237, z: 0.5447125, w: -0.044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.061017137, y: 0.0468827, z: 0.09701159, w: 0.99230427} + inSlope: {x: 0.39635265, y: -0.027492668, z: 0.5248194, w: -0.07331378} + outSlope: {x: 0.3970225, y: -0.02749262, z: 0.52571255, w: -0.07510179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.08663854, y: 0.044768915, z: 0.1308776, w: 0.9865903} + inSlope: {x: 0.33427003, y: -0.02503393, z: 0.44278765, w: -0.08851282} + outSlope: {x: 0.33438239, y: -0.024922216, z: 0.4423414, w: -0.08672484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.105680615, y: 0.04313557, z: 0.15602745, w: 0.98113525} + inSlope: {x: 0.28442618, y: -0.022240004, z: 0.37618017, w: -0.08940705} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000035323403, y: 0.024505937, z: 0.000000060090834, w: 0.9996997} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00024301349, y: -0.000083819024, z: -0.00028426966, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.000000002424665, y: 0.024505932, z: -9.399327e-10, w: 0.9996997} + inSlope: {x: 0.2411761, y: 0.08094124, z: 0.28129593, w: -0.0017881392} + outSlope: {x: 0.24211127, y: 0.08127651, z: 0.28237185, w: -0.0026822088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.03228362, y: 0.035089083, z: 0.03751426, w: 0.99815786} + inSlope: {x: 0.52616, y: 0.18132849, z: 0.6096437, w: -0.04649162} + outSlope: {x: 0.52616006, y: 0.181105, z: 0.60969967, w: -0.045597557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0704897, y: 0.0476768, z: 0.08088711, w: 0.9930838} + inSlope: {x: 0.5785749, y: 0.20043926, z: 0.66395855, w: -0.10550023} + outSlope: {x: 0.57879823, y: 0.20027158, z: 0.6638466, w: -0.10550021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.1099332, y: 0.060610607, z: 0.12545244, w: 0.98412526} + inSlope: {x: 0.5621462, y: 0.1934543, z: 0.6473063, w: -0.16003844} + outSlope: {x: 0.5622581, y: 0.19339846, z: 0.64775354, w: -0.1564622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.14601362, y: 0.0722983, z: 0.16663618, w: 0.9724636} + inSlope: {x: 0.47922137, y: 0.16137959, z: 0.563711, w: -0.17881395} + outSlope: {x: 0.47877434, y: 0.16160311, z: 0.5625934, w: -0.18149616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.17434725, y: 0.08125645, z: 0.20009953, w: 0.9607084} + inSlope: {x: 0.33304098, y: 0.106729575, z: 0.41462484, w: -0.1564622} + outSlope: {x: 0.33304098, y: 0.106617816, z: 0.41484836, w: -0.1564622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.1907937, y: 0.086107016, z: 0.22176108, w: 0.95236826} + inSlope: {x: 0.12673439, y: 0.03241003, z: 0.20585956, w: -0.07689} + outSlope: {x: 0.12584026, y: 0.03196298, z: 0.20608298, w: -0.07599589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.19131072, y: 0.08550939, z: 0.22761583, w: 0.9509361} + inSlope: {x: -0.093206726, y: -0.043809395, z: -0.007376072, w: 0.025033941} + outSlope: {x: -0.09320677, y: -0.04447997, z: -0.008046628, w: 0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.178331, y: 0.0802174, z: 0.22067116, w: 0.95554566} + inSlope: {x: -0.25078657, y: -0.09823591, z: -0.15065075, w: 0.090301044} + outSlope: {x: -0.25145712, y: -0.09845943, z: -0.1513213, w: 0.090301044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.15787739, y: 0.07221734, z: 0.20728543, w: 0.96275234} + inSlope: {x: -0.35427514, y: -0.13411047, z: -0.24005772, w: 0.11980534} + outSlope: {x: -0.35427514, y: -0.13411047, z: -0.24005772, w: 0.12069941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.13119316, y: 0.061969027, z: 0.18832393, w: 0.97133017} + inSlope: {x: -0.4385412, y: -0.16283245, z: -0.31605366, w: 0.13142826} + outSlope: {x: -0.43898824, y: -0.16288833, z: -0.31627718, w: 0.13142826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.099549934, y: 0.049940713, z: 0.16468786, w: 0.9800375} + inSlope: {x: -0.5039201, y: -0.18507244, z: -0.37841502, w: 0.12338162} + outSlope: {x: -0.50369656, y: -0.1849048, z: -0.37841502, w: 0.12606384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.06427514, y: 0.036621578, z: 0.13734722, w: 0.9877567} + inSlope: {x: -0.54784125, y: -0.19971283, z: -0.4255772, w: 0.10281802} + outSlope: {x: -0.54840004, y: -0.19988047, z: -0.42647126, w: 0.10192395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.026758343, y: 0.022525502, z: 0.107354656, w: 0.9936053} + inSlope: {x: -0.5713664, y: -0.2073683, z: -0.45809898, w: 0.06884337} + outSlope: {x: -0.5707518, y: -0.20711684, z: -0.45731667, w: 0.06973744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.011562483, y: 0.00818705, z: 0.07584096, w: 0.99701923} + inSlope: {x: -0.5717017, y: -0.20682347, z: -0.47206882, w: 0.031292442} + outSlope: {x: -0.57174313, y: -0.20679535, z: -0.4720684, w: 0.030398343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.04922895, y: -0.005848411, z: 0.04399596, w: 0.9978009} + inSlope: {x: -0.55080235, y: -0.19865793, z: -0.46865976, w: -0.008940689} + outSlope: {x: -0.55069155, y: -0.19863033, z: -0.46871647, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.084796876, y: -0.019037616, z: 0.013040813, w: 0.996131} + inSlope: {x: -0.5077203, y: -0.18247421, z: -0.44635075, w: -0.040233172} + outSlope: {x: -0.5074959, y: -0.182418, z: -0.44629407, w: -0.04112717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.11677495, y: -0.030817468, z: -0.015715301, w: 0.9925558} + inSlope: {x: -0.44546986, y: -0.1593119, z: -0.406969, w: -0.062584825} + outSlope: {x: -0.4463647, y: -0.15942395, z: -0.4075844, w: -0.064373076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.14411321, y: -0.04078518, z: -0.041326143, w: 0.9878563} + inSlope: {x: -0.3636632, y: -0.12869027, z: -0.34907866, w: -0.07241971} + outSlope: {x: -0.3643331, y: -0.12880181, z: -0.34952506, w: -0.072419584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.16521777, y: -0.04833914, z: -0.062306136, w: 0.9830993} + inSlope: {x: -0.26263276, y: -0.09080388, z: -0.27308217, w: -0.0661611} + outSlope: {x: -0.2626332, y: -0.09080404, z: -0.2732503, w: -0.06347901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.17914522, y: -0.053114578, z: -0.07776977, w: 0.9793047} + inSlope: {x: -0.08828946, y: -0.022798799, z: -0.15053913, w: -0.028610257} + outSlope: {x: -0.08784227, y: -0.02263112, z: -0.15031534, w: -0.030398343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.17701615, y: -0.051423743, z: -0.08238059, w: 0.979405} + inSlope: {x: 0.17948434, y: 0.0856071, z: 0.024810413, w: 0.036656827} + outSlope: {x: 0.18015522, y: 0.08605429, z: 0.024922216, w: 0.040233172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.15512124, y: -0.041658193, z: -0.07447013, w: 0.9842034} + inSlope: {x: 0.4258011, y: 0.18741953, z: 0.18205512, w: 0.090301126} + outSlope: {x: 0.42647088, y: 0.1879221, z: 0.18272534, w: 0.08761875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.12006535, y: -0.026558997, z: -0.058165736, w: 0.99070466} + inSlope: {x: 0.5774568, y: 0.2506187, z: 0.2797877, w: 0.09387723} + outSlope: {x: 0.577346, y: 0.25067502, z: 0.27989995, w: 0.092983335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.07789178, y: -0.008610872, z: -0.037401155, w: 0.99622273} + inSlope: {x: 0.6322196, y: 0.27312458, z: 0.3147687, w: 0.061690867} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0008874514, y: 0.05084388, z: -0.017429583, w: 0.9985541} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000007858034, y: 0, z: 0.00016763805, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.000887453, y: 0.050843894, z: -0.017429583, w: 0.9985541} + inSlope: {x: -0.007789931, y: -0.00016763805, z: -0.15299766, w: -0.0026822088} + outSlope: {x: -0.007822236, y: -0.0001117587, z: -0.15361233, w: -0.0026822088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.0019280685, y: 0.050815072, z: -0.037866913, w: 0.9979881} + inSlope: {x: -0.017139245, y: -0.0006705522, z: -0.3366172, w: -0.0125169745} + outSlope: {x: -0.017139247, y: -0.00061467296, z: -0.33656138, w: -0.012516976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.0031721757, y: 0.050752595, z: -0.062300753, w: 0.9967611} + inSlope: {x: -0.019026922, y: -0.0012293459, z: -0.37372115, w: -0.024139883} + outSlope: {x: -0.019037394, y: -0.0011734662, z: -0.37383282, w: -0.023245808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.004465354, y: 0.050655205, z: -0.087698326, w: 0.9948483} + inSlope: {x: -0.018607821, y: -0.001620501, z: -0.36556268, w: -0.032186504} + outSlope: {x: -0.018614812, y: -0.0016763808, z: -0.365451, w: -0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0056539373, y: 0.05053635, z: -0.11104168, w: 0.99251395} + inSlope: {x: -0.015897678, y: -0.0017881395, z: -0.31236562, w: -0.03486872} + outSlope: {x: -0.015904663, y: -0.0017322601, z: -0.3121421, w: -0.03486872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0065857945, y: 0.050423365, z: -0.12934303, w: 0.9902952} + inSlope: {x: -0.0109314, y: -0.001396984, z: -0.21435322, w: -0.027716162} + outSlope: {x: -0.010924415, y: -0.001396984, z: -0.21457674, w: -0.027716162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0071103172, y: 0.050352085, z: -0.13964449, w: 0.9888951} + inSlope: {x: -0.0036810527, y: -0.00050291425, z: -0.07241965, w: -0.009834767} + outSlope: {x: -0.003681051, y: -0.000502914, z: -0.072196096, w: -0.010728832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0070771365, y: 0.05035676, z: -0.13899282, w: 0.9889869} + inSlope: {x: 0.0040791915, y: 0.00061467267, z: 0.08024272, w: 0.011622901} + outSlope: {x: 0.004093163, y: 0.0005587936, z: 0.08024276, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.0065651378, y: 0.050426062, z: -0.12893736, w: 0.9903481} + inSlope: {x: 0.009674114, y: 0.0012293459, z: 0.19021334, w: 0.025033953} + outSlope: {x: 0.009681099, y: 0.0012293459, z: 0.19021334, w: 0.024139883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.005786034, y: 0.050521392, z: -0.113636, w: 0.9922202} + inSlope: {x: 0.013334212, y: 0.001564622, z: 0.26185068, w: 0.03039837} + outSlope: {x: 0.013320242, y: 0.001564622, z: 0.26173893, w: 0.03039837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.004787636, y: 0.05062576, z: -0.09402781, w: 0.99427} + inSlope: {x: 0.016246924, y: 0.001564622, z: 0.31907114, w: 0.03039837} + outSlope: {x: 0.016267879, y: 0.0015087427, z: 0.31951818, w: 0.029504301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.0036182126, y: 0.05072275, z: -0.07106074, w: 0.99617493} + inSlope: {x: 0.018464636, y: 0.0012852253, z: 0.36265704, w: 0.025928022} + outSlope: {x: 0.018443681, y: 0.0013411046, z: 0.36221, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.0023267034, y: 0.050798375, z: -0.045695946, w: 0.9976603} + inSlope: {x: 0.019910514, y: 0.00089406973, z: 0.39098787, w: 0.017881395} + outSlope: {x: 0.019920992, y: 0.00089406973, z: 0.39126727, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00096273184, y: 0.05084252, z: -0.018908009, w: 0.9985272} + inSlope: {x: 0.020631706, y: 0.0003911555, z: 0.40518123, w: 0.008046628} + outSlope: {x: 0.020616863, y: 0.00044703486, z: 0.4049577, w: 0.008046628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.00042358405, y: 0.05084987, z: 0.008318763, w: 0.9986716} + inSlope: {x: 0.020571025, y: -0.00022351743, z: 0.4040357, w: -0.003576279} + outSlope: {x: 0.020576246, y: -0.00016763792, z: 0.4041052, w: -0.0035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.0017819323, y: 0.050820403, z: 0.034996264, w: 0.99809283} + inSlope: {x: 0.019776037, y: -0.000726431, z: 0.38841707, w: -0.014305103} + outSlope: {x: 0.01978131, y: -0.0006705529, z: 0.38847363, w: -0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.003062163, y: 0.050759356, z: 0.06013954, w: 0.9968938} + inSlope: {x: 0.018209701, y: -0.0011175881, z: 0.3576282, w: -0.021457693} + outSlope: {x: 0.018206177, y: -0.0010617068, z: 0.3575717, w: -0.021457653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0042112363, y: 0.050676968, z: 0.082706936, w: 0.99527574} + inSlope: {x: 0.015953543, y: -0.0012852241, z: 0.31337115, w: -0.025927998} + outSlope: {x: 0.015974525, y: -0.0013969851, z: 0.313707, w: -0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0051901503, y: 0.050586067, z: 0.10193249, w: 0.99349076} + inSlope: {x: 0.0129500525, y: -0.0013411058, z: 0.2542513, w: -0.025928045} + outSlope: {x: 0.012963999, y: -0.0013411033, z: 0.25458613, w: -0.026822068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.0059384964, y: 0.050503694, z: 0.11662971, w: 0.9918728} + inSlope: {x: 0.009206116, y: -0.0010617068, z: 0.18071368, w: -0.020563586} + outSlope: {x: 0.009192162, y: -0.0010617088, z: 0.18060225, w: -0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.006417436, y: 0.050445072, z: 0.12603594, w: 0.9907215} + inSlope: {x: 0.0025215582, y: -0.00033527645, z: 0.049620915, w: -0.0062584938} + outSlope: {x: 0.002500599, y: -0.00027939654, z: 0.04917379, w: -0.0062584826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.006274544, y: 0.050463032, z: 0.12322959, w: 0.99107444} + inSlope: {x: -0.007913907, y: 0.0009499482, z: -0.15545623, w: 0.018775448} + outSlope: {x: -0.007941861, y: 0.0010058293, z: -0.15590355, w: 0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.0053593307, y: 0.050568435, z: 0.10525512, w: 0.9931443} + inSlope: {x: -0.017532164, y: 0.0018998999, z: -0.3443289, w: 0.03665689} + outSlope: {x: -0.017574042, y: 0.0017881378, z: -0.3451106, w: 0.035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.0039351294, y: 0.050699137, z: 0.077284284, w: 0.99571145} + inSlope: {x: -0.023371521, y: 0.0017881378, z: -0.4591044, w: 0.035762757} + outSlope: {x: -0.023385532, y: 0.0018440204, z: -0.45921698, w: 0.03576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.0022401782, y: 0.050802264, z: 0.043996003, w: 0.9977367} + inSlope: {x: -0.02542513, y: 0.0011175881, z: -0.4993384, w: 0.022351762} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1397538, y: -0.04035337, z: 0.17399797, w: 0.97394305} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.1397538, y: -0.040353395, z: 0.17399797, w: 0.9739431} + inSlope: {x: 0.02838671, y: -0.003911555, z: -0.034421682, w: 0.011622905} + outSlope: {x: 0.028833745, y: -0.0037997959, z: -0.034421682, w: 0.009834765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.13592127, y: -0.04086443, z: 0.16937268, w: 0.97527874} + inSlope: {x: 0.11913478, y: -0.016205013, z: -0.1439452, w: 0.04202127} + outSlope: {x: 0.11980534, y: -0.016316773, z: -0.14416875, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.12379943, y: -0.042466074, z: 0.15474212, w: 0.9792472} + inSlope: {x: 0.2558157, y: -0.035259876, z: -0.3077835, w: 0.07867814} + outSlope: {x: 0.2557039, y: -0.035539262, z: -0.3086775, w: 0.079572186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.10177287, y: -0.045319814, z: 0.12815174, w: 0.98547727} + inSlope: {x: 0.38869673, y: -0.053700052, z: -0.46849242, w: 0.09834765} + outSlope: {x: 0.38892034, y: -0.05397946, z: -0.46871606, w: 0.09924174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.07189708, y: -0.049075834, z: 0.09207554, w: 0.99193984} + inSlope: {x: 0.46089295, y: -0.062640764, z: -0.5564467, w: 0.08314849} + outSlope: {x: 0.4610047, y: -0.062584884, z: -0.5563349, w: 0.08046628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0402743, y: -0.052910227, z: 0.05387698, w: 0.9963312} + inSlope: {x: 0.47760087, y: -0.06286428, z: -0.5776808, w: 0.047385696} + outSlope: {x: 0.47765675, y: -0.06286428, z: -0.5777367, w: 0.046491627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00813757, y: -0.056660023, z: 0.0150443055, w: 0.99824697} + inSlope: {x: 0.47631565, y: -0.060461465, z: -0.5770242, w: 0.008046628} + outSlope: {x: 0.47630146, y: -0.06040556, z: -0.5769401, w: 0.009834763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.023326244, y: -0.06018865, z: -0.02298816, w: 0.9976496} + inSlope: {x: 0.4573444, y: -0.05593521, z: -0.5549935, w: -0.025928011} + outSlope: {x: 0.45695344, y: -0.05571172, z: -0.55435115, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.05293734, y: -0.063380376, z: -0.058792815, w: 0.9948487} + inSlope: {x: 0.42054805, y: -0.049397353, z: -0.5108491, w: -0.055432323} + outSlope: {x: 0.42077157, y: -0.049173836, z: -0.5111844, w: -0.055432323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.079547055, y: -0.06614087, z: -0.09097804, w: 0.99046487} + inSlope: {x: 0.36757442, y: -0.041238967, z: -0.44681135, w: -0.07331372} + outSlope: {x: 0.3673509, y: -0.04112721, z: -0.4461408, w: -0.07331372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.1020524, y: -0.06839501, z: -0.11820618, w: 0.98536015} + inSlope: {x: 0.2980605, y: -0.031739477, z: -0.36209825, w: -0.07689} + outSlope: {x: 0.29828402, y: -0.031962994, z: -0.36243352, w: -0.07599593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.11939687, y: -0.070081115, z: -0.13919505, w: 0.98053956} + inSlope: {x: 0.21334739, y: -0.02179295, z: -0.25928023, w: -0.064373024} + outSlope: {x: 0.21290036, y: -0.02179295, z: -0.25860968, w: -0.064373024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.13055561, y: -0.07114199, z: -0.15270059, w: 0.9770244} + inSlope: {x: 0.11309982, y: -0.010840596, z: -0.13679267, w: -0.03755093} + outSlope: {x: 0.11309982, y: -0.011064113, z: -0.13746323, w: -0.038445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.13450666, y: -0.07151311, z: -0.15748306, w: 0.9757013} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.13055563, y: -0.07114199, z: -0.15270062, w: 0.9770244} + inSlope: {x: -0.11309982, y: 0.010281802, z: 0.13679267, w: 0.038445} + outSlope: {x: -0.11354675, y: 0.010058275, z: 0.13656902, w: 0.036656827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.11939687, y: -0.070081115, z: -0.13919502, w: 0.98053956} + inSlope: {x: -0.21357071, y: 0.019222481, z: 0.2579389, w: 0.065267034} + outSlope: {x: -0.21401814, y: 0.019334275, z: 0.25793934, w: 0.06347901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.1020524, y: -0.06839501, z: -0.118206166, w: 0.98536015} + inSlope: {x: -0.29861957, y: 0.027157392, z: 0.35975164, w: 0.07420785} + outSlope: {x: -0.29850727, y: 0.02671031, z: 0.35952747, w: 0.076889925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.07962434, y: -0.06614875, z: -0.09107152, w: 0.9904496} + inSlope: {x: -0.36869168, y: 0.03386286, z: 0.44390523, w: 0.07420772} + outSlope: {x: -0.36969817, y: 0.033862922, z: 0.44513535, w: 0.07152564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.052937333, y: -0.06338035, z: -0.058792785, w: 0.9948487} + inSlope: {x: -0.42211306, y: 0.039897896, z: 0.50844675, w: 0.054538302} + outSlope: {x: -0.4228946, y: 0.040009584, z: 0.509284, w: 0.054538205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.02342226, y: -0.060199205, z: -0.023104245, w: 0.99764407} + inSlope: {x: -0.45848972, y: 0.044926964, z: 0.5525905, w: 0.025927998} + outSlope: {x: -0.45854643, y: 0.044871163, z: 0.55273116, w: 0.025928045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.008137601, y: -0.05666002, z: 0.015044339, w: 0.99824697} + inSlope: {x: -0.477266, y: 0.048559204, z: 0.57585126, w: -0.010728846} + outSlope: {x: -0.477335, y: 0.048614997, z: 0.57583624, w: -0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.040174086, y: -0.05292215, z: 0.053755898, w: 0.99634117} + inSlope: {x: -0.478271, y: 0.050794292, z: 0.5776803, w: -0.04738565} + outSlope: {x: -0.47911003, y: 0.0510179, z: 0.57868713, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.07189709, y: -0.04907582, z: 0.09207557, w: 0.9919398} + inSlope: {x: -0.46111688, y: 0.051353175, z: 0.55778825, w: -0.081360415} + outSlope: {x: -0.46212187, y: 0.051297206, z: 0.5584578, w: -0.08314841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.10168649, y: -0.045330852, z: 0.12804747, w: 0.98549926} + inSlope: {x: -0.38880822, y: 0.045597516, z: 0.47028026, w: -0.09834758} + outSlope: {x: -0.38847363, y: 0.04554172, z: 0.47005758, w: -0.09834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.12379943, y: -0.042466067, z: 0.15474212, w: 0.9792472} + inSlope: {x: -0.3300238, y: 0.040233172, z: 0.39987305, w: -0.10281811} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0011789581, y: -0.04502419, z: 0.026150394, w: 0.9986429} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0001938315, y: 0.00005587935, z: -0.0002235174, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.0011790025, y: -0.045024212, z: 0.026150389, w: 0.99864286} + inSlope: {x: -0.1955201, y: -0.0638701, z: 0.20094214, w: -0.008940696} + outSlope: {x: -0.19630416, y: -0.06392598, z: 0.20169652, w: -0.008046627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.027339282, y: -0.053400155, z: 0.052932143, w: 0.9967945} + inSlope: {x: -0.42649916, y: -0.14008954, z: 0.44127923, w: -0.04291534} + outSlope: {x: -0.42630363, y: -0.14014544, z: 0.44111165, w: -0.042915348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.058207832, y: -0.06312921, z: 0.08471581, w: 0.99269825} + inSlope: {x: -0.46905133, y: -0.15277417, z: 0.48760328, w: -0.07957221} + outSlope: {x: -0.4690512, y: -0.15288588, z: 0.48737964, w: -0.078678116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.090136684, y: -0.07307963, z: 0.11758436, w: 0.98625994} + inSlope: {x: -0.45776358, y: -0.14774498, z: 0.4747509, w: -0.109076485} + outSlope: {x: -0.45742843, y: -0.14796855, z: 0.47486278, w: -0.10907651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.11952015, y: -0.08217581, z: 0.1476888, w: 0.9783405} + inSlope: {x: -0.3936142, y: -0.12639911, z: 0.4052371, w: -0.118911274} + outSlope: {x: -0.3933907, y: -0.12628736, z: 0.40434304, w: -0.12069941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.14285953, y: -0.08941595, z: 0.17131431, w: 0.97069424} + inSlope: {x: -0.2780557, y: -0.089406975, z: 0.27984384, w: -0.09834767} + outSlope: {x: -0.27783218, y: -0.089406975, z: 0.2793968, w: -0.09924174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.15677054, y: -0.09385891, z: 0.18488058, w: 0.9656255} + inSlope: {x: -0.112652786, y: -0.038668517, z: 0.10170043, w: -0.04112721} + outSlope: {x: -0.11242922, y: -0.038892016, z: 0.10147687, w: -0.04112719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.15789796, y: -0.09456876, z: 0.18484077, w: 0.9653802} + inSlope: {x: 0.06370244, y: 0.012516971, z: -0.08761879, w: 0.028610218} + outSlope: {x: 0.06414951, y: 0.012293459, z: -0.0871718, w: 0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.14825128, y: -0.09217625, z: 0.17320293, w: 0.9692914} + inSlope: {x: 0.18887223, y: 0.04693866, z: -0.22195281, w: 0.07331372} + outSlope: {x: 0.18887223, y: 0.047385696, z: -0.22239985, w: 0.07331372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.13275975, y: -0.08812243, z: 0.15511416, w: 0.974961} + inSlope: {x: 0.26978555, y: 0.069402166, z: -0.31046572, w: 0.09298325} + outSlope: {x: 0.26978555, y: 0.069402166, z: -0.3102422, w: 0.09208918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.1123767, y: -0.08263525, z: 0.13165364, w: 0.9814327} + inSlope: {x: 0.3359467, y: 0.08806587, z: -0.3822148, w: 0.09655953} + outSlope: {x: 0.33617023, y: 0.08817763, z: -0.3822148, w: 0.09924174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.08808104, y: -0.07595148, z: 0.103927, w: 0.98776126} + inSlope: {x: 0.38746747, y: 0.10348857, z: -0.43753538, w: 0.089406975} + outSlope: {x: 0.38746747, y: 0.103153296, z: -0.43697658, w: 0.088512905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.060892913, y: -0.0683265, z: 0.07308456, w: 0.9931174} + inSlope: {x: 0.42278323, y: 0.1147762, z: -0.47497454, w: 0.06884337} + outSlope: {x: 0.42328614, y: 0.1147762, z: -0.47530982, w: 0.06973744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.031876326, y: -0.060039327, z: 0.04032492, w: 0.99687165} + inSlope: {x: 0.44245276, y: 0.122208156, z: -0.4950911, w: 0.04112721} + outSlope: {x: 0.4420616, y: 0.12198464, z: -0.4945882, w: 0.04202128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.0021298518, y: -0.0513928, z: 0.0068848273, w: 0.9986526} + inSlope: {x: 0.44453076, y: 0.12500213, z: -0.49599916, w: 0.010728837} + outSlope: {x: 0.44449195, y: 0.12522553, z: -0.49578217, w: 0.009834758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.027230702, y: -0.04271014, z: -0.025980268, w: 0.99837834} + inSlope: {x: 0.42999128, y: 0.12354915, z: -0.4781313, w: -0.018775448} + outSlope: {x: 0.4301038, y: 0.12343761, z: -0.47821596, w: -0.018775482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.055093497, y: -0.0343289, z: -0.057019945, w: 0.9962605} + inSlope: {x: 0.39869958, y: 0.11678796, z: -0.4415032, w: -0.042915385} + outSlope: {x: 0.39853123, y: 0.11695539, z: -0.44139066, w: -0.043809377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.080295734, y: -0.02661683, z: -0.08492886, w: 0.9927897} + inSlope: {x: 0.35203964, y: 0.10561189, z: -0.38769063, w: -0.05722041} + outSlope: {x: 0.35293433, y: 0.1056959, z: -0.3880266, w: -0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.102005266, y: -0.019851591, z: -0.108768076, w: 0.98862046} + inSlope: {x: 0.29001412, y: 0.08907177, z: -0.31605393, w: -0.061690867} + outSlope: {x: 0.2903489, y: 0.089295134, z: -0.31661215, w: -0.063478895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.118938535, y: -0.014458818, z: -0.12710461, w: 0.98462635} + inSlope: {x: 0.21234137, y: 0.06743235, z: -0.22664647, w: -0.053644136} + outSlope: {x: 0.21211824, y: 0.06747439, z: -0.22709392, w: -0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.13031189, y: -0.010709835, z: -0.13905402, w: 0.98161507} + inSlope: {x: 0.078678206, y: 0.02925287, z: -0.07085509, w: -0.019669551} + outSlope: {x: 0.07823103, y: 0.029280758, z: -0.07040793, w: -0.020563586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.12942645, y: -0.010538105, z: -0.136534, w: 0.9820877} + inSlope: {x: -0.12539317, y: -0.030146886, z: 0.1712142, w: 0.039339032} + outSlope: {x: -0.12539339, y: -0.03034252, z: 0.17166154, w: 0.041127246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.11355503, y: -0.014669906, z: -0.11612924, w: 0.9866125} + inSlope: {x: -0.31225413, y: -0.08590062, z: 0.3942851, w: 0.08225449} + outSlope: {x: -0.31258884, y: -0.08609604, z: 0.3950667, w: 0.0804662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.08769016, y: -0.021610066, z: -0.08384752, w: 0.9923774} + inSlope: {x: -0.42714143, y: -0.11983318, z: 0.53163576, w: 0.078678064} + outSlope: {x: -0.42725396, y: -0.11986133, z: 0.53152496, w: 0.081360415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.056432478, y: -0.029975785, z: -0.045183763, w: 0.9969329} + inSlope: {x: -0.46849295, y: -0.13064605, z: 0.58081055, w: 0.048279807} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15027462, y: -0.6736496, z: -0.058395013, w: 0.7212515} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.15027466, y: -0.6736496, z: -0.058395065, w: 0.7212515} + inSlope: {x: -0.04380941, y: -0.0026822088, z: 0.004805624, w: 0.0062584872} + outSlope: {x: -0.043585893, y: -0.004470348, z: 0.0048615034, w: 0.0053644176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.14444527, y: -0.6740911, z: -0.057762884, w: 0.72208047} + inSlope: {x: -0.18171965, y: -0.013411044, z: 0.01966953, w: 0.025033949} + outSlope: {x: -0.18149616, y: -0.013411046, z: 0.019390138, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.12602577, y: -0.6753278, z: -0.055755608, w: 0.7245282} + inSlope: {x: -0.38780275, y: -0.025033953, z: 0.04174188, w: 0.047385696} + outSlope: {x: -0.3882497, y: -0.025928017, z: 0.041965388, w: 0.047385685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.09262426, y: -0.67696166, z: -0.052078262, w: 0.7283073} + inSlope: {x: -0.58852124, y: -0.025033947, z: 0.06459653, w: 0.05632638} + outSlope: {x: -0.58896846, y: -0.025928022, z: 0.06448478, w: 0.055432323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.047454007, y: -0.6779359, z: -0.04702931, w: 0.7320788} + inSlope: {x: -0.6957539, y: -0.008940698, z: 0.07772819, w: 0.04202128} + outSlope: {x: -0.69608915, y: -0.008046628, z: 0.07800759, w: 0.04112721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.00020019338, y: -0.6774373, z: -0.041608892, w: 0.7344027} + inSlope: {x: -0.71958643, y: 0.016093256, z: 0.082422055, w: 0.018775465} + outSlope: {x: -0.7195585, y: 0.015199185, z: 0.082422055, w: 0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.048474174, y: -0.67533934, z: -0.0360201, w: 0.73503023} + inSlope: {x: -0.71553516, y: 0.04023314, z: 0.08398668, w: -0.008940698} + outSlope: {x: -0.7157025, y: 0.03844498, z: 0.08398664, w: -0.0062584854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.09559601, y: -0.67174, z: -0.03046935, w: 0.73396075} + inSlope: {x: -0.6857512, y: 0.060796715, z: 0.08217056, w: -0.031292427} + outSlope: {x: -0.6849692, y: 0.06079674, z: 0.0823103, w: -0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.13982297, y: -0.66695297, z: -0.02517299, w: 0.7314298} + inSlope: {x: -0.6292016, y: 0.07331372, z: 0.07705764, w: -0.050961975} + outSlope: {x: -0.6296486, y: 0.07420779, z: 0.07689, w: -0.049173836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.17947307, y: -0.6614834, z: -0.0203524, w: 0.72788393} + inSlope: {x: -0.5485118, y: 0.08136035, z: 0.06817282, w: -0.059008602} + outSlope: {x: -0.5485118, y: 0.07957221, z: 0.06817282, w: -0.06079674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.21294111, y: -0.65598303, z: -0.0162291, w: 0.7239329} + inSlope: {x: -0.44390562, y: 0.07689, z: 0.0557676, w: -0.05990267} + outSlope: {x: -0.44435266, y: 0.07599593, z: 0.056214634, w: -0.059008602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.23869443, y: -0.6511887, z: -0.013021693, w: 0.72028375} + inSlope: {x: -0.31739476, y: 0.06169081, z: 0.04023314, w: -0.049173836} + outSlope: {x: -0.3165007, y: 0.05990267, z: 0.04012138, w: -0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.25524524, y: -0.6478451, z: -0.010944299, w: 0.71765363} + inSlope: {x: -0.16763808, y: 0.03397465, z: 0.021457674, w: -0.028610231} + outSlope: {x: -0.16808511, y: 0.03397465, z: 0.021457674, w: -0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.26110232, y: -0.6466119, z: -0.010206103, w: 0.716669} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.25524527, y: -0.6478451, z: -0.010944314, w: 0.71765375} + inSlope: {x: 0.16763808, y: -0.03576279, z: -0.020451846, w: 0.027716162} + outSlope: {x: 0.16763793, y: -0.033974618, z: -0.020898862, w: 0.026822068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.23869443, y: -0.6511887, z: -0.013021722, w: 0.7202836} + inSlope: {x: 0.3165004, y: -0.061690755, z: -0.039115515, w: 0.046491586} + outSlope: {x: 0.31672448, y: -0.064373076, z: -0.039115585, w: 0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.21294111, y: -0.6559831, z: -0.016229063, w: 0.723933} + inSlope: {x: 0.4423414, y: -0.080466345, z: -0.054091267, w: 0.05632644} + outSlope: {x: 0.4423406, y: -0.0804662, z: -0.05420293, w: 0.055432275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.17958814, y: -0.6614658, z: -0.02033829, w: 0.72787184} + inSlope: {x: 0.54717016, y: -0.085830614, z: -0.065937586, w: 0.055432275} + outSlope: {x: 0.5485123, y: -0.08672484, z: -0.06604946, w: 0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.13982299, y: -0.666953, z: -0.025173008, w: 0.73142976} + inSlope: {x: 0.62808454, y: -0.08225449, z: -0.07487841, w: 0.042915385} + outSlope: {x: 0.62875396, y: -0.07957213, z: -0.074934155, w: 0.044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.09573962, y: -0.67172664, z: -0.030452255, w: 0.7339551} + inSlope: {x: 0.6841862, y: -0.067055166, z: -0.080410324, w: 0.025927998} + outSlope: {x: 0.68429923, y: -0.06705529, z: -0.08068986, w: 0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.048474174, y: -0.67533934, z: -0.03602006, w: 0.73503023} + inSlope: {x: 0.71480936, y: -0.045597598, z: -0.08314856, w: 0} + outSlope: {x: 0.7147522, y: -0.04738565, z: -0.08320429, w: 0.0008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.00035103224, y: -0.67743325, z: -0.04159154, w: 0.7344073} + inSlope: {x: 0.71913874, y: -0.02413986, z: -0.082924895, w: -0.025927998} + outSlope: {x: 0.72034144, y: -0.023245834, z: -0.0830368, w: -0.025928045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.047453977, y: -0.67793596, z: -0.047029253, w: 0.7320788} + inSlope: {x: 0.6963692, y: -0.0017881411, z: -0.07934876, w: -0.04917388} + outSlope: {x: 0.6973179, y: 0.0008940689, z: -0.079404496, w: -0.05006786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.09249343, y: -0.67696655, z: -0.052063722, w: 0.72832054} + inSlope: {x: 0.58919144, y: 0.017881379, z: -0.06621698, w: -0.060796686} + outSlope: {x: 0.58863366, y: 0.019669551, z: -0.06588182, w: -0.06347901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.12602572, y: -0.6753278, z: -0.05575556, w: 0.72452825} + inSlope: {x: 0.5017971, y: 0.028610257, z: -0.05571177, w: -0.064373076} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08548669, y: 0.00623442, z: -0.07987839, w: 0.99311256} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.085486695, y: 0.006234421, z: -0.079878405, w: 0.99311256} + inSlope: {x: -0.003352761, y: -0.003611203, z: -0.04380941, w: -0.0035762785} + outSlope: {x: -0.0031292436, y: -0.0036321578, z: -0.04369765, w: -0.0035762785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.085913174, y: 0.00575039, z: -0.0857173, w: 0.99259174} + inSlope: {x: -0.025033949, y: -0.01781853, z: -0.19736587, w: -0.018775461} + outSlope: {x: -0.025369229, y: -0.01786044, z: -0.19781293, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.08881981, y: 0.0038401308, z: -0.1061994, w: 0.9903625} + inSlope: {x: -0.059567396, y: -0.034309927, z: -0.35852197, w: -0.044703487} + outSlope: {x: -0.059455622, y: -0.034337856, z: -0.35863364, w: -0.043809406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.09382899, y: 0.0011128718, z: -0.1334832, w: 0.98659873} + inSlope: {x: -0.07286666, y: -0.039730214, z: -0.40478998, w: -0.061690796} + outSlope: {x: -0.07275493, y: -0.039702285, z: -0.4052371, w: -0.06079674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.098534755, y: -0.0015460085, z: -0.16017936, w: 0.98215634} + inSlope: {x: -0.052526597, y: -0.03410038, z: -0.36209825, w: -0.064373024} + outSlope: {x: -0.05219132, y: -0.03405847, z: -0.36187473, w: -0.064373024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.10082595, y: -0.0034884987, z: -0.18176515, w: 0.9781531} + inSlope: {x: -0.0005587936, y: -0.018957073, z: -0.25212768, w: -0.046491627} + outSlope: {x: -0.000782311, y: -0.018929133, z: -0.25212768, w: -0.047385696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.09863611, y: -0.004069389, z: -0.19378996, w: 0.9760635} + inSlope: {x: 0.08169562, y: 0.006174669, z: -0.07510186, w: -0.006258488} + outSlope: {x: 0.08214262, y: 0.006216576, z: -0.07510182, w: -0.0062584854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.08990805, y: -0.00264615, z: -0.19180185, w: 0.97730327} + inSlope: {x: 0.1657381, y: 0.03270338, z: 0.10795887, w: 0.03665684} + outSlope: {x: 0.16562642, y: 0.032703396, z: 0.108405955, w: 0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.07652931, y: 0.00023466162, z: -0.1793532, w: 0.98080355} + inSlope: {x: 0.22910537, y: 0.051744286, z: 0.22977592, w: 0.059008602} + outSlope: {x: 0.2295524, y: 0.051842075, z: 0.22977592, w: 0.06079674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.059289426, y: 0.0040941127, z: -0.16115507, w: 0.9851381} + inSlope: {x: 0.28096142, y: 0.06567222, z: 0.30845407, w: 0.06705523} + outSlope: {x: 0.2807379, y: 0.06563031, z: 0.30800703, w: 0.0679493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.039035276, y: 0.008723125, z: -0.13820627, w: 0.9895955} + inSlope: {x: 0.3191829, y: 0.07624739, z: 0.3717095, w: 0.064373024} + outSlope: {x: 0.31962994, y: 0.076331206, z: 0.37238005, w: 0.062584884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.016627599, y: 0.013909689, z: -0.11153978, w: 0.9935235} + inSlope: {x: 0.34505504, y: 0.08362346, z: 0.42010102, w: 0.051856045} + outSlope: {x: 0.34483153, y: 0.08358155, z: 0.41976574, w: 0.052750114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.0070566228, y: 0.019439619, z: -0.082231015, w: 0.9963987} + inSlope: {x: 0.35701323, y: 0.08742326, z: 0.45139346, w: 0.032186512} + outSlope: {x: 0.35744628, y: 0.087535016, z: 0.45161697, w: 0.03308058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.031129092, y: 0.025098592, z: -0.051395837, w: 0.9978774} + inSlope: {x: 0.35639855, y: 0.08800999, z: 0.46653676, w: 0.009834767} + outSlope: {x: 0.35611916, y: 0.08787029, z: 0.4659221, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0547003, y: 0.030675186, z: -0.020180106, w: 0.9978274} + inSlope: {x: 0.34175816, y: 0.084936626, z: 0.46323988, w: -0.013411046} + outSlope: {x: 0.34198135, y: 0.084964484, z: 0.46318358, w: -0.010728827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.07689207, y: 0.035963923, z: 0.010256091, w: 0.99633783} + inSlope: {x: 0.31493577, y: 0.078678064, z: 0.4429553, w: -0.032186482} + outSlope: {x: 0.31482458, y: 0.078789964, z: 0.4428443, w: -0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.09684939, y: 0.040768012, z: 0.03875483, w: 0.99370825} + inSlope: {x: 0.27503845, y: 0.069402225, z: 0.40439928, w: -0.046491668} + outSlope: {x: 0.2749262, y: 0.0694021, z: 0.40467796, w: -0.044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.11370119, y: 0.044888806, z: 0.064100444, w: 0.9904283} + inSlope: {x: 0.22340547, y: 0.05727629, z: 0.35036325, w: -0.05006786} + outSlope: {x: 0.22396466, y: 0.057444032, z: 0.35081092, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.12679806, y: 0.0481838, z: 0.08539343, w: 0.9870707} + inSlope: {x: 0.16070917, y: 0.04258011, z: 0.27895, w: -0.047385737} + outSlope: {x: 0.16070889, y: 0.04258003, z: 0.2795083, w: -0.046491586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.13521568, y: 0.050441634, z: 0.1012727, w: 0.98433536} + inSlope: {x: 0.0856071, y: 0.025425086, z: 0.19088371, w: -0.03308055} + outSlope: {x: 0.086277805, y: 0.025369251, z: 0.1907723, w: -0.032186538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.13830547, y: 0.05152054, z: 0.11084018, w: 0.9828182} + inSlope: {x: -0.059902724, y: -0.006314373, z: 0.031404227, w: 0.005364423} + outSlope: {x: -0.060126137, y: -0.006314362, z: 0.031180654, w: 0.0062584826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.12718658, y: 0.04959764, z: 0.10543979, w: 0.9850108} + inSlope: {x: -0.30733618, y: -0.05627046, z: -0.22094679, w: 0.067055166} + outSlope: {x: -0.30778378, y: -0.05632644, z: -0.221953, w: 0.064373076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.09729964, y: 0.043742955, z: 0.08113186, w: 0.99097776} + inSlope: {x: -0.54236555, y: -0.101365246, z: -0.45519367, w: 0.093877405} + outSlope: {x: -0.54337037, y: -0.101644464, z: -0.45631042, w: 0.09566537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.05498931, y: 0.035219613, z: 0.044253163, w: 0.99688387} + inSlope: {x: -0.6868684, y: -0.12941648, z: -0.5998085, w: 0.068843305} + outSlope: {x: -0.68692553, y: -0.12947258, z: -0.59986544, w: 0.06884343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.005947535, y: 0.025180306, z: 0.0006358768, w: 0.999665} + inSlope: {x: -0.7368468, y: -0.14056465, z: -0.6509855, w: 0.008940705} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.16508342, y: 0.6456678, z: -0.07127721, w: 0.74214566} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.16508338, y: 0.6456678, z: -0.071277246, w: 0.74214566} + inSlope: {x: 0.04738569, y: 0.0035762785, z: 0.008046627, w: 0.007152557} + outSlope: {x: 0.047609206, y: 0.0053644176, z: 0.008270144, w: 0.0062584872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.15874329, y: 0.64631814, z: -0.07016656, w: 0.7430681} + inSlope: {x: 0.19736587, y: 0.0205636, z: 0.03453344, w: 0.028610228} + outSlope: {x: 0.19781293, y: 0.018775465, z: 0.034645204, w: 0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.13870233, y: 0.64818823, z: -0.06664388, w: 0.7457697} + inSlope: {x: 0.42222443, y: 0.03755093, z: 0.07420779, w: 0.052750114} + outSlope: {x: 0.42267138, y: 0.03665685, z: 0.07376073, w: 0.050961964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.102333955, y: 0.6508693, z: -0.060205795, w: 0.7498481} + inSlope: {x: 0.64104784, y: 0.042915337, z: 0.11298804, w: 0.060796726} + outSlope: {x: 0.6413833, y: 0.043809418, z: 0.11332334, w: 0.059008602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.05311135, y: 0.65305287, z: -0.051399805, w: 0.7536971} + inSlope: {x: 0.7586182, y: 0.025928022, z: 0.13584273, w: 0.04112721} + outSlope: {x: 0.75872993, y: 0.025033953, z: 0.13612212, w: 0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0011540018, y: 0.6535732, z: -0.04199045, w: 0.75569665} + inSlope: {x: 0.78457415, y: -0.0026822092, z: 0.14316292, w: 0.008940698} + outSlope: {x: 0.7844624, y: 0, z: 0.14305116, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.051482778, y: 0.6522397, z: -0.03233913, w: 0.7555706} + inSlope: {x: 0.78024346, y: -0.031292442, z: 0.1448393, w: -0.023245813} + outSlope: {x: 0.7800755, y: -0.026822079, z: 0.14478335, w: -0.021457665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.10284172, y: 0.64912605, z: -0.02280622, w: 0.7533518} + inSlope: {x: 0.7469949, y: -0.052750092, z: 0.14092767, w: -0.051856022} + outSlope: {x: 0.7463247, y: -0.054538254, z: 0.14070423, w: -0.051856045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.15100373, y: 0.6445596, z: -0.013761476, w: 0.74936724} + inSlope: {x: 0.6846339, y: -0.07152558, z: 0.13109298, w: -0.07420779} + outSlope: {x: 0.68508095, y: -0.07152558, z: 0.13109298, w: -0.07152558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.1941294, y: 0.639093, z: -0.0055744424, w: 0.7442063} + inSlope: {x: 0.59679157, y: -0.08046628, z: 0.11511148, w: -0.08404256} + outSlope: {x: 0.595674, y: -0.08225442, z: 0.11522324, w: -0.085830696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.23048037, y: 0.63345027, z: 0.0013926104, w: 0.7386593} + inSlope: {x: 0.48190358, y: -0.07778407, z: 0.09387732, w: -0.08314849} + outSlope: {x: 0.48235062, y: -0.07957221, z: 0.09398908, w: -0.08225442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.25841358, y: 0.62845516, z: 0.0067884475, w: 0.73363507} + inSlope: {x: 0.34376982, y: -0.064373024, z: 0.06727875, w: -0.06616116} + outSlope: {x: 0.34376982, y: -0.063478954, z: 0.0666082, w: -0.0679493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.27634525, y: 0.62494016, z: 0.010271996, w: 0.73005307} + inSlope: {x: 0.18149616, y: -0.03755093, z: 0.035315756, w: -0.03933907} + outSlope: {x: 0.1819432, y: -0.03576279, z: 0.03576279, w: -0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.28268683, y: 0.6236385, z: 0.011507764, w: 0.72871864} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.27634525, y: 0.62494016, z: 0.010271952, w: 0.73005307} + inSlope: {x: -0.18149616, y: 0.03665686, z: -0.03509224, w: 0.03665686} + outSlope: {x: -0.181496, y: 0.038444962, z: -0.035092205, w: 0.038444962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.25841355, y: 0.62845504, z: 0.006788492, w: 0.7336351} + inSlope: {x: -0.34332246, y: 0.0661611, z: -0.06549055, w: 0.065267034} + outSlope: {x: -0.34287605, y: 0.06705529, z: -0.06571418, w: 0.066161215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.23048031, y: 0.6334502, z: 0.0013926402, w: 0.7386594} + inSlope: {x: -0.48033938, y: 0.08404263, z: -0.091195196, w: 0.078678206} + outSlope: {x: -0.48011503, y: 0.08225434, z: -0.09108327, w: 0.078678064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.1942544, y: 0.63907516, z: -0.0055505633, w: 0.74418914} + inSlope: {x: -0.5947794, y: 0.08940689, z: -0.11209389, w: 0.0804662} + outSlope: {x: -0.59612155, y: 0.08851298, z: -0.11198233, w: 0.077784136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.15100369, y: 0.6445597, z: -0.013761453, w: 0.7493672} + inSlope: {x: -0.6835169, y: 0.080466345, z: -0.12740505, w: 0.064373076} + outSlope: {x: -0.68440974, y: 0.0804662, z: -0.12796362, w: 0.067949235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.10299817, y: 0.6491138, z: -0.022777006, w: 0.7533418} + inSlope: {x: -0.74554175, y: 0.062584825, z: -0.13802189, w: 0.042915307} + outSlope: {x: -0.7454313, y: 0.06347901, z: -0.1381339, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.051482722, y: 0.6522398, z: -0.03233913, w: 0.7555706} + inSlope: {x: -0.7793501, y: 0.039339103, z: -0.14321892, w: 0.0125169875} + outSlope: {x: -0.7792928, y: 0.0402331, z: -0.14333043, w: 0.014305103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.000989588, y: 0.653572, z: -0.041960493, w: 0.75569963} + inSlope: {x: -0.7841264, y: 0.010728827, z: -0.14293927, w: -0.018775448} + outSlope: {x: -0.785441, y: 0.010728846, z: -0.14316304, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.053111393, y: 0.65305287, z: -0.0513998, w: 0.7536971} + inSlope: {x: -0.75884235, y: -0.016093269, z: -0.13729571, w: -0.048279807} + outSlope: {x: -0.7601821, y: -0.016987309, z: -0.1374631, w: -0.04917379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.10219151, y: 0.65087795, z: -0.060180463, w: 0.74986196} + inSlope: {x: -0.641718, y: -0.036656827, z: -0.11511137, w: -0.0661611} + outSlope: {x: -0.64127207, y: -0.03486875, z: -0.114888065, w: -0.065267146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.13870233, y: 0.64818823, z: -0.06664391, w: 0.7457697} + inSlope: {x: -0.5460536, y: -0.043809455, z: -0.097230166, w: -0.0697375} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.081053816, y: 0.040226426, z: -0.08538883, w: 0.9922302} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0.0001117587, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.08105382, y: 0.040226426, z: -0.08538883, w: 0.9922302} + inSlope: {x: 0.022463499, y: -0.00072643155, z: -0.066272914, w: -0.008940696} + outSlope: {x: 0.022575257, y: -0.0007823109, z: -0.06638467, w: -0.007152557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.08406668, y: 0.040127393, z: -0.09422715, w: 0.99118304} + inSlope: {x: 0.10695308, y: -0.0010617077, z: -0.29370186, w: -0.037550922} + outSlope: {x: 0.107511885, y: -0.0012293459, z: -0.29437247, w: -0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.09532065, y: 0.040161572, z: -0.1245349, w: 0.986809} + inSlope: {x: 0.20038338, y: 0.000111758716, z: -0.5262718, w: -0.085830696} + outSlope: {x: 0.20015982, y: 0.00011175869, z: -0.526607, w: -0.08583067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.110800095, y: 0.040480573, z: -0.16425721, w: 0.97933865} + inSlope: {x: 0.22698191, y: 0.00039115542, z: -0.5894153, w: -0.12516974} + outSlope: {x: 0.22731723, y: 0.0003911555, z: -0.589639, w: -0.12606384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.12572667, y: 0.040678315, z: -0.20303833, w: 0.9702131} + inSlope: {x: 0.19513072, y: -0.0037997963, z: -0.5301834, w: -0.1358986} + outSlope: {x: 0.19446017, y: -0.0037997963, z: -0.5304069, w: -0.1358986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.13691625, y: 0.040360127, z: -0.23492686, w: 0.9614751} + inSlope: {x: 0.11578203, y: -0.012684614, z: -0.3833324, w: -0.10997058} + outSlope: {x: 0.11600555, y: -0.012740494, z: -0.38310888, w: -0.10907651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.14131826, y: 0.03917011, z: -0.25418782, w: 0.9559725} + inSlope: {x: -0.008046628, y: -0.02704561, z: -0.15154482, w: -0.038445} + outSlope: {x: -0.007823107, y: -0.026989717, z: -0.15154475, w: -0.03844498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.13592617, y: 0.03676358, z: -0.25513992, w: 0.95659614} + inSlope: {x: -0.13455744, y: -0.042635933, z: 0.088065825, w: 0.044703465} + outSlope: {x: -0.1345575, y: -0.04280359, z: 0.088512905, w: 0.044703487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.123333044, y: 0.033508874, z: -0.24232948, w: 0.96173936} + inSlope: {x: -0.22351743, y: -0.05666167, z: 0.24385752, w: 0.09298325} + outSlope: {x: -0.22374095, y: -0.05666167, z: 0.24408104, w: 0.09208918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.10606298, y: 0.02938929, z: -0.22249681, w: 0.96870124} + inSlope: {x: -0.28688464, y: -0.06920659, z: 0.34064057, w: 0.11175872} + outSlope: {x: -0.28677288, y: -0.06920659, z: 0.34131113, w: 0.11175872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.085018955, y: 0.024595603, z: -0.19675626, w: 0.9764496} + inSlope: {x: -0.33628199, y: -0.0787899, z: 0.4206598, w: 0.116229065} + outSlope: {x: -0.3365055, y: -0.07884578, z: 0.42133036, w: 0.115334995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.061125234, y: 0.019321222, z: -0.16626833, w: 0.9839945} + inSlope: {x: -0.3719889, y: -0.08538366, z: 0.4834682, w: 0.1063943} + outSlope: {x: -0.3717095, y: -0.08535572, z: 0.48279765, w: 0.10728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.035337508, y: 0.01376529, z: -0.13226165, w: 0.9904891} + inSlope: {x: -0.39272013, y: -0.088568784, z: 0.5263836, w: 0.085830696} + outSlope: {x: -0.39299953, y: -0.08862466, z: 0.52705413, w: 0.08404256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.008641563, y: 0.008132894, z: -0.096035965, w: 0.9953071} + inSlope: {x: -0.39885288, y: -0.088443056, z: 0.55029994, w: 0.057220463} + outSlope: {x: -0.39854556, y: -0.08837321, z: 0.5498529, w: 0.057220463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.017958473, y: 0.00263307, z: -0.058950964, w: 0.99809587} + inSlope: {x: -0.3893953, y: -0.084702626, z: 0.5527027, w: 0.025928022} + outSlope: {x: -0.389367, y: -0.08470255, z: 0.5527581, w: 0.02503393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.043457605, y: -0.0025247645, z: -0.022403335, w: 0.99880093} + inSlope: {x: -0.3653948, y: -0.07761636, z: 0.53434587, w: -0.0035762757} + outSlope: {x: -0.36545134, y: -0.077613, z: 0.5343189, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.066869244, y: -0.0071347533, z: 0.012200237, w: 0.99766153} + inSlope: {x: -0.326671, y: -0.06707624, z: 0.49405777, w: -0.029504327} + outSlope: {x: -0.32655868, y: -0.067111045, z: 0.49407086, w: -0.027716137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.08718265, y: -0.01098742, z: 0.043376595, w: 0.99518687} + inSlope: {x: -0.27481443, y: -0.053644136, z: 0.434294, w: -0.043809377} + outSlope: {x: -0.27526197, y: -0.05374202, z: 0.43518883, w: -0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.10366079, y: -0.013925241, z: 0.07003754, w: 0.992046} + inSlope: {x: -0.20943601, y: -0.037327446, z: 0.35394016, w: -0.047385737} + outSlope: {x: -0.20999444, y: -0.03732738, z: 0.35449833, w: -0.04738565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.11523007, y: -0.015732052, z: 0.090528175, w: 0.9890799} + inSlope: {x: -0.13075759, y: -0.018244594, z: 0.25313327, w: -0.039339032} + outSlope: {x: -0.13109308, y: -0.018272566, z: 0.25324547, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.121185966, y: -0.016257122, z: 0.10379345, w: 0.9870545} + inSlope: {x: 0.016652064, y: 0.018524023, z: 0.075996, w: -0.005364423} + outSlope: {x: 0.01687555, y: 0.01860781, z: 0.07554883, w: -0.0053644134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.11298386, y: -0.013255979, z: 0.10063195, w: 0.98839885} + inSlope: {x: 0.2600623, y: 0.078566305, z: -0.1984833, w: 0.051855996} + outSlope: {x: 0.2607333, y: 0.07884584, z: -0.19937773, w: 0.05006795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.08647814, y: -0.0055777556, z: 0.077116296, w: 0.99324894} + inSlope: {x: 0.48961538, y: 0.13249007, z: -0.4509468, w: 0.077784136} + outSlope: {x: 0.4903968, y: 0.13276225, z: -0.4517283, w: 0.07957213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0478621, y: 0.0051406627, z: 0.040077914, w: 0.9980364} + inSlope: {x: 0.6303186, y: 0.16382416, z: -0.60561997, w: 0.054538205} + outSlope: {x: 0.6303756, y: 0.1638943, z: -0.60584456, w: 0.052750163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.0027271414, y: 0.01745071, z: -0.004161305, w: 0.9998353} + inSlope: {x: 0.67886496, y: 0.17398053, z: -0.6600755, w: -0.0035762822} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.026176248, y: 0.9996318, z: 0.0001870027, w: 0.007139633} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.13075769, y: 0.0035762785, z: -0.00093597913, w: 0.000027939675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.017451955, y: 0.9998222, z: 0.00012464881, w: 0.007140994} + inSlope: {x: -0.21234153, y: 0.0035762785, z: -0.0015166005, w: 0.000020954756} + outSlope: {x: -0.21264887, y: 0.0035762785, z: -0.0015190016, w: 0.000027939675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.0021588886, y: 0.99997216, z: -0.000015423004, w: 0.007142065} + inSlope: {x: -0.31728294, y: -0.0008940696, z: -0.0022659786, w: -0.000006984919} + outSlope: {x: -0.31732142, y: -0.00089406973, z: -0.0022662245, w: -0.0000069849198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.024852177, y: 0.9996656, z: -0.0001775111, w: 0.0071398756} + inSlope: {x: -0.34955332, y: -0.008940698, z: -0.0024962358, w: -0.00006286428} + outSlope: {x: -0.34955326, y: -0.008940695, z: -0.002496235, w: -0.00006286427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.048764877, y: 0.9987848, z: -0.00034830876, w: 0.0071335835} + inSlope: {x: -0.3538839, y: -0.016987322, z: -0.0025263575, w: -0.00011874361} + outSlope: {x: -0.3538281, y: -0.016987326, z: -0.0025267948, w: -0.000118743636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.072034456, y: 0.99737656, z: -0.000514513, w: 0.007123525} + inSlope: {x: -0.33035877, y: -0.024139883, z: -0.0023582836, w: -0.000174623} + outSlope: {x: -0.33035877, y: -0.024139883, z: -0.0023582836, w: -0.00016763808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.09280853, y: 0.99565834, z: -0.00066289294, w: 0.007111252} + inSlope: {x: -0.27917328, y: -0.026822092, z: -0.0019924485, w: -0.00019557776} + outSlope: {x: -0.27894977, y: -0.025928022, z: -0.0019907022, w: -0.00018160792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.10925138, y: 0.9939885, z: -0.00078033726, w: 0.0070993244} + inSlope: {x: -0.20049514, y: -0.022351744, z: -0.0014301623, w: -0.00016065316} + outSlope: {x: -0.20038329, y: -0.022351732, z: -0.0014301616, w: -0.00016065309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.11954268, y: 0.99280334, z: -0.00085384434, w: 0.007090859} + inSlope: {x: -0.09465959, y: -0.011622901, z: -0.0006749176, w: -0.000083819} + outSlope: {x: -0.09443612, y: -0.010728837, z: -0.00067229854, w: -0.00007683412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.12186627, y: 0.9925208, z: -0.0008704421, w: 0.0070888405} + inSlope: {x: 0.016205015, y: 0.0017881395, z: 0.000116997406, w: 0.0000069849198} + outSlope: {x: 0.016316773, y: 0.0017881395, z: 0.000118743636, w: 0.0000139698395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.11737683, y: 0.9930618, z: -0.0008383785, w: 0.0070927045} + inSlope: {x: 0.0974536, y: 0.011622907, z: 0.0006976189, w: 0.00008381904} + outSlope: {x: 0.0974536, y: 0.011622907, z: 0.0006976189, w: 0.00007683412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.108871095, y: 0.99403024, z: -0.0007776291, w: 0.0070996215} + inSlope: {x: 0.15288593, y: 0.016987326, z: 0.00109314, w: 0.000118743636} + outSlope: {x: 0.15299769, y: 0.016987326, z: 0.0010957593, w: 0.00012572856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.09698617, y: 0.9952601, z: -0.00069274416, w: 0.0071084066} + inSlope: {x: 0.19893052, y: 0.019669535, z: 0.0014240505, w: 0.00014668332} + outSlope: {x: 0.198707, y: 0.018775465, z: 0.0014205581, w: 0.00013271348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.08236023, y: 0.996577, z: -0.0005882821, w: 0.0071178125} + inSlope: {x: 0.23491682, y: 0.019669535, z: 0.0016798732, w: 0.0001396984} + outSlope: {x: 0.23536386, y: 0.018775465, z: 0.0016833657, w: 0.0001396984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.065635435, y: 0.9978181, z: -0.00046882904, w: 0.007126678} + inSlope: {x: 0.26185068, y: 0.016987326, z: 0.0018719585, w: 0.00012572856} + outSlope: {x: 0.26162717, y: 0.016987326, z: 0.0018706488, w: 0.000118743636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.047459178, y: 0.9988476, z: -0.0003390087, w: 0.0071340315} + inSlope: {x: 0.2785586, y: 0.013411046, z: 0.001992012, w: 0.00009080396} + outSlope: {x: 0.27850246, y: 0.013411034, z: 0.0019907004, w: 0.00009778879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.02848381, y: 0.9995687, z: -0.00020348052, w: 0.007139182} + inSlope: {x: 0.28559914, y: 0.0080466205, z: 0.0020415592, w: 0.000055879307} + outSlope: {x: 0.28559965, y: 0.0080466345, z: 0.002041781, w: 0.00005587941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.009365539, y: 0.9999306, z: -0.00006693119, w: 0.007141768} + inSlope: {x: 0.28234467, y: 0.0026822116, z: 0.0020183162, w: 0.000020954778} + outSlope: {x: 0.28235814, y: 0.0026822067, z: 0.0020185309, w: 0.00002095474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.009181156, y: 0.99993235, z: 0.000065536326, w: 0.0071417815} + inSlope: {x: 0.27014852, y: -0.0026822067, z: 0.0019310012, w: -0.000013969827} + outSlope: {x: 0.27063793, y: -0.0026822116, z: 0.0019348245, w: -0.000020954778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.026668994, y: 0.99961877, z: 0.00019044177, w: 0.007139542} + inSlope: {x: 0.24779724, y: -0.0071525644, z: 0.0017713336, w: -0.000048894482} + outSlope: {x: 0.24818794, y: -0.0062584826, z: 0.001774168, w: -0.00004190948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.042228103, y: 0.99908245, z: 0.00030157235, w: 0.007135712} + inSlope: {x: 0.21535885, y: -0.008940689, z: 0.0015393003, w: -0.00006286422} + outSlope: {x: 0.21541512, y: -0.008940705, z: 0.0015397397, w: -0.00006286433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.055399913, y: 0.9984387, z: 0.00039565278, w: 0.007131114} + inSlope: {x: 0.17356144, y: -0.009834776, z: 0.001241134, w: -0.00006984926} + outSlope: {x: 0.17350525, y: -0.009834758, z: 0.0012398221, w: -0.000069849135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.06537571, y: 0.99783516, z: 0.00046690708, w: 0.0071268035} + inSlope: {x: 0.09331845, y: -0.0062584826, z: 0.00066749577, w: -0.000048894395} + outSlope: {x: 0.09331861, y: -0.0062584938, z: 0.000667497, w: -0.000041909556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.06784327, y: 0.9976704, z: 0.00048453908, w: 0.0071256263} + inSlope: {x: -0.03028664, y: 0.0017881411, z: -0.00021565959, w: 0.000013969852} + outSlope: {x: -0.030510101, y: 0.0017881378, z: -0.00021696888, w: 0.000013969827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.06132133, y: 0.99809253, z: 0.0004379707, w: 0.0071286405} + inSlope: {x: -0.13679254, y: 0.0080466205, z: -0.0009770148, w: 0.00006286422} + outSlope: {x: -0.13690455, y: 0.0080466345, z: -0.0009778896, w: 0.00005587941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.04959224, y: 0.998744, z: 0.0003542143, w: 0.007133293} + inSlope: {x: -0.17590837, y: 0.0080466345, z: -0.0012572866, w: 0.00006286433} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05670157, y: 0.6421294, z: 0.047718197, w: 0.7630057} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0001117587, y: 0, z: -0.00005587935, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.056701265, y: 0.6421287, z: 0.047718585, w: 0.7630063} + inSlope: {x: 0.09186565, y: -0.007152557, z: 0.0773929, w: -0.0053644176} + outSlope: {x: 0.09220093, y: -0.0053644176, z: 0.07756054, w: -0.007152557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.06896404, y: 0.64127845, z: 0.058038637, w: 0.7619957} + inSlope: {x: 0.20664184, y: -0.0151991835, z: 0.17412005, w: -0.018775461} + outSlope: {x: 0.20675363, y: -0.015199185, z: 0.17400832, w: -0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.08424338, y: 0.6399844, z: 0.070897385, w: 0.7604581} + inSlope: {x: 0.23480506, y: -0.020563604, z: 0.19758941, w: -0.025928022} + outSlope: {x: 0.23458149, y: -0.021457668, z: 0.19736585, w: -0.026822086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.10024528, y: 0.6383488, z: 0.08436421, w: 0.7585145} + inSlope: {x: 0.22821124, y: -0.025033947, z: 0.19188967, w: -0.033080574} + outSlope: {x: 0.2282113, y: -0.025928022, z: 0.19211324, w: -0.029504301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.11469405, y: 0.63662356, z: 0.096524, w: 0.7564647} + inSlope: {x: 0.18808992, y: -0.024139883, z: 0.15847386, w: -0.027716162} + outSlope: {x: 0.18808992, y: -0.024139883, z: 0.1583621, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.12533887, y: 0.6352008, z: 0.1054824, w: 0.7547739} + inSlope: {x: 0.114440925, y: -0.015199185, z: 0.0961125, w: -0.019669535} + outSlope: {x: 0.11421741, y: -0.016987326, z: 0.0961125, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.12994714, y: 0.6345446, z: 0.109360605, w: 0.7539942} + inSlope: {x: 0.007152558, y: 0, z: 0.0056996946, w: -0.00089406973} + outSlope: {x: 0.006929037, y: -0.0017881386, z: 0.0058114505, w: -0.0017881386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.12627971, y: 0.6350686, z: 0.10627423, w: 0.75461715} + inSlope: {x: -0.11064108, y: 0.014305109, z: -0.09309497, w: 0.018775456} + outSlope: {x: -0.11064113, y: 0.016987326, z: -0.09331853, w: 0.016987326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.115182444, y: 0.63656116, z: 0.096935004, w: 0.7563904} + inSlope: {x: -0.19982459, y: 0.025928022, z: -0.16842039, w: 0.028610231} + outSlope: {x: -0.2006069, y: 0.025033953, z: -0.16842039, w: 0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.099578656, y: 0.6384226, z: 0.08380323, w: 0.75860244} + inSlope: {x: -0.26162717, y: 0.028610231, z: -0.22005291, w: 0.03397465} + outSlope: {x: -0.26118013, y: 0.028610231, z: -0.21960588, w: 0.03486872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.08032368, y: 0.64034116, z: 0.06759871, w: 0.7608822} + inSlope: {x: -0.30979517, y: 0.025928022, z: -0.2601743, w: 0.03308058} + outSlope: {x: -0.30979517, y: 0.028610231, z: -0.2607331, w: 0.03039837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.058287468, y: 0.6420282, z: 0.04905354, w: 0.7628867} + inSlope: {x: -0.34494328, y: 0.023245813, z: -0.29018152, w: 0.025033953} + outSlope: {x: -0.3446639, y: 0.021457674, z: -0.289958, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.03435844, y: 0.6432498, z: 0.028915426, w: 0.7643384} + inSlope: {x: -0.36617744, y: 0.015199185, z: -0.3081188, w: 0.016093256} + outSlope: {x: -0.3665686, y: 0.013411046, z: -0.3084261, w: 0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.009441681, y: 0.6438504, z: 0.0079460535, w: 0.76505196} + inSlope: {x: -0.37450346, y: 0.0053644185, z: -0.31517354, w: 0.004470349} + outSlope: {x: -0.37412626, y: 0.0026822092, z: -0.31483826, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.01554722, y: 0.6437664, z: -0.013084027, w: 0.76495224} + inSlope: {x: -0.3683148, y: -0.0053644185, z: -0.30999073, w: -0.007152558} + outSlope: {x: -0.36827257, y: -0.0062584826, z: -0.3099765, w: -0.0080466205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.039690837, y: 0.64303243, z: -0.033402734, w: 0.76408} + inSlope: {x: -0.34874275, y: -0.014305103, z: -0.293534, w: -0.016987309} + outSlope: {x: -0.34879926, y: -0.015199199, z: -0.2935904, w: -0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.062078927, y: 0.6417764, z: -0.05224404, w: 0.76258755} + inSlope: {x: -0.3153275, y: -0.020563623, z: -0.26548305, w: -0.025033975} + outSlope: {x: -0.31532693, y: -0.020563586, z: -0.26537085, w: -0.025927998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.08175876, y: 0.6402126, z: -0.06880613, w: 0.7607292} + inSlope: {x: -0.26945, y: -0.02413986, z: -0.22675823, w: -0.030398343} + outSlope: {x: -0.26989755, y: -0.023245834, z: -0.22731744, w: -0.027716186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.098021135, y: 0.6385933, z: -0.0824922, w: 0.75880533} + inSlope: {x: -0.21010657, y: -0.023245834, z: -0.17702596, w: -0.026822116} + outSlope: {x: -0.21055323, y: -0.022351723, z: -0.17724916, w: -0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.10980289, y: 0.6372341, z: -0.09240747, w: 0.75719017} + inSlope: {x: -0.13757485, y: -0.017881379, z: -0.11555841, w: -0.019669516} + outSlope: {x: -0.13746335, y: -0.016093269, z: -0.115670376, w: -0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.1163911, y: 0.6364054, z: -0.09795201, w: 0.75620544} + inSlope: {x: -0.0034645232, y: -0.00089407054, z: -0.0029057292, w: 0} + outSlope: {x: -0.0030174826, y: 0, z: -0.0026822067, w: -0.0008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.11022939, y: 0.63718206, z: -0.09276648, w: 0.75712806} + inSlope: {x: 0.21390599, y: 0.027716137, z: 0.18026665, w: 0.030398343} + outSlope: {x: 0.21468869, y: 0.026822116, z: 0.18037874, w: 0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.087782994, y: 0.63964754, z: -0.07387621, w: 0.76005745} + inSlope: {x: 0.41697213, y: 0.041127246, z: 0.35081092, w: 0.046491668} + outSlope: {x: 0.41786546, y: 0.04202124, z: 0.35136908, w: 0.04827972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0545822, y: 0.6422592, z: -0.045935303, w: 0.7631605} + inSlope: {x: 0.54102343, y: 0.034868687, z: 0.45508108, w: 0.038444962} + outSlope: {x: 0.54102445, y: 0.03397468, z: 0.45530543, w: 0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.015610483, y: 0.6437657, z: -0.013137728, w: 0.7649506} + inSlope: {x: 0.584303, y: 0.010728846, z: 0.49164099, w: 0.010728846} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.015986731, y: 0.05227031, z: -0.13389966, w: 0.9894863} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000027939675, y: 0, z: -0.0004470348, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.01598597, y: 0.05226987, z: -0.13389981, w: 0.9894863} + inSlope: {x: 0.025033949, y: 0.0016763805, z: 0.20965932, w: 0.029504297} + outSlope: {x: 0.025145708, y: 0.0015646218, z: 0.21010636, w: 0.029504297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.0126357395, y: 0.052451257, z: -0.105844505, w: 0.9929181} + inSlope: {x: 0.053588297, y: 0.0029616056, z: 0.4487112, w: 0.04917383} + outSlope: {x: 0.053602275, y: 0.002793968, z: 0.4485995, w: 0.048279766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.008843268, y: 0.052604873, z: -0.07408575, w: 0.9958242} + inSlope: {x: 0.058994632, y: 0.0024028125, z: 0.49397352, w: 0.038445} + outSlope: {x: 0.059022557, y: 0.002291053, z: 0.49386165, w: 0.03576278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.004771105, y: 0.052709248, z: -0.039984796, w: 0.9977977} + inSlope: {x: 0.061942253, y: 0.001452863, z: 0.5186721, w: 0.022351738} + outSlope: {x: 0.061949253, y: 0.001564622, z: 0.51856047, w: 0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0005849822, y: 0.05275152, z: -0.004929453, w: 0.9985953} + inSlope: {x: 0.06239716, y: 0.0005587936, z: 0.52259076, w: 0.0026822092} + outSlope: {x: 0.062391922, y: 0.0005587936, z: 0.522472, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.0035477353, y: 0.052728713, z: 0.029678706, w: 0.99816144} + inSlope: {x: 0.060321767, y: -0.0003911555, z: 0.5051773, w: -0.014305116} + outSlope: {x: 0.060325257, y: -0.0003911555, z: 0.5052891, w: -0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.007459948, y: 0.052647993, z: 0.062440317, w: 0.99663115} + inSlope: {x: 0.05575363, y: -0.0011734666, z: 0.46703967, w: -0.03039837} + outSlope: {x: 0.055767573, y: -0.001173466, z: 0.4672071, w: -0.028610218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.010986591, y: 0.052525718, z: 0.09197312, w: 0.99431443} + inSlope: {x: 0.048782658, y: -0.0017881386, z: 0.4088132, w: -0.03844498} + outSlope: {x: 0.0487268, y: -0.0018440188, z: 0.40836635, w: -0.03755093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.013965774, y: 0.052385587, z: 0.11692141, w: 0.9916603} + inSlope: {x: 0.03933907, y: -0.002011657, z: 0.32957646, w: -0.03933907} + outSlope: {x: 0.03939495, y: -0.0018998982, z: 0.32991174, w: -0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.016238894, y: 0.052255813, z: 0.13595696, w: 0.98920244} + inSlope: {x: 0.027604403, y: -0.001564622, z: 0.23134054, w: -0.032186512} + outSlope: {x: 0.027604403, y: -0.0016205014, z: 0.23111703, w: -0.03308058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.017649528, y: 0.052165244, z: 0.14776982, w: 0.9874874} + inSlope: {x: 0.013522805, y: -0.00089406973, z: 0.11309982, w: -0.016987326} + outSlope: {x: 0.013466925, y: -0.00089406973, z: 0.11309982, w: -0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.018041244, y: 0.052138723, z: 0.15105008, w: 0.98698527} + inSlope: {x: -0.0017601998, y: 0.000055879358, z: -0.0147521505, w: 0.0017881395} + outSlope: {x: -0.0017043204, y: 0.000111758716, z: -0.014528633, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.017418277, y: 0.052180592, z: 0.14583302, w: 0.98777854} + inSlope: {x: -0.015506522, y: 0.0010617079, z: -0.12986363, w: 0.020563604} + outSlope: {x: -0.0155344615, y: 0.0011734666, z: -0.13031067, w: 0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.015969036, y: 0.052272193, z: 0.13369651, w: 0.98951393} + inSlope: {x: -0.02707355, y: 0.0016763808, z: -0.22619964, w: 0.03039837} + outSlope: {x: -0.02701767, y: 0.0017322601, z: -0.22642316, w: 0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.013810854, y: 0.05239362, z: 0.11562308, w: 0.99181426} + inSlope: {x: -0.03679656, y: 0.0020675363, z: -0.30800703, w: 0.03665686} + outSlope: {x: -0.036796525, y: 0.0020675345, z: -0.30789497, w: 0.036656827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.011061294, y: 0.052522477, z: 0.09259725, w: 0.9942559} + inSlope: {x: -0.044759326, y: 0.0020675345, z: -0.3748384, w: 0.036656827} + outSlope: {x: -0.044787344, y: 0.002067538, z: -0.37483907, w: 0.03397468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.007839534, y: 0.05263693, z: 0.06561717, w: 0.9964248} + inSlope: {x: -0.05086423, y: 0.0017881411, z: -0.4258011, w: 0.028610257} + outSlope: {x: -0.05085017, y: 0.0016763792, z: -0.42568856, w: 0.027716137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0042786696, y: 0.05271779, z: 0.03579739, w: 0.9979584} + inSlope: {x: -0.055278607, y: 0.0012293448, z: -0.46279243, w: 0.016987309} + outSlope: {x: -0.055369508, y: 0.0011734676, z: -0.46363145, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0004678279, y: 0.052751534, z: 0.0038842973, w: 0.99859995} + inSlope: {x: -0.057712514, y: 0.00044703527, z: -0.48330098, w: 0.0017881411} + outSlope: {x: -0.057818495, y: 0.00039115516, z: -0.48420817, w: 0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0034204205, y: 0.05272978, z: -0.028676907, w: 0.9981912} + inSlope: {x: -0.058289103, y: -0.00039115516, z: -0.48818958, w: -0.013411034} + outSlope: {x: -0.058282223, y: -0.00039115586, z: -0.48819044, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.0073080203, y: 0.052651256, z: -0.061232563, w: 0.9967071} + inSlope: {x: -0.056955088, y: -0.0011734676, z: -0.47715425, w: -0.030398399} + outSlope: {x: -0.056954984, y: -0.0012293448, z: -0.47709754, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.011021368, y: 0.052522972, z: -0.09232885, w: 0.99428123} + inSlope: {x: -0.053783834, y: -0.0018440172, z: -0.45049897, w: -0.04202124} + outSlope: {x: -0.05383981, y: -0.0018998999, z: -0.45117033, w: -0.042021316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.014482597, y: 0.052356232, z: -0.12131371, w: 0.9911268} + inSlope: {x: -0.04875478, y: -0.0023469352, z: -0.40847847, w: -0.04917388} + outSlope: {x: -0.048824545, y: -0.0024586895, z: -0.40903655, w: -0.051855996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.017527796, y: 0.052171525, z: -0.14681448, w: 0.98763174} + inSlope: {x: -0.041881543, y: -0.0026822067, z: -0.35092205, w: -0.051855996} + outSlope: {x: -0.041881617, y: -0.0026822116, z: -0.35092267, w: -0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.020076225, y: 0.051989343, z: -0.16815498, w: 0.98418397} + inSlope: {x: -0.038109757, y: -0.0026822116, z: -0.3196302, w: -0.053644232} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.051921397, y: 0.011815625, z: -0.17424549, w: 0.9832615} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0.0002235174, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.0519214, y: 0.011815626, z: -0.17424552, w: 0.9832615} + inSlope: {x: -0.012461095, y: -0.0016624107, z: -0.12762845, w: -0.02145767} + outSlope: {x: -0.0125169745, y: -0.0016624107, z: -0.12762845, w: -0.02324581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.05025056, y: 0.011587404, z: -0.19125006, w: 0.9801857} + inSlope: {x: -0.026822088, y: -0.003869645, z: -0.35360453, w: -0.067949295} + outSlope: {x: -0.026877971, y: -0.0038836154, z: -0.35427514, w: -0.0679493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.048350673, y: 0.011272088, z: -0.22136548, w: 0.9739263} + inSlope: {x: -0.07180498, y: -0.007222407, z: -0.2384931, w: -0.050961975} + outSlope: {x: -0.071860835, y: -0.0072084353, z: -0.238046, w: -0.050961964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.04069961, y: 0.010578419, z: -0.2230951, w: 0.97388923} + inSlope: {x: -0.15266237, y: -0.013425013, z: 0.17501411, w: 0.047385685} + outSlope: {x: -0.15283005, y: -0.0134529555, z: 0.17613174, w: 0.046491627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.027965747, y: 0.009559741, z: -0.197854, w: 0.97978586} + inSlope: {x: -0.20728448, y: -0.018607827, z: 0.42289498, w: 0.091195114} + outSlope: {x: -0.20728448, y: -0.018607827, z: 0.42267147, w: 0.09208918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.013051247, y: 0.008365666, z: -0.16662766, w: 0.98589796} + inSlope: {x: -0.23555943, y: -0.021639282, z: 0.5038083, w: 0.086724766} + outSlope: {x: -0.23558737, y: -0.021611342, z: 0.5033613, w: 0.088512905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0034651437, y: 0.0070377197, z: -0.13067852, w: 0.99139374} + inSlope: {x: -0.254974, y: -0.023846516, z: 0.5650521, w: 0.07331372} + outSlope: {x: -0.2550228, y: -0.02385349, z: 0.5641577, w: 0.07331368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.020991735, y: 0.0056194915, z: -0.09133089, w: 0.9955835} + inSlope: {x: -0.2655386, y: -0.02522952, z: 0.6056202, w: 0.050067883} + outSlope: {x: -0.26537108, y: -0.02520159, z: 0.6052852, w: 0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.03892842, y: 0.0041567637, z: -0.049968485, w: 0.9979832} + inSlope: {x: -0.26682395, y: -0.025648626, z: 0.62467533, w: 0.022351744} + outSlope: {x: -0.2669357, y: -0.025690535, z: 0.62545764, w: 0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.056675676, y: 0.002697062, z: -0.008018695, w: 0.9983568} + inSlope: {x: -0.2596155, y: -0.025159681, z: 0.6236276, w: -0.009834767} + outSlope: {x: -0.2593361, y: -0.025152696, z: 0.62305486, w: -0.009834767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.0736458, y: 0.0012888896, z: 0.033072077, w: 0.9967351} + inSlope: {x: -0.24341048, y: -0.023677131, z: 0.59941787, w: -0.038445} + outSlope: {x: -0.243634, y: -0.023712056, z: 0.5999208, w: -0.03755093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.089273825, y: -0.000019244384, z: 0.07186548, w: 0.99341094} + inSlope: {x: -0.21938236, y: -0.021345915, z: 0.5547703, w: -0.06079674} + outSlope: {x: -0.21938236, y: -0.02129702, z: 0.55465853, w: -0.057220463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.10302551, y: -0.0011796253, z: 0.10695474, w: 0.98891103} + inSlope: {x: -0.18730761, y: -0.018146822, z: 0.48849735, w: -0.07331372} + outSlope: {x: -0.18764289, y: -0.018090943, z: 0.48905614, w: -0.07152558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.114400156, y: -0.002146002, z: 0.13697906, w: 0.9839435} + inSlope: {x: -0.14875086, y: -0.014109538, z: 0.40322545, w: -0.07241965} + outSlope: {x: -0.14841558, y: -0.014137478, z: 0.40233138, w: -0.07331372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.12292661, y: -0.002873797, z: 0.16062436, w: 0.9793266} + inSlope: {x: -0.1025945, y: -0.009555371, z: 0.29683116, w: -0.06169081} + outSlope: {x: -0.102706164, y: -0.009471543, z: 0.29727793, w: -0.062584825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.12815242, y: -0.0033198092, z: 0.17660928, w: 0.975897} + inSlope: {x: -0.05006786, y: -0.004442405, z: 0.1725553, w: -0.038444962} + outSlope: {x: -0.049844433, y: -0.004498292, z: 0.1723321, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.12962608, y: -0.0034416858, z: 0.18365686, w: 0.97440004} + inSlope: {x: 0.017210858, y: 0.0016205028, z: 0.015869752, w: -0.00089407054} + outSlope: {x: 0.017657861, y: 0.0016204999, z: 0.016093241, w: -0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.12584141, y: -0.003105959, z: 0.17873475, w: 0.9758116} + inSlope: {x: 0.100582756, y: 0.008409835, z: -0.16987309, w: 0.044703446} + outSlope: {x: 0.10125349, y: 0.008409851, z: -0.17032044, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.11617268, y: -0.0022594426, z: 0.16096927, w: 0.98009574} + inSlope: {x: 0.1812728, y: 0.014305129, z: -0.34421715, w: 0.077784136} + outSlope: {x: 0.18160775, y: 0.014305103, z: -0.34488708, w: 0.076889925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.10168644, y: -0.0010009799, z: 0.13269909, w: 0.98592585} + inSlope: {x: 0.24799237, y: 0.01857987, z: -0.4877146, w: 0.09119503} + outSlope: {x: 0.24799281, y: 0.018510053, z: -0.487939, w: 0.092089266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.08315236, y: 0.00059516076, z: 0.09572402, w: 0.9919286} + inSlope: {x: 0.2998489, y: 0.021471662, z: -0.5983567, w: 0.08314856} + outSlope: {x: 0.29996014, y: 0.021443684, z: -0.5984674, w: 0.08314841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.061783895, y: 0.0024173395, z: 0.05272067, w: 0.99669325} + inSlope: {x: 0.33667284, y: 0.023315642, z: -0.6754132, w: 0.05632634} + outSlope: {x: 0.3372881, y: 0.0233541, z: -0.6767555, w: 0.057220515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.0383619, y: 0.0043933475, z: 0.005484506, w: 0.99923927} + inSlope: {x: 0.3570694, y: 0.024139903, z: -0.71700263, w: 0.018775482} + outSlope: {x: 0.35768345, y: 0.0241678, z: -0.71820974, w: 0.016093241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0142714605, y: 0.006403312, z: -0.043001693, w: 0.9989525} + inSlope: {x: 0.36063108, y: 0.024035087, z: -0.7225753, w: -0.026822068} + outSlope: {x: 0.360506, y: 0.02403513, z: -0.72229725, w: -0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.009655599, y: 0.00837782, z: -0.09090397, w: 0.9957776} + inSlope: {x: 0.35870388, y: 0.02360905, z: -0.7160387, w: -0.06884343} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21/Bone22 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.008748472, y: 0.33772007, z: 0.65171546} + inSlope: {x: 0, y: -0.006865284, z: 0} + outSlope: {x: 0, y: -0.006865284, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.008748472, y: 0.3372669, z: 0.65171546} + inSlope: {x: -0.000000007054456, y: 0.015692947, z: 0.0000009029704} + outSlope: {x: -0.000000007054456, y: 0.015692947, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.008748473, y: 0.33979183, z: 0.6517156} + inSlope: {x: 0, y: 0.07236834, z: 0} + outSlope: {x: 0, y: 0.07236834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.008748472, y: 0.3468209, z: 0.65171546} + inSlope: {x: 0, y: 0.13440083, z: 0} + outSlope: {x: 0, y: 0.13440083, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.008748473, y: 0.3575353, z: 0.6517156} + inSlope: {x: -0.000000014108912, y: 0.18403079, z: 0.0000009029704} + outSlope: {x: -0.000000014108912, y: 0.18403079, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.008748474, y: 0.37111646, z: 0.6517156} + inSlope: {x: 0.000000014108913, y: 0.22125778, z: -0.0000018059408} + outSlope: {x: 0.000000014108913, y: 0.22125778, z: -0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.008748471, y: 0.38674554, z: 0.65171534} + inSlope: {x: 0.0000000070544575, y: 0.24608336, z: 0} + outSlope: {x: 0.0000000070544575, y: 0.24608336, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.008748473, y: 0.40360415, z: 0.6517156} + inSlope: {x: -0.000000007054456, y: 0.2585069, z: 0.0000018059408} + outSlope: {x: -0.000000007054456, y: 0.2585069, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.008748472, y: 0.42087337, z: 0.6517156} + inSlope: {x: 0.000000007054456, y: 0.25852674, z: -0.0000009029704} + outSlope: {x: 0.000000007054456, y: 0.25852674, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.008748472, y: 0.4377346, z: 0.65171546} + inSlope: {x: 0, y: 0.24614453, z: -0.0000009029704} + outSlope: {x: 0, y: 0.24614453, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.008748472, y: 0.45336914, z: 0.65171546} + inSlope: {x: 0, y: 0.22135982, z: 0} + outSlope: {x: 0, y: 0.22135982, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.008748472, y: 0.4669583, z: 0.65171546} + inSlope: {x: 0, y: 0.18417278, z: 0.0000009029704} + outSlope: {x: 0, y: 0.18417278, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.008748472, y: 0.47768345, z: 0.6517156} + inSlope: {x: 0, y: 0.13458322, z: 0} + outSlope: {x: 0, y: 0.13458322, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.008748472, y: 0.48472586, z: 0.65171546} + inSlope: {x: 0, y: 0.07259137, z: -0.0000009029704} + outSlope: {x: 0, y: 0.07259137, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.008748472, y: 0.4872669, z: 0.65171546} + inSlope: {x: -0.000000007054456, y: 0.00028308108, z: 0.0000009029704} + outSlope: {x: -0.000000007054456, y: 0.00028308108, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.008748473, y: 0.48476323, z: 0.6517156} + inSlope: {x: 0, y: -0.07199428, z: 0} + outSlope: {x: 0, y: -0.07199428, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.008748472, y: 0.47776228, z: 0.65171546} + inSlope: {x: 0, y: -0.1339333, z: 0} + outSlope: {x: 0, y: -0.1339333, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.008748471, y: 0.45358413, z: 0.65171534} + inSlope: {x: 0.000000014108912, y: -0.22066069, z: -0.0000018059408} + outSlope: {x: 0.000000014108912, y: -0.22066069, z: -0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.008748471, y: 0.43795007, z: 0.65171534} + inSlope: {x: 0, y: -0.24538943, z: 0} + outSlope: {x: 0, y: -0.24538943, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.008748471, y: 0.42118806, z: 0.65171534} + inSlope: {x: -0.000000007054456, y: -0.25785154, z: 0.0000018059408} + outSlope: {x: -0.000000007054456, y: -0.25785154, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.008748472, y: 0.40390876, z: 0.6517156} + inSlope: {x: -0.000000007054456, y: -0.25789106, z: 0} + outSlope: {x: -0.000000007054456, y: -0.25789106, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.008748472, y: 0.38714153, z: 0.65171534} + inSlope: {x: 0, y: -0.2455084, z: -0.0000009029704} + outSlope: {x: 0, y: -0.2455084, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.008748472, y: 0.37149698, z: 0.65171546} + inSlope: {x: 0.000000007054456, y: -0.22085822, z: 0.0000009029704} + outSlope: {x: 0.000000007054456, y: -0.22085822, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.008748471, y: 0.35798404, z: 0.65171546} + inSlope: {x: 0, y: -0.18363056, z: 0.0000009029704} + outSlope: {x: 0, y: -0.18363056, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.008748472, y: 0.34725425, z: 0.6517156} + inSlope: {x: -0.000000014108912, y: -0.16254912, z: 0.0000018059408} + outSlope: {x: -0.000000014108912, y: -0.16254912, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03779651, y: -0.00000019301805, z: 0.08896949} + inSlope: {x: -0.0000002257426, y: -0.000000020051637, z: -0.0000004514852} + outSlope: {x: -0.0000002257426, y: -0.000000020051637, z: -0.0000004514852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.037796494, y: -0.00000019434165, z: 0.08896946} + inSlope: {x: -0.0000001128713, y: -0.000000010025818, z: -0.0000002257426} + outSlope: {x: -0.0000001128713, y: -0.000000010025818, z: -0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.037796494, y: -0.00000019434165, z: 0.08896946} + inSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + outSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0377965, y: -0.00000019368646, z: 0.08896948} + inSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + outSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0377965, y: -0.00000019368646, z: 0.08896948} + inSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + outSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.037796505, y: -0.00000019701218, z: 0.08896947} + inSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + outSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.037796505, y: -0.00000019701218, z: 0.08896947} + inSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + outSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.037796468, y: -0.0000001941296, z: 0.0889695} + inSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + outSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.037796468, y: -0.0000001941296, z: 0.0889695} + inSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + outSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.037796486, y: -0.00000019338897, z: 0.08896948} + inSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + outSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.037796486, y: -0.00000019338897, z: 0.08896948} + inSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + outSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.037796486, y: -0.00000019040966, z: 0.08896947} + inSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + outSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.037796486, y: -0.00000019040966, z: 0.08896947} + inSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + outSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + outSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: -0.00000005212834, z: 0} + outSlope: {x: 0, y: -0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: -0.00000005212834, z: 0} + outSlope: {x: 0, y: -0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0.00000042326738, y: -0.000000005873403, z: 0.00000005643565} + outSlope: {x: 0.00000042326738, y: -0.000000005873403, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.037796542, y: -0.00000019170227, z: 0.08896947} + inSlope: {x: 0.00000084653476, y: -0.000000011746806, z: 0.0000001128713} + outSlope: {x: 0.00000084653476, y: -0.000000011746806, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16918491, y: -2.990317e-10, z: 0.000000036659337} + inSlope: {x: -0.0000002257426, y: -0.000000093030586, z: -0.0000011940916} + outSlope: {x: -0.0000002257426, y: -0.000000093030586, z: -0.0000011940916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.1691849, y: -0.0000000064399366, z: -0.000000042162082} + inSlope: {x: -0.0000001128713, y: -0.000000046515293, z: -0.0000005970458} + outSlope: {x: -0.0000001128713, y: -0.000000046515293, z: -0.0000005970458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.1691849, y: -0.0000000064399366, z: -0.000000042162082} + inSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + outSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.16918491, y: 9.344068e-10, z: 0.00000002460617} + inSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + outSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.16918491, y: 9.344068e-10, z: 0.00000002460617} + inSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + outSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.16918491, y: -2.7425895e-10, z: 0.000000037284284} + inSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + outSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.16918491, y: -2.7425895e-10, z: 0.000000037284284} + inSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + outSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.16918495, y: 0.0000000034814576, z: 0.0000000066248242} + inSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + outSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.16918495, y: 0.0000000034814576, z: 0.0000000066248242} + inSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + outSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.16918491, y: -0.000000002510999, z: 0.0000000056680443} + inSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + outSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.16918491, y: -0.000000002510999, z: 0.0000000056680443} + inSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + outSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.1691849, y: 9.884902e-10, z: 0.000000005242545} + inSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + outSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.1691849, y: 9.884902e-10, z: 0.000000005242545} + inSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + outSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + outSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + outSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + outSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + outSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.0000000714401, z: -0.000000027345996} + outSlope: {x: 0, y: 0.0000000714401, z: -0.000000027345996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.16918491, y: -0.0000000019785045, z: 0.000000011792214} + inSlope: {x: 0, y: 0.0000001428802, z: -0.00000005469199} + outSlope: {x: 0, y: 0.0000001428802, z: -0.00000005469199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16660501, y: -0.0000000012261461, z: 0.0000000034901215} + inSlope: {x: 0, y: -0.0000000596757, z: -0.00000075608915} + outSlope: {x: 0, y: -0.0000000596757, z: -0.00000075608915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.16660501, y: -0.000000005165311, z: -0.00000004641896} + inSlope: {x: 0, y: -0.00000002983785, z: -0.00000037804458} + outSlope: {x: 0, y: -0.00000002983785, z: -0.00000037804458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.16660501, y: -0.000000005165311, z: -0.00000004641896} + inSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + outSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.16660503, y: 0.0000000034442624, z: 0.000000008398947} + inSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + outSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.16660503, y: 0.0000000034442624, z: 0.000000008398947} + inSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + outSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.16660501, y: 0.0000000033272507, z: -0.0000000022970028} + inSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + outSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.16660501, y: 0.0000000033272507, z: -0.0000000022970028} + inSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + outSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.16660503, y: 0.000000010056783, z: 0.000000023844498} + inSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + outSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.16660503, y: 0.000000010056783, z: 0.000000023844498} + inSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + outSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.16660503, y: -6.768852e-10, z: 3.2232889e-10} + inSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + outSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.16660503, y: -6.768852e-10, z: 3.2232889e-10} + inSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + outSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.16660501, y: 0.0000000011205037, z: -0.000000007300324} + inSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + outSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.16660501, y: 0.0000000011205037, z: -0.000000007300324} + inSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + outSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.166605, y: -2.0020985e-10, z: 0.00000002334521} + inSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + outSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.166605, y: -2.0020985e-10, z: 0.00000002334521} + inSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + outSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.16660501, y: -3.1732195e-10, z: -0.000000008699833} + inSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + outSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.16660501, y: -3.1732195e-10, z: -0.000000008699833} + inSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + outSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + outSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + outSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0, y: 0.00000007599632, z: 0.00000008279898} + outSlope: {x: 0, y: 0.00000007599632, z: 0.00000008279898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.166605, y: 0.0000000010452248, z: 0.000000022922272} + inSlope: {x: 0, y: 0.00000015199264, z: 0.00000016559795} + outSlope: {x: 0, y: 0.00000015199264, z: 0.00000016559795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.1420546, y: 0.00000010304158, z: 0.00000017860373} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.1420546, y: 0.00000010304158, z: 0.00000017860373} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.0356122, y: -0.009224207, z: 0.7847072} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.0356122, y: -0.009224207, z: 0.7847072} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.9198914, y: 0.0000000056464766, z: 0.000000048295984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.9198914, y: 0.0000000056464766, z: 0.000000048295984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.8174602, y: 0.00000007313465, z: 0.00000000983755} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.8174602, y: 0.00000007313465, z: 0.00000000983755} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.0736117, y: -0.009224207, z: -0.7910624} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.0736117, y: -0.009224207, z: -0.7910624} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.848197, y: -0.0000000114241, z: -0.000000029501352} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.848197, y: -0.0000000114241, z: -0.000000029501352} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.81657094, y: -0.000000010017325, z: -0.000000031725655} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.81657094, y: -0.000000010017325, z: -0.000000031725655} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.5820273, y: -0.008281411, z: -0.33933067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.5820273, y: -0.008281411, z: -0.33933067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.71559757, y: -0.0000000055035088, z: 0.0000000029377336} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.71559757, y: -0.0000000055035088, z: 0.0000000029377336} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.60945666, y: -0.008281411, z: 0.32652536} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.60945666, y: -0.008281411, z: 0.32652536} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.5980861, y: 0.000000010154258, z: 0.00000000444109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.5980861, y: 0.000000010154258, z: 0.00000000444109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: -0.007700801, y: 0, z: 0.002247423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.007700801, y: 0, z: 0.002247423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.038948793, y: 0.00000032088323, z: -0.09688048} + inSlope: {x: -0.00000033861392, y: 0.0000000068602692, z: 0.0000001128713} + outSlope: {x: -0.00000033861392, y: 0.0000000068602692, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.03894877, y: 0.00000032133607, z: -0.09688047} + inSlope: {x: -0.00000016930696, y: 0.0000000034301346, z: 0.00000005643565} + outSlope: {x: -0.00000016930696, y: 0.0000000034301346, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.03894877, y: 0.00000032133607, z: -0.09688047} + inSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + outSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.038948786, y: 0.00000032434772, z: -0.09688052} + inSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + outSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.038948786, y: 0.00000032434772, z: -0.09688052} + inSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + outSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.03894878, y: 0.00000032601105, z: -0.0968805} + inSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + outSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.03894878, y: 0.00000032601105, z: -0.0968805} + inSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + outSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.038948763, y: 0.00000032301605, z: -0.09688051} + inSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + outSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.038948763, y: 0.00000032301605, z: -0.09688051} + inSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + outSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.03894876, y: 0.00000032321802, z: -0.09688052} + inSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + outSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.03894876, y: 0.00000032321802, z: -0.09688052} + inSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + outSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.03894874, y: 0.00000032582955, z: -0.09688052} + inSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + outSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.03894874, y: 0.00000032582955, z: -0.09688052} + inSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + outSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + outSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + outSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + outSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000025396042, y: 0.0000000025171114, z: -0.00000005643565} + outSlope: {x: 0.00000025396042, y: 0.0000000025171114, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.038948808, y: 0.00000032905677, z: -0.09688052} + inSlope: {x: 0.00000050792084, y: 0.000000005034223, z: -0.0000001128713} + outSlope: {x: 0.00000050792084, y: 0.000000005034223, z: -0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14589126, y: -0.000000007190708, z: 0.000000029976878} + inSlope: {x: 0.0000002257426, y: -0.00000000375136, z: 0.00000039181813} + outSlope: {x: 0.0000002257426, y: -0.00000000375136, z: 0.00000039181813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.14589128, y: -0.0000000074383335, z: 0.000000055840605} + inSlope: {x: 0.0000001128713, y: -0.00000000187568, z: 0.00000019590907} + outSlope: {x: 0.0000001128713, y: -0.00000000187568, z: 0.00000019590907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.14589128, y: -0.0000000074383335, z: 0.000000055840605} + inSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + outSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.14589135, y: 0.000000014384659, z: 0.000000008330403} + inSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + outSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.14589135, y: 0.000000014384659, z: 0.000000008330403} + inSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + outSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.14589126, y: -0.000000007771782, z: 0.000000021444642} + inSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + outSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.14589126, y: -0.000000007771782, z: 0.000000021444642} + inSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + outSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.14589131, y: 0.0000000043922364, z: 0.000000034121623} + inSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + outSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.14589131, y: 0.0000000043922364, z: 0.000000034121623} + inSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + outSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.14589134, y: 0.000000002795229, z: 0.000000013440285} + inSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + outSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.14589134, y: 0.000000002795229, z: 0.000000013440285} + inSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + outSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.14589131, y: 0.00000000700612, z: 0.0000000036485783} + inSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + outSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.14589131, y: 0.00000000700612, z: 0.0000000036485783} + inSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + outSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.1458913, y: -1.8919921e-10, z: 0.000000024775892} + inSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + outSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.1458913, y: -1.8919921e-10, z: 0.000000024775892} + inSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + outSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.14589128, y: -0.0000000017147164, z: 0.000000024109484} + inSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + outSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.14589128, y: -0.0000000017147164, z: 0.000000024109484} + inSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + outSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + outSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + outSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0.0000002257426, y: -0.000000024595987, z: 0.000000019211516} + outSlope: {x: 0.0000002257426, y: -0.000000024595987, z: 0.000000019211516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.1458913, y: -0.000000005665944, z: 0.000000010902855} + inSlope: {x: 0.0000004514852, y: -0.000000049191975, z: 0.000000038423032} + outSlope: {x: 0.0000004514852, y: -0.000000049191975, z: 0.000000038423032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.35067046, y: -0.009224206, z: -0.34308544} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.35067046, y: -0.009224206, z: -0.34308544} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15576063, y: -0.000000011369518, z: -0.0000007896083} + inSlope: {x: -0.0000004514852, y: -0.000000080905785, z: -0.00000062071723} + outSlope: {x: -0.0000004514852, y: -0.000000080905785, z: -0.00000062071723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.1557606, y: -0.00000001671007, z: -0.00000083058154} + inSlope: {x: -0.0000002257426, y: -0.000000040452893, z: -0.00000031035862} + outSlope: {x: -0.0000002257426, y: -0.000000040452893, z: -0.00000031035862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.1557606, y: -0.00000001671007, z: -0.00000083058154} + inSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + outSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.15576062, y: -0.000000023647786, z: -0.00000080964116} + inSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + outSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.15576062, y: -0.000000023647786, z: -0.00000080964116} + inSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + outSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.15576062, y: -0.0000000030251048, z: -0.00000079052694} + inSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + outSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.15576062, y: -0.0000000030251048, z: -0.00000079052694} + inSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + outSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.15576059, y: -0.000000011294975, z: -0.00000080704217} + inSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + outSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.15576059, y: -0.000000011294975, z: -0.00000080704217} + inSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + outSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.1557606, y: -0.0000000032033916, z: -0.0000008074531} + inSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + outSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.1557606, y: -0.0000000032033916, z: -0.0000008074531} + inSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + outSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.15576057, y: -0.00000000704767, z: -0.00000080216506} + inSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + outSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.15576057, y: -0.00000000704767, z: -0.00000080216506} + inSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + outSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.15576059, y: -0.0000000090004715, z: -0.0000008069034} + inSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + outSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.15576059, y: -0.0000000090004715, z: -0.0000008069034} + inSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + outSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.15576059, y: -0.000000009914647, z: -0.00000080430556} + inSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + outSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.15576059, y: -0.000000009914647, z: -0.00000080430556} + inSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + outSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + outSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + outSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0.0000001128713, y: -0.00000004565608, z: 0.0000000036572603} + outSlope: {x: 0.0000001128713, y: -0.00000004565608, z: 0.0000000036572603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.1557606, y: -0.000000019405936, z: -0.00000081089223} + inSlope: {x: 0.0000002257426, y: -0.00000009131216, z: 0.0000000073145205} + outSlope: {x: 0.0000002257426, y: -0.00000009131216, z: 0.0000000073145205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.93991613, y: -0.00828141, z: 0.2927984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.93991613, y: -0.00828141, z: 0.2927984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.5424665, y: 0.0000000041311936, z: -0.00000019516179} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.5424665, y: 0.0000000041311936, z: -0.00000019516179} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.9270634, y: -0.000000022259227, z: 0.0000000018832567} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.9270634, y: -0.000000022259227, z: 0.0000000018832567} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.9249606, y: -0.00828141, z: -0.3052871} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.9249606, y: -0.00828141, z: -0.3052871} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.56906635, y: -0.000000016917367, z: 0.00000013908223} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.56906635, y: -0.000000016917367, z: 0.00000013908223} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.0189703, y: -0.000000026109577, z: -0.0000001175429} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.0189703, y: -0.000000026109577, z: -0.0000001175429} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21/Bone22 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 15 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 2635294239 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 45982632 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2635294239 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3989619677 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2037210983 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1596138282 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4035943581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2696752017 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3097169453 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 45982632 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 563648882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2919814325 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 360520411 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185137064 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2325826247 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1696067156 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3716967535 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3280538074 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3495831604 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3001957094 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 960335105 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2593083981 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2709536620 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2222384285 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3275979307 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1367437642 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3097169453 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 563648882 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2919814325 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 360520411 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185137064 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2325826247 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1696067156 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3716967535 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3280538074 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 960335105 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2593083981 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3495831604 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3001957094 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2709536620 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3989619677 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2037210983 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1596138282 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4035943581 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2696752017 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2222384285 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3275979307 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1367437642 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.6666666 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0096747875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0096747875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.6577143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.6577143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.435883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.435883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.008748472 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.008748473 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.008748473 + inSlope: -0.000000014108912 + outSlope: -0.000000014108912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.008748474 + inSlope: 0.000000014108913 + outSlope: 0.000000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.008748471 + inSlope: 0.0000000070544575 + outSlope: 0.0000000070544575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.008748473 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.008748472 + inSlope: 0.000000007054456 + outSlope: 0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.008748472 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008748473 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.008748471 + inSlope: 0.000000014108912 + outSlope: 0.000000014108912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.008748471 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.008748471 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.008748472 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.008748472 + inSlope: 0.000000007054456 + outSlope: 0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.008748471 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.008748472 + inSlope: -0.000000014108912 + outSlope: -0.000000014108912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33772007 + inSlope: -0.006865284 + outSlope: -0.006865284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3372669 + inSlope: 0.015692947 + outSlope: 0.015692947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.33979183 + inSlope: 0.07236834 + outSlope: 0.07236834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.3468209 + inSlope: 0.13440083 + outSlope: 0.13440083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3575353 + inSlope: 0.18403079 + outSlope: 0.18403079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.37111646 + inSlope: 0.22125778 + outSlope: 0.22125778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.38674554 + inSlope: 0.24608336 + outSlope: 0.24608336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.40360415 + inSlope: 0.2585069 + outSlope: 0.2585069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.42087337 + inSlope: 0.25852674 + outSlope: 0.25852674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4377346 + inSlope: 0.24614453 + outSlope: 0.24614453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.45336914 + inSlope: 0.22135982 + outSlope: 0.22135982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4669583 + inSlope: 0.18417278 + outSlope: 0.18417278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.47768345 + inSlope: 0.13458322 + outSlope: 0.13458322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.48472586 + inSlope: 0.07259137 + outSlope: 0.07259137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.4872669 + inSlope: 0.00028308108 + outSlope: 0.00028308108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.48476323 + inSlope: -0.07199428 + outSlope: -0.07199428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.47776228 + inSlope: -0.1339333 + outSlope: -0.1339333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.45358413 + inSlope: -0.22066069 + outSlope: -0.22066069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.43795007 + inSlope: -0.24538943 + outSlope: -0.24538943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.42118806 + inSlope: -0.25785154 + outSlope: -0.25785154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.40390876 + inSlope: -0.25789106 + outSlope: -0.25789106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.38714153 + inSlope: -0.2455084 + outSlope: -0.2455084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.37149698 + inSlope: -0.22085822 + outSlope: -0.22085822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.35798404 + inSlope: -0.18363056 + outSlope: -0.18363056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.34725425 + inSlope: -0.16254912 + outSlope: -0.16254912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6517156 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6517156 + inSlope: -0.0000018059408 + outSlope: -0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.65171534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6517156 + inSlope: 0.0000018059408 + outSlope: 0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6517156 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.65171546 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.65171546 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.65171534 + inSlope: -0.0000018059408 + outSlope: -0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.65171534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.65171534 + inSlope: 0.0000018059408 + outSlope: 0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.65171534 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.6517156 + inSlope: 0.0000018059408 + outSlope: 0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03779651 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.037796494 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.037796494 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0377965 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0377965 + inSlope: 0.000000028217825 + outSlope: 0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.037796505 + inSlope: 0.000000028217825 + outSlope: 0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.037796505 + inSlope: -0.00000028217826 + outSlope: -0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.037796468 + inSlope: -0.00000028217826 + outSlope: -0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.037796468 + inSlope: 0.00000014108913 + outSlope: 0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.037796486 + inSlope: 0.00000014108913 + outSlope: 0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.037796486 + inSlope: 0.00000008465348 + outSlope: 0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.037796497 + inSlope: 0.00000008465348 + outSlope: 0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.037796497 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.037796497 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.037796497 + inSlope: -0.00000008465348 + outSlope: -0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.037796486 + inSlope: 0.00000042326738 + outSlope: 0.00000042326738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.037796542 + inSlope: 0.00000084653476 + outSlope: 0.00000084653476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000019301805 + inSlope: -0.000000020051637 + outSlope: -0.000000020051637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000019434165 + inSlope: -0.000000010025818 + outSlope: -0.000000010025818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000019434165 + inSlope: 0.0000000049628555 + outSlope: 0.0000000049628555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00000019368646 + inSlope: 0.0000000049628555 + outSlope: 0.0000000049628555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000019368646 + inSlope: -0.000000025191243 + outSlope: -0.000000025191243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000019701218 + inSlope: -0.000000025191243 + outSlope: -0.000000025191243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00000019701218 + inSlope: 0.000000021834627 + outSlope: 0.000000021834627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0000001941296 + inSlope: 0.000000021834627 + outSlope: 0.000000021834627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000001941296 + inSlope: 0.0000000056100022 + outSlope: 0.0000000056100022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000019338897 + inSlope: 0.0000000056100022 + outSlope: 0.0000000056100022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000019338897 + inSlope: 0.000000022567242 + outSlope: 0.000000022567242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000019040966 + inSlope: 0.000000022567242 + outSlope: 0.000000022567242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000019040966 + inSlope: -0.000000013976727 + outSlope: -0.000000013976727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00000019225486 + inSlope: -0.000000013976727 + outSlope: -0.000000013976727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00000019225486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000019225486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00000019225486 + inSlope: -0.000000042069257 + outSlope: -0.000000042069257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000001978088 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00000019092687 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00000019092687 + inSlope: -0.00000005212834 + outSlope: -0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0000001978088 + inSlope: -0.00000005212834 + outSlope: -0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0000001978088 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00000019092687 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00000019092687 + inSlope: -0.000000005873403 + outSlope: -0.000000005873403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000019170227 + inSlope: -0.000000011746806 + outSlope: -0.000000011746806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08896949 + inSlope: -0.0000004514852 + outSlope: -0.0000004514852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08896946 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08896946 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08896948 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08896948 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08896947 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.08896947 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0889695 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0889695 + inSlope: -0.00000016930696 + outSlope: -0.00000016930696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08896948 + inSlope: -0.00000016930696 + outSlope: -0.00000016930696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08896948 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08896947 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.08896947 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.08896946 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.08896947 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16918491 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1691849 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1691849 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.16918491 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.16918491 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.16918495 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16918495 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.16918491 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16918491 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1691849 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.1691849 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.16918491 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.990317e-10 + inSlope: -0.000000093030586 + outSlope: -0.000000093030586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000064399366 + inSlope: -0.000000046515293 + outSlope: -0.000000046515293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000000064399366 + inSlope: 0.00000005585818 + outSlope: 0.00000005585818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 9.344068e-10 + inSlope: 0.00000005585818 + outSlope: 0.00000005585818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 9.344068e-10 + inSlope: -0.0000000091552375 + outSlope: -0.0000000091552375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.7425895e-10 + inSlope: -0.0000000091552375 + outSlope: -0.0000000091552375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -2.7425895e-10 + inSlope: 0.000000028448294 + outSlope: 0.000000028448294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000000034814576 + inSlope: 0.000000028448294 + outSlope: 0.000000028448294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000000034814576 + inSlope: -0.00000004539085 + outSlope: -0.00000004539085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000000002510999 + inSlope: -0.00000004539085 + outSlope: -0.00000004539085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000000002510999 + inSlope: 0.000000026507458 + outSlope: 0.000000026507458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 9.884902e-10 + inSlope: 0.000000026507458 + outSlope: 0.000000026507458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.884902e-10 + inSlope: -0.00000002137814 + outSlope: -0.00000002137814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000000018338313 + inSlope: -0.00000002137814 + outSlope: -0.00000002137814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000000018338313 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000018338313 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000000018338313 + inSlope: -0.00000007469792 + outSlope: -0.00000007469792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000001169538 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000011409958 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000000011409958 + inSlope: -0.000000002161972 + outSlope: -0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000001169538 + inSlope: -0.000000002161972 + outSlope: -0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000001169538 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000011409958 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.000000011409958 + inSlope: 0.0000000714401 + outSlope: 0.0000000714401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0000000019785045 + inSlope: 0.0000001428802 + outSlope: 0.0000001428802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000036659337 + inSlope: -0.0000011940916 + outSlope: -0.0000011940916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000042162082 + inSlope: -0.0000005970458 + outSlope: -0.0000005970458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000042162082 + inSlope: 0.00000050574715 + outSlope: 0.00000050574715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00000002460617 + inSlope: 0.00000050574715 + outSlope: 0.00000050574715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000002460617 + inSlope: 0.000000096032466 + outSlope: 0.000000096032466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000000037284284 + inSlope: 0.000000096032466 + outSlope: 0.000000096032466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.000000037284284 + inSlope: -0.00000023223514 + outSlope: -0.00000023223514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000000066248242 + inSlope: -0.00000023223514 + outSlope: -0.00000023223514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000000066248242 + inSlope: -0.0000000072472877 + outSlope: -0.0000000072472877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000000056680443 + inSlope: -0.0000000072472877 + outSlope: -0.0000000072472877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000000056680443 + inSlope: -0.0000000032230139 + outSlope: -0.0000000032230139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.000000005242545 + inSlope: -0.0000000032230139 + outSlope: -0.0000000032230139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.000000005242545 + inSlope: 0.00000011645881 + outSlope: 0.00000011645881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000000020617327 + inSlope: 0.00000011645881 + outSlope: 0.00000011645881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000000020617327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000020617327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000000020617327 + inSlope: -0.00000013484879 + outSlope: -0.00000013484879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000000028147193 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000000015402406 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000000015402406 + inSlope: -0.00000009534751 + outSlope: -0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000000028147193 + inSlope: -0.00000009534751 + outSlope: -0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0000000028147193 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000000015402406 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.000000015402406 + inSlope: -0.000000027345996 + outSlope: -0.000000027345996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000011792214 + inSlope: -0.00000005469199 + outSlope: -0.00000005469199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16660501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.16660501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16660501 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.16660503 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16660503 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16660501 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.16660501 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.16660503 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16660503 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.16660503 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16660503 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16660501 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.16660501 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.166605 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.166605 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16660501 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.16660501 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.16660498 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.166605 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.166605 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.16660498 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.16660498 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.166605 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.166605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.166605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000012261461 + inSlope: -0.0000000596757 + outSlope: -0.0000000596757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000005165311 + inSlope: -0.00000002983785 + outSlope: -0.00000002983785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000005165311 + inSlope: 0.000000065214635 + outSlope: 0.000000065214635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0000000034442624 + inSlope: 0.000000065214635 + outSlope: 0.000000065214635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000000034442624 + inSlope: -8.863247e-10 + outSlope: -8.863247e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000000033272507 + inSlope: -8.863247e-10 + outSlope: -8.863247e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000000033272507 + inSlope: 0.000000050973952 + outSlope: 0.000000050973952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000000010056783 + inSlope: 0.000000050973952 + outSlope: 0.000000050973952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000000010056783 + inSlope: -0.00000008130394 + outSlope: -0.00000008130394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -6.768852e-10 + inSlope: -0.00000008130394 + outSlope: -0.00000008130394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.768852e-10 + inSlope: 0.000000013614619 + outSlope: 0.000000013614619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000000011205037 + inSlope: 0.000000013614619 + outSlope: 0.000000013614619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000000011205037 + inSlope: -0.000000010003962 + outSlope: -0.000000010003962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -2.0020985e-10 + inSlope: -0.000000010003962 + outSlope: -0.000000010003962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -2.0020985e-10 + inSlope: -8.870849e-10 + outSlope: -8.870849e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.1732195e-10 + inSlope: -8.870849e-10 + outSlope: -8.870849e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.1732195e-10 + inSlope: -0.00000010653501 + outSlope: -0.00000010653501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.000000014381972 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000008987736 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000000008987736 + inSlope: -0.000000040859533 + outSlope: -0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.000000014381972 + inSlope: -0.000000040859533 + outSlope: -0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.000000014381972 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000008987736 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.000000008987736 + inSlope: 0.00000007599632 + outSlope: 0.00000007599632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000000010452248 + inSlope: 0.00000015199264 + outSlope: 0.00000015199264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000000034901215 + inSlope: -0.00000075608915 + outSlope: -0.00000075608915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000004641896 + inSlope: -0.00000037804458 + outSlope: -0.00000037804458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000004641896 + inSlope: 0.0000004152273 + outSlope: 0.0000004152273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000000008398947 + inSlope: 0.0000004152273 + outSlope: 0.0000004152273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.000000008398947 + inSlope: -0.000000081018236 + outSlope: -0.000000081018236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000000022970028 + inSlope: -0.000000081018236 + outSlope: -0.000000081018236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0000000022970028 + inSlope: 0.00000019801311 + outSlope: 0.00000019801311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000000023844498 + inSlope: 0.00000019801311 + outSlope: 0.00000019801311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000000023844498 + inSlope: -0.00000017817254 + outSlope: -0.00000017817254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 3.2232889e-10 + inSlope: -0.00000017817254 + outSlope: -0.00000017817254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 3.2232889e-10 + inSlope: -0.00000005773904 + outSlope: -0.00000005773904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000000007300324 + inSlope: -0.00000005773904 + outSlope: -0.00000005773904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.000000007300324 + inSlope: 0.00000023212965 + outSlope: 0.00000023212965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00000002334521 + inSlope: 0.00000023212965 + outSlope: 0.00000023212965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00000002334521 + inSlope: -0.00000024273047 + outSlope: -0.00000024273047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000008699833 + inSlope: -0.00000024273047 + outSlope: -0.00000024273047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000008699833 + inSlope: 0.000000003791618 + outSlope: 0.000000003791618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.000000008199267 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000001199123 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00000001199123 + inSlope: -0.00000015293625 + outSlope: -0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.000000008199267 + inSlope: -0.00000015293625 + outSlope: -0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.000000008199267 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000001199123 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00000001199123 + inSlope: 0.00000008279898 + outSlope: 0.00000008279898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000022922272 + inSlope: 0.00000016559795 + outSlope: 0.00000016559795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.1420546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.1420546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000010304158 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000010304158 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000017860373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000017860373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.0356122 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.0356122 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.7847072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7847072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.9198914 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9198914 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000056464766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000056464766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.000000048295984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000048295984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.8174602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8174602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000007313465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000007313465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000000983755 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000000983755 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.0736117 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.0736117 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.7910624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.7910624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.848197 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.848197 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.0000000114241 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000114241 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000029501352 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000029501352 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.81657094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.81657094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000010017325 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000010017325 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000031725655 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000031725655 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.5820273 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5820273 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.33933067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.33933067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.71559757 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.71559757 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.0000000055035088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000055035088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000029377336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000029377336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.60945666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.60945666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.32652536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.32652536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.5980861 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5980861 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.000000010154258 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000010154258 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000000444109 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000000444109 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.007700801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.007700801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.002247423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.002247423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.038948793 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03894877 + inSlope: -0.00000016930696 + outSlope: -0.00000016930696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03894877 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.038948786 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.038948786 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03894878 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.03894878 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.038948763 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.038948763 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.03894876 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.03894876 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.03894874 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.03894874 + inSlope: 0.00000028217826 + outSlope: 0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.038948778 + inSlope: 0.00000028217826 + outSlope: 0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.038948778 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.038948778 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.038948778 + inSlope: -0.00000008465348 + outSlope: -0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.038948767 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.038948774 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.038948774 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.038948767 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.038948767 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.038948774 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.038948774 + inSlope: 0.00000025396042 + outSlope: 0.00000025396042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.038948808 + inSlope: 0.00000050792084 + outSlope: 0.00000050792084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000032088323 + inSlope: 0.0000000068602692 + outSlope: 0.0000000068602692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000032133607 + inSlope: 0.0000000034301346 + outSlope: 0.0000000034301346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000032133607 + inSlope: 0.000000022812236 + outSlope: 0.000000022812236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00000032434772 + inSlope: 0.000000022812236 + outSlope: 0.000000022812236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000032434772 + inSlope: 0.000000012599119 + outSlope: 0.000000012599119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000032601105 + inSlope: 0.000000012599119 + outSlope: 0.000000012599119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00000032601105 + inSlope: -0.000000022686079 + outSlope: -0.000000022686079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00000032301605 + inSlope: -0.000000022686079 + outSlope: -0.000000022686079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000032301605 + inSlope: 0.0000000015298146 + outSlope: 0.0000000015298146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000032321802 + inSlope: 0.0000000015298146 + outSlope: 0.0000000015298146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000032321802 + inSlope: 0.000000019781455 + outSlope: 0.000000019781455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000032582955 + inSlope: 0.000000019781455 + outSlope: 0.000000019781455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00000032582955 + inSlope: 6.525286e-10 + outSlope: 6.525286e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0000003259157 + inSlope: 6.525286e-10 + outSlope: 6.525286e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000003259157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000003259157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000003259157 + inSlope: -0.000000037801666 + outSlope: -0.000000037801666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00000032092515 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000032872447 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00000032872447 + inSlope: -0.0000000590772 + outSlope: -0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000032092515 + inSlope: -0.0000000590772 + outSlope: -0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00000032092515 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000032872447 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00000032872447 + inSlope: 0.0000000025171114 + outSlope: 0.0000000025171114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00000032905677 + inSlope: 0.000000005034223 + outSlope: 0.000000005034223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09688048 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.09688047 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09688047 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.09688052 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09688052 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0968805 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0968805 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.09688051 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09688051 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09688052 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.09688052 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.09688051 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.09688052 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14589126 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14589128 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14589128 + inSlope: 0.0000005643565 + outSlope: 0.0000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.14589135 + inSlope: 0.0000005643565 + outSlope: 0.0000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14589135 + inSlope: -0.00000067722783 + outSlope: -0.00000067722783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14589126 + inSlope: -0.00000067722783 + outSlope: -0.00000067722783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.14589126 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.14589131 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14589131 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14589134 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14589134 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14589131 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.14589131 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.1458913 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.1458913 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14589128 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.14589128 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.14589126 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.1458913 + inSlope: 0.0000004514852 + outSlope: 0.0000004514852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000007190708 + inSlope: -0.00000000375136 + outSlope: -0.00000000375136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000074383335 + inSlope: -0.00000000187568 + outSlope: -0.00000000187568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000000074383335 + inSlope: 0.00000016530184 + outSlope: 0.00000016530184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000000014384659 + inSlope: 0.00000016530184 + outSlope: 0.00000016530184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.000000014384659 + inSlope: -0.00000016782762 + outSlope: -0.00000016782762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000007771782 + inSlope: -0.00000016782762 + outSlope: -0.00000016782762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.000000007771782 + inSlope: 0.000000092138364 + outSlope: 0.000000092138364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000000043922364 + inSlope: 0.000000092138364 + outSlope: 0.000000092138364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000000043922364 + inSlope: -0.000000012096796 + outSlope: -0.000000012096796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000002795229 + inSlope: -0.000000012096796 + outSlope: -0.000000012096796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.000000002795229 + inSlope: 0.00000003189609 + outSlope: 0.00000003189609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000000700612 + inSlope: 0.00000003189609 + outSlope: 0.00000003189609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00000000700612 + inSlope: -0.000000054502134 + outSlope: -0.000000054502134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.8919921e-10 + inSlope: -0.000000054502134 + outSlope: -0.000000054502134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.8919921e-10 + inSlope: -0.000000011555281 + outSlope: -0.000000011555281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000017147164 + inSlope: -0.000000011555281 + outSlope: -0.000000011555281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000000017147164 + inSlope: -0.00000004158648 + outSlope: -0.00000004158648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000000072049233 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000000024188054 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0000000024188054 + inSlope: -0.00000003625324 + outSlope: -0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0000000072049233 + inSlope: -0.00000003625324 + outSlope: -0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0000000072049233 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0000000024188054 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0000000024188054 + inSlope: -0.000000024595987 + outSlope: -0.000000024595987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.000000005665944 + inSlope: -0.000000049191975 + outSlope: -0.000000049191975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000029976878 + inSlope: 0.00000039181813 + outSlope: 0.00000039181813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.000000055840605 + inSlope: 0.00000019590907 + outSlope: 0.00000019590907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000000055840605 + inSlope: -0.00000035987387 + outSlope: -0.00000035987387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000000008330403 + inSlope: -0.00000035987387 + outSlope: -0.00000035987387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.000000008330403 + inSlope: 0.00000009933596 + outSlope: 0.00000009933596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000000021444642 + inSlope: 0.00000009933596 + outSlope: 0.00000009933596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.000000021444642 + inSlope: 0.00000009602388 + outSlope: 0.00000009602388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000000034121623 + inSlope: 0.00000009602388 + outSlope: 0.00000009602388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000000034121623 + inSlope: -0.0000001566542 + outSlope: -0.0000001566542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000013440285 + inSlope: -0.0000001566542 + outSlope: -0.0000001566542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.000000013440285 + inSlope: -0.000000074168895 + outSlope: -0.000000074168895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000000036485783 + inSlope: -0.000000074168895 + outSlope: -0.000000074168895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000000036485783 + inSlope: 0.00000016003231 + outSlope: 0.00000016003231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000000024775892 + inSlope: 0.00000016003231 + outSlope: 0.00000016003231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000000024775892 + inSlope: -0.0000000050478124 + outSlope: -0.0000000050478124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000024109484 + inSlope: -0.0000000050478124 + outSlope: -0.0000000050478124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000000024109484 + inSlope: -0.000000116424594 + outSlope: -0.000000116424594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.000000008739221 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000000008366569 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000000008366569 + inSlope: 0.000000002822715 + outSlope: 0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.000000008739221 + inSlope: 0.000000002822715 + outSlope: 0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.000000008739221 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000000008366569 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.000000008366569 + inSlope: 0.000000019211516 + outSlope: 0.000000019211516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000010902855 + inSlope: 0.000000038423032 + outSlope: 0.000000038423032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.35067046 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.35067046 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.009224206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.009224206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.34308544 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.34308544 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15576063 + inSlope: -0.0000004514852 + outSlope: -0.0000004514852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1557606 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1557606 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.15576062 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15576062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15576062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.15576062 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.15576059 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.15576059 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.1557606 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1557606 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15576057 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.15576057 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.15576059 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.15576059 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.1557606 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000011369518 + inSlope: -0.000000080905785 + outSlope: -0.000000080905785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000001671007 + inSlope: -0.000000040452893 + outSlope: -0.000000040452893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000001671007 + inSlope: -0.000000052550874 + outSlope: -0.000000052550874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.000000023647786 + inSlope: -0.000000052550874 + outSlope: -0.000000052550874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000000023647786 + inSlope: 0.0000001562099 + outSlope: 0.0000001562099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000000030251048 + inSlope: 0.0000001562099 + outSlope: 0.0000001562099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0000000030251048 + inSlope: -0.0000000626415 + outSlope: -0.0000000626415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.000000011294975 + inSlope: -0.0000000626415 + outSlope: -0.0000000626415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000000011294975 + inSlope: 0.00000006129103 + outSlope: 0.00000006129103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0000000032033916 + inSlope: 0.00000006129103 + outSlope: 0.00000006129103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000000032033916 + inSlope: -0.000000029119123 + outSlope: -0.000000029119123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000000704767 + inSlope: -0.000000029119123 + outSlope: -0.000000029119123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000000704767 + inSlope: -0.000000014791817 + outSlope: -0.000000014791817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000000090004715 + inSlope: -0.000000014791817 + outSlope: -0.000000014791817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000000090004715 + inSlope: -0.0000000069245725 + outSlope: -0.0000000069245725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000009914647 + inSlope: -0.0000000069245725 + outSlope: -0.0000000069245725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000009914647 + inSlope: -0.000000044169415 + outSlope: -0.000000044169415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000001574585 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000013378465 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000000013378465 + inSlope: -0.000000017932157 + outSlope: -0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000001574585 + inSlope: -0.000000017932157 + outSlope: -0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000001574585 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000013378465 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.000000013378465 + inSlope: -0.00000004565608 + outSlope: -0.00000004565608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.000000019405936 + inSlope: -0.00000009131216 + outSlope: -0.00000009131216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000007896083 + inSlope: -0.00000062071723 + outSlope: -0.00000062071723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000083058154 + inSlope: -0.00000031035862 + outSlope: -0.00000031035862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000083058154 + inSlope: 0.00000015861633 + outSlope: 0.00000015861633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00000080964116 + inSlope: 0.00000015861633 + outSlope: 0.00000015861633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000080964116 + inSlope: 0.00000014478384 + outSlope: 0.00000014478384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000079052694 + inSlope: 0.00000014478384 + outSlope: 0.00000014478384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00000079052694 + inSlope: -0.00000012509733 + outSlope: -0.00000012509733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00000080704217 + inSlope: -0.00000012509733 + outSlope: -0.00000012509733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00000080704217 + inSlope: -0.0000000031125895 + outSlope: -0.0000000031125895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0000008074531 + inSlope: -0.0000000031125895 + outSlope: -0.0000000031125895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000008074531 + inSlope: 0.000000040055053 + outSlope: 0.000000040055053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000080216506 + inSlope: 0.000000040055053 + outSlope: 0.000000040055053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000080216506 + inSlope: -0.000000035891443 + outSlope: -0.000000035891443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000008069034 + inSlope: -0.000000035891443 + outSlope: -0.000000035891443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000008069034 + inSlope: 0.000000019677904 + outSlope: 0.000000019677904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000080430556 + inSlope: 0.000000019677904 + outSlope: 0.000000019677904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00000080430556 + inSlope: -0.000000028086932 + outSlope: -0.000000028086932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000080801357 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00000081137506 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00000081137506 + inSlope: 0.000000025462178 + outSlope: 0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000080801357 + inSlope: 0.000000025462178 + outSlope: 0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000080801357 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00000081137506 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00000081137506 + inSlope: 0.0000000036572603 + outSlope: 0.0000000036572603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000081089223 + inSlope: 0.0000000073145205 + outSlope: 0.0000000073145205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.93991613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.93991613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.2927984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2927984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.5424665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5424665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000041311936 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000041311936 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.00000019516179 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000019516179 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.9270634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9270634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000022259227 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000022259227 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000018832567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000018832567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.9249606 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9249606 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.3052871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3052871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.56906635 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.56906635 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000016917367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000016917367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000013908223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000013908223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.0189703 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.0189703 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000026109577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000026109577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.0000001175429 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000001175429 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.041979775 + inSlope: 0 + outSlope: -0.25419518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.024572887 + inSlope: -0.33077782 + outSlope: -0.33102927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.003086896 + inSlope: -0.3622344 + outSlope: -0.36186424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.023851177 + inSlope: -0.31828883 + outSlope: -0.31845638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.044171643 + inSlope: -0.26794147 + outSlope: -0.26782978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.058336556 + inSlope: -0.078175224 + outSlope: -0.078119345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.054534443 + inSlope: 0.28336424 + outSlope: 0.2842583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.019448854 + inSlope: 0.26048163 + outSlope: 0.25900072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.019448854 + inSlope: 0.14752144 + outSlope: 0.14844352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000048658836 + inSlope: 0.14848492 + outSlope: 0.14790326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000048658836 + inSlope: -0.00012674749 + outSlope: 0.00000062669875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000045175355 + inSlope: 0.000003301466 + outSlope: 0.000003300187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000045175355 + inSlope: 0.0000032997607 + outSlope: 0.000003301466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00000045430542 + inSlope: -0.00000083815627 + outSlope: -0.000000835172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00000045430542 + inSlope: -0.000000833893 + outSlope: -0.0000008368773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000004343142 + inSlope: 0.000002511911 + outSlope: 0.0000025067927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000004343142 + inSlope: 0.000002508498 + outSlope: 0.0000025102079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000044228204 + inSlope: -0.0000013838544 + outSlope: -0.0000013834256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000004533228 + inSlope: 0.0000033726594 + outSlope: 0.00016740289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0000004533228 + inSlope: -0.16335697 + outSlope: -0.16444941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.021619957 + inSlope: -0.16411753 + outSlope: -0.16327962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.021619957 + inSlope: 0.00016763822 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.021619968 + inSlope: 0 + outSlope: -0.00016763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.021619968 + inSlope: 0.16330756 + outSlope: 0.16431311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0000004501403 + inSlope: 0.32750788 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6344824 + inSlope: 0 + outSlope: -1.182854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.7090152 + inSlope: -1.0514259 + outSlope: -1.0514259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.77342486 + inSlope: -0.29861924 + outSlope: -0.29772523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.7518486 + inSlope: 0.53375965 + outSlope: 0.53375953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.70145136 + inSlope: 0.7474421 + outSlope: 0.74923044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6536846 + inSlope: 0.31739476 + outSlope: 0.3165007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.6610553 + inSlope: -0.71346766 + outSlope: -0.71704394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.74270177 + inSlope: -0.5730987 + outSlope: -0.5704162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.74270177 + inSlope: 0.23871651 + outSlope: 0.24050476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.71002156 + inSlope: 0.25659803 + outSlope: 0.25391582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.7100215 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.7100215 + inSlope: -0.025033975 + outSlope: -0.02413986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.71307796 + inSlope: -0.022351723 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.71307796 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.71307796 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.71307796 + inSlope: 0.021457693 + outSlope: 0.022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.7100215 + inSlope: 0.04738565 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.047848724 + inSlope: 0 + outSlope: 0.25810674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.031295724 + inSlope: 0.35975125 + outSlope: 0.3601424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0019472516 + inSlope: 0.42700556 + outSlope: 0.42679954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.02459427 + inSlope: 0.40576795 + outSlope: 0.40590757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.052342128 + inSlope: 0.35081053 + outSlope: 0.35064298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0718958 + inSlope: 0.0961125 + outSlope: 0.09577722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.06529544 + inSlope: -0.43954703 + outSlope: -0.4409999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.014280568 + inSlope: -0.39270616 + outSlope: -0.39086196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.014280568 + inSlope: -0.10626852 + outSlope: -0.10712073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000052854347 + inSlope: -0.107249685 + outSlope: -0.10679812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000052854347 + inSlope: 0.00008472114 + outSlope: -0.000002707168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000005419728 + inSlope: 0.0000009737279 + outSlope: 0.0000009711699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000005419728 + inSlope: 0.0000009703173 + outSlope: 0.0000009737279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00000054323647 + inSlope: -0.000003374794 + outSlope: -0.0000033730887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00000054323647 + inSlope: -0.0000033730887 + outSlope: -0.000003374794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000005417304 + inSlope: 0.0000009848123 + outSlope: 0.0000009796955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000005417304 + inSlope: 0.0000009814008 + outSlope: 0.0000009831078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000005298717 + inSlope: -0.0000027685614 + outSlope: -0.0000027677038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000054454756 + inSlope: 0.0000008569138 + outSlope: -0.00002128987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00000054454756 + inSlope: 0.022052024 + outSlope: 0.022204448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0029022805 + inSlope: 0.022184085 + outSlope: 0.022058396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0029022805 + inSlope: -0.000027939705 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0029022787 + inSlope: 0 + outSlope: 0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0029022787 + inSlope: -0.021778999 + outSlope: -0.021932628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000005468558 + inSlope: -0.043422814 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.77031183 + inSlope: 0 + outSlope: -0.9441375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7040697 + inSlope: -1.0335445 + outSlope: -1.0335445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.63387746 + inSlope: -0.36567447 + outSlope: -0.3638864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.65844506 + inSlope: 0.58382756 + outSlope: 0.5838274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.70941895 + inSlope: 0.6973742 + outSlope: 0.69648033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7510821 + inSlope: 0.26196244 + outSlope: 0.2601743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.74549866 + inSlope: -0.57488686 + outSlope: -0.5757809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6691875 + inSlope: -0.6204844 + outSlope: -0.61690784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6691875 + inSlope: 0.27269113 + outSlope: 0.27269128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.70417994 + inSlope: 0.25838616 + outSlope: 0.25659803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.70418 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.70418 + inSlope: -0.025033975 + outSlope: -0.02503393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.70074534 + inSlope: -0.027716137 + outSlope: -0.028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.70074534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.70074534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.70074534 + inSlope: 0.028610257 + outSlope: 0.026822068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.70418 + inSlope: 0.04827972 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12718168 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.12718166 + inSlope: 0.033080578 + outSlope: 0.033080578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.122820556 + inSlope: 0.13880432 + outSlope: 0.13913961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.108798414 + inSlope: 0.29683116 + outSlope: 0.2970546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.083581224 + inSlope: 0.41484827 + outSlope: 0.4152954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.053975794 + inSlope: 0.45524913 + outSlope: 0.4553609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.023468899 + inSlope: 0.4574843 + outSlope: 0.45742843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0064164 + inSlope: 0.43643874 + outSlope: 0.43643156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.034155555 + inSlope: 0.3928317 + outSlope: 0.39232898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.058246534 + inSlope: 0.3259443 + outSlope: 0.32627958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.077223055 + inSlope: 0.23815782 + outSlope: 0.23748727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.089651726 + inSlope: 0.12774022 + outSlope: 0.12774022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.09411219 + inSlope: 0.015199185 + outSlope: 0.015422703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.09167906 + inSlope: -0.07085503 + outSlope: -0.07107855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.08475679 + inSlope: -0.13466926 + outSlope: -0.13444574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07390606 + inSlope: -0.18965454 + outSlope: -0.18987788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.059686746 + inSlope: -0.23642536 + outSlope: -0.23748748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.02347729 + inSlope: -0.30468246 + outSlope: -0.30392754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0025225335 + inSlope: -0.32421872 + outSlope: -0.32479557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.01934535 + inSlope: -0.33549997 + outSlope: -0.33616993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.041796308 + inSlope: -0.33773455 + outSlope: -0.33767927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.06395053 + inSlope: -0.33091787 + outSlope: -0.33069375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.085486054 + inSlope: -0.3075597 + outSlope: -0.30823082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.10459435 + inSlope: -0.24296367 + outSlope: -0.24318674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.117599495 + inSlope: -0.19647165 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.704205 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.704205 + inSlope: -0.0053644176 + outSlope: -0.0062584872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.7050198 + inSlope: -0.025928019 + outSlope: -0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.70744145 + inSlope: -0.047385696 + outSlope: -0.047385685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.7110432 + inSlope: -0.050961964 + outSlope: -0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.7140526 + inSlope: -0.03576279 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.71579266 + inSlope: -0.014305116 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.71616757 + inSlope: 0.004470349 + outSlope: 0.0044703465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.71533966 + inSlope: 0.019669525 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.71369904 + inSlope: 0.028610231 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.7117998 + inSlope: 0.027716162 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.7102639 + inSlope: 0.017881395 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.709656 + inSlope: 0.0026822092 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.7099913 + inSlope: -0.008940698 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.71089643 + inSlope: -0.016093256 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.71217066 + inSlope: -0.020563604 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.7135738 + inSlope: -0.021457653 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.7157925 + inSlope: -0.010728846 + outSlope: -0.010728827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.7161931 + inSlope: 0 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.71592265 + inSlope: 0.0080466345 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.7149123 + inSlope: 0.020563586 + outSlope: 0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.71318465 + inSlope: 0.030398399 + outSlope: 0.031292412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.7108046 + inSlope: 0.039339032 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.70810884 + inSlope: 0.037550963 + outSlope: 0.038444962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.70595664 + inSlope: 0.035762757 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13051671 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13051671 + inSlope: -0.033527613 + outSlope: -0.033974648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.12604128 + inSlope: -0.14260411 + outSlope: -0.14282764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.11165139 + inSlope: -0.30443075 + outSlope: -0.30465418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08577295 + inSlope: -0.42568886 + outSlope: -0.42624775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.055391196 + inSlope: -0.46715143 + outSlope: -0.46731907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.02408434 + inSlope: -0.46949837 + outSlope: -0.46941453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0065846248 + inSlope: -0.44787306 + outSlope: -0.44787985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.035051163 + inSlope: -0.4031694 + outSlope: -0.4025549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.059773877 + inSlope: -0.33449385 + outSlope: -0.33482912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.079247996 + inSlope: -0.2441928 + outSlope: -0.24374576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.092002556 + inSlope: -0.13109298 + outSlope: -0.1313165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.09658 + inSlope: -0.015646221 + outSlope: -0.015646221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.094083086 + inSlope: 0.07275493 + outSlope: 0.072866686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.08697931 + inSlope: 0.13824554 + outSlope: 0.13791026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07584402 + inSlope: 0.19457193 + outSlope: 0.19479527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.061251853 + inSlope: 0.24257207 + outSlope: 0.24363422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0240929 + inSlope: 0.31267324 + outSlope: 0.31189036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.002588659 + inSlope: 0.33271936 + outSlope: 0.3333102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.019852651 + inSlope: 0.344301 + outSlope: 0.3449709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.042892322 + inSlope: 0.34667522 + outSlope: 0.34656408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.06562749 + inSlope: 0.33929977 + outSlope: 0.33952266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.08772772 + inSlope: 0.31560633 + outSlope: 0.31627744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.10733709 + inSlope: 0.24933392 + outSlope: 0.2497805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.12068326 + inSlope: 0.20161255 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.686211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.686211 + inSlope: 0.007152557 + outSlope: 0.0062584872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6870049 + inSlope: 0.025033949 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.68936455 + inSlope: 0.047385696 + outSlope: 0.048279755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6928744 + inSlope: 0.050961964 + outSlope: 0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.695807 + inSlope: 0.03665686 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6975027 + inSlope: 0.015199185 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6978678 + inSlope: -0.004470349 + outSlope: -0.0035762773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.69706106 + inSlope: -0.018775456 + outSlope: -0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6954625 + inSlope: -0.026822092 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.69361186 + inSlope: -0.026822092 + outSlope: -0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.692115 + inSlope: -0.017881395 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.69152266 + inSlope: -0.0026822092 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.69184947 + inSlope: 0.008940698 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6927316 + inSlope: 0.016987326 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6939731 + inSlope: 0.021457674 + outSlope: 0.019669516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.69534034 + inSlope: 0.021457653 + outSlope: 0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.6975023 + inSlope: 0.008940705 + outSlope: 0.011622896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.6978928 + inSlope: 0 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.69762915 + inSlope: -0.008940705 + outSlope: -0.0080466205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6966447 + inSlope: -0.018775448 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.69496113 + inSlope: -0.030398399 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.692642 + inSlope: -0.037550896 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.69001496 + inSlope: -0.037550963 + outSlope: -0.035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.68791795 + inSlope: -0.033974618 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.1174954e-12 + inSlope: 0 + outSlope: 0.0000009469133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 4.6500157e-10 + inSlope: -0.00094584445 + outSlope: -0.00094925397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00012505037 + inSlope: -0.0020631705 + outSlope: -0.0020614245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00027216726 + inSlope: -0.0022613679 + outSlope: -0.0022631134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00042461022 + inSlope: -0.0022177114 + outSlope: -0.0022072347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00056569604 + inSlope: -0.0019103755 + outSlope: -0.0019208529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00067892764 + inSlope: -0.0013690443 + outSlope: -0.0013620594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00074798753 + inSlope: -0.0005867333 + outSlope: -0.000586733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0007566316 + inSlope: 0.00026542682 + outSlope: 0.00025844204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00071464013 + inSlope: 0.0008381904 + outSlope: 0.0008381904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00064576557 + inSlope: 0.0012014062 + outSlope: 0.0012258535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00055460003 + inSlope: 0.0015296974 + outSlope: 0.0015157276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0004457787 + inSlope: 0.0017497224 + outSlope: 0.0017427375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00032397744 + inSlope: 0.0019121218 + outSlope: 0.001913868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00019393454 + inSlope: 0.0019994334 + outSlope: 0.0019941947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000060436083 + inSlope: 0.002007728 + outSlope: 0.0020120917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000071703835 + inSlope: 0.0019501005 + outSlope: 0.001957089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00031233998 + inSlope: 0.0016170103 + outSlope: 0.0016222461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00041197776 + inSlope: 0.0013480883 + outSlope: 0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0004906631 + inSlope: 0.0009988444 + outSlope: 0.0010128125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0005447052 + inSlope: 0.00040861743 + outSlope: 0.0004051257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0005447769 + inSlope: -0.0004924373 + outSlope: -0.0004924364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0004794686 + inSlope: -0.0013271335 + outSlope: -0.0013166586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.000371075 + inSlope: -0.0018195732 + outSlope: -0.0018335398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00023996795 + inSlope: -0.001987208 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031313073 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03131307 + inSlope: -0.00005587935 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.031304788 + inSlope: -0.00039115545 + outSlope: -0.00033527616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.031273816 + inSlope: -0.0008381904 + outSlope: -0.00078231085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.031217424 + inSlope: -0.0011455265 + outSlope: -0.0011734666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.031143107 + inSlope: -0.0012293459 + outSlope: -0.0012852253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.031067962 + inSlope: -0.0010617079 + outSlope: -0.0010617079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.031015301 + inSlope: -0.00044703486 + outSlope: -0.00044703466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.031008346 + inSlope: 0.00019557767 + outSlope: 0.00016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.031041374 + inSlope: 0.00061467296 + outSlope: 0.00061467296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.031091394 + inSlope: 0.000782311 + outSlope: 0.0008381904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.031149717 + inSlope: 0.0008381904 + outSlope: 0.0008102507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.03120763 + inSlope: 0.000698492 + outSlope: 0.00075437134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.031257425 + inSlope: 0.0005587936 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.03129314 + inSlope: 0.0002793968 + outSlope: 0.0002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.031311132 + inSlope: 0 + outSlope: 0.000111758614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.031310342 + inSlope: -0.00022351723 + outSlope: -0.00027939703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.03126135 + inSlope: -0.0006146735 + outSlope: -0.0005587931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.031223038 + inSlope: -0.00064261205 + outSlope: -0.0006426132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.031185288 + inSlope: -0.00055879407 + outSlope: -0.0005308534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.03115551 + inSlope: -0.00022351723 + outSlope: -0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.031155467 + inSlope: 0.00025145733 + outSlope: 0.00027939654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.03119106 + inSlope: 0.0006705517 + outSlope: 0.0006426132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.031240046 + inSlope: 0.0006146735 + outSlope: 0.0006705517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.03128255 + inSlope: 0.00039115516 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000018381222 + inSlope: 0 + outSlope: -0.00017322275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000116699415 + inSlope: 0.1738775 + outSlope: 0.17454119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.023001123 + inSlope: 0.3793649 + outSlope: 0.37922525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.05006114 + inSlope: 0.41736293 + outSlope: 0.41730696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0781003 + inSlope: 0.40892506 + outSlope: 0.4090369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10405123 + inSlope: 0.3543869 + outSlope: 0.35427514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.1248783 + inSlope: 0.25391582 + outSlope: 0.25391582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.13758115 + inSlope: 0.10818244 + outSlope: 0.10795887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13917105 + inSlope: -0.046491604 + outSlope: -0.046715144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.13144755 + inSlope: -0.15422703 + outSlope: -0.15467407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11877901 + inSlope: -0.2230704 + outSlope: -0.22284688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10201132 + inSlope: -0.27839097 + outSlope: -0.278838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.08199559 + inSlope: -0.32130632 + outSlope: -0.32130632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.059592467 + inSlope: -0.35069886 + outSlope: -0.35103413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.035673402 + inSlope: -0.3673509 + outSlope: -0.36701563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.011118743 + inSlope: -0.37000516 + outSlope: -0.36992103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.013186075 + inSlope: -0.3594576 + outSlope: -0.36040822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.05744694 + inSlope: -0.299346 + outSlope: -0.29828376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.075773455 + inSlope: -0.24832764 + outSlope: -0.24877512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.09024641 + inSlope: -0.18473732 + outSlope: -0.18518403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10018658 + inSlope: -0.07543707 + outSlope: -0.075213686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.10019992 + inSlope: 0.09074816 + outSlope: 0.090748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.08818812 + inSlope: 0.24162212 + outSlope: 0.24251664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.068251275 + inSlope: 0.33360007 + outSlope: 0.33393475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.044137068 + inSlope: 0.36533892 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99950963 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99950963 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99924517 + inSlope: -0.008940696 + outSlope: -0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9982564 + inSlope: -0.020563604 + outSlope: -0.021457668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99645656 + inSlope: -0.031292435 + outSlope: -0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99408406 + inSlope: -0.03665686 + outSlope: -0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9916853 + inSlope: -0.032186512 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99000454 + inSlope: -0.014305116 + outSlope: -0.015199179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9897824 + inSlope: 0.0062584854 + outSlope: 0.006258488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99083674 + inSlope: 0.020563604 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99243355 + inSlope: 0.026822092 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9942952 + inSlope: 0.027716162 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9961438 + inSlope: 0.025033953 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99773324 + inSlope: 0.020563604 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9988734 + inSlope: 0.013411046 + outSlope: 0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9994479 + inSlope: 0.003576279 + outSlope: 0.0044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9994227 + inSlope: -0.0053644134 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.997859 + inSlope: -0.01698734 + outSlope: -0.016987309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9966359 + inSlope: -0.018775448 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9954309 + inSlope: -0.01788141 + outSlope: -0.016093241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9944806 + inSlope: -0.0071525513 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.99447924 + inSlope: 0.008940705 + outSlope: 0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9956153 + inSlope: 0.021457653 + outSlope: 0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99717885 + inSlope: 0.022351762 + outSlope: 0.023245793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9985356 + inSlope: 0.016987309 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14285162 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14285167 + inSlope: -0.040009614 + outSlope: -0.040009614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13753265 + inSlope: -0.16808508 + outSlope: -0.1678616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.120418414 + inSlope: -0.35852197 + outSlope: -0.35908067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08960284 + inSlope: -0.50257885 + outSlope: -0.502579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.053383686 + inSlope: -0.5516969 + outSlope: -0.5516969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.01604342 + inSlope: -0.5542953 + outSlope: -0.5542953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.020525198 + inSlope: -0.52842313 + outSlope: -0.52850676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.054433372 + inSlope: -0.4750302 + outSlope: -0.47441575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.08383707 + inSlope: -0.39350244 + outSlope: -0.39383772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.1069586 + inSlope: -0.28666112 + outSlope: -0.28632584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12207897 + inSlope: -0.15389176 + outSlope: -0.15389176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.1275005 + inSlope: -0.01832843 + outSlope: -0.01832843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.12454351 + inSlope: 0.08516014 + outSlope: 0.0852719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.11612633 + inSlope: 0.1621619 + outSlope: 0.16205014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10291997 + inSlope: 0.22877009 + outSlope: 0.22876988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.08559322 + inSlope: 0.2854315 + outSlope: 0.285432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0648243 + inSlope: 0.33147666 + outSlope: 0.3313643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.041385762 + inSlope: 0.3678535 + outSlope: 0.36835706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.01576217 + inSlope: 0.39277637 + outSlope: 0.39339033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.010996415 + inSlope: 0.40661976 + outSlope: 0.40660653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.038476598 + inSlope: 0.40926078 + outSlope: 0.40931594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.065590076 + inSlope: 0.40065464 + outSlope: 0.40143767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.091931894 + inSlope: 0.37249213 + outSlope: 0.37305027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.11528403 + inSlope: 0.29403692 + outSlope: 0.29370216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.13116226 + inSlope: 0.23759924 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.68356013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6835601 + inSlope: 0.0062584872 + outSlope: 0.008046627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6845933 + inSlope: 0.03129244 + outSlope: 0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.68764246 + inSlope: 0.06079674 + outSlope: 0.059902657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.69208807 + inSlope: 0.060796726 + outSlope: 0.062584884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.69562525 + inSlope: 0.04023314 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6973892 + inSlope: 0.011622907 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6972778 + inSlope: -0.014305116 + outSlope: -0.015199179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6955481 + inSlope: -0.035762772 + outSlope: -0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.69277257 + inSlope: -0.044703487 + outSlope: -0.044703487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6897484 + inSlope: -0.04112721 + outSlope: -0.042915348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6873649 + inSlope: -0.024139883 + outSlope: -0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.6864313 + inSlope: -0.004470349 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.6869457 + inSlope: 0.014305116 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6883417 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.69033045 + inSlope: 0.03308058 + outSlope: 0.031292412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.692569 + inSlope: 0.03308055 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.69470334 + inSlope: 0.028610257 + outSlope: 0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.6963994 + inSlope: 0.020563586 + outSlope: 0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.69739515 + inSlope: 0.0080466345 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6974818 + inSlope: -0.0053644134 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.69655746 + inSlope: -0.021457693 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.6946352 + inSlope: -0.034868687 + outSlope: -0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.6917986 + inSlope: -0.045597598 + outSlope: -0.046491586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.68847597 + inSlope: -0.046491586 + outSlope: -0.047385737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6857772 + inSlope: -0.042021316 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13907187 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13907191 + inSlope: -0.03866851 + outSlope: -0.038892027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13389362 + inSlope: -0.1631677 + outSlope: -0.16383828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.11723222 + inSlope: -0.34891072 + outSlope: -0.34991646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.087231986 + inSlope: -0.4893913 + outSlope: -0.48939142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.051971182 + inSlope: -0.53700066 + outSlope: -0.5371124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.015618902 + inSlope: -0.53962696 + outSlope: -0.539599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.019982133 + inSlope: -0.5144533 + outSlope: -0.5145369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.05299311 + inSlope: -0.4623456 + outSlope: -0.46195465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.081618816 + inSlope: -0.38322064 + outSlope: -0.38344416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10412854 + inSlope: -0.27894977 + outSlope: -0.27894977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.118848875 + inSlope: -0.1499802 + outSlope: -0.15009196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.12412698 + inSlope: -0.017881395 + outSlope: -0.017993154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.121248156 + inSlope: 0.08303673 + outSlope: 0.08292497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.113053724 + inSlope: 0.15791507 + outSlope: 0.15791507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10019679 + inSlope: 0.22284688 + outSlope: 0.22262317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.08332849 + inSlope: 0.27794367 + outSlope: 0.27805594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.063109115 + inSlope: 0.32253593 + outSlope: 0.32253537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.040290747 + inSlope: 0.35813048 + outSlope: 0.3586899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.015345131 + inSlope: 0.38243866 + outSlope: 0.38296884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.010705439 + inSlope: 0.39583504 + outSlope: 0.39586368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.037458517 + inSlope: 0.39842018 + outSlope: 0.39847535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.06385458 + inSlope: 0.39003757 + outSlope: 0.3908206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.08949944 + inSlope: 0.36265737 + outSlope: 0.362992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.112233676 + inSlope: 0.28632557 + outSlope: 0.28565553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.12769179 + inSlope: 0.23111723 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7021381 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.70213807 + inSlope: 0.007152557 + outSlope: 0.008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7031993 + inSlope: 0.033080578 + outSlope: 0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7063314 + inSlope: 0.062584884 + outSlope: 0.059008587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7108979 + inSlope: 0.06258487 + outSlope: 0.063478954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7145311 + inSlope: 0.04202128 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7163428 + inSlope: 0.011622907 + outSlope: 0.012516976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.71622837 + inSlope: -0.016093256 + outSlope: -0.015199179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.71445185 + inSlope: -0.03665684 + outSlope: -0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.71160096 + inSlope: -0.046491627 + outSlope: -0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.70849437 + inSlope: -0.043809418 + outSlope: -0.042915348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7060462 + inSlope: -0.025033953 + outSlope: -0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.70508736 + inSlope: -0.003576279 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.7056156 + inSlope: 0.016093256 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.70704967 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.70909244 + inSlope: 0.03308058 + outSlope: 0.03308055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.71139175 + inSlope: 0.03308055 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.7135842 + inSlope: 0.030398399 + outSlope: 0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.71532637 + inSlope: 0.021457653 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.7163491 + inSlope: 0.0080466345 + outSlope: 0.0080466205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7164382 + inSlope: -0.0062584826 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7154887 + inSlope: -0.023245834 + outSlope: -0.022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.71351415 + inSlope: -0.037550896 + outSlope: -0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.7106005 + inSlope: -0.048279807 + outSlope: -0.04827972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7071875 + inSlope: -0.04738565 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7044154 + inSlope: -0.044703525 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.2379877e-11 + inSlope: 0 + outSlope: -0.0000073881324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -2.1868066e-10 + inSlope: 0.0073828376 + outSlope: 0.007410565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0009762172 + inSlope: 0.016147386 + outSlope: 0.01614215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0021316586 + inSlope: 0.017811546 + outSlope: 0.01781154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0033298223 + inSlope: 0.017416893 + outSlope: 0.017423883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.004434951 + inSlope: 0.014996623 + outSlope: 0.014996623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.005313211 + inSlope: 0.010575169 + outSlope: 0.010582154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00583285 + inSlope: 0.0041630124 + outSlope: 0.0041490407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00586271 + inSlope: -0.002682208 + outSlope: -0.002696179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.005478101 + inSlope: -0.0075297435 + outSlope: -0.0075437133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.004868485 + inSlope: -0.010652003 + outSlope: -0.010645018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.004072712 + inSlope: -0.013173559 + outSlope: -0.013187529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.003130069 + inSlope: -0.015108381 + outSlope: -0.015083934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0020805516 + inSlope: -0.016407577 + outSlope: -0.016418055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00096490467 + inSlope: -0.017101703 + outSlope: -0.017088607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00017554745 + inSlope: -0.017144486 + outSlope: -0.017144252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0012992182 + inSlope: -0.016559483 + outSlope: -0.016608408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.003327968 + inSlope: -0.013592666 + outSlope: -0.01356121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.004157342 + inSlope: -0.011161892 + outSlope: -0.011175881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0048029427 + inSlope: -0.008137438 + outSlope: -0.008151394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0052335486 + inSlope: -0.0028707995 + outSlope: -0.0028777895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.005183029 + inSlope: 0.0052317097 + outSlope: 0.0052317004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0045427894 + inSlope: 0.012649679 + outSlope: 0.0126916105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0035129362 + inSlope: 0.017182918 + outSlope: 0.017217811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0022758292 + inSlope: 0.018761478 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009668282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.009668284 + inSlope: 0.000041909512 + outSlope: 0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.009664818 + inSlope: 0.00030733642 + outSlope: 0.00032130632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.009651753 + inSlope: 0.0005308539 + outSlope: 0.00051688397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.009627904 + inSlope: 0.000684522 + outSlope: 0.0006565825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.009596539 + inSlope: 0.0006565825 + outSlope: 0.00068452215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00956514 + inSlope: 0.0005168841 + outSlope: 0.0004889444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.009543841 + inSlope: 0.00018160792 + outSlope: 0.00019557767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.009542554 + inSlope: -0.000097788834 + outSlope: -0.000111758716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0095586 + inSlope: -0.00025145712 + outSlope: -0.00025145712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.009581759 + inSlope: -0.00030733648 + outSlope: -0.00030733648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0096078105 + inSlope: -0.00022351743 + outSlope: -0.00026542696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.009632611 + inSlope: -0.00016763808 + outSlope: -0.00016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00965254 + inSlope: -0.000055879358 + outSlope: -0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.009664901 + inSlope: 0.0000698492 + outSlope: 0.00009778888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0096681705 + inSlope: 0.00025145712 + outSlope: 0.00022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.009662146 + inSlope: 0.0003632155 + outSlope: 0.00036321615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.009627954 + inSlope: 0.00047497498 + outSlope: 0.00044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.009605274 + inSlope: 0.00043306465 + outSlope: 0.00041909557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.009584092 + inSlope: 0.0003213066 + outSlope: 0.00034924567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.009568233 + inSlope: 0.00013969827 + outSlope: 0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00957017 + inSlope: -0.00019557793 + outSlope: -0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.009593 + inSlope: -0.00029336638 + outSlope: -0.00030733674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.009623337 + inSlope: -0.00022351764 + outSlope: -0.00019557758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.009649445 + inSlope: -0.000069849135 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000019081485 + inSlope: 0 + outSlope: -0.0002032786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000000064747194 + inSlope: 0.20222218 + outSlope: 0.20297444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.026747921 + inSlope: 0.44253653 + outSlope: 0.44250864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.058406524 + inSlope: 0.4886091 + outSlope: 0.4885531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.091235675 + inSlope: 0.47821543 + outSlope: 0.47788027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.121515736 + inSlope: 0.4114956 + outSlope: 0.4117191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.14557959 + inSlope: 0.2896786 + outSlope: 0.28990212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.15981747 + inSlope: 0.11399389 + outSlope: 0.114217356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16063565 + inSlope: -0.0735372 + outSlope: -0.07353724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15009752 + inSlope: -0.20608307 + outSlope: -0.20653011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13339432 + inSlope: -0.29191378 + outSlope: -0.29146674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1115905 + inSlope: -0.36053362 + outSlope: -0.36075714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.08576244 + inSlope: -0.413619 + outSlope: -0.41317198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.05700613 + inSlope: -0.4491024 + outSlope: -0.44943768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.026437888 + inSlope: -0.46838078 + outSlope: -0.46801755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0048100254 + inSlope: -0.469666 + outSlope: -0.46967256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.03559812 + inSlope: -0.4542429 + outSlope: -0.45530543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.09118501 + inSlope: -0.37305093 + outSlope: -0.37170917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.113909476 + inSlope: -0.30588332 + outSlope: -0.30644268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.13159862 + inSlope: -0.22307059 + outSlope: -0.22374074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.14339711 + inSlope: -0.07890158 + outSlope: -0.07845469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.14201288 + inSlope: 0.14282776 + outSlope: 0.14349806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.12447056 + inSlope: 0.34622818 + outSlope: 0.3467876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.09625299 + inSlope: 0.47016934 + outSlope: 0.47117433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.062356796 + inSlope: 0.5138661 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99995327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99995327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.999595 + inSlope: -0.011622905 + outSlope: -0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9982439 + inSlope: -0.028610231 + outSlope: -0.028610224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9957772 + inSlope: -0.044703476 + outSlope: -0.043809418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9925332 + inSlope: -0.050067905 + outSlope: -0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.989286 + inSlope: -0.042915348 + outSlope: -0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.98708314 + inSlope: -0.018775465 + outSlope: -0.018775456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9869503 + inSlope: 0.011622901 + outSlope: 0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9886098 + inSlope: 0.031292442 + outSlope: 0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99100477 + inSlope: 0.04023314 + outSlope: 0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9936995 + inSlope: 0.04023314 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9962641 + inSlope: 0.03576279 + outSlope: 0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.998325 + inSlope: 0.025928022 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9996033 + inSlope: 0.013411046 + outSlope: 0.012516976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9999417 + inSlope: -0.0026822092 + outSlope: -0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99931866 + inSlope: -0.016093241 + outSlope: -0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9957819 + inSlope: -0.03486875 + outSlope: -0.033974618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.993436 + inSlope: -0.035762757 + outSlope: -0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9912451 + inSlope: -0.029504327 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9896051 + inSlope: -0.011622896 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.98980504 + inSlope: 0.020563623 + outSlope: 0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99216646 + inSlope: 0.042915307 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9953042 + inSlope: 0.045597598 + outSlope: 0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99800473 + inSlope: 0.032186482 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04903133 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04903131 + inSlope: -0.10577961 + outSlope: -0.106282525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.06316576 + inSlope: -0.23670493 + outSlope: -0.23681672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.08058174 + inSlope: -0.2672151 + outSlope: -0.26710328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09877729 + inSlope: -0.26017424 + outSlope: -0.26028606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11527256 + inSlope: -0.21647663 + outSlope: -0.21636488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.12762025 + inSlope: -0.1358986 + outSlope: -0.13567509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.13339853 + inSlope: -0.018998982 + outSlope: -0.018998973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.13018028 + inSlope: 0.10773535 + outSlope: 0.108405955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.11896117 + inSlope: 0.2038479 + outSlope: 0.20429493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10296626 + inSlope: 0.26900324 + outSlope: 0.26900324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08308537 + inSlope: 0.3203005 + outSlope: 0.320524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.06022517 + inSlope: 0.35835433 + outSlope: 0.35824257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.03531391 + inSlope: 0.3817119 + outSlope: 0.38215894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.009299745 + inSlope: 0.39150476 + outSlope: 0.39109963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.016856406 + inSlope: 0.3860146 + outSlope: 0.38595837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.04219109 + inSlope: 0.3665124 + outSlope: 0.36640128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.065749094 + inSlope: 0.33237073 + outSlope: 0.33225837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.086532004 + inSlope: 0.28509623 + outSlope: 0.28565553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.10380168 + inSlope: 0.22396466 + outSlope: 0.22463481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.11644706 + inSlope: 0.14930952 + outSlope: 0.14942154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.12373253 + inSlope: 0.012069952 + outSlope: 0.011734654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.11801534 + inSlope: -0.20932388 + outSlope: -0.20977129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09575967 + inSlope: -0.415184 + outSlope: -0.41652435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.062559836 + inSlope: -0.54180574 + outSlope: -0.5419185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.023473982 + inSlope: -0.5861191 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.66038567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6603857 + inSlope: 0.0053644176 + outSlope: 0.007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.65944934 + inSlope: 0.018775461 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.6579684 + inSlope: 0.025033953 + outSlope: 0.025033947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.6560329 + inSlope: 0.030398363 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.65393245 + inSlope: 0.028610231 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.6521428 + inSlope: 0.021457674 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.65124094 + inSlope: 0.003576279 + outSlope: 0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6517485 + inSlope: -0.017881386 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.65341735 + inSlope: -0.029504301 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6555308 + inSlope: -0.03397465 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.6577257 + inSlope: -0.031292442 + outSlope: -0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.6596637 + inSlope: -0.025928022 + outSlope: -0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.6610681 + inSlope: -0.016987326 + outSlope: -0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.66175175 + inSlope: -0.0053644185 + outSlope: -0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.66163534 + inSlope: 0.006258488 + outSlope: 0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6607538 + inSlope: 0.017881379 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.6592525 + inSlope: 0.025033975 + outSlope: 0.025927998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.65737927 + inSlope: 0.028610205 + outSlope: 0.029504327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.65542805 + inSlope: 0.027716186 + outSlope: 0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.65377015 + inSlope: 0.019669516 + outSlope: 0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.6527265 + inSlope: 0.0017881411 + outSlope: 0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.65355104 + inSlope: -0.030398343 + outSlope: -0.029504327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.65638155 + inSlope: -0.04917388 + outSlope: -0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.6594943 + inSlope: -0.04112717 + outSlope: -0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.6614782 + inSlope: -0.018775482 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.043283887 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04328392 + inSlope: 0.093318515 + outSlope: 0.094044946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.055761565 + inSlope: 0.20893289 + outSlope: 0.20904468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.07113608 + inSlope: 0.23592265 + outSlope: 0.23592259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08719879 + inSlope: 0.2296641 + outSlope: 0.22988768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10176053 + inSlope: 0.19099565 + outSlope: 0.19099565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.11266083 + inSlope: 0.119693585 + outSlope: 0.1199171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.11776183 + inSlope: 0.017099084 + outSlope: 0.016875558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11492082 + inSlope: -0.095106624 + outSlope: -0.0955537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.10501677 + inSlope: -0.17993154 + outSlope: -0.18015505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09089673 + inSlope: -0.23748727 + outSlope: -0.23726375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.07334625 + inSlope: -0.28286132 + outSlope: -0.28297308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.05316567 + inSlope: -0.31638893 + outSlope: -0.31610954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.031174446 + inSlope: -0.33698046 + outSlope: -0.3373437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.008209597 + inSlope: -0.34559986 + outSlope: -0.34523663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.014880594 + inSlope: -0.34079424 + outSlope: -0.34072408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0372456 + inSlope: -0.32365295 + outSlope: -0.32354176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.058042206 + inSlope: -0.29342276 + outSlope: -0.29342225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.076388985 + inSlope: -0.2516804 + outSlope: -0.25223964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.091634385 + inSlope: -0.19803663 + outSlope: -0.19837154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10279749 + inSlope: -0.13176341 + outSlope: -0.1318754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.10922895 + inSlope: -0.0102818115 + outSlope: -0.010281793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.10418195 + inSlope: 0.18496051 + outSlope: 0.18518436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.08453501 + inSlope: 0.36668068 + outSlope: 0.36723882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.055226803 + inSlope: 0.47815925 + outSlope: 0.47832772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.020722505 + inSlope: 0.5174154 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.748073 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7480729 + inSlope: -0.008046627 + outSlope: -0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7470122 + inSlope: -0.02145767 + outSlope: -0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7453347 + inSlope: -0.028610231 + outSlope: -0.029504294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7431421 + inSlope: -0.03486871 + outSlope: -0.03397465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.74076277 + inSlope: -0.03308058 + outSlope: -0.03397465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7387356 + inSlope: -0.024139883 + outSlope: -0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7377141 + inSlope: -0.0026822092 + outSlope: -0.0035762773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7382889 + inSlope: 0.020563595 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.74017936 + inSlope: 0.032186512 + outSlope: 0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7425733 + inSlope: 0.03665686 + outSlope: 0.038445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7450598 + inSlope: 0.03576279 + outSlope: 0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.7472551 + inSlope: 0.028610231 + outSlope: 0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.7488459 + inSlope: 0.016987326 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.7496204 + inSlope: 0.004470349 + outSlope: 0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.74948865 + inSlope: -0.008046628 + outSlope: -0.010728827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7484899 + inSlope: -0.019669516 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.74678934 + inSlope: -0.028610257 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.74466735 + inSlope: -0.032186482 + outSlope: -0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.7424571 + inSlope: -0.03129247 + outSlope: -0.032186482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7405791 + inSlope: -0.02413986 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7393967 + inSlope: -0.0026822116 + outSlope: -0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.7403307 + inSlope: 0.03308055 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.743537 + inSlope: 0.05185609 + outSlope: 0.052750066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7470632 + inSlope: 0.043809377 + outSlope: 0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7493105 + inSlope: 0.016093269 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.007333762 + inSlope: 0 + outSlope: 0.000013969838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.007333763 + inSlope: -0.012873205 + outSlope: -0.01290813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00561216 + inSlope: -0.02757646 + outSlope: -0.027562493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0036589634 + inSlope: -0.0303844 + outSlope: -0.030370424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0015597368 + inSlope: -0.031926315 + outSlope: -0.031929813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0005982961 + inSlope: -0.032154206 + outSlope: -0.03215246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0027271535 + inSlope: -0.03105146 + outSlope: -0.031044476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0047391914 + inSlope: -0.028659126 + outSlope: -0.028652128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0065481304 + inSlope: -0.024971077 + outSlope: -0.024964103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.008069663 + inSlope: -0.02004672 + outSlope: -0.02003275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.009221426 + inSlope: -0.013872051 + outSlope: -0.013872051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.009922297 + inSlope: -0.006523915 + outSlope: -0.006523915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.010091001 + inSlope: 0.001480803 + outSlope: 0.001480803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.009725332 + inSlope: 0.008800999 + outSlope: 0.00877306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.008920346 + inSlope: 0.014905819 + outSlope: 0.014877879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0077389544 + inSlope: 0.020053705 + outSlope: 0.020053687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.006244277 + inSlope: 0.02425162 + outSlope: 0.024286587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.004500538 + inSlope: 0.027471714 + outSlope: 0.02746468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0025797682 + inSlope: 0.02975224 + outSlope: 0.029822141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0005305807 + inSlope: 0.030988624 + outSlope: 0.03103921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0015533069 + inSlope: 0.0311824 + outSlope: 0.031184202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0036288474 + inSlope: 0.030352997 + outSlope: 0.030345956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00560197 + inSlope: 0.028512416 + outSlope: 0.028540408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.007429791 + inSlope: 0.025662618 + outSlope: 0.025697496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.009024127 + inSlope: 0.02182087 + outSlope: 0.021820908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.010340802 + inSlope: 0.01972543 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06563248 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.065632485 + inSlope: -0.0017881392 + outSlope: -0.0017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0658522 + inSlope: -0.0029057262 + outSlope: -0.0029057267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0660302 + inSlope: -0.0021234157 + outSlope: -0.0022351737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.066137634 + inSlope: -0.0008940695 + outSlope: -0.000782311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06615795 + inSlope: 0.00044703486 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.06608856 + inSlope: 0.0016763808 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.065941066 + inSlope: 0.002793968 + outSlope: 0.002682208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.065740086 + inSlope: 0.0033527599 + outSlope: 0.0032410028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06552045 + inSlope: 0.0032410028 + outSlope: 0.0032410028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.065323144 + inSlope: 0.0025704505 + outSlope: 0.0024586918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0651899 + inSlope: 0.0012293459 + outSlope: 0.0011175872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.06515631 + inSlope: -0.000111758716 + outSlope: -0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.06522836 + inSlope: -0.001564622 + outSlope: -0.0016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.06537731 + inSlope: -0.0025704505 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.06557215 + inSlope: -0.003129244 + outSlope: -0.002905724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.06577841 + inSlope: -0.0030174826 + outSlope: -0.0029057292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.06596273 + inSlope: -0.002458694 + outSlope: -0.0022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06609623 + inSlope: -0.0015646206 + outSlope: -0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0661587 + inSlope: -0.00011175882 + outSlope: -0.00033527584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.06613783 + inSlope: 0.0011175862 + outSlope: 0.0010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.06603235 + inSlope: 0.0022351763 + outSlope: 0.0021234136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.065853335 + inSlope: 0.0031292413 + outSlope: 0.0031292469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.065618485 + inSlope: 0.0037997998 + outSlope: 0.0037997928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.06535889 + inSlope: 0.0039115516 + outSlope: 0.0039115585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.065105565 + inSlope: 0.0040233172 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12598574 + inSlope: 0 + outSlope: -0.0002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.12598574 + inSlope: 0.22105871 + outSlope: 0.22150575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09641026 + inSlope: 0.47374514 + outSlope: 0.47340992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.06285626 + inSlope: 0.522025 + outSlope: 0.5221366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.02679362 + inSlope: 0.5485116 + outSlope: 0.5485397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01027928 + inSlope: 0.5523116 + outSlope: 0.55232555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.046850927 + inSlope: 0.53336847 + outSlope: 0.53336847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.08141575 + inSlope: 0.49229714 + outSlope: 0.49218518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11249156 + inSlope: 0.42926502 + outSlope: 0.4288182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.13862997 + inSlope: 0.34421685 + outSlope: 0.34444037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15841617 + inSlope: 0.23826958 + outSlope: 0.2384931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.17045648 + inSlope: 0.111982234 + outSlope: 0.111982234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.17335467 + inSlope: -0.02525747 + outSlope: -0.02525747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.16707289 + inSlope: -0.15109779 + outSlope: -0.15065075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.15324408 + inSlope: -0.256151 + outSlope: -0.25570396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13294896 + inSlope: -0.3446639 + outSlope: -0.34444004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.10727196 + inSlope: -0.4169714 + outSlope: -0.4170839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.07731636 + inSlope: -0.47184572 + outSlope: -0.47195664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.044319484 + inSlope: -0.5111839 + outSlope: -0.51219064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.009116545 + inSlope: -0.53233516 + outSlope: -0.53321433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.026682526 + inSlope: -0.5356311 + outSlope: -0.5356321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.062338214 + inSlope: -0.521299 + outSlope: -0.52135396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09623447 + inSlope: -0.48972625 + outSlope: -0.49006242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.12763461 + inSlope: -0.44055325 + outSlope: -0.44144654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.15502374 + inSlope: -0.3748384 + outSlope: -0.37483907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.17764293 + inSlope: -0.3384057 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9898314 + inSlope: 0 + outSlope: -0.0008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9898314 + inSlope: 0.028610228 + outSlope: 0.027716158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.993145 + inSlope: 0.04559755 + outSlope: 0.045597557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99582916 + inSlope: 0.03308058 + outSlope: 0.033080574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9974495 + inSlope: 0.015199182 + outSlope: 0.014305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99775606 + inSlope: -0.0053644185 + outSlope: -0.006258488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9967095 + inSlope: -0.025033953 + outSlope: -0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99448514 + inSlope: -0.04023314 + outSlope: -0.03933905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99145395 + inSlope: -0.048279744 + outSlope: -0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.98814154 + inSlope: -0.048279766 + outSlope: -0.048279766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9851661 + inSlope: -0.038445 + outSlope: -0.038445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9831563 + inSlope: -0.019669535 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98265 + inSlope: 0.004470349 + outSlope: 0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9837364 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.98598295 + inSlope: 0.03933907 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9889211 + inSlope: 0.046491627 + outSlope: 0.045597516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9920317 + inSlope: 0.045597516 + outSlope: 0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99481195 + inSlope: 0.03665689 + outSlope: 0.037550896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99682516 + inSlope: 0.022351723 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9977673 + inSlope: 0.0044703525 + outSlope: 0.0053644134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9974525 + inSlope: -0.014305103 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9958617 + inSlope: -0.033080608 + outSlope: -0.032186482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99316204 + inSlope: -0.04738565 + outSlope: -0.047385737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9896203 + inSlope: -0.05632644 + outSlope: -0.05722041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.98570496 + inSlope: -0.05900855 + outSlope: -0.057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.98188454 + inSlope: -0.060796797 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.044245433 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04424541 + inSlope: -0.04196539 + outSlope: -0.04202127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04984394 + inSlope: -0.12148171 + outSlope: -0.12176112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.060462926 + inSlope: -0.050235543 + outSlope: -0.049956135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.056530945 + inSlope: 0.16087663 + outSlope: 0.16093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0389773 + inSlope: 0.28990212 + outSlope: 0.28984624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.017835362 + inSlope: 0.3370643 + outSlope: 0.33709222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0060276114 + inSlope: 0.37100402 + outSlope: 0.37094796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.031716034 + inSlope: 0.3914906 + outSlope: 0.39098787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05831491 + inSlope: 0.39758164 + outSlope: 0.3979728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08490576 + inSlope: 0.39070848 + outSlope: 0.39026144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.11058581 + inSlope: 0.37014487 + outSlope: 0.37048015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.13448617 + inSlope: 0.33795837 + outSlope: 0.3370643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.15578483 + inSlope: 0.29280785 + outSlope: 0.29280785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.17371057 + inSlope: 0.23670496 + outSlope: 0.23759903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.18753552 + inSlope: 0.17032029 + outSlope: 0.17076716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.19655523 + inSlope: 0.09365372 + outSlope: 0.09343037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.20005782 + inSlope: -0.0040233172 + outSlope: -0.0033527585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.19606563 + inSlope: -0.12136985 + outSlope: -0.12137008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.18387093 + inSlope: -0.23379944 + outSlope: -0.23446958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.1648851 + inSlope: -0.32879385 + outSlope: -0.3283474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.14014193 + inSlope: -0.40344933 + outSlope: -0.4032251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.111284345 + inSlope: -0.4568692 + outSlope: -0.4580994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.079404496 + inSlope: -0.48816252 + outSlope: -0.48872042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.046445347 + inSlope: -0.49464363 + outSlope: -0.49475628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.013622433 + inSlope: -0.49341518 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03321047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03321047 + inSlope: 0.005085021 + outSlope: 0.004973262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.033868145 + inSlope: 0.012125819 + outSlope: 0.01223758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.034764353 + inSlope: 0.020619484 + outSlope: 0.020563599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.03661205 + inSlope: 0.03470107 + outSlope: 0.034645204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.039256427 + inSlope: 0.04531816 + outSlope: 0.045094643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.042271655 + inSlope: 0.0506267 + outSlope: 0.05057082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.045514658 + inSlope: 0.053755943 + outSlope: 0.053644158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.048847444 + inSlope: 0.054705866 + outSlope: 0.054482374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.052141145 + inSlope: 0.053308908 + outSlope: 0.053364787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.05527988 + inSlope: 0.050179664 + outSlope: 0.050179664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.058163766 + inSlope: 0.0452064 + outSlope: 0.045150522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.06071063 + inSlope: 0.039003793 + outSlope: 0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.06285593 + inSlope: 0.031962994 + outSlope: 0.031739477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.06455047 + inSlope: 0.023692848 + outSlope: 0.023804607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0657558 + inSlope: 0.015087427 + outSlope: 0.015199171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.066437386 + inSlope: 0.0062584826 + outSlope: 0.0063702525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.066555575 + inSlope: -0.0040233172 + outSlope: -0.004246827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.06588148 + inSlope: -0.016205 + outSlope: -0.016540304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.06428815 + inSlope: -0.027604427 + outSlope: -0.027716137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.061896414 + inSlope: -0.03721562 + outSlope: -0.037103925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.05876996 + inSlope: -0.04548584 + outSlope: -0.045597516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.055054642 + inSlope: -0.05241479 + outSlope: -0.052414883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.050840735 + inSlope: -0.05749991 + outSlope: -0.057611566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.04635156 + inSlope: -0.06051729 + outSlope: -0.060461517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.04173793 + inSlope: -0.06258494 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17222728 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.17222728 + inSlope: -0.065267086 + outSlope: -0.06571412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18096808 + inSlope: -0.18909572 + outSlope: -0.18931927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.19738099 + inSlope: -0.08404256 + outSlope: -0.08337198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19216338 + inSlope: 0.22999938 + outSlope: 0.23022296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16661532 + inSlope: 0.42378905 + outSlope: 0.42334202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.13565639 + inSlope: 0.49576166 + outSlope: 0.49553815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.1004909 + inSlope: 0.5496294 + outSlope: 0.5498526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.062384557 + inSlope: 0.58444196 + outSlope: 0.5840511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0226587 + inSlope: 0.59871936 + outSlope: 0.59911054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.017328992 + inSlope: 0.59301966 + outSlope: 0.5926565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05621127 + inSlope: 0.56611377 + outSlope: 0.56667256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.09263973 + inSlope: 0.5199016 + outSlope: 0.51945454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.12530816 + inSlope: 0.45329335 + outSlope: 0.4537404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.15296514 + inSlope: 0.36947432 + outSlope: 0.36835673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.1744115 + inSlope: 0.2664328 + outSlope: 0.26643255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.18848233 + inSlope: 0.14752138 + outSlope: 0.14640404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.1940136 + inSlope: -0.004246835 + outSlope: -0.0040233103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.18792742 + inSlope: -0.18507227 + outSlope: -0.18663722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.1691831 + inSlope: -0.35673413 + outSlope: -0.35852164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.14006706 + inSlope: -0.4993375 + outSlope: -0.49911487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.10230716 + inSlope: -0.6086385 + outSlope: -0.60852563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.058546156 + inSlope: -0.6854715 + outSlope: -0.68664616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.010548314 + inSlope: -0.7271308 + outSlope: -0.728289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.038697343 + inSlope: -0.73257774 + outSlope: -0.7326349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.08736118 + inSlope: -0.7264323 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98350245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.98350245 + inSlope: -0.014305114 + outSlope: -0.0125169745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.981641 + inSlope: -0.04202127 + outSlope: -0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.97784275 + inSlope: -0.020563604 + outSlope: -0.019669529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9790491 + inSlope: 0.052750103 + outSlope: 0.052750114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.984469 + inSlope: 0.08225442 + outSlope: 0.07957221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.98969305 + inSlope: 0.07241965 + outSlope: 0.07241965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9938781 + inSlope: 0.050961975 + outSlope: 0.050067883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9963515 + inSlope: 0.022351732 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9966781 + inSlope: -0.012516976 + outSlope: -0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99470335 + inSlope: -0.047385696 + outSlope: -0.045597557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9905695 + inSlope: -0.07689 + outSlope: -0.07510186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9847059 + inSlope: -0.09566546 + outSlope: -0.0974536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.97779244 + inSlope: -0.10818244 + outSlope: -0.10728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9707005 + inSlope: -0.10281802 + outSlope: -0.10102988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9644103 + inSlope: -0.08225442 + outSlope: -0.08225434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9599097 + inSlope: -0.04738565 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9580741 + inSlope: 0.0017881411 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9601569 + inSlope: 0.062584825 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.96614474 + inSlope: 0.109076604 + outSlope: 0.10818234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.97435254 + inSlope: 0.12874593 + outSlope: 0.12964022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9830766 + inSlope: 0.123381734 + outSlope: 0.12516965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9905337 + inSlope: 0.0947713 + outSlope: 0.095665544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99548924 + inSlope: 0.04917388 + outSlope: 0.05006786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99709415 + inSlope: -0.0026822067 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9952087 + inSlope: -0.054538302 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.1628875e-11 + inSlope: 0 + outSlope: -0.0000002828483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.577397e-11 + inSlope: 0.00028491655 + outSlope: 0.00028598186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000037688096 + inSlope: 0.0006250957 + outSlope: 0.00062493206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00008250127 + inSlope: 0.0006921619 + outSlope: 0.00069227087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00012908847 + inSlope: 0.00067862845 + outSlope: 0.00067841035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00017210124 + inSlope: 0.0005836774 + outSlope: 0.00058389566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00020619796 + inSlope: 0.00040796297 + outSlope: 0.00040839953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00022604442 + inSlope: 0.00015192201 + outSlope: 0.00015170366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00022630816 + inSlope: -0.0001226726 + outSlope: -0.00012267266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00020990105 + inSlope: -0.00031781386 + outSlope: -0.00031803214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00018438774 + inSlope: -0.00044310585 + outSlope: -0.00044288757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00015141025 + inSlope: -0.0005435141 + outSlope: -0.0005441689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00011261249 + inSlope: -0.00061969337 + outSlope: -0.00061936595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000069641224 + inSlope: -0.0006700066 + outSlope: -0.0006704432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000024146051 + inSlope: -0.00069611816 + outSlope: -0.0006955179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000022221293 + inSlope: -0.00069639104 + outSlope: -0.0006961176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00006780827 + inSlope: -0.00067186134 + outSlope: -0.00067349966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00014992205 + inSlope: -0.00054984464 + outSlope: -0.0005480974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00018338024 + inSlope: -0.00044899897 + outSlope: -0.00045009117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00020928368 + inSlope: -0.00032479907 + outSlope: -0.00032545332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00022630814 + inSlope: -0.0001047737 + outSlope: -0.000104337334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00022311024 + inSlope: 0.00023683265 + outSlope: 0.00023770533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00019500607 + inSlope: 0.0005494071 + outSlope: 0.0005504995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00015056467 + inSlope: 0.00073821936 + outSlope: 0.0007395277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00009752391 + inSlope: 0.0008034833 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0047167693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0047167693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0047166175 + inSlope: 0.000013969838 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0047160476 + inSlope: 0.0000069849198 + outSlope: 0.000013969836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004715002 + inSlope: 0.000013969836 + outSlope: 0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0047136284 + inSlope: 0.00002095476 + outSlope: 0.00002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0047122594 + inSlope: 0.00002095476 + outSlope: 0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.004711349 + inSlope: 0.0000069849198 + outSlope: 0.0000069849166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.004711337 + inSlope: -0.0000069849166 + outSlope: -0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0047120955 + inSlope: -0.0000139698395 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.004713164 + inSlope: -0.00002095476 + outSlope: -0.00002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.004714338 + inSlope: -0.0000139698395 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.004715425 + inSlope: -0.00002095476 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.004716255 + inSlope: -0.0000069849198 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.004716707 + inSlope: 0 + outSlope: -0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.004716717 + inSlope: 0 + outSlope: 0.0000069849134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.004716281 + inSlope: 0.000013969827 + outSlope: 0.000006984926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0047143856 + inSlope: 0.000020954778 + outSlope: 0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0047132033 + inSlope: 0.000013969827 + outSlope: 0.000013969852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.004712124 + inSlope: 0.000013969852 + outSlope: 0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.004711337 + inSlope: 0.0000069849134 + outSlope: 0.000006984926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.004711489 + inSlope: -0.000013969852 + outSlope: -0.0000069849134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0047127367 + inSlope: -0.00002095474 + outSlope: -0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0047143656 + inSlope: -0.000027939705 + outSlope: -0.00002095474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.004715761 + inSlope: -0.000013969827 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000013207039 + inSlope: 0 + outSlope: 0.00006052253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 5.3547655e-10 + inSlope: -0.06040422 + outSlope: -0.06063006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0079899235 + inSlope: -0.13253185 + outSlope: -0.13250393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.017490366 + inSlope: -0.14676714 + outSlope: -0.14679503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.027366906 + inSlope: -0.14388931 + outSlope: -0.14388935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.036485672 + inSlope: -0.12382866 + outSlope: -0.12382866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.043714214 + inSlope: -0.08655713 + outSlope: -0.086668886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.04792169 + inSlope: -0.03229827 + outSlope: -0.032242376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.047977593 + inSlope: 0.025928011 + outSlope: 0.025983902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04449927 + inSlope: 0.06733463 + outSlope: 0.06733463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.039090417 + inSlope: 0.09387732 + outSlope: 0.09387732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03209915 + inSlope: 0.11516736 + outSlope: 0.115334995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.023873985 + inSlope: 0.13134444 + outSlope: 0.13128856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.014764021 + inSlope: 0.1420174 + outSlope: 0.14212915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0051189945 + inSlope: 0.14757739 + outSlope: 0.14744467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.004710937 + inSlope: 0.14764723 + outSlope: 0.14759122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.01437543 + inSlope: 0.14245033 + outSlope: 0.14282776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.031783648 + inSlope: 0.116620325 + outSlope: 0.11622896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.038876824 + inSlope: 0.09527422 + outSlope: 0.09544203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.04436838 + inSlope: 0.06889931 + outSlope: 0.06906682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.04797759 + inSlope: 0.022295844 + outSlope: 0.022184124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.047299627 + inSlope: -0.05017971 + outSlope: -0.050291378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04134151 + inSlope: -0.1163966 + outSlope: -0.116676204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.03191988 + inSlope: -0.15646234 + outSlope: -0.15668558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.020675171 + inSlope: -0.17032012 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99998885 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99998885 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9999569 + inSlope: -0.0017881392 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9998359 + inSlope: -0.0017881395 + outSlope: -0.0026822085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9996143 + inSlope: -0.003576278 + outSlope: -0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.999323 + inSlope: -0.004470349 + outSlope: -0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9990329 + inSlope: -0.003576279 + outSlope: -0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9988399 + inSlope: -0.0017881395 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99883723 + inSlope: 0.0008940693 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9989982 + inSlope: 0.0026822092 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99922454 + inSlope: 0.004470349 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9994735 + inSlope: 0.003576279 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9997038 + inSlope: 0.003576279 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99987984 + inSlope: 0.0017881395 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.99997574 + inSlope: 0.00089406973 + outSlope: 0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99997777 + inSlope: -0.00089406973 + outSlope: -0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9998855 + inSlope: -0.0026822067 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9994836 + inSlope: -0.0044703525 + outSlope: -0.0035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9992328 + inSlope: -0.0035762757 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99900407 + inSlope: -0.0026822116 + outSlope: -0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99883723 + inSlope: -0.0008940689 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9988696 + inSlope: 0.0026822116 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9991339 + inSlope: 0.0044703446 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9994793 + inSlope: 0.005364423 + outSlope: 0.0044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9997751 + inSlope: 0.0035762757 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00089224253 + inSlope: 0 + outSlope: -0.0000026193445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00089224253 + inSlope: -0.00016327247 + outSlope: -0.00016414559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0008705533 + inSlope: -0.00068015646 + outSlope: -0.0006810297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00080209324 + inSlope: -0.0014528633 + outSlope: -0.0014546092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00067818165 + inSlope: -0.0022054878 + outSlope: -0.0022072347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0005109182 + inSlope: -0.002603629 + outSlope: -0.002603629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00033457042 + inSlope: -0.0026935597 + outSlope: -0.00269225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0001557369 + inSlope: -0.0026782802 + outSlope: -0.0026778425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000019323401 + inSlope: -0.0025730687 + outSlope: -0.0025713237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00018435073 + inSlope: -0.0023770556 + outSlope: -0.0023779287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0003331175 + inSlope: -0.0020902373 + outSlope: -0.0020867449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0004594457 + inSlope: -0.0017025742 + outSlope: -0.0017060667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0005572122 + inSlope: -0.0012249803 + outSlope: -0.0012206148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00062033144 + inSlope: -0.0006478513 + outSlope: -0.00064959755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00064272597 + inSlope: 0.0000017462299 + outSlope: 0.00000087311497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00062033144 + inSlope: 0.000645232 + outSlope: 0.0006452314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0005572122 + inSlope: 0.0012118825 + outSlope: 0.0012206158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00033355062 + inSlope: 0.0020858736 + outSlope: 0.0020832506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00018435076 + inSlope: 0.0023713782 + outSlope: 0.0023753115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000019857805 + inSlope: 0.0025739453 + outSlope: 0.0025791794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00015573706 + inSlope: 0.002681552 + outSlope: 0.0026813385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00033401232 + inSlope: 0.0026909427 + outSlope: 0.002691811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00051091815 + inSlope: 0.0026036266 + outSlope: 0.0026079968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0006776966 + inSlope: 0.0022054904 + outSlope: 0.0022115982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00080209324 + inSlope: 0.0018859266 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012006575 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.012006575 + inSlope: 0.000027939675 + outSlope: 0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.012009124 + inSlope: 0.000083819024 + outSlope: 0.0000698492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.012016493 + inSlope: 0.0001396984 + outSlope: 0.00012572853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.012027236 + inSlope: 0.0001536682 + outSlope: 0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0120364735 + inSlope: 0.00009778888 + outSlope: 0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.012039681 + inSlope: 0 + outSlope: -0.000027939679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.012036124 + inSlope: -0.000111758716 + outSlope: -0.000111758665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.01202601 + inSlope: -0.00020954749 + outSlope: -0.0002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.012010471 + inSlope: -0.0002793968 + outSlope: -0.0002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.01199147 + inSlope: -0.00029336664 + outSlope: -0.00032130632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.011971604 + inSlope: -0.00029336664 + outSlope: -0.00029336664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.011953877 + inSlope: -0.00023748727 + outSlope: -0.00022351743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.011941338 + inSlope: -0.00012572856 + outSlope: -0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0119366795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.011941338 + inSlope: 0.0001396984 + outSlope: 0.00012572845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.011953877 + inSlope: 0.00022351723 + outSlope: 0.00023748749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.011991409 + inSlope: 0.0002933669 + outSlope: 0.00029336638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.012010471 + inSlope: 0.0002514569 + outSlope: 0.00023748749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.012025967 + inSlope: 0.00019557793 + outSlope: 0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.012036123 + inSlope: 0.00009778879 + outSlope: 0.000097788965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.012039681 + inSlope: -0.000013969852 + outSlope: -0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.012036472 + inSlope: -0.00009778879 + outSlope: -0.00012572866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.012027273 + inSlope: -0.00018160808 + outSlope: -0.0001536681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.012016492 + inSlope: -0.00018160776 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.091348015 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.091348015 + inSlope: -0.021904705 + outSlope: -0.021904705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08844742 + inSlope: -0.0911951 + outSlope: -0.09130687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.079293564 + inSlope: -0.19468369 + outSlope: -0.19468364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06273124 + inSlope: -0.29470766 + outSlope: -0.2948195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.040386584 + inSlope: -0.3476255 + outSlope: -0.3475696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.016843433 + inSlope: -0.3590528 + outSlope: -0.3590528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0070158555 + inSlope: -0.35755107 + outSlope: -0.35751596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.030356396 + inSlope: -0.34349027 + outSlope: -0.34321102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.05234544 + inSlope: -0.3165007 + outSlope: -0.31666833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07215627 + inSlope: -0.27760866 + outSlope: -0.2772734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08897044 + inSlope: -0.2257526 + outSlope: -0.22597612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.10197759 + inSlope: -0.16238542 + outSlope: -0.16182663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.11037265 + inSlope: -0.08616597 + outSlope: -0.08616597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.11335074 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11037265 + inSlope: 0.085942455 + outSlope: 0.08616589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10197759 + inSlope: 0.16182648 + outSlope: 0.1630561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.07221392 + inSlope: 0.27783242 + outSlope: 0.27749664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.052345432 + inSlope: 0.31627688 + outSlope: 0.31700388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.030427646 + inSlope: 0.34315544 + outSlope: 0.34379745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00701584 + inSlope: 0.3573831 + outSlope: 0.35733485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.01676894 + inSlope: 0.35880166 + outSlope: 0.35888484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04038659 + inSlope: 0.3475134 + outSlope: 0.3481287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.06266645 + inSlope: 0.29448447 + outSlope: 0.29504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.079293564 + inSlope: 0.2516804 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99574625 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99574625 + inSlope: 0.0026822088 + outSlope: 0.0017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9960081 + inSlope: 0.008046627 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99677855 + inSlope: 0.015199185 + outSlope: 0.016093252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99795777 + inSlope: 0.01877546 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9991115 + inSlope: 0.014305116 + outSlope: 0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99978554 + inSlope: 0.006258488 + outSlope: 0.006258488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99990296 + inSlope: -0.0026822092 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99946684 + inSlope: -0.010728832 + outSlope: -0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99855673 + inSlope: -0.016987326 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9973212 + inSlope: -0.019669535 + outSlope: -0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9959622 + inSlope: -0.020563604 + outSlope: -0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9947146 + inSlope: -0.016987326 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99381834 + inSlope: -0.008940698 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9934832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99381834 + inSlope: 0.009834767 + outSlope: 0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9947146 + inSlope: 0.016093241 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.997317 + inSlope: 0.020563623 + outSlope: 0.019669516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99855673 + inSlope: 0.016093241 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9994647 + inSlope: 0.010728846 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99990296 + inSlope: 0.0017881378 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9997868 + inSlope: -0.0062584938 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9991115 + inSlope: -0.013411034 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9979618 + inSlope: -0.018775482 + outSlope: -0.018775448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99677855 + inSlope: -0.020563586 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012486689 + inSlope: 0 + outSlope: 0.0000024010658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00012485843 + inSlope: -0.0016416742 + outSlope: -0.001647786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00034204268 + inSlope: -0.003645691 + outSlope: -0.0036456916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0006061414 + inSlope: -0.0040887976 + outSlope: -0.0040879236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00088176975 + inSlope: -0.0039953734 + outSlope: -0.003994501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.001133629 + inSlope: -0.00337197 + outSlope: -0.003364985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0013266094 + inSlope: -0.0022107272 + outSlope: -0.0022124734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0014257816 + inSlope: -0.00052561524 + outSlope: -0.000525615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0013962213 + inSlope: 0.0013044332 + outSlope: 0.0013009413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.001253967 + inSlope: 0.0026472847 + outSlope: 0.0026490309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0010465682 + inSlope: 0.0035431006 + outSlope: 0.0035431006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00078623 + inSlope: 0.0042494508 + outSlope: 0.0042546894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00048525535 + inSlope: 0.004774193 + outSlope: 0.00477201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00015606885 + inSlope: 0.0051042303 + outSlope: 0.005108159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0001887942 + inSlope: 0.0052504768 + outSlope: 0.0052454565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0005367393 + inSlope: 0.0051976535 + outSlope: 0.0051959027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0008751748 + inSlope: 0.004955796 + outSlope: 0.004970648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0014727645 + inSlope: 0.003929021 + outSlope: 0.0039167902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0017089228 + inSlope: 0.0031205101 + outSlope: 0.0031275006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0018850601 + inSlope: 0.0021391336 + outSlope: 0.0021373834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.001991298 + inSlope: 0.00034575321 + outSlope: 0.00034575383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0019308814 + inSlope: -0.0025006034 + outSlope: -0.0025023452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0016605319 + inSlope: -0.00513915 + outSlope: -0.005149637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0012518932 + inSlope: -0.0067474386 + outSlope: -0.006757904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00076933566 + inSlope: -0.0073132045 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.014307353 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0143073695 + inSlope: 0.000013969838 + outSlope: 0.000013969838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.014303824 + inSlope: 0.00009778886 + outSlope: 0.0000698492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.014295069 + inSlope: 0.00015366824 + outSlope: 0.00018160787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.014280717 + inSlope: 0.00025145707 + outSlope: 0.00023748727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.014262933 + inSlope: 0.00026542696 + outSlope: 0.0002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.014246282 + inSlope: 0.00019557776 + outSlope: 0.0002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.014236697 + inSlope: 0.000055879358 + outSlope: 0.000055879333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.014239628 + inSlope: -0.0001257285 + outSlope: -0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.014252858 + inSlope: -0.00023748727 + outSlope: -0.00023748727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.014269587 + inSlope: -0.00025145712 + outSlope: -0.00026542696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.014286295 + inSlope: -0.00025145712 + outSlope: -0.00022351743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.014299683 + inSlope: -0.00016763808 + outSlope: -0.00015366824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.014307063 + inSlope: -0.000055879358 + outSlope: -0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.014306667 + inSlope: 0.00008381904 + outSlope: 0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.014297843 + inSlope: 0.00019557776 + outSlope: 0.00018160776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.014281125 + inSlope: 0.00029336638 + outSlope: 0.00030733674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.014231916 + inSlope: 0.0004051257 + outSlope: 0.00040512497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.014205492 + inSlope: 0.00037718532 + outSlope: 0.00036321615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.014183193 + inSlope: 0.0002933669 + outSlope: 0.00027939654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.014168669 + inSlope: 0.00004190948 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.014177028 + inSlope: -0.0003492463 + outSlope: -0.00033527584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.014211223 + inSlope: -0.00060070254 + outSlope: -0.00060070364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.014253032 + inSlope: -0.0005867338 + outSlope: -0.00058673276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0142872045 + inSlope: -0.00039115516 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008725365 + inSlope: 0 + outSlope: -0.00012572855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.008725356 + inSlope: 0.11474825 + outSlope: 0.11516734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.02390295 + inSlope: 0.25483778 + outSlope: 0.2548099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.04235908 + inSlope: 0.28571117 + outSlope: 0.28576696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.061620943 + inSlope: 0.27922907 + outSlope: 0.27917328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.079221725 + inSlope: 0.23558737 + outSlope: 0.2352521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.09270787 + inSlope: 0.15456231 + outSlope: 0.15456231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.099638365 + inSlope: 0.036880378 + outSlope: 0.0367686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09757263 + inSlope: -0.09097155 + outSlope: -0.0909716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08763139 + inSlope: -0.18484892 + outSlope: -0.1851842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07313761 + inSlope: -0.24765731 + outSlope: -0.24732204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.054944284 + inSlope: -0.2969988 + outSlope: -0.29722232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.033911113 + inSlope: -0.33365566 + outSlope: -0.33343214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.010906437 + inSlope: -0.3566919 + outSlope: -0.3569713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.01319382 + inSlope: -0.36691782 + outSlope: -0.3665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03750942 + inSlope: -0.36321583 + outSlope: -0.36315963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.06116048 + inSlope: -0.34639582 + outSlope: -0.34740227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.10292216 + inSlope: -0.27470317 + outSlope: -0.27369684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.119425714 + inSlope: -0.21804106 + outSlope: -0.21848848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.1317348 + inSlope: -0.1495333 + outSlope: -0.14953303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.13915911 + inSlope: -0.02413986 + outSlope: -0.024139903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.13493705 + inSlope: 0.17479078 + outSlope: 0.17479047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.11604416 + inSlope: 0.35908043 + outSlope: 0.3598634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.08748714 + inSlope: 0.4716222 + outSlope: 0.47218016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.05376445 + inSlope: 0.511128 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9998596 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9998596 + inSlope: -0.0008940696 + outSlope: -0.0008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99961185 + inSlope: -0.0062584872 + outSlope: -0.0053644185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9990001 + inSlope: -0.011622907 + outSlope: -0.012516974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99799705 + inSlope: -0.01788139 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99675435 + inSlope: -0.018775465 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99559057 + inSlope: -0.014305116 + outSlope: -0.014305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9949209 + inSlope: -0.003576279 + outSlope: -0.0035762773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9951256 + inSlope: 0.008940693 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99605024 + inSlope: 0.016093256 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99721926 + inSlope: 0.017881395 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.998387 + inSlope: 0.016987326 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9993225 + inSlope: 0.011622907 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9998382 + inSlope: 0.003576279 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9998106 + inSlope: -0.0053644185 + outSlope: -0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99919385 + inSlope: -0.013411046 + outSlope: -0.013411034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9980254 + inSlope: -0.020563586 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9945865 + inSlope: -0.028610257 + outSlope: -0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99274004 + inSlope: -0.025927998 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99118173 + inSlope: -0.020563623 + outSlope: -0.019669516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9901667 + inSlope: -0.0026822067 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9907509 + inSlope: 0.024139903 + outSlope: 0.02413986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99314106 + inSlope: 0.04202124 + outSlope: 0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99606293 + inSlope: 0.041127246 + outSlope: 0.04112717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9984511 + inSlope: 0.027716137 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00042691777 + inSlope: 0 + outSlope: -0.0000013096723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00042691777 + inSlope: 0.001144217 + outSlope: 0.0011485826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00027343436 + inSlope: 0.0024730978 + outSlope: 0.002472225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00009791765 + inSlope: 0.0027287025 + outSlope: 0.0027285928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00009017564 + inSlope: 0.002847882 + outSlope: 0.002847992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00028132548 + inSlope: 0.0028149227 + outSlope: 0.0028149227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00046601193 + inSlope: 0.0026472847 + outSlope: 0.0026477212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00063478376 + inSlope: 0.0023425675 + outSlope: 0.0023434395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0007783078 + inSlope: 0.0018920393 + outSlope: 0.0018902939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00088737777 + inSlope: 0.00130618 + outSlope: 0.0013079263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0009528748 + inSlope: 0.0005867333 + outSlope: 0.00059022574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00096567214 + inSlope: -0.00018771972 + outSlope: -0.00018946595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0009279151 + inSlope: -0.00086001825 + outSlope: -0.000858272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00085180067 + inSlope: -0.0013882528 + outSlope: -0.001389126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0007431765 + inSlope: -0.0018344146 + outSlope: -0.0018326683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0006079068 + inSlope: -0.0021854069 + outSlope: -0.0021854048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00045191933 + inSlope: -0.0024499584 + outSlope: -0.0024512724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0002812241 + inSlope: -0.0026189107 + outSlope: -0.0026193426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00010247863 + inSlope: -0.0027122202 + outSlope: -0.0027166996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00007987204 + inSlope: -0.002701202 + outSlope: -0.0027061084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0002574158 + inSlope: -0.0025957685 + outSlope: -0.0025953366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0004262094 + inSlope: -0.0024006318 + outSlope: -0.0024006274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0005780883 + inSlope: -0.002119048 + outSlope: -0.0021225445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00070892414 + inSlope: -0.0017471046 + outSlope: -0.0017479745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00081118115 + inSlope: -0.0005256147 + outSlope: -0.0005238695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00077894167 + inSlope: 0.00048545236 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0034770814 + inSlope: 0 + outSlope: -0.0000034924594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0034770814 + inSlope: 0.000073341645 + outSlope: 0.000076834105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0034858324 + inSlope: 0.000129221 + outSlope: 0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0034936573 + inSlope: 0.000118743636 + outSlope: 0.00011525115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0034994604 + inSlope: 0.0000768341 + outSlope: 0.00008032658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0035026225 + inSlope: 0.00003841706 + outSlope: 0.00003841706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0035030514 + inSlope: 0.0000034924599 + outSlope: -0.0000034924599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0035011766 + inSlope: -0.000027939679 + outSlope: -0.000027939666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0034978697 + inSlope: -0.000045401957 + outSlope: -0.0000349246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.003494297 + inSlope: -0.00004190952 + outSlope: -0.00004190952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0034917092 + inSlope: -0.0000349246 + outSlope: -0.00002444722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0034911644 + inSlope: 0.0000069849198 + outSlope: 0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0034927346 + inSlope: 0.000027939679 + outSlope: 0.0000349246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0034955633 + inSlope: 0.000055879358 + outSlope: 0.0000523869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0034988238 + inSlope: 0.00004889444 + outSlope: 0.00004889444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0035016192 + inSlope: 0.00004540198 + outSlope: 0.000038417023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.003503108 + inSlope: 0.00002095474 + outSlope: 0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0035026192 + inSlope: -0.000017462315 + outSlope: -0.0000069849134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0034997456 + inSlope: -0.000048894395 + outSlope: -0.000052386946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0034943277 + inSlope: -0.00008731157 + outSlope: -0.00008381896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0034866421 + inSlope: -0.000115251074 + outSlope: -0.00012572866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0034771243 + inSlope: -0.00014668345 + outSlope: -0.00013271335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.003466712 + inSlope: -0.0001536681 + outSlope: -0.00014319098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0034563325 + inSlope: -0.00014319098 + outSlope: -0.00014668319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0034473063 + inSlope: -0.000048894395 + outSlope: -0.00004540202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0034502386 + inSlope: 0.00004540202 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08284172 + inSlope: 0 + outSlope: -0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.082841724 + inSlope: 0.1683086 + outSlope: 0.16897915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.060325388 + inSlope: 0.36220995 + outSlope: 0.36209825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.03456414 + inSlope: 0.40043148 + outSlope: 0.40031964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0069420934 + inSlope: 0.4178797 + outSlope: 0.41781694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.021144612 + inSlope: 0.41428956 + outSlope: 0.4143175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.048296794 + inSlope: 0.38975853 + outSlope: 0.3898144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.07312235 + inSlope: 0.34455213 + outSlope: 0.34455198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09424393 + inSlope: 0.27883786 + outSlope: 0.2786145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11030131 + inSlope: 0.19256027 + outSlope: 0.19278379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11994639 + inSlope: 0.08650125 + outSlope: 0.08650125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.121831246 + inSlope: -0.027492644 + outSlope: -0.027604403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.116270915 + inSlope: -0.12572856 + outSlope: -0.1256168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.10506362 + inSlope: -0.20395966 + outSlope: -0.20407142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.08907389 + inSlope: -0.26922676 + outSlope: -0.26900324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06916924 + inSlope: -0.3210828 + outSlope: -0.32119426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.046225917 + inSlope: -0.36003038 + outSlope: -0.3601428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.021131534 + inSlope: -0.3849812 + outSlope: -0.38503638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0051326957 + inSlope: -0.397714 + outSlope: -0.39837128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.031912364 + inSlope: -0.396185 + outSlope: -0.39691073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.057972208 + inSlope: -0.3809851 + outSlope: -0.38092992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.08273497 + inSlope: -0.35259905 + outSlope: -0.35248667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.1050056 + inSlope: -0.3108007 + outSlope: -0.31113654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.12418248 + inSlope: -0.25603944 + outSlope: -0.25648603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.13916539 + inSlope: -0.076889925 + outSlope: -0.07666655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.13444266 + inSlope: 0.071078606 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9965566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9965566 + inSlope: 0.014305114 + outSlope: 0.013411044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9981726 + inSlope: 0.02145767 + outSlope: 0.022351744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9993964 + inSlope: 0.013411046 + outSlope: 0.014305112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9999698 + inSlope: 0.0026822085 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9997703 + inSlope: -0.008940698 + outSlope: -0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99882674 + inSlope: -0.018775465 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99731666 + inSlope: -0.025033953 + outSlope: -0.025033941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99554265 + inSlope: -0.026822079 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99389166 + inSlope: -0.021457674 + outSlope: -0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9927738 + inSlope: -0.010728837 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.99254423 + inSlope: 0.003576279 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.99321103 + inSlope: 0.014305116 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.994459 + inSlope: 0.021457674 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9960185 + inSlope: 0.024139883 + outSlope: 0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9975986 + inSlope: 0.022351744 + outSlope: 0.021457653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99892473 + inSlope: 0.016093241 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9997705 + inSlope: 0.0080466345 + outSlope: 0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9999807 + inSlope: -0.0017881378 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9994846 + inSlope: -0.0125169875 + outSlope: -0.012516965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99831206 + inSlope: -0.021457653 + outSlope: -0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9965654 + inSlope: -0.029504327 + outSlope: -0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9944655 + inSlope: -0.03308055 + outSlope: -0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9922531 + inSlope: -0.03129247 + outSlope: -0.032186482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99026287 + inSlope: -0.010728827 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99091506 + inSlope: 0.009834776 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0004132125 + inSlope: 0 + outSlope: -0.000005238689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0004132126 + inSlope: 0.005294132 + outSlope: 0.005315523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0011204503 + inSlope: 0.011579249 + outSlope: 0.011580997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0019568433 + inSlope: 0.012782403 + outSlope: 0.012778908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0028242168 + inSlope: 0.012509989 + outSlope: 0.012509991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0036249093 + inSlope: 0.010784716 + outSlope: 0.010784716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.004262352 + inSlope: 0.0076275324 + outSlope: 0.0076135625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0046411077 + inSlope: 0.0030244703 + outSlope: 0.003017484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.004666053 + inSlope: -0.0018649728 + outSlope: -0.0018719585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00439189 + inSlope: -0.005322509 + outSlope: -0.005329494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0039559365 + inSlope: -0.0075506982 + outSlope: -0.0075367284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0033862856 + inSlope: -0.009324868 + outSlope: -0.009338838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0027112423 + inSlope: -0.01070439 + outSlope: -0.010697405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.001959477 + inSlope: -0.011626399 + outSlope: -0.0116368765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0011600616 + inSlope: -0.012136298 + outSlope: -0.012122328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00034238893 + inSlope: -0.01217166 + outSlope: -0.012175141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00046396995 + inSlope: -0.011785295 + outSlope: -0.011783133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0012294586 + inSlope: -0.010934901 + outSlope: -0.010936628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0019226696 + inSlope: -0.009679344 + outSlope: -0.009696824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0025206292 + inSlope: -0.007976785 + outSlope: -0.007994234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0029872516 + inSlope: -0.0058428803 + outSlope: -0.0058428906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0032997604 + inSlope: -0.0021024628 + outSlope: -0.0020989664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.003267445 + inSlope: 0.0036356475 + outSlope: 0.0036601012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0028131194 + inSlope: 0.008891811 + outSlope: 0.00891275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.002080804 + inSlope: 0.012080408 + outSlope: 0.012080429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.001201526 + inSlope: 0.013185794 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03156533 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.031565342 + inSlope: 0.00005587935 + outSlope: 0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.031548146 + inSlope: 0.00039115545 + outSlope: 0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.03150734 + inSlope: 0.000782311 + outSlope: 0.0008381902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.031441454 + inSlope: 0.0010617076 + outSlope: 0.0011734666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.031359226 + inSlope: 0.0012852253 + outSlope: 0.0012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.031278968 + inSlope: 0.0010617079 + outSlope: 0.0010058285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.031225007 + inSlope: 0.00044703486 + outSlope: 0.00047497434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.031221299 + inSlope: -0.00027939666 + outSlope: -0.00030733648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.031261045 + inSlope: -0.000782311 + outSlope: -0.00072643167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.031319197 + inSlope: -0.0009499491 + outSlope: -0.0009499491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03138589 + inSlope: -0.0010058285 + outSlope: -0.0010058285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.031451397 + inSlope: -0.0009499491 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.031507168 + inSlope: -0.00072643167 + outSlope: -0.00072643167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.031546723 + inSlope: -0.00044703486 + outSlope: -0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03156618 + inSlope: -0.000111758716 + outSlope: -0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.03156463 + inSlope: 0.00016763792 + outSlope: 0.00016763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.031544097 + inSlope: 0.00039115586 + outSlope: 0.00044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.031509433 + inSlope: 0.0005587931 + outSlope: 0.0006146735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.031467244 + inSlope: 0.0006705529 + outSlope: 0.0006146724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.031426374 + inSlope: 0.0005587931 + outSlope: 0.00055879407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.031395104 + inSlope: 0.00016763822 + outSlope: 0.00022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.031398494 + inSlope: -0.00039115516 + outSlope: -0.00039115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.03144244 + inSlope: -0.0007823117 + outSlope: -0.0008381896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.031499382 + inSlope: -0.0007823103 + outSlope: -0.0007823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.031545173 + inSlope: -0.00050291466 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013083074 + inSlope: 0 + outSlope: 0.00016763805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.013083074 + inSlope: -0.16762409 + outSlope: -0.16829464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.035475507 + inSlope: -0.36656854 + outSlope: -0.36668035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.061957218 + inSlope: -0.40456656 + outSlope: -0.40462235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08941987 + inSlope: -0.3960728 + outSlope: -0.3960729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11477123 + inSlope: -0.3414229 + outSlope: -0.34153464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.13495381 + inSlope: -0.24162234 + outSlope: -0.24095179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.14694595 + inSlope: -0.09566546 + outSlope: -0.0954419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14773573 + inSlope: 0.059008576 + outSlope: 0.05923212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13905522 + inSlope: 0.16830863 + outSlope: 0.16875567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12525214 + inSlope: 0.23916365 + outSlope: 0.2384931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10721599 + inSlope: 0.29526654 + outSlope: 0.29571357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.08584289 + inSlope: 0.33885244 + outSlope: 0.33874068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.06204064 + inSlope: 0.36813322 + outSlope: 0.3684126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.03672967 + inSlope: 0.38428235 + outSlope: 0.38377944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.010840682 + inSlope: 0.38537198 + outSlope: 0.38549736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.014690108 + inSlope: 0.37313408 + outSlope: 0.37307885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.03892686 + inSlope: 0.3462288 + outSlope: 0.34628406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.060875196 + inSlope: 0.3064421 + outSlope: 0.30705735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.07980767 + inSlope: 0.25257492 + outSlope: 0.2530215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.09458181 + inSlope: 0.18496051 + outSlope: 0.18496084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.104476385 + inSlope: 0.0664965 + outSlope: 0.06649638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.103453204 + inSlope: -0.11511137 + outSlope: -0.11589389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.089068465 + inSlope: -0.2814087 + outSlope: -0.2821905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.065882005 + inSlope: -0.38254973 + outSlope: -0.38255042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.03804248 + inSlope: -0.41747504 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.999416 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.999416 + inSlope: -0.0017881392 + outSlope: -0.0026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9988718 + inSlope: -0.013411044 + outSlope: -0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99757946 + inSlope: -0.025033953 + outSlope: -0.025928017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99549365 + inSlope: -0.03486871 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9928902 + inSlope: -0.03933907 + outSlope: -0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9903489 + inSlope: -0.03308058 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.98864067 + inSlope: -0.014305116 + outSlope: -0.014305109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.98852295 + inSlope: 0.008940693 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9897813 + inSlope: 0.024139883 + outSlope: 0.023245813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99162257 + inSlope: 0.03039837 + outSlope: 0.03039837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9937344 + inSlope: 0.031292442 + outSlope: 0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9958084 + inSlope: 0.029504301 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99757427 + inSlope: 0.023245813 + outSlope: 0.022351744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9988265 + inSlope: 0.014305116 + outSlope: 0.014305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99944276 + inSlope: 0.004470349 + outSlope: 0.0044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99939364 + inSlope: -0.0053644134 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99874324 + inSlope: -0.013411058 + outSlope: -0.013411034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9976461 + inSlope: -0.018775448 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9963103 + inSlope: -0.020563623 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99501646 + inSlope: -0.017881379 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.99402624 + inSlope: -0.0062584938 + outSlope: -0.0071525513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99413323 + inSlope: 0.012516965 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99552506 + inSlope: 0.025033975 + outSlope: 0.025927998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9973279 + inSlope: 0.025927998 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99877733 + inSlope: 0.016093269 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11943448 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.119434476 + inSlope: -0.024698673 + outSlope: -0.025033949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.116129264 + inSlope: -0.10304152 + outSlope: -0.103153296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.10568059 + inSlope: -0.22027643 + outSlope: -0.22072342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.086712874 + inSlope: -0.33471727 + outSlope: -0.33482912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.061017122 + inSlope: -0.39640817 + outSlope: -0.39646405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.033846892 + inSlope: -0.4104339 + outSlope: -0.41054565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.006252187 + inSlope: -0.40921152 + outSlope: -0.4091834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.020760056 + inSlope: -0.39302728 + outSlope: -0.3926363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04618811 + inSlope: -0.36131594 + outSlope: -0.36181885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06905242 + inSlope: -0.31605366 + outSlope: -0.31605366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08840587 + inSlope: -0.2563745 + outSlope: -0.25682154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.10333416 + inSlope: -0.18384309 + outSlope: -0.18350782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.11294554 + inSlope: -0.0974536 + outSlope: -0.09767712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.11635022 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11294554 + inSlope: 0.09778888 + outSlope: 0.09745351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10333416 + inSlope: 0.18384293 + outSlope: 0.18429029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.08840586 + inSlope: 0.25682175 + outSlope: 0.2565978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06911884 + inSlope: 0.31683567 + outSlope: 0.31728327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.046188097 + inSlope: 0.36237797 + outSlope: 0.3629361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.020842494 + inSlope: 0.3935021 + outSlope: 0.3935028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0062522106 + inSlope: 0.40969384 + outSlope: 0.4096163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.033760805 + inSlope: 0.41071293 + outSlope: 0.41132832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.061017137 + inSlope: 0.39635265 + outSlope: 0.3970225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.08663854 + inSlope: 0.33427003 + outSlope: 0.33438239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.105680615 + inSlope: 0.28442618 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04192222 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04192222 + inSlope: 0.002235174 + outSlope: 0.002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.042216394 + inSlope: 0.00944361 + outSlope: 0.009443612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.04313556 + inSlope: 0.020675363 + outSlope: 0.020731237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04476264 + inSlope: 0.031460073 + outSlope: 0.03157184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.046882696 + inSlope: 0.036489222 + outSlope: 0.036489222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.04902056 + inSlope: 0.036321584 + outSlope: 0.036321584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.051083744 + inSlope: 0.034589324 + outSlope: 0.034421667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05299832 + inSlope: 0.031460065 + outSlope: 0.03157184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05470554 + inSlope: 0.027492644 + outSlope: 0.027380886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.056161344 + inSlope: 0.02263114 + outSlope: 0.022519382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05733432 + inSlope: 0.017210843 + outSlope: 0.017266722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0582015 + inSlope: 0.011399389 + outSlope: 0.011511148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.05874229 + inSlope: 0.005587936 + outSlope: 0.0056438153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.05893054 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05874229 + inSlope: -0.0051967804 + outSlope: -0.0050291377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0582015 + inSlope: -0.009499482 + outSlope: -0.009275981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.057334326 + inSlope: -0.013299299 + outSlope: -0.013131637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.05616547 + inSlope: -0.016652035 + outSlope: -0.016875582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.054705538 + inSlope: -0.019893069 + outSlope: -0.019948913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.053004004 + inSlope: -0.022742879 + outSlope: -0.02268704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.05108374 + inSlope: -0.024866337 + outSlope: -0.025145689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04902717 + inSlope: -0.02671031 + outSlope: -0.026766237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0468827 + inSlope: -0.027492668 + outSlope: -0.02749262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.044768915 + inSlope: -0.02503393 + outSlope: -0.024922216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.04313557 + inSlope: -0.022240004 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1741824 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17418234 + inSlope: -0.033080578 + outSlope: -0.032633543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16982035 + inSlope: -0.13589859 + outSlope: -0.13567509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.15602742 + inSlope: -0.29057267 + outSlope: -0.29057258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13097578 + inSlope: -0.44167036 + outSlope: -0.44189397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09701153 + inSlope: -0.5239249 + outSlope: -0.52370137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.06106562 + inSlope: -0.54342675 + outSlope: -0.54342675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.024524048 + inSlope: -0.5426165 + outSlope: -0.54275596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0112792915 + inSlope: -0.52223426 + outSlope: -0.52174556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.045012828 + inSlope: -0.4810654 + outSlope: -0.48151243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07537022 + inSlope: -0.42110685 + outSlope: -0.42088333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10108484 + inSlope: -0.34186992 + outSlope: -0.34231696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.120931685 + inSlope: -0.24508686 + outSlope: -0.24486335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.13371535 + inSlope: -0.12964012 + outSlope: -0.12986363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.13824478 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.13371535 + inSlope: 0.12964012 + outSlope: 0.12941648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.120931685 + inSlope: 0.24430433 + outSlope: 0.24419302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.101084836 + inSlope: 0.34019384 + outSlope: 0.3401932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.07545847 + inSlope: 0.41943008 + outSlope: 0.42043665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.045012824 + inSlope: 0.4795012 + outSlope: 0.48056206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0113885915 + inSlope: 0.5209209 + outSlope: 0.5209078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.024524095 + inSlope: 0.5421979 + outSlope: 0.5422528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.060951672 + inSlope: 0.54353803 + outSlope: 0.5447125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09701159 + inSlope: 0.5248194 + outSlope: 0.52571255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.1308776 + inSlope: 0.44278765 + outSlope: 0.4423414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.15602745 + inSlope: 0.37618017 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97654414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.97654414 + inSlope: 0.008940696 + outSlope: 0.008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.97769773 + inSlope: 0.034868717 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.98113525 + inSlope: 0.06884337 + outSlope: 0.06884335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98657113 + inSlope: 0.08761881 + outSlope: 0.084936626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99230427 + inSlope: 0.07420779 + outSlope: 0.07420779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9963545 + inSlope: 0.045597557 + outSlope: 0.046491627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9983736 + inSlope: 0.014305116 + outSlope: 0.014305109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9983151 + inSlope: -0.016093249 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9964175 + inSlope: -0.03933907 + outSlope: -0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9931752 + inSlope: -0.056326393 + outSlope: -0.055432323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.98928213 + inSlope: -0.058114532 + outSlope: -0.05990267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9855507 + inSlope: -0.050067905 + outSlope: -0.049173836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9828086 + inSlope: -0.029504301 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.98177296 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9828086 + inSlope: 0.028610231 + outSlope: 0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9855507 + inSlope: 0.05006786 + outSlope: 0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.98928213 + inSlope: 0.059008654 + outSlope: 0.05811448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99316365 + inSlope: 0.054538205 + outSlope: 0.053644232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9964175 + inSlope: 0.040233172 + outSlope: 0.039339032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99831176 + inSlope: 0.014305103 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9983736 + inSlope: -0.014305129 + outSlope: -0.014305103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99636406 + inSlope: -0.046491586 + outSlope: -0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99230427 + inSlope: -0.07331378 + outSlope: -0.07510179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9865903 + inSlope: -0.08851282 + outSlope: -0.08672484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.98113525 + inSlope: -0.08940705 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000035323403 + inSlope: 0 + outSlope: -0.00024301349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000002424665 + inSlope: 0.2411761 + outSlope: 0.24211127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03228362 + inSlope: 0.52616 + outSlope: 0.52616006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0704897 + inSlope: 0.5785749 + outSlope: 0.57879823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1099332 + inSlope: 0.5621462 + outSlope: 0.5622581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14601362 + inSlope: 0.47922137 + outSlope: 0.47877434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.17434725 + inSlope: 0.33304098 + outSlope: 0.33304098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.1907937 + inSlope: 0.12673439 + outSlope: 0.12584026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.19131072 + inSlope: -0.093206726 + outSlope: -0.09320677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.178331 + inSlope: -0.25078657 + outSlope: -0.25145712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15787739 + inSlope: -0.35427514 + outSlope: -0.35427514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13119316 + inSlope: -0.4385412 + outSlope: -0.43898824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.099549934 + inSlope: -0.5039201 + outSlope: -0.50369656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.06427514 + inSlope: -0.54784125 + outSlope: -0.54840004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.026758343 + inSlope: -0.5713664 + outSlope: -0.5707518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.011562483 + inSlope: -0.5717017 + outSlope: -0.57174313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.04922895 + inSlope: -0.55080235 + outSlope: -0.55069155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.084796876 + inSlope: -0.5077203 + outSlope: -0.5074959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.11677495 + inSlope: -0.44546986 + outSlope: -0.4463647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.14411321 + inSlope: -0.3636632 + outSlope: -0.3643331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.16521777 + inSlope: -0.26263276 + outSlope: -0.2626332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.17914522 + inSlope: -0.08828946 + outSlope: -0.08784227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.17701615 + inSlope: 0.17948434 + outSlope: 0.18015522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.15512124 + inSlope: 0.4258011 + outSlope: 0.42647088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.12006535 + inSlope: 0.5774568 + outSlope: 0.577346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.07789178 + inSlope: 0.6322196 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.024505937 + inSlope: 0 + outSlope: -0.000083819024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.024505932 + inSlope: 0.08094124 + outSlope: 0.08127651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.035089083 + inSlope: 0.18132849 + outSlope: 0.181105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0476768 + inSlope: 0.20043926 + outSlope: 0.20027158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.060610607 + inSlope: 0.1934543 + outSlope: 0.19339846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0722983 + inSlope: 0.16137959 + outSlope: 0.16160311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.08125645 + inSlope: 0.106729575 + outSlope: 0.106617816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.086107016 + inSlope: 0.03241003 + outSlope: 0.03196298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.08550939 + inSlope: -0.043809395 + outSlope: -0.04447997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0802174 + inSlope: -0.09823591 + outSlope: -0.09845943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07221734 + inSlope: -0.13411047 + outSlope: -0.13411047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.061969027 + inSlope: -0.16283245 + outSlope: -0.16288833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.049940713 + inSlope: -0.18507244 + outSlope: -0.1849048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.036621578 + inSlope: -0.19971283 + outSlope: -0.19988047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.022525502 + inSlope: -0.2073683 + outSlope: -0.20711684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00818705 + inSlope: -0.20682347 + outSlope: -0.20679535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.005848411 + inSlope: -0.19865793 + outSlope: -0.19863033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.019037616 + inSlope: -0.18247421 + outSlope: -0.182418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.030817468 + inSlope: -0.1593119 + outSlope: -0.15942395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.04078518 + inSlope: -0.12869027 + outSlope: -0.12880181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.04833914 + inSlope: -0.09080388 + outSlope: -0.09080404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.053114578 + inSlope: -0.022798799 + outSlope: -0.02263112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.051423743 + inSlope: 0.0856071 + outSlope: 0.08605429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.041658193 + inSlope: 0.18741953 + outSlope: 0.1879221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.026558997 + inSlope: 0.2506187 + outSlope: 0.25067502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.008610872 + inSlope: 0.27312458 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000060090834 + inSlope: 0 + outSlope: -0.00028426966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.399327e-10 + inSlope: 0.28129593 + outSlope: 0.28237185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03751426 + inSlope: 0.6096437 + outSlope: 0.60969967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08088711 + inSlope: 0.66395855 + outSlope: 0.6638466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12545244 + inSlope: 0.6473063 + outSlope: 0.64775354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16663618 + inSlope: 0.563711 + outSlope: 0.5625934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.20009953 + inSlope: 0.41462484 + outSlope: 0.41484836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.22176108 + inSlope: 0.20585956 + outSlope: 0.20608298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22761583 + inSlope: -0.007376072 + outSlope: -0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.22067116 + inSlope: -0.15065075 + outSlope: -0.1513213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.20728543 + inSlope: -0.24005772 + outSlope: -0.24005772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.18832393 + inSlope: -0.31605366 + outSlope: -0.31627718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.16468786 + inSlope: -0.37841502 + outSlope: -0.37841502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.13734722 + inSlope: -0.4255772 + outSlope: -0.42647126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.107354656 + inSlope: -0.45809898 + outSlope: -0.45731667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07584096 + inSlope: -0.47206882 + outSlope: -0.4720684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.04399596 + inSlope: -0.46865976 + outSlope: -0.46871647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.013040813 + inSlope: -0.44635075 + outSlope: -0.44629407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.015715301 + inSlope: -0.406969 + outSlope: -0.4075844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.041326143 + inSlope: -0.34907866 + outSlope: -0.34952506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.062306136 + inSlope: -0.27308217 + outSlope: -0.2732503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.07776977 + inSlope: -0.15053913 + outSlope: -0.15031534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.08238059 + inSlope: 0.024810413 + outSlope: 0.024922216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.07447013 + inSlope: 0.18205512 + outSlope: 0.18272534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.058165736 + inSlope: 0.2797877 + outSlope: 0.27989995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.037401155 + inSlope: 0.3147687 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9996997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9996997 + inSlope: -0.0017881392 + outSlope: -0.0026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99815786 + inSlope: -0.04649162 + outSlope: -0.045597557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9930838 + inSlope: -0.10550023 + outSlope: -0.10550021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98412526 + inSlope: -0.16003844 + outSlope: -0.1564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9724636 + inSlope: -0.17881395 + outSlope: -0.18149616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9607084 + inSlope: -0.1564622 + outSlope: -0.1564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.95236826 + inSlope: -0.07689 + outSlope: -0.07599589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9509361 + inSlope: 0.025033941 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.95554566 + inSlope: 0.090301044 + outSlope: 0.090301044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.96275234 + inSlope: 0.11980534 + outSlope: 0.12069941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.97133017 + inSlope: 0.13142826 + outSlope: 0.13142826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9800375 + inSlope: 0.12338162 + outSlope: 0.12606384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9877567 + inSlope: 0.10281802 + outSlope: 0.10192395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9936053 + inSlope: 0.06884337 + outSlope: 0.06973744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99701923 + inSlope: 0.031292442 + outSlope: 0.030398343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9978009 + inSlope: -0.008940689 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.996131 + inSlope: -0.040233172 + outSlope: -0.04112717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9925558 + inSlope: -0.062584825 + outSlope: -0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9878563 + inSlope: -0.07241971 + outSlope: -0.072419584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9830993 + inSlope: -0.0661611 + outSlope: -0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9793047 + inSlope: -0.028610257 + outSlope: -0.030398343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.979405 + inSlope: 0.036656827 + outSlope: 0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9842034 + inSlope: 0.090301126 + outSlope: 0.08761875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99070466 + inSlope: 0.09387723 + outSlope: 0.092983335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99622273 + inSlope: 0.061690867 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0008874514 + inSlope: 0 + outSlope: 0.000007858034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000887453 + inSlope: -0.007789931 + outSlope: -0.007822236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0019280685 + inSlope: -0.017139245 + outSlope: -0.017139247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0031721757 + inSlope: -0.019026922 + outSlope: -0.019037394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004465354 + inSlope: -0.018607821 + outSlope: -0.018614812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0056539373 + inSlope: -0.015897678 + outSlope: -0.015904663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0065857945 + inSlope: -0.0109314 + outSlope: -0.010924415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0071103172 + inSlope: -0.0036810527 + outSlope: -0.003681051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0070771365 + inSlope: 0.0040791915 + outSlope: 0.004093163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0065651378 + inSlope: 0.009674114 + outSlope: 0.009681099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.005786034 + inSlope: 0.013334212 + outSlope: 0.013320242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.004787636 + inSlope: 0.016246924 + outSlope: 0.016267879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0036182126 + inSlope: 0.018464636 + outSlope: 0.018443681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0023267034 + inSlope: 0.019910514 + outSlope: 0.019920992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00096273184 + inSlope: 0.020631706 + outSlope: 0.020616863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00042358405 + inSlope: 0.020571025 + outSlope: 0.020576246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0017819323 + inSlope: 0.019776037 + outSlope: 0.01978131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.003062163 + inSlope: 0.018209701 + outSlope: 0.018206177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0042112363 + inSlope: 0.015953543 + outSlope: 0.015974525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0051901503 + inSlope: 0.0129500525 + outSlope: 0.012963999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0059384964 + inSlope: 0.009206116 + outSlope: 0.009192162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.006417436 + inSlope: 0.0025215582 + outSlope: 0.002500599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.006274544 + inSlope: -0.007913907 + outSlope: -0.007941861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0053593307 + inSlope: -0.017532164 + outSlope: -0.017574042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0039351294 + inSlope: -0.023371521 + outSlope: -0.023385532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0022401782 + inSlope: -0.02542513 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05084388 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.050843894 + inSlope: -0.00016763805 + outSlope: -0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.050815072 + inSlope: -0.0006705522 + outSlope: -0.00061467296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.050752595 + inSlope: -0.0012293459 + outSlope: -0.0011734662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.050655205 + inSlope: -0.001620501 + outSlope: -0.0016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05053635 + inSlope: -0.0017881395 + outSlope: -0.0017322601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.050423365 + inSlope: -0.001396984 + outSlope: -0.001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.050352085 + inSlope: -0.00050291425 + outSlope: -0.000502914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05035676 + inSlope: 0.00061467267 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.050426062 + inSlope: 0.0012293459 + outSlope: 0.0012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.050521392 + inSlope: 0.001564622 + outSlope: 0.001564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05062576 + inSlope: 0.001564622 + outSlope: 0.0015087427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.05072275 + inSlope: 0.0012852253 + outSlope: 0.0013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.050798375 + inSlope: 0.00089406973 + outSlope: 0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.05084252 + inSlope: 0.0003911555 + outSlope: 0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05084987 + inSlope: -0.00022351743 + outSlope: -0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.050820403 + inSlope: -0.000726431 + outSlope: -0.0006705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.050759356 + inSlope: -0.0011175881 + outSlope: -0.0010617068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.050676968 + inSlope: -0.0012852241 + outSlope: -0.0013969851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.050586067 + inSlope: -0.0013411058 + outSlope: -0.0013411033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.050503694 + inSlope: -0.0010617068 + outSlope: -0.0010617088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.050445072 + inSlope: -0.00033527645 + outSlope: -0.00027939654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.050463032 + inSlope: 0.0009499482 + outSlope: 0.0010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.050568435 + inSlope: 0.0018998999 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.050699137 + inSlope: 0.0017881378 + outSlope: 0.0018440204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.050802264 + inSlope: 0.0011175881 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.017429583 + inSlope: 0 + outSlope: 0.00016763805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.017429583 + inSlope: -0.15299766 + outSlope: -0.15361233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.037866913 + inSlope: -0.3366172 + outSlope: -0.33656138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.062300753 + inSlope: -0.37372115 + outSlope: -0.37383282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.087698326 + inSlope: -0.36556268 + outSlope: -0.365451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11104168 + inSlope: -0.31236562 + outSlope: -0.3121421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.12934303 + inSlope: -0.21435322 + outSlope: -0.21457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.13964449 + inSlope: -0.07241965 + outSlope: -0.072196096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.13899282 + inSlope: 0.08024272 + outSlope: 0.08024276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12893736 + inSlope: 0.19021334 + outSlope: 0.19021334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.113636 + inSlope: 0.26185068 + outSlope: 0.26173893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09402781 + inSlope: 0.31907114 + outSlope: 0.31951818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.07106074 + inSlope: 0.36265704 + outSlope: 0.36221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.045695946 + inSlope: 0.39098787 + outSlope: 0.39126727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.018908009 + inSlope: 0.40518123 + outSlope: 0.4049577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.008318763 + inSlope: 0.4040357 + outSlope: 0.4041052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.034996264 + inSlope: 0.38841707 + outSlope: 0.38847363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.06013954 + inSlope: 0.3576282 + outSlope: 0.3575717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.082706936 + inSlope: 0.31337115 + outSlope: 0.313707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.10193249 + inSlope: 0.2542513 + outSlope: 0.25458613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.11662971 + inSlope: 0.18071368 + outSlope: 0.18060225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.12603594 + inSlope: 0.049620915 + outSlope: 0.04917379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.12322959 + inSlope: -0.15545623 + outSlope: -0.15590355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.10525512 + inSlope: -0.3443289 + outSlope: -0.3451106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.077284284 + inSlope: -0.4591044 + outSlope: -0.45921698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.043996003 + inSlope: -0.4993384 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9985541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9985541 + inSlope: -0.0026822088 + outSlope: -0.0026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9979881 + inSlope: -0.0125169745 + outSlope: -0.012516976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9967611 + inSlope: -0.024139883 + outSlope: -0.023245808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9948483 + inSlope: -0.032186504 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99251395 + inSlope: -0.03486872 + outSlope: -0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9902952 + inSlope: -0.027716162 + outSlope: -0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9888951 + inSlope: -0.009834767 + outSlope: -0.010728832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9889869 + inSlope: 0.011622901 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9903481 + inSlope: 0.025033953 + outSlope: 0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9922202 + inSlope: 0.03039837 + outSlope: 0.03039837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.99427 + inSlope: 0.03039837 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.99617493 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9976603 + inSlope: 0.017881395 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9985272 + inSlope: 0.008046628 + outSlope: 0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9986716 + inSlope: -0.003576279 + outSlope: -0.0035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99809283 + inSlope: -0.014305103 + outSlope: -0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9968938 + inSlope: -0.021457693 + outSlope: -0.021457653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99527574 + inSlope: -0.025927998 + outSlope: -0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99349076 + inSlope: -0.025928045 + outSlope: -0.026822068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9918728 + inSlope: -0.020563586 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9907215 + inSlope: -0.0062584938 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99107444 + inSlope: 0.018775448 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9931443 + inSlope: 0.03665689 + outSlope: 0.035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99571145 + inSlope: 0.035762757 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9977367 + inSlope: 0.022351762 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1397538 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1397538 + inSlope: 0.02838671 + outSlope: 0.028833745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.13592127 + inSlope: 0.11913478 + outSlope: 0.11980534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.12379943 + inSlope: 0.2558157 + outSlope: 0.2557039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10177287 + inSlope: 0.38869673 + outSlope: 0.38892034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07189708 + inSlope: 0.46089295 + outSlope: 0.4610047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0402743 + inSlope: 0.47760087 + outSlope: 0.47765675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00813757 + inSlope: 0.47631565 + outSlope: 0.47630146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.023326244 + inSlope: 0.4573444 + outSlope: 0.45695344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05293734 + inSlope: 0.42054805 + outSlope: 0.42077157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.079547055 + inSlope: 0.36757442 + outSlope: 0.3673509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1020524 + inSlope: 0.2980605 + outSlope: 0.29828402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.11939687 + inSlope: 0.21334739 + outSlope: 0.21290036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.13055561 + inSlope: 0.11309982 + outSlope: 0.11309982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13450666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13055563 + inSlope: -0.11309982 + outSlope: -0.11354675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.11939687 + inSlope: -0.21357071 + outSlope: -0.21401814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.1020524 + inSlope: -0.29861957 + outSlope: -0.29850727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.07962434 + inSlope: -0.36869168 + outSlope: -0.36969817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.052937333 + inSlope: -0.42211306 + outSlope: -0.4228946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.02342226 + inSlope: -0.45848972 + outSlope: -0.45854643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.008137601 + inSlope: -0.477266 + outSlope: -0.477335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.040174086 + inSlope: -0.478271 + outSlope: -0.47911003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.07189709 + inSlope: -0.46111688 + outSlope: -0.46212187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.10168649 + inSlope: -0.38880822 + outSlope: -0.38847363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.12379943 + inSlope: -0.3300238 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04035337 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.040353395 + inSlope: -0.003911555 + outSlope: -0.0037997959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04086443 + inSlope: -0.016205013 + outSlope: -0.016316773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.042466074 + inSlope: -0.035259876 + outSlope: -0.035539262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.045319814 + inSlope: -0.053700052 + outSlope: -0.05397946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.049075834 + inSlope: -0.062640764 + outSlope: -0.062584884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.052910227 + inSlope: -0.06286428 + outSlope: -0.06286428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.056660023 + inSlope: -0.060461465 + outSlope: -0.06040556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06018865 + inSlope: -0.05593521 + outSlope: -0.05571172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.063380376 + inSlope: -0.049397353 + outSlope: -0.049173836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06614087 + inSlope: -0.041238967 + outSlope: -0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06839501 + inSlope: -0.031739477 + outSlope: -0.031962994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.070081115 + inSlope: -0.02179295 + outSlope: -0.02179295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.07114199 + inSlope: -0.010840596 + outSlope: -0.011064113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.07151311 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07114199 + inSlope: 0.010281802 + outSlope: 0.010058275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.070081115 + inSlope: 0.019222481 + outSlope: 0.019334275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.06839501 + inSlope: 0.027157392 + outSlope: 0.02671031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06614875 + inSlope: 0.03386286 + outSlope: 0.033862922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.06338035 + inSlope: 0.039897896 + outSlope: 0.040009584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.060199205 + inSlope: 0.044926964 + outSlope: 0.044871163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.05666002 + inSlope: 0.048559204 + outSlope: 0.048614997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.05292215 + inSlope: 0.050794292 + outSlope: 0.0510179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.04907582 + inSlope: 0.051353175 + outSlope: 0.051297206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.045330852 + inSlope: 0.045597516 + outSlope: 0.04554172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.042466067 + inSlope: 0.040233172 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17399797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17399797 + inSlope: -0.034421682 + outSlope: -0.034421682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16937268 + inSlope: -0.1439452 + outSlope: -0.14416875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.15474212 + inSlope: -0.3077835 + outSlope: -0.3086775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12815174 + inSlope: -0.46849242 + outSlope: -0.46871606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09207554 + inSlope: -0.5564467 + outSlope: -0.5563349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.05387698 + inSlope: -0.5776808 + outSlope: -0.5777367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0150443055 + inSlope: -0.5770242 + outSlope: -0.5769401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02298816 + inSlope: -0.5549935 + outSlope: -0.55435115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.058792815 + inSlope: -0.5108491 + outSlope: -0.5111844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09097804 + inSlope: -0.44681135 + outSlope: -0.4461408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.11820618 + inSlope: -0.36209825 + outSlope: -0.36243352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.13919505 + inSlope: -0.25928023 + outSlope: -0.25860968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.15270059 + inSlope: -0.13679267 + outSlope: -0.13746323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.15748306 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.15270062 + inSlope: 0.13679267 + outSlope: 0.13656902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.13919502 + inSlope: 0.2579389 + outSlope: 0.25793934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.118206166 + inSlope: 0.35975164 + outSlope: 0.35952747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.09107152 + inSlope: 0.44390523 + outSlope: 0.44513535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.058792785 + inSlope: 0.50844675 + outSlope: 0.509284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.023104245 + inSlope: 0.5525905 + outSlope: 0.55273116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.015044339 + inSlope: 0.57585126 + outSlope: 0.57583624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.053755898 + inSlope: 0.5776803 + outSlope: 0.57868713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09207557 + inSlope: 0.55778825 + outSlope: 0.5584578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.12804747 + inSlope: 0.47028026 + outSlope: 0.47005758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.15474212 + inSlope: 0.39987305 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97394305 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9739431 + inSlope: 0.011622905 + outSlope: 0.009834765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.97527874 + inSlope: 0.04202127 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9792472 + inSlope: 0.07867814 + outSlope: 0.079572186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98547727 + inSlope: 0.09834765 + outSlope: 0.09924174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99193984 + inSlope: 0.08314849 + outSlope: 0.08046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9963312 + inSlope: 0.047385696 + outSlope: 0.046491627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99824697 + inSlope: 0.008046628 + outSlope: 0.009834763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9976496 + inSlope: -0.025928011 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9948487 + inSlope: -0.055432323 + outSlope: -0.055432323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99046487 + inSlope: -0.07331372 + outSlope: -0.07331372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.98536015 + inSlope: -0.07689 + outSlope: -0.07599593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98053956 + inSlope: -0.064373024 + outSlope: -0.064373024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9770244 + inSlope: -0.03755093 + outSlope: -0.038445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9757013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9770244 + inSlope: 0.038445 + outSlope: 0.036656827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.98053956 + inSlope: 0.065267034 + outSlope: 0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.98536015 + inSlope: 0.07420785 + outSlope: 0.076889925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9904496 + inSlope: 0.07420772 + outSlope: 0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9948487 + inSlope: 0.054538302 + outSlope: 0.054538205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99764407 + inSlope: 0.025927998 + outSlope: 0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.99824697 + inSlope: -0.010728846 + outSlope: -0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99634117 + inSlope: -0.04738565 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9919398 + inSlope: -0.081360415 + outSlope: -0.08314841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.98549926 + inSlope: -0.09834758 + outSlope: -0.09834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9792472 + inSlope: -0.10281811 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0011789581 + inSlope: 0 + outSlope: 0.0001938315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0011790025 + inSlope: -0.1955201 + outSlope: -0.19630416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.027339282 + inSlope: -0.42649916 + outSlope: -0.42630363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.058207832 + inSlope: -0.46905133 + outSlope: -0.4690512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.090136684 + inSlope: -0.45776358 + outSlope: -0.45742843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11952015 + inSlope: -0.3936142 + outSlope: -0.3933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.14285953 + inSlope: -0.2780557 + outSlope: -0.27783218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.15677054 + inSlope: -0.112652786 + outSlope: -0.11242922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.15789796 + inSlope: 0.06370244 + outSlope: 0.06414951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14825128 + inSlope: 0.18887223 + outSlope: 0.18887223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.13275975 + inSlope: 0.26978555 + outSlope: 0.26978555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1123767 + inSlope: 0.3359467 + outSlope: 0.33617023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.08808104 + inSlope: 0.38746747 + outSlope: 0.38746747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.060892913 + inSlope: 0.42278323 + outSlope: 0.42328614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.031876326 + inSlope: 0.44245276 + outSlope: 0.4420616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0021298518 + inSlope: 0.44453076 + outSlope: 0.44449195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.027230702 + inSlope: 0.42999128 + outSlope: 0.4301038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.055093497 + inSlope: 0.39869958 + outSlope: 0.39853123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.080295734 + inSlope: 0.35203964 + outSlope: 0.35293433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.102005266 + inSlope: 0.29001412 + outSlope: 0.2903489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.118938535 + inSlope: 0.21234137 + outSlope: 0.21211824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.13031189 + inSlope: 0.078678206 + outSlope: 0.07823103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.12942645 + inSlope: -0.12539317 + outSlope: -0.12539339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.11355503 + inSlope: -0.31225413 + outSlope: -0.31258884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.08769016 + inSlope: -0.42714143 + outSlope: -0.42725396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.056432478 + inSlope: -0.46849295 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04502419 + inSlope: 0 + outSlope: 0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.045024212 + inSlope: -0.0638701 + outSlope: -0.06392598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.053400155 + inSlope: -0.14008954 + outSlope: -0.14014544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.06312921 + inSlope: -0.15277417 + outSlope: -0.15288588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.07307963 + inSlope: -0.14774498 + outSlope: -0.14796855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08217581 + inSlope: -0.12639911 + outSlope: -0.12628736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.08941595 + inSlope: -0.089406975 + outSlope: -0.089406975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.09385891 + inSlope: -0.038668517 + outSlope: -0.038892016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09456876 + inSlope: 0.012516971 + outSlope: 0.012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09217625 + inSlope: 0.04693866 + outSlope: 0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.08812243 + inSlope: 0.069402166 + outSlope: 0.069402166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08263525 + inSlope: 0.08806587 + outSlope: 0.08817763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.07595148 + inSlope: 0.10348857 + outSlope: 0.103153296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0683265 + inSlope: 0.1147762 + outSlope: 0.1147762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.060039327 + inSlope: 0.122208156 + outSlope: 0.12198464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0513928 + inSlope: 0.12500213 + outSlope: 0.12522553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.04271014 + inSlope: 0.12354915 + outSlope: 0.12343761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0343289 + inSlope: 0.11678796 + outSlope: 0.11695539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.02661683 + inSlope: 0.10561189 + outSlope: 0.1056959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.019851591 + inSlope: 0.08907177 + outSlope: 0.089295134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.014458818 + inSlope: 0.06743235 + outSlope: 0.06747439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.010709835 + inSlope: 0.02925287 + outSlope: 0.029280758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.010538105 + inSlope: -0.030146886 + outSlope: -0.03034252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.014669906 + inSlope: -0.08590062 + outSlope: -0.08609604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.021610066 + inSlope: -0.11983318 + outSlope: -0.11986133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.029975785 + inSlope: -0.13064605 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026150394 + inSlope: 0 + outSlope: -0.0002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.026150389 + inSlope: 0.20094214 + outSlope: 0.20169652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.052932143 + inSlope: 0.44127923 + outSlope: 0.44111165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08471581 + inSlope: 0.48760328 + outSlope: 0.48737964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11758436 + inSlope: 0.4747509 + outSlope: 0.47486278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1476888 + inSlope: 0.4052371 + outSlope: 0.40434304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.17131431 + inSlope: 0.27984384 + outSlope: 0.2793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.18488058 + inSlope: 0.10170043 + outSlope: 0.10147687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.18484077 + inSlope: -0.08761879 + outSlope: -0.0871718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.17320293 + inSlope: -0.22195281 + outSlope: -0.22239985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15511416 + inSlope: -0.31046572 + outSlope: -0.3102422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13165364 + inSlope: -0.3822148 + outSlope: -0.3822148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.103927 + inSlope: -0.43753538 + outSlope: -0.43697658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.07308456 + inSlope: -0.47497454 + outSlope: -0.47530982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.04032492 + inSlope: -0.4950911 + outSlope: -0.4945882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0068848273 + inSlope: -0.49599916 + outSlope: -0.49578217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.025980268 + inSlope: -0.4781313 + outSlope: -0.47821596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.057019945 + inSlope: -0.4415032 + outSlope: -0.44139066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.08492886 + inSlope: -0.38769063 + outSlope: -0.3880266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.108768076 + inSlope: -0.31605393 + outSlope: -0.31661215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.12710461 + inSlope: -0.22664647 + outSlope: -0.22709392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.13905402 + inSlope: -0.07085509 + outSlope: -0.07040793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.136534 + inSlope: 0.1712142 + outSlope: 0.17166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.11612924 + inSlope: 0.3942851 + outSlope: 0.3950667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.08384752 + inSlope: 0.53163576 + outSlope: 0.53152496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.045183763 + inSlope: 0.58081055 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9986429 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99864286 + inSlope: -0.008940696 + outSlope: -0.008046627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9967945 + inSlope: -0.04291534 + outSlope: -0.042915348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99269825 + inSlope: -0.07957221 + outSlope: -0.078678116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98625994 + inSlope: -0.109076485 + outSlope: -0.10907651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9783405 + inSlope: -0.118911274 + outSlope: -0.12069941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.97069424 + inSlope: -0.09834767 + outSlope: -0.09924174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9656255 + inSlope: -0.04112721 + outSlope: -0.04112719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9653802 + inSlope: 0.028610218 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9692914 + inSlope: 0.07331372 + outSlope: 0.07331372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.974961 + inSlope: 0.09298325 + outSlope: 0.09208918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9814327 + inSlope: 0.09655953 + outSlope: 0.09924174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98776126 + inSlope: 0.089406975 + outSlope: 0.088512905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9931174 + inSlope: 0.06884337 + outSlope: 0.06973744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.99687165 + inSlope: 0.04112721 + outSlope: 0.04202128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9986526 + inSlope: 0.010728837 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99837834 + inSlope: -0.018775448 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9962605 + inSlope: -0.042915385 + outSlope: -0.043809377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9927897 + inSlope: -0.05722041 + outSlope: -0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.98862046 + inSlope: -0.061690867 + outSlope: -0.063478895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.98462635 + inSlope: -0.053644136 + outSlope: -0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.98161507 + inSlope: -0.019669551 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9820877 + inSlope: 0.039339032 + outSlope: 0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9866125 + inSlope: 0.08225449 + outSlope: 0.0804662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9923774 + inSlope: 0.078678064 + outSlope: 0.081360415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9969329 + inSlope: 0.048279807 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15027462 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15027466 + inSlope: -0.04380941 + outSlope: -0.043585893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14444527 + inSlope: -0.18171965 + outSlope: -0.18149616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.12602577 + inSlope: -0.38780275 + outSlope: -0.3882497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09262426 + inSlope: -0.58852124 + outSlope: -0.58896846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.047454007 + inSlope: -0.6957539 + outSlope: -0.69608915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00020019338 + inSlope: -0.71958643 + outSlope: -0.7195585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.048474174 + inSlope: -0.71553516 + outSlope: -0.7157025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09559601 + inSlope: -0.6857512 + outSlope: -0.6849692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13982297 + inSlope: -0.6292016 + outSlope: -0.6296486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.17947307 + inSlope: -0.5485118 + outSlope: -0.5485118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.21294111 + inSlope: -0.44390562 + outSlope: -0.44435266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.23869443 + inSlope: -0.31739476 + outSlope: -0.3165007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.25524524 + inSlope: -0.16763808 + outSlope: -0.16808511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.26110232 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.25524527 + inSlope: 0.16763808 + outSlope: 0.16763793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.23869443 + inSlope: 0.3165004 + outSlope: 0.31672448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.21294111 + inSlope: 0.4423414 + outSlope: 0.4423406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.17958814 + inSlope: 0.54717016 + outSlope: 0.5485123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.13982299 + inSlope: 0.62808454 + outSlope: 0.62875396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.09573962 + inSlope: 0.6841862 + outSlope: 0.68429923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.048474174 + inSlope: 0.71480936 + outSlope: 0.7147522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00035103224 + inSlope: 0.71913874 + outSlope: 0.72034144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.047453977 + inSlope: 0.6963692 + outSlope: 0.6973179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.09249343 + inSlope: 0.58919144 + outSlope: 0.58863366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.12602572 + inSlope: 0.5017971 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6736496 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6736496 + inSlope: -0.0026822088 + outSlope: -0.004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6740911 + inSlope: -0.013411044 + outSlope: -0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.6753278 + inSlope: -0.025033953 + outSlope: -0.025928017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.67696166 + inSlope: -0.025033947 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6779359 + inSlope: -0.008940698 + outSlope: -0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.6774373 + inSlope: 0.016093256 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.67533934 + inSlope: 0.04023314 + outSlope: 0.03844498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.67174 + inSlope: 0.060796715 + outSlope: 0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.66695297 + inSlope: 0.07331372 + outSlope: 0.07420779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6614834 + inSlope: 0.08136035 + outSlope: 0.07957221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.65598303 + inSlope: 0.07689 + outSlope: 0.07599593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.6511887 + inSlope: 0.06169081 + outSlope: 0.05990267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.6478451 + inSlope: 0.03397465 + outSlope: 0.03397465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.6466119 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.6478451 + inSlope: -0.03576279 + outSlope: -0.033974618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6511887 + inSlope: -0.061690755 + outSlope: -0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.6559831 + inSlope: -0.080466345 + outSlope: -0.0804662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.6614658 + inSlope: -0.085830614 + outSlope: -0.08672484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.666953 + inSlope: -0.08225449 + outSlope: -0.07957213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.67172664 + inSlope: -0.067055166 + outSlope: -0.06705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.67533934 + inSlope: -0.045597598 + outSlope: -0.04738565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.67743325 + inSlope: -0.02413986 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.67793596 + inSlope: -0.0017881411 + outSlope: 0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.67696655 + inSlope: 0.017881379 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.6753278 + inSlope: 0.028610257 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.058395013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.058395065 + inSlope: 0.004805624 + outSlope: 0.0048615034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.057762884 + inSlope: 0.01966953 + outSlope: 0.019390138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.055755608 + inSlope: 0.04174188 + outSlope: 0.041965388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.052078262 + inSlope: 0.06459653 + outSlope: 0.06448478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.04702931 + inSlope: 0.07772819 + outSlope: 0.07800759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.041608892 + inSlope: 0.082422055 + outSlope: 0.082422055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0360201 + inSlope: 0.08398668 + outSlope: 0.08398664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03046935 + inSlope: 0.08217056 + outSlope: 0.0823103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.02517299 + inSlope: 0.07705764 + outSlope: 0.07689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0203524 + inSlope: 0.06817282 + outSlope: 0.06817282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0162291 + inSlope: 0.0557676 + outSlope: 0.056214634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.013021693 + inSlope: 0.04023314 + outSlope: 0.04012138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.010944299 + inSlope: 0.021457674 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.010206103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.010944314 + inSlope: -0.020451846 + outSlope: -0.020898862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.013021722 + inSlope: -0.039115515 + outSlope: -0.039115585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.016229063 + inSlope: -0.054091267 + outSlope: -0.05420293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.02033829 + inSlope: -0.065937586 + outSlope: -0.06604946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.025173008 + inSlope: -0.07487841 + outSlope: -0.074934155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.030452255 + inSlope: -0.080410324 + outSlope: -0.08068986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.03602006 + inSlope: -0.08314856 + outSlope: -0.08320429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.04159154 + inSlope: -0.082924895 + outSlope: -0.0830368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.047029253 + inSlope: -0.07934876 + outSlope: -0.079404496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.052063722 + inSlope: -0.06621698 + outSlope: -0.06588182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.05575556 + inSlope: -0.05571177 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7212515 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7212515 + inSlope: 0.0062584872 + outSlope: 0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.72208047 + inSlope: 0.025033949 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7245282 + inSlope: 0.047385696 + outSlope: 0.047385685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7283073 + inSlope: 0.05632638 + outSlope: 0.055432323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7320788 + inSlope: 0.04202128 + outSlope: 0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7344027 + inSlope: 0.018775465 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.73503023 + inSlope: -0.008940698 + outSlope: -0.0062584854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.73396075 + inSlope: -0.031292427 + outSlope: -0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7314298 + inSlope: -0.050961975 + outSlope: -0.049173836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.72788393 + inSlope: -0.059008602 + outSlope: -0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7239329 + inSlope: -0.05990267 + outSlope: -0.059008602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.72028375 + inSlope: -0.049173836 + outSlope: -0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.71765363 + inSlope: -0.028610231 + outSlope: -0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.716669 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.71765375 + inSlope: 0.027716162 + outSlope: 0.026822068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7202836 + inSlope: 0.046491586 + outSlope: 0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.723933 + inSlope: 0.05632644 + outSlope: 0.055432275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.72787184 + inSlope: 0.055432275 + outSlope: 0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.73142976 + inSlope: 0.042915385 + outSlope: 0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7339551 + inSlope: 0.025927998 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.73503023 + inSlope: 0 + outSlope: 0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.7344073 + inSlope: -0.025927998 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.7320788 + inSlope: -0.04917388 + outSlope: -0.05006786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.72832054 + inSlope: -0.060796686 + outSlope: -0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.72452825 + inSlope: -0.064373076 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08548669 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.085486695 + inSlope: -0.003352761 + outSlope: -0.0031292436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.085913174 + inSlope: -0.025033949 + outSlope: -0.025369229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.08881981 + inSlope: -0.059567396 + outSlope: -0.059455622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09382899 + inSlope: -0.07286666 + outSlope: -0.07275493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.098534755 + inSlope: -0.052526597 + outSlope: -0.05219132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.10082595 + inSlope: -0.0005587936 + outSlope: -0.000782311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.09863611 + inSlope: 0.08169562 + outSlope: 0.08214262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.08990805 + inSlope: 0.1657381 + outSlope: 0.16562642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07652931 + inSlope: 0.22910537 + outSlope: 0.2295524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.059289426 + inSlope: 0.28096142 + outSlope: 0.2807379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.039035276 + inSlope: 0.3191829 + outSlope: 0.31962994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.016627599 + inSlope: 0.34505504 + outSlope: 0.34483153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0070566228 + inSlope: 0.35701323 + outSlope: 0.35744628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.031129092 + inSlope: 0.35639855 + outSlope: 0.35611916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0547003 + inSlope: 0.34175816 + outSlope: 0.34198135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.07689207 + inSlope: 0.31493577 + outSlope: 0.31482458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.09684939 + inSlope: 0.27503845 + outSlope: 0.2749262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.11370119 + inSlope: 0.22340547 + outSlope: 0.22396466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.12679806 + inSlope: 0.16070917 + outSlope: 0.16070889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.13521568 + inSlope: 0.0856071 + outSlope: 0.086277805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.13830547 + inSlope: -0.059902724 + outSlope: -0.060126137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.12718658 + inSlope: -0.30733618 + outSlope: -0.30778378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09729964 + inSlope: -0.54236555 + outSlope: -0.54337037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.05498931 + inSlope: -0.6868684 + outSlope: -0.68692553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.005947535 + inSlope: -0.7368468 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00623442 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.006234421 + inSlope: -0.003611203 + outSlope: -0.0036321578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00575039 + inSlope: -0.01781853 + outSlope: -0.01786044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0038401308 + inSlope: -0.034309927 + outSlope: -0.034337856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0011128718 + inSlope: -0.039730214 + outSlope: -0.039702285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0015460085 + inSlope: -0.03410038 + outSlope: -0.03405847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0034884987 + inSlope: -0.018957073 + outSlope: -0.018929133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.004069389 + inSlope: 0.006174669 + outSlope: 0.006216576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00264615 + inSlope: 0.03270338 + outSlope: 0.032703396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00023466162 + inSlope: 0.051744286 + outSlope: 0.051842075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0040941127 + inSlope: 0.06567222 + outSlope: 0.06563031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.008723125 + inSlope: 0.07624739 + outSlope: 0.076331206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.013909689 + inSlope: 0.08362346 + outSlope: 0.08358155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.019439619 + inSlope: 0.08742326 + outSlope: 0.087535016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.025098592 + inSlope: 0.08800999 + outSlope: 0.08787029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.030675186 + inSlope: 0.084936626 + outSlope: 0.084964484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.035963923 + inSlope: 0.078678064 + outSlope: 0.078789964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.040768012 + inSlope: 0.069402225 + outSlope: 0.0694021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.044888806 + inSlope: 0.05727629 + outSlope: 0.057444032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0481838 + inSlope: 0.04258011 + outSlope: 0.04258003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.050441634 + inSlope: 0.025425086 + outSlope: 0.025369251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.05152054 + inSlope: -0.006314373 + outSlope: -0.006314362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04959764 + inSlope: -0.05627046 + outSlope: -0.05632644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.043742955 + inSlope: -0.101365246 + outSlope: -0.101644464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.035219613 + inSlope: -0.12941648 + outSlope: -0.12947258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.025180306 + inSlope: -0.14056465 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07987839 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.079878405 + inSlope: -0.04380941 + outSlope: -0.04369765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0857173 + inSlope: -0.19736587 + outSlope: -0.19781293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.1061994 + inSlope: -0.35852197 + outSlope: -0.35863364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1334832 + inSlope: -0.40478998 + outSlope: -0.4052371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16017936 + inSlope: -0.36209825 + outSlope: -0.36187473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.18176515 + inSlope: -0.25212768 + outSlope: -0.25212768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.19378996 + inSlope: -0.07510186 + outSlope: -0.07510182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19180185 + inSlope: 0.10795887 + outSlope: 0.108405955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1793532 + inSlope: 0.22977592 + outSlope: 0.22977592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.16115507 + inSlope: 0.30845407 + outSlope: 0.30800703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13820627 + inSlope: 0.3717095 + outSlope: 0.37238005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.11153978 + inSlope: 0.42010102 + outSlope: 0.41976574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.082231015 + inSlope: 0.45139346 + outSlope: 0.45161697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.051395837 + inSlope: 0.46653676 + outSlope: 0.4659221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.020180106 + inSlope: 0.46323988 + outSlope: 0.46318358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.010256091 + inSlope: 0.4429553 + outSlope: 0.4428443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.03875483 + inSlope: 0.40439928 + outSlope: 0.40467796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.064100444 + inSlope: 0.35036325 + outSlope: 0.35081092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.08539343 + inSlope: 0.27895 + outSlope: 0.2795083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.1012727 + inSlope: 0.19088371 + outSlope: 0.1907723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.11084018 + inSlope: 0.031404227 + outSlope: 0.031180654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.10543979 + inSlope: -0.22094679 + outSlope: -0.221953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.08113186 + inSlope: -0.45519367 + outSlope: -0.45631042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.044253163 + inSlope: -0.5998085 + outSlope: -0.59986544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0006358768 + inSlope: -0.6509855 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99311256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99311256 + inSlope: -0.0035762785 + outSlope: -0.0035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99259174 + inSlope: -0.018775461 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9903625 + inSlope: -0.044703487 + outSlope: -0.043809406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98659873 + inSlope: -0.061690796 + outSlope: -0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98215634 + inSlope: -0.064373024 + outSlope: -0.064373024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9781531 + inSlope: -0.046491627 + outSlope: -0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9760635 + inSlope: -0.006258488 + outSlope: -0.0062584854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.97730327 + inSlope: 0.03665684 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.98080355 + inSlope: 0.059008602 + outSlope: 0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9851381 + inSlope: 0.06705523 + outSlope: 0.0679493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9895955 + inSlope: 0.064373024 + outSlope: 0.062584884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9935235 + inSlope: 0.051856045 + outSlope: 0.052750114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9963987 + inSlope: 0.032186512 + outSlope: 0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9978774 + inSlope: 0.009834767 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9978274 + inSlope: -0.013411046 + outSlope: -0.010728827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99633783 + inSlope: -0.032186482 + outSlope: -0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99370825 + inSlope: -0.046491668 + outSlope: -0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9904283 + inSlope: -0.05006786 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9870707 + inSlope: -0.047385737 + outSlope: -0.046491586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.98433536 + inSlope: -0.03308055 + outSlope: -0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9828182 + inSlope: 0.005364423 + outSlope: 0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9850108 + inSlope: 0.067055166 + outSlope: 0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99097776 + inSlope: 0.093877405 + outSlope: 0.09566537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99688387 + inSlope: 0.068843305 + outSlope: 0.06884343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.999665 + inSlope: 0.008940705 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16508342 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.16508338 + inSlope: 0.04738569 + outSlope: 0.047609206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.15874329 + inSlope: 0.19736587 + outSlope: 0.19781293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.13870233 + inSlope: 0.42222443 + outSlope: 0.42267138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.102333955 + inSlope: 0.64104784 + outSlope: 0.6413833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.05311135 + inSlope: 0.7586182 + outSlope: 0.75872993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0011540018 + inSlope: 0.78457415 + outSlope: 0.7844624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.051482778 + inSlope: 0.78024346 + outSlope: 0.7800755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10284172 + inSlope: 0.7469949 + outSlope: 0.7463247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15100373 + inSlope: 0.6846339 + outSlope: 0.68508095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1941294 + inSlope: 0.59679157 + outSlope: 0.595674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.23048037 + inSlope: 0.48190358 + outSlope: 0.48235062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.25841358 + inSlope: 0.34376982 + outSlope: 0.34376982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.27634525 + inSlope: 0.18149616 + outSlope: 0.1819432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.28268683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.27634525 + inSlope: -0.18149616 + outSlope: -0.181496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.25841355 + inSlope: -0.34332246 + outSlope: -0.34287605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.23048031 + inSlope: -0.48033938 + outSlope: -0.48011503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.1942544 + inSlope: -0.5947794 + outSlope: -0.59612155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.15100369 + inSlope: -0.6835169 + outSlope: -0.68440974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.10299817 + inSlope: -0.74554175 + outSlope: -0.7454313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.051482722 + inSlope: -0.7793501 + outSlope: -0.7792928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000989588 + inSlope: -0.7841264 + outSlope: -0.785441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.053111393 + inSlope: -0.75884235 + outSlope: -0.7601821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.10219151 + inSlope: -0.641718 + outSlope: -0.64127207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.13870233 + inSlope: -0.5460536 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6456678 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6456678 + inSlope: 0.0035762785 + outSlope: 0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.64631814 + inSlope: 0.0205636 + outSlope: 0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.64818823 + inSlope: 0.03755093 + outSlope: 0.03665685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6508693 + inSlope: 0.042915337 + outSlope: 0.043809418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.65305287 + inSlope: 0.025928022 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6535732 + inSlope: -0.0026822092 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6522397 + inSlope: -0.031292442 + outSlope: -0.026822079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.64912605 + inSlope: -0.052750092 + outSlope: -0.054538254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6445596 + inSlope: -0.07152558 + outSlope: -0.07152558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.639093 + inSlope: -0.08046628 + outSlope: -0.08225442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.63345027 + inSlope: -0.07778407 + outSlope: -0.07957221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.62845516 + inSlope: -0.064373024 + outSlope: -0.063478954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.62494016 + inSlope: -0.03755093 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6236385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.62494016 + inSlope: 0.03665686 + outSlope: 0.038444962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.62845504 + inSlope: 0.0661611 + outSlope: 0.06705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.6334502 + inSlope: 0.08404263 + outSlope: 0.08225434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.63907516 + inSlope: 0.08940689 + outSlope: 0.08851298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.6445597 + inSlope: 0.080466345 + outSlope: 0.0804662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6491138 + inSlope: 0.062584825 + outSlope: 0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.6522398 + inSlope: 0.039339103 + outSlope: 0.0402331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.653572 + inSlope: 0.010728827 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.65305287 + inSlope: -0.016093269 + outSlope: -0.016987309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.65087795 + inSlope: -0.036656827 + outSlope: -0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.64818823 + inSlope: -0.043809455 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07127721 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.071277246 + inSlope: 0.008046627 + outSlope: 0.008270144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07016656 + inSlope: 0.03453344 + outSlope: 0.034645204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.06664388 + inSlope: 0.07420779 + outSlope: 0.07376073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.060205795 + inSlope: 0.11298804 + outSlope: 0.11332334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.051399805 + inSlope: 0.13584273 + outSlope: 0.13612212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.04199045 + inSlope: 0.14316292 + outSlope: 0.14305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.03233913 + inSlope: 0.1448393 + outSlope: 0.14478335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02280622 + inSlope: 0.14092767 + outSlope: 0.14070423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.013761476 + inSlope: 0.13109298 + outSlope: 0.13109298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0055744424 + inSlope: 0.11511148 + outSlope: 0.11522324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0013926104 + inSlope: 0.09387732 + outSlope: 0.09398908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0067884475 + inSlope: 0.06727875 + outSlope: 0.0666082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.010271996 + inSlope: 0.035315756 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.011507764 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.010271952 + inSlope: -0.03509224 + outSlope: -0.035092205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.006788492 + inSlope: -0.06549055 + outSlope: -0.06571418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0013926402 + inSlope: -0.091195196 + outSlope: -0.09108327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0055505633 + inSlope: -0.11209389 + outSlope: -0.11198233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.013761453 + inSlope: -0.12740505 + outSlope: -0.12796362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.022777006 + inSlope: -0.13802189 + outSlope: -0.1381339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.03233913 + inSlope: -0.14321892 + outSlope: -0.14333043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.041960493 + inSlope: -0.14293927 + outSlope: -0.14316304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0513998 + inSlope: -0.13729571 + outSlope: -0.1374631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.060180463 + inSlope: -0.11511137 + outSlope: -0.114888065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.06664391 + inSlope: -0.097230166 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.74214566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.74214566 + inSlope: 0.007152557 + outSlope: 0.0062584872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7430681 + inSlope: 0.028610228 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7457697 + inSlope: 0.052750114 + outSlope: 0.050961964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7498481 + inSlope: 0.060796726 + outSlope: 0.059008602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7536971 + inSlope: 0.04112721 + outSlope: 0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.75569665 + inSlope: 0.008940698 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7555706 + inSlope: -0.023245813 + outSlope: -0.021457665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7533518 + inSlope: -0.051856022 + outSlope: -0.051856045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.74936724 + inSlope: -0.07420779 + outSlope: -0.07152558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7442063 + inSlope: -0.08404256 + outSlope: -0.085830696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7386593 + inSlope: -0.08314849 + outSlope: -0.08225442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.73363507 + inSlope: -0.06616116 + outSlope: -0.0679493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.73005307 + inSlope: -0.03933907 + outSlope: -0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.72871864 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.73005307 + inSlope: 0.03665686 + outSlope: 0.038444962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7336351 + inSlope: 0.065267034 + outSlope: 0.066161215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.7386594 + inSlope: 0.078678206 + outSlope: 0.078678064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.74418914 + inSlope: 0.0804662 + outSlope: 0.077784136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.7493672 + inSlope: 0.064373076 + outSlope: 0.067949235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7533418 + inSlope: 0.042915307 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7555706 + inSlope: 0.0125169875 + outSlope: 0.014305103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.75569963 + inSlope: -0.018775448 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.7536971 + inSlope: -0.048279807 + outSlope: -0.04917379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.74986196 + inSlope: -0.0661611 + outSlope: -0.065267146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7457697 + inSlope: -0.0697375 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.081053816 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08105382 + inSlope: 0.022463499 + outSlope: 0.022575257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08406668 + inSlope: 0.10695308 + outSlope: 0.107511885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.09532065 + inSlope: 0.20038338 + outSlope: 0.20015982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.110800095 + inSlope: 0.22698191 + outSlope: 0.22731723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12572667 + inSlope: 0.19513072 + outSlope: 0.19446017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.13691625 + inSlope: 0.11578203 + outSlope: 0.11600555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.14131826 + inSlope: -0.008046628 + outSlope: -0.007823107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13592617 + inSlope: -0.13455744 + outSlope: -0.1345575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.123333044 + inSlope: -0.22351743 + outSlope: -0.22374095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10606298 + inSlope: -0.28688464 + outSlope: -0.28677288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.085018955 + inSlope: -0.33628199 + outSlope: -0.3365055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.061125234 + inSlope: -0.3719889 + outSlope: -0.3717095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.035337508 + inSlope: -0.39272013 + outSlope: -0.39299953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.008641563 + inSlope: -0.39885288 + outSlope: -0.39854556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.017958473 + inSlope: -0.3893953 + outSlope: -0.389367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.043457605 + inSlope: -0.3653948 + outSlope: -0.36545134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.066869244 + inSlope: -0.326671 + outSlope: -0.32655868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.08718265 + inSlope: -0.27481443 + outSlope: -0.27526197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.10366079 + inSlope: -0.20943601 + outSlope: -0.20999444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.11523007 + inSlope: -0.13075759 + outSlope: -0.13109308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.121185966 + inSlope: 0.016652064 + outSlope: 0.01687555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.11298386 + inSlope: 0.2600623 + outSlope: 0.2607333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.08647814 + inSlope: 0.48961538 + outSlope: 0.4903968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0478621 + inSlope: 0.6303186 + outSlope: 0.6303756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0027271414 + inSlope: 0.67886496 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.040226426 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.040226426 + inSlope: -0.00072643155 + outSlope: -0.0007823109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.040127393 + inSlope: -0.0010617077 + outSlope: -0.0012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.040161572 + inSlope: 0.000111758716 + outSlope: 0.00011175869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.040480573 + inSlope: 0.00039115542 + outSlope: 0.0003911555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.040678315 + inSlope: -0.0037997963 + outSlope: -0.0037997963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.040360127 + inSlope: -0.012684614 + outSlope: -0.012740494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.03917011 + inSlope: -0.02704561 + outSlope: -0.026989717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.03676358 + inSlope: -0.042635933 + outSlope: -0.04280359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.033508874 + inSlope: -0.05666167 + outSlope: -0.05666167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.02938929 + inSlope: -0.06920659 + outSlope: -0.06920659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.024595603 + inSlope: -0.0787899 + outSlope: -0.07884578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.019321222 + inSlope: -0.08538366 + outSlope: -0.08535572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.01376529 + inSlope: -0.088568784 + outSlope: -0.08862466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.008132894 + inSlope: -0.088443056 + outSlope: -0.08837321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00263307 + inSlope: -0.084702626 + outSlope: -0.08470255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0025247645 + inSlope: -0.07761636 + outSlope: -0.077613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0071347533 + inSlope: -0.06707624 + outSlope: -0.067111045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.01098742 + inSlope: -0.053644136 + outSlope: -0.05374202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.013925241 + inSlope: -0.037327446 + outSlope: -0.03732738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.015732052 + inSlope: -0.018244594 + outSlope: -0.018272566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.016257122 + inSlope: 0.018524023 + outSlope: 0.01860781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.013255979 + inSlope: 0.078566305 + outSlope: 0.07884584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0055777556 + inSlope: 0.13249007 + outSlope: 0.13276225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0051406627 + inSlope: 0.16382416 + outSlope: 0.1638943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.01745071 + inSlope: 0.17398053 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08538883 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.08538883 + inSlope: -0.066272914 + outSlope: -0.06638467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09422715 + inSlope: -0.29370186 + outSlope: -0.29437247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.1245349 + inSlope: -0.5262718 + outSlope: -0.526607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.16425721 + inSlope: -0.5894153 + outSlope: -0.589639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.20303833 + inSlope: -0.5301834 + outSlope: -0.5304069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.23492686 + inSlope: -0.3833324 + outSlope: -0.38310888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.25418782 + inSlope: -0.15154482 + outSlope: -0.15154475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.25513992 + inSlope: 0.088065825 + outSlope: 0.088512905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.24232948 + inSlope: 0.24385752 + outSlope: 0.24408104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.22249681 + inSlope: 0.34064057 + outSlope: 0.34131113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.19675626 + inSlope: 0.4206598 + outSlope: 0.42133036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.16626833 + inSlope: 0.4834682 + outSlope: 0.48279765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.13226165 + inSlope: 0.5263836 + outSlope: 0.52705413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.096035965 + inSlope: 0.55029994 + outSlope: 0.5498529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.058950964 + inSlope: 0.5527027 + outSlope: 0.5527581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.022403335 + inSlope: 0.53434587 + outSlope: 0.5343189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.012200237 + inSlope: 0.49405777 + outSlope: 0.49407086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.043376595 + inSlope: 0.434294 + outSlope: 0.43518883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.07003754 + inSlope: 0.35394016 + outSlope: 0.35449833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.090528175 + inSlope: 0.25313327 + outSlope: 0.25324547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.10379345 + inSlope: 0.075996 + outSlope: 0.07554883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.10063195 + inSlope: -0.1984833 + outSlope: -0.19937773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.077116296 + inSlope: -0.4509468 + outSlope: -0.4517283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.040077914 + inSlope: -0.60561997 + outSlope: -0.60584456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.004161305 + inSlope: -0.6600755 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9922302 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9922302 + inSlope: -0.008940696 + outSlope: -0.007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99118304 + inSlope: -0.037550922 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.986809 + inSlope: -0.085830696 + outSlope: -0.08583067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.97933865 + inSlope: -0.12516974 + outSlope: -0.12606384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9702131 + inSlope: -0.1358986 + outSlope: -0.1358986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9614751 + inSlope: -0.10997058 + outSlope: -0.10907651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9559725 + inSlope: -0.038445 + outSlope: -0.03844498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.95659614 + inSlope: 0.044703465 + outSlope: 0.044703487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.96173936 + inSlope: 0.09298325 + outSlope: 0.09208918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.96870124 + inSlope: 0.11175872 + outSlope: 0.11175872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9764496 + inSlope: 0.116229065 + outSlope: 0.115334995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9839945 + inSlope: 0.1063943 + outSlope: 0.10728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9904891 + inSlope: 0.085830696 + outSlope: 0.08404256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9953071 + inSlope: 0.057220463 + outSlope: 0.057220463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99809587 + inSlope: 0.025928022 + outSlope: 0.02503393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99880093 + inSlope: -0.0035762757 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99766153 + inSlope: -0.029504327 + outSlope: -0.027716137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99518687 + inSlope: -0.043809377 + outSlope: -0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.992046 + inSlope: -0.047385737 + outSlope: -0.04738565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9890799 + inSlope: -0.039339032 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9870545 + inSlope: -0.005364423 + outSlope: -0.0053644134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.98839885 + inSlope: 0.051855996 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99324894 + inSlope: 0.077784136 + outSlope: 0.07957213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9980364 + inSlope: 0.054538205 + outSlope: 0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9998353 + inSlope: -0.0035762822 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026176248 + inSlope: 0 + outSlope: -0.13075769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.017451955 + inSlope: -0.21234153 + outSlope: -0.21264887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0021588886 + inSlope: -0.31728294 + outSlope: -0.31732142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.024852177 + inSlope: -0.34955332 + outSlope: -0.34955326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.048764877 + inSlope: -0.3538839 + outSlope: -0.3538281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.072034456 + inSlope: -0.33035877 + outSlope: -0.33035877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.09280853 + inSlope: -0.27917328 + outSlope: -0.27894977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.10925138 + inSlope: -0.20049514 + outSlope: -0.20038329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.11954268 + inSlope: -0.09465959 + outSlope: -0.09443612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12186627 + inSlope: 0.016205015 + outSlope: 0.016316773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11737683 + inSlope: 0.0974536 + outSlope: 0.0974536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.108871095 + inSlope: 0.15288593 + outSlope: 0.15299769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.09698617 + inSlope: 0.19893052 + outSlope: 0.198707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.08236023 + inSlope: 0.23491682 + outSlope: 0.23536386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.065635435 + inSlope: 0.26185068 + outSlope: 0.26162717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.047459178 + inSlope: 0.2785586 + outSlope: 0.27850246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.02848381 + inSlope: 0.28559914 + outSlope: 0.28559965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.009365539 + inSlope: 0.28234467 + outSlope: 0.28235814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.009181156 + inSlope: 0.27014852 + outSlope: 0.27063793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.026668994 + inSlope: 0.24779724 + outSlope: 0.24818794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.042228103 + inSlope: 0.21535885 + outSlope: 0.21541512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.055399913 + inSlope: 0.17356144 + outSlope: 0.17350525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.06537571 + inSlope: 0.09331845 + outSlope: 0.09331861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.06784327 + inSlope: -0.03028664 + outSlope: -0.030510101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.06132133 + inSlope: -0.13679254 + outSlope: -0.13690455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.04959224 + inSlope: -0.17590837 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9996318 + inSlope: 0 + outSlope: 0.0035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9998222 + inSlope: 0.0035762785 + outSlope: 0.0035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99997216 + inSlope: -0.0008940696 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9996656 + inSlope: -0.008940698 + outSlope: -0.008940695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9987848 + inSlope: -0.016987322 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99737656 + inSlope: -0.024139883 + outSlope: -0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99565834 + inSlope: -0.026822092 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9939885 + inSlope: -0.022351744 + outSlope: -0.022351732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99280334 + inSlope: -0.011622901 + outSlope: -0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9925208 + inSlope: 0.0017881395 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9930618 + inSlope: 0.011622907 + outSlope: 0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.99403024 + inSlope: 0.016987326 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9952601 + inSlope: 0.019669535 + outSlope: 0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.996577 + inSlope: 0.019669535 + outSlope: 0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9978181 + inSlope: 0.016987326 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9988476 + inSlope: 0.013411046 + outSlope: 0.013411034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9995687 + inSlope: 0.0080466205 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9999306 + inSlope: 0.0026822116 + outSlope: 0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99993235 + inSlope: -0.0026822067 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99961877 + inSlope: -0.0071525644 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99908245 + inSlope: -0.008940689 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9984387 + inSlope: -0.009834776 + outSlope: -0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99783516 + inSlope: -0.0062584826 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9976704 + inSlope: 0.0017881411 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99809253 + inSlope: 0.0080466205 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.998744 + inSlope: 0.0080466345 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0001870027 + inSlope: 0 + outSlope: -0.00093597913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00012464881 + inSlope: -0.0015166005 + outSlope: -0.0015190016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000015423004 + inSlope: -0.0022659786 + outSlope: -0.0022662245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0001775111 + inSlope: -0.0024962358 + outSlope: -0.002496235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00034830876 + inSlope: -0.0025263575 + outSlope: -0.0025267948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000514513 + inSlope: -0.0023582836 + outSlope: -0.0023582836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00066289294 + inSlope: -0.0019924485 + outSlope: -0.0019907022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00078033726 + inSlope: -0.0014301623 + outSlope: -0.0014301616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00085384434 + inSlope: -0.0006749176 + outSlope: -0.00067229854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0008704421 + inSlope: 0.000116997406 + outSlope: 0.000118743636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0008383785 + inSlope: 0.0006976189 + outSlope: 0.0006976189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0007776291 + inSlope: 0.00109314 + outSlope: 0.0010957593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00069274416 + inSlope: 0.0014240505 + outSlope: 0.0014205581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0005882821 + inSlope: 0.0016798732 + outSlope: 0.0016833657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00046882904 + inSlope: 0.0018719585 + outSlope: 0.0018706488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0003390087 + inSlope: 0.001992012 + outSlope: 0.0019907004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00020348052 + inSlope: 0.0020415592 + outSlope: 0.002041781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00006693119 + inSlope: 0.0020183162 + outSlope: 0.0020185309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000065536326 + inSlope: 0.0019310012 + outSlope: 0.0019348245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00019044177 + inSlope: 0.0017713336 + outSlope: 0.001774168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00030157235 + inSlope: 0.0015393003 + outSlope: 0.0015397397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00039565278 + inSlope: 0.001241134 + outSlope: 0.0012398221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00046690708 + inSlope: 0.00066749577 + outSlope: 0.000667497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00048453908 + inSlope: -0.00021565959 + outSlope: -0.00021696888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0004379707 + inSlope: -0.0009770148 + outSlope: -0.0009778896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0003542143 + inSlope: -0.0012572866 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.007139633 + inSlope: 0 + outSlope: 0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.007140994 + inSlope: 0.000020954756 + outSlope: 0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.007142065 + inSlope: -0.000006984919 + outSlope: -0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0071398756 + inSlope: -0.00006286428 + outSlope: -0.00006286427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0071335835 + inSlope: -0.00011874361 + outSlope: -0.000118743636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.007123525 + inSlope: -0.000174623 + outSlope: -0.00016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.007111252 + inSlope: -0.00019557776 + outSlope: -0.00018160792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0070993244 + inSlope: -0.00016065316 + outSlope: -0.00016065309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.007090859 + inSlope: -0.000083819 + outSlope: -0.00007683412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0070888405 + inSlope: 0.0000069849198 + outSlope: 0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0070927045 + inSlope: 0.00008381904 + outSlope: 0.00007683412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0070996215 + inSlope: 0.000118743636 + outSlope: 0.00012572856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0071084066 + inSlope: 0.00014668332 + outSlope: 0.00013271348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0071178125 + inSlope: 0.0001396984 + outSlope: 0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.007126678 + inSlope: 0.00012572856 + outSlope: 0.000118743636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0071340315 + inSlope: 0.00009080396 + outSlope: 0.00009778879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.007139182 + inSlope: 0.000055879307 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.007141768 + inSlope: 0.000020954778 + outSlope: 0.00002095474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0071417815 + inSlope: -0.000013969827 + outSlope: -0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.007139542 + inSlope: -0.000048894482 + outSlope: -0.00004190948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.007135712 + inSlope: -0.00006286422 + outSlope: -0.00006286433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.007131114 + inSlope: -0.00006984926 + outSlope: -0.000069849135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0071268035 + inSlope: -0.000048894395 + outSlope: -0.000041909556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0071256263 + inSlope: 0.000013969852 + outSlope: 0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0071286405 + inSlope: 0.00006286422 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.007133293 + inSlope: 0.00006286433 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05670157 + inSlope: 0 + outSlope: -0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.056701265 + inSlope: 0.09186565 + outSlope: 0.09220093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.06896404 + inSlope: 0.20664184 + outSlope: 0.20675363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08424338 + inSlope: 0.23480506 + outSlope: 0.23458149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10024528 + inSlope: 0.22821124 + outSlope: 0.2282113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11469405 + inSlope: 0.18808992 + outSlope: 0.18808992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.12533887 + inSlope: 0.114440925 + outSlope: 0.11421741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.12994714 + inSlope: 0.007152558 + outSlope: 0.006929037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.12627971 + inSlope: -0.11064108 + outSlope: -0.11064113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.115182444 + inSlope: -0.19982459 + outSlope: -0.2006069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.099578656 + inSlope: -0.26162717 + outSlope: -0.26118013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08032368 + inSlope: -0.30979517 + outSlope: -0.30979517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.058287468 + inSlope: -0.34494328 + outSlope: -0.3446639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.03435844 + inSlope: -0.36617744 + outSlope: -0.3665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.009441681 + inSlope: -0.37450346 + outSlope: -0.37412626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.01554722 + inSlope: -0.3683148 + outSlope: -0.36827257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.039690837 + inSlope: -0.34874275 + outSlope: -0.34879926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.062078927 + inSlope: -0.3153275 + outSlope: -0.31532693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.08175876 + inSlope: -0.26945 + outSlope: -0.26989755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.098021135 + inSlope: -0.21010657 + outSlope: -0.21055323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10980289 + inSlope: -0.13757485 + outSlope: -0.13746335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.1163911 + inSlope: -0.0034645232 + outSlope: -0.0030174826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.11022939 + inSlope: 0.21390599 + outSlope: 0.21468869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.087782994 + inSlope: 0.41697213 + outSlope: 0.41786546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0545822 + inSlope: 0.54102343 + outSlope: 0.54102445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.015610483 + inSlope: 0.584303 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6421294 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6421287 + inSlope: -0.007152557 + outSlope: -0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.64127845 + inSlope: -0.0151991835 + outSlope: -0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.6399844 + inSlope: -0.020563604 + outSlope: -0.021457668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6383488 + inSlope: -0.025033947 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.63662356 + inSlope: -0.024139883 + outSlope: -0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6352008 + inSlope: -0.015199185 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6345446 + inSlope: 0 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6350686 + inSlope: 0.014305109 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.63656116 + inSlope: 0.025928022 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6384226 + inSlope: 0.028610231 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.64034116 + inSlope: 0.025928022 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.6420282 + inSlope: 0.023245813 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.6432498 + inSlope: 0.015199185 + outSlope: 0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6438504 + inSlope: 0.0053644185 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6437664 + inSlope: -0.0053644185 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.64303243 + inSlope: -0.014305103 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.6417764 + inSlope: -0.020563623 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.6402126 + inSlope: -0.02413986 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.6385933 + inSlope: -0.023245834 + outSlope: -0.022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6372341 + inSlope: -0.017881379 + outSlope: -0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.6364054 + inSlope: -0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.63718206 + inSlope: 0.027716137 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.63964754 + inSlope: 0.041127246 + outSlope: 0.04202124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.6422592 + inSlope: 0.034868687 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6437657 + inSlope: 0.010728846 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.047718197 + inSlope: 0 + outSlope: -0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.047718585 + inSlope: 0.0773929 + outSlope: 0.07756054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.058038637 + inSlope: 0.17412005 + outSlope: 0.17400832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.070897385 + inSlope: 0.19758941 + outSlope: 0.19736585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08436421 + inSlope: 0.19188967 + outSlope: 0.19211324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.096524 + inSlope: 0.15847386 + outSlope: 0.1583621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.1054824 + inSlope: 0.0961125 + outSlope: 0.0961125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.109360605 + inSlope: 0.0056996946 + outSlope: 0.0058114505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10627423 + inSlope: -0.09309497 + outSlope: -0.09331853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.096935004 + inSlope: -0.16842039 + outSlope: -0.16842039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08380323 + inSlope: -0.22005291 + outSlope: -0.21960588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06759871 + inSlope: -0.2601743 + outSlope: -0.2607331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.04905354 + inSlope: -0.29018152 + outSlope: -0.289958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.028915426 + inSlope: -0.3081188 + outSlope: -0.3084261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0079460535 + inSlope: -0.31517354 + outSlope: -0.31483826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.013084027 + inSlope: -0.30999073 + outSlope: -0.3099765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.033402734 + inSlope: -0.293534 + outSlope: -0.2935904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.05224404 + inSlope: -0.26548305 + outSlope: -0.26537085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06880613 + inSlope: -0.22675823 + outSlope: -0.22731744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0824922 + inSlope: -0.17702596 + outSlope: -0.17724916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.09240747 + inSlope: -0.11555841 + outSlope: -0.115670376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.09795201 + inSlope: -0.0029057292 + outSlope: -0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09276648 + inSlope: 0.18026665 + outSlope: 0.18037874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.07387621 + inSlope: 0.35081092 + outSlope: 0.35136908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.045935303 + inSlope: 0.45508108 + outSlope: 0.45530543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.013137728 + inSlope: 0.49164099 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7630057 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7630063 + inSlope: -0.0053644176 + outSlope: -0.007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7619957 + inSlope: -0.018775461 + outSlope: -0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7604581 + inSlope: -0.025928022 + outSlope: -0.026822086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7585145 + inSlope: -0.033080574 + outSlope: -0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7564647 + inSlope: -0.027716162 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7547739 + inSlope: -0.019669535 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7539942 + inSlope: -0.00089406973 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.75461715 + inSlope: 0.018775456 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7563904 + inSlope: 0.028610231 + outSlope: 0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.75860244 + inSlope: 0.03397465 + outSlope: 0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7608822 + inSlope: 0.03308058 + outSlope: 0.03039837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.7628867 + inSlope: 0.025033953 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.7643384 + inSlope: 0.016093256 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.76505196 + inSlope: 0.004470349 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.76495224 + inSlope: -0.007152558 + outSlope: -0.0080466205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.76408 + inSlope: -0.016987309 + outSlope: -0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.76258755 + inSlope: -0.025033975 + outSlope: -0.025927998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.7607292 + inSlope: -0.030398343 + outSlope: -0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.75880533 + inSlope: -0.026822116 + outSlope: -0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.75719017 + inSlope: -0.019669516 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.75620544 + inSlope: 0 + outSlope: -0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.75712806 + inSlope: 0.030398343 + outSlope: 0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.76005745 + inSlope: 0.046491668 + outSlope: 0.04827972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7631605 + inSlope: 0.038444962 + outSlope: 0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7649506 + inSlope: 0.010728846 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015986731 + inSlope: 0 + outSlope: -0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.01598597 + inSlope: 0.025033949 + outSlope: 0.025145708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0126357395 + inSlope: 0.053588297 + outSlope: 0.053602275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.008843268 + inSlope: 0.058994632 + outSlope: 0.059022557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004771105 + inSlope: 0.061942253 + outSlope: 0.061949253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0005849822 + inSlope: 0.06239716 + outSlope: 0.062391922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0035477353 + inSlope: 0.060321767 + outSlope: 0.060325257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.007459948 + inSlope: 0.05575363 + outSlope: 0.055767573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.010986591 + inSlope: 0.048782658 + outSlope: 0.0487268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.013965774 + inSlope: 0.03933907 + outSlope: 0.03939495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.016238894 + inSlope: 0.027604403 + outSlope: 0.027604403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.017649528 + inSlope: 0.013522805 + outSlope: 0.013466925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.018041244 + inSlope: -0.0017601998 + outSlope: -0.0017043204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.017418277 + inSlope: -0.015506522 + outSlope: -0.0155344615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.015969036 + inSlope: -0.02707355 + outSlope: -0.02701767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.013810854 + inSlope: -0.03679656 + outSlope: -0.036796525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.011061294 + inSlope: -0.044759326 + outSlope: -0.044787344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.007839534 + inSlope: -0.05086423 + outSlope: -0.05085017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0042786696 + inSlope: -0.055278607 + outSlope: -0.055369508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0004678279 + inSlope: -0.057712514 + outSlope: -0.057818495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0034204205 + inSlope: -0.058289103 + outSlope: -0.058282223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0073080203 + inSlope: -0.056955088 + outSlope: -0.056954984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.011021368 + inSlope: -0.053783834 + outSlope: -0.05383981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.014482597 + inSlope: -0.04875478 + outSlope: -0.048824545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.017527796 + inSlope: -0.041881543 + outSlope: -0.041881617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.020076225 + inSlope: -0.038109757 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05227031 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.05226987 + inSlope: 0.0016763805 + outSlope: 0.0015646218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.052451257 + inSlope: 0.0029616056 + outSlope: 0.002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.052604873 + inSlope: 0.0024028125 + outSlope: 0.002291053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.052709248 + inSlope: 0.001452863 + outSlope: 0.001564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05275152 + inSlope: 0.0005587936 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.052728713 + inSlope: -0.0003911555 + outSlope: -0.0003911555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.052647993 + inSlope: -0.0011734666 + outSlope: -0.001173466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.052525718 + inSlope: -0.0017881386 + outSlope: -0.0018440188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.052385587 + inSlope: -0.002011657 + outSlope: -0.0018998982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.052255813 + inSlope: -0.001564622 + outSlope: -0.0016205014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.052165244 + inSlope: -0.00089406973 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.052138723 + inSlope: 0.000055879358 + outSlope: 0.000111758716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.052180592 + inSlope: 0.0010617079 + outSlope: 0.0011734666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.052272193 + inSlope: 0.0016763808 + outSlope: 0.0017322601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05239362 + inSlope: 0.0020675363 + outSlope: 0.0020675345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.052522477 + inSlope: 0.0020675345 + outSlope: 0.002067538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.05263693 + inSlope: 0.0017881411 + outSlope: 0.0016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.05271779 + inSlope: 0.0012293448 + outSlope: 0.0011734676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.052751534 + inSlope: 0.00044703527 + outSlope: 0.00039115516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.05272978 + inSlope: -0.00039115516 + outSlope: -0.00039115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.052651256 + inSlope: -0.0011734676 + outSlope: -0.0012293448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.052522972 + inSlope: -0.0018440172 + outSlope: -0.0018998999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.052356232 + inSlope: -0.0023469352 + outSlope: -0.0024586895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.052171525 + inSlope: -0.0026822067 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.051989343 + inSlope: -0.0026822116 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13389966 + inSlope: 0 + outSlope: -0.0004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13389981 + inSlope: 0.20965932 + outSlope: 0.21010636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.105844505 + inSlope: 0.4487112 + outSlope: 0.4485995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.07408575 + inSlope: 0.49397352 + outSlope: 0.49386165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.039984796 + inSlope: 0.5186721 + outSlope: 0.51856047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.004929453 + inSlope: 0.52259076 + outSlope: 0.522472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.029678706 + inSlope: 0.5051773 + outSlope: 0.5052891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.062440317 + inSlope: 0.46703967 + outSlope: 0.4672071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09197312 + inSlope: 0.4088132 + outSlope: 0.40836635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11692141 + inSlope: 0.32957646 + outSlope: 0.32991174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13595696 + inSlope: 0.23134054 + outSlope: 0.23111703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14776982 + inSlope: 0.11309982 + outSlope: 0.11309982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.15105008 + inSlope: -0.0147521505 + outSlope: -0.014528633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.14583302 + inSlope: -0.12986363 + outSlope: -0.13031067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13369651 + inSlope: -0.22619964 + outSlope: -0.22642316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.11562308 + inSlope: -0.30800703 + outSlope: -0.30789497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.09259725 + inSlope: -0.3748384 + outSlope: -0.37483907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.06561717 + inSlope: -0.4258011 + outSlope: -0.42568856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.03579739 + inSlope: -0.46279243 + outSlope: -0.46363145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0038842973 + inSlope: -0.48330098 + outSlope: -0.48420817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.028676907 + inSlope: -0.48818958 + outSlope: -0.48819044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.061232563 + inSlope: -0.47715425 + outSlope: -0.47709754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09232885 + inSlope: -0.45049897 + outSlope: -0.45117033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.12131371 + inSlope: -0.40847847 + outSlope: -0.40903655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.14681448 + inSlope: -0.35092205 + outSlope: -0.35092267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.16815498 + inSlope: -0.3196302 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9894863 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9894863 + inSlope: 0.029504297 + outSlope: 0.029504297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9929181 + inSlope: 0.04917383 + outSlope: 0.048279766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9958242 + inSlope: 0.038445 + outSlope: 0.03576278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9977977 + inSlope: 0.022351738 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9985953 + inSlope: 0.0026822092 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99816144 + inSlope: -0.014305116 + outSlope: -0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99663115 + inSlope: -0.03039837 + outSlope: -0.028610218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99431443 + inSlope: -0.03844498 + outSlope: -0.03755093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9916603 + inSlope: -0.03933907 + outSlope: -0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.98920244 + inSlope: -0.032186512 + outSlope: -0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9874874 + inSlope: -0.016987326 + outSlope: -0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98698527 + inSlope: 0.0017881395 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.98777854 + inSlope: 0.020563604 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.98951393 + inSlope: 0.03039837 + outSlope: 0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99181426 + inSlope: 0.03665686 + outSlope: 0.036656827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9942559 + inSlope: 0.036656827 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9964248 + inSlope: 0.028610257 + outSlope: 0.027716137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9979584 + inSlope: 0.016987309 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99859995 + inSlope: 0.0017881411 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9981912 + inSlope: -0.013411034 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9967071 + inSlope: -0.030398399 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99428123 + inSlope: -0.04202124 + outSlope: -0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9911268 + inSlope: -0.04917388 + outSlope: -0.051855996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.98763174 + inSlope: -0.051855996 + outSlope: -0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.98418397 + inSlope: -0.053644232 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.051921397 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0519214 + inSlope: -0.012461095 + outSlope: -0.0125169745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.05025056 + inSlope: -0.026822088 + outSlope: -0.026877971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.048350673 + inSlope: -0.07180498 + outSlope: -0.071860835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04069961 + inSlope: -0.15266237 + outSlope: -0.15283005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.027965747 + inSlope: -0.20728448 + outSlope: -0.20728448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.013051247 + inSlope: -0.23555943 + outSlope: -0.23558737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0034651437 + inSlope: -0.254974 + outSlope: -0.2550228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.020991735 + inSlope: -0.2655386 + outSlope: -0.26537108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03892842 + inSlope: -0.26682395 + outSlope: -0.2669357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.056675676 + inSlope: -0.2596155 + outSlope: -0.2593361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0736458 + inSlope: -0.24341048 + outSlope: -0.243634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.089273825 + inSlope: -0.21938236 + outSlope: -0.21938236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.10302551 + inSlope: -0.18730761 + outSlope: -0.18764289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.114400156 + inSlope: -0.14875086 + outSlope: -0.14841558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.12292661 + inSlope: -0.1025945 + outSlope: -0.102706164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.12815242 + inSlope: -0.05006786 + outSlope: -0.049844433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.12962608 + inSlope: 0.017210858 + outSlope: 0.017657861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.12584141 + inSlope: 0.100582756 + outSlope: 0.10125349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.11617268 + inSlope: 0.1812728 + outSlope: 0.18160775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10168644 + inSlope: 0.24799237 + outSlope: 0.24799281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.08315236 + inSlope: 0.2998489 + outSlope: 0.29996014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.061783895 + inSlope: 0.33667284 + outSlope: 0.3372881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0383619 + inSlope: 0.3570694 + outSlope: 0.35768345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0142714605 + inSlope: 0.36063108 + outSlope: 0.360506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.009655599 + inSlope: 0.35870388 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011815625 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.011815626 + inSlope: -0.0016624107 + outSlope: -0.0016624107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.011587404 + inSlope: -0.003869645 + outSlope: -0.0038836154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.011272088 + inSlope: -0.007222407 + outSlope: -0.0072084353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.010578419 + inSlope: -0.013425013 + outSlope: -0.0134529555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.009559741 + inSlope: -0.018607827 + outSlope: -0.018607827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.008365666 + inSlope: -0.021639282 + outSlope: -0.021611342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0070377197 + inSlope: -0.023846516 + outSlope: -0.02385349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0056194915 + inSlope: -0.02522952 + outSlope: -0.02520159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0041567637 + inSlope: -0.025648626 + outSlope: -0.025690535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002697062 + inSlope: -0.025159681 + outSlope: -0.025152696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0012888896 + inSlope: -0.023677131 + outSlope: -0.023712056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.000019244384 + inSlope: -0.021345915 + outSlope: -0.02129702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0011796253 + inSlope: -0.018146822 + outSlope: -0.018090943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.002146002 + inSlope: -0.014109538 + outSlope: -0.014137478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.002873797 + inSlope: -0.009555371 + outSlope: -0.009471543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0033198092 + inSlope: -0.004442405 + outSlope: -0.004498292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0034416858 + inSlope: 0.0016205028 + outSlope: 0.0016204999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.003105959 + inSlope: 0.008409835 + outSlope: 0.008409851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0022594426 + inSlope: 0.014305129 + outSlope: 0.014305103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0010009799 + inSlope: 0.01857987 + outSlope: 0.018510053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00059516076 + inSlope: 0.021471662 + outSlope: 0.021443684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0024173395 + inSlope: 0.023315642 + outSlope: 0.0233541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0043933475 + inSlope: 0.024139903 + outSlope: 0.0241678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.006403312 + inSlope: 0.024035087 + outSlope: 0.02403513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00837782 + inSlope: 0.02360905 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17424549 + inSlope: 0 + outSlope: 0.0002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.17424552 + inSlope: -0.12762845 + outSlope: -0.12762845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.19125006 + inSlope: -0.35360453 + outSlope: -0.35427514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.22136548 + inSlope: -0.2384931 + outSlope: -0.238046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2230951 + inSlope: 0.17501411 + outSlope: 0.17613174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.197854 + inSlope: 0.42289498 + outSlope: 0.42267147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.16662766 + inSlope: 0.5038083 + outSlope: 0.5033613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.13067852 + inSlope: 0.5650521 + outSlope: 0.5641577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09133089 + inSlope: 0.6056202 + outSlope: 0.6052852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.049968485 + inSlope: 0.62467533 + outSlope: 0.62545764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.008018695 + inSlope: 0.6236276 + outSlope: 0.62305486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.033072077 + inSlope: 0.59941787 + outSlope: 0.5999208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.07186548 + inSlope: 0.5547703 + outSlope: 0.55465853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.10695474 + inSlope: 0.48849735 + outSlope: 0.48905614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13697906 + inSlope: 0.40322545 + outSlope: 0.40233138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16062436 + inSlope: 0.29683116 + outSlope: 0.29727793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.17660928 + inSlope: 0.1725553 + outSlope: 0.1723321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.18365686 + inSlope: 0.015869752 + outSlope: 0.016093241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.17873475 + inSlope: -0.16987309 + outSlope: -0.17032044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.16096927 + inSlope: -0.34421715 + outSlope: -0.34488708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.13269909 + inSlope: -0.4877146 + outSlope: -0.487939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.09572402 + inSlope: -0.5983567 + outSlope: -0.5984674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.05272067 + inSlope: -0.6754132 + outSlope: -0.6767555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.005484506 + inSlope: -0.71700263 + outSlope: -0.71820974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.043001693 + inSlope: -0.7225753 + outSlope: -0.72229725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.09090397 + inSlope: -0.7160387 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9832615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9832615 + inSlope: -0.02145767 + outSlope: -0.02324581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9801857 + inSlope: -0.067949295 + outSlope: -0.0679493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9739263 + inSlope: -0.050961975 + outSlope: -0.050961964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.97388923 + inSlope: 0.047385685 + outSlope: 0.046491627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.97978586 + inSlope: 0.091195114 + outSlope: 0.09208918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.98589796 + inSlope: 0.086724766 + outSlope: 0.088512905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99139374 + inSlope: 0.07331372 + outSlope: 0.07331368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9955835 + inSlope: 0.050067883 + outSlope: 0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9979832 + inSlope: 0.022351744 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9983568 + inSlope: -0.009834767 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9967351 + inSlope: -0.038445 + outSlope: -0.03755093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.99341094 + inSlope: -0.06079674 + outSlope: -0.057220463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.98891103 + inSlope: -0.07331372 + outSlope: -0.07152558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9839435 + inSlope: -0.07241965 + outSlope: -0.07331372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9793266 + inSlope: -0.06169081 + outSlope: -0.062584825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.975897 + inSlope: -0.038444962 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.97440004 + inSlope: -0.00089407054 + outSlope: -0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9758116 + inSlope: 0.044703446 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.98009574 + inSlope: 0.077784136 + outSlope: 0.076889925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.98592585 + inSlope: 0.09119503 + outSlope: 0.092089266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9919286 + inSlope: 0.08314856 + outSlope: 0.08314841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99669325 + inSlope: 0.05632634 + outSlope: 0.057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99923927 + inSlope: 0.018775482 + outSlope: 0.016093241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9989525 + inSlope: -0.026822068 + outSlope: -0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9957776 + inSlope: -0.06884343 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + m_EulerEditorCurves: + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22670202 + inSlope: -14.692888 + outSlope: -14.692888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5601461 + inSlope: -4.1319456 + outSlope: -4.1319456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.39680696 + inSlope: 11.604119 + outSlope: 11.604119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.31930828 + inSlope: 7.839676 + outSlope: 7.839676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6164292 + inSlope: -1.604927 + outSlope: -1.604927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.36459067 + inSlope: -3.894462 + outSlope: -3.894462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.28745952 + inSlope: -0.14836842 + outSlope: -0.14836842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.27602085 + inSlope: -11.122537 + outSlope: -11.122537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.27602085 + inSlope: 1.256798 + outSlope: 1.256798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000037392915 + inSlope: 3.2508702 + outSlope: 3.2508702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000037392915 + inSlope: -0.00016994329 + outSlope: -0.00016994329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.000007642864 + inSlope: 0.00034612848 + outSlope: 0.00034612848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.000007642864 + inSlope: 0.00034612848 + outSlope: 0.00034612848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0000075397606 + inSlope: -0.00034266696 + outSlope: -0.00034266696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000075397606 + inSlope: -0.00034266696 + outSlope: -0.00034266696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000009030373 + inSlope: 0.00028306898 + outSlope: 0.00028306898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000009030373 + inSlope: 0.00028306898 + outSlope: 0.00028306898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000074225777 + inSlope: -0.00033734125 + outSlope: -0.00033734125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000007725719 + inSlope: 0.00034236288 + outSlope: 0.00034236288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000007725719 + inSlope: -11.414359 + outSlope: -11.414359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.4990894 + inSlope: -11.266075 + outSlope: -11.266075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -1.4990894 + inSlope: 0.00022213072 + outSlope: 0.00022213072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -1.4990903 + inSlope: 0.0002654733 + outSlope: 0.0002654733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.4990903 + inSlope: 11.293608 + outSlope: 11.293608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000008170333 + inSlope: 22.895605 + outSlope: 22.895605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -78.96894 + inSlope: -172.58461 + outSlope: -172.58461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -90.3789 + inSlope: -169.17476 + outSlope: -169.17476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -101.32627 + inSlope: -54.221222 + outSlope: -54.221222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -97.56739 + inSlope: 91.11512 + outSlope: 91.11512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -89.31068 + inSlope: 117.59084 + outSlope: 117.59084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -82.03376 + inSlope: 46.87795 + outSlope: 46.87795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -83.104126 + inSlope: -105.54161 + outSlope: -105.54161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -95.96779 + inSlope: -96.54161 + outSlope: -96.54161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -95.96779 + inSlope: 41.64494 + outSlope: 41.64494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -90.473335 + inSlope: 41.516644 + outSlope: 41.516644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -90.473335 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -90.47332 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -90.47332 + inSlope: -4.0180306 + outSlope: -4.0180306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -91.02571 + inSlope: -4.4160886 + outSlope: -4.4160886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -91.02571 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -91.02571 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -91.02571 + inSlope: 4.3495145 + outSlope: 4.3495145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -90.47332 + inSlope: 7.8363385 + outSlope: 7.8363385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.2956166 + inSlope: 41.112713 + outSlope: 41.112713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -4.526353 + inSlope: 56.831528 + outSlope: 56.831528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13214605 + inSlope: 63.2737 + outSlope: 63.2737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 3.9137063 + inSlope: 58.379574 + outSlope: 58.379574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 7.8304086 + inSlope: 50.89899 + outSlope: 50.89899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 10.6186 + inSlope: 14.3768635 + outSlope: 14.3768635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 9.7563095 + inSlope: -59.77219 + outSlope: -59.77219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 2.7514098 + inSlope: -51.93786 + outSlope: -51.93786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 2.7514098 + inSlope: -20.910118 + outSlope: -20.910118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00008223983 + inSlope: -20.68335 + outSlope: -20.68335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00008223983 + inSlope: -0.00027022845 + outSlope: -0.00027022845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00008048923 + inSlope: -0.0001906674 + outSlope: -0.0001906674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00008048923 + inSlope: -0.0001906674 + outSlope: -0.0001906674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00008079883 + inSlope: -0.00020473807 + outSlope: -0.00020473807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00008079883 + inSlope: -0.00020473807 + outSlope: -0.00020473807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00007905076 + inSlope: -0.00012529177 + outSlope: -0.00012529177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00007905076 + inSlope: -0.00012529177 + outSlope: -0.00012529177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00007874213 + inSlope: -0.00011126509 + outSlope: -0.00011126509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00008082468 + inSlope: -0.00020591264 + outSlope: -0.00020591264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00008082468 + inSlope: 15.10659 + outSlope: 15.10659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 2.000768 + inSlope: 15.221686 + outSlope: 15.221686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 2.000768 + inSlope: -0.00022754855 + outSlope: -0.00022754855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 2.0007687 + inSlope: -0.00026005547 + outSlope: -0.00026005547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 2.0007687 + inSlope: -15.202757 + outSlope: -15.202757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000080752005 + inSlope: -30.158316 + outSlope: -30.158316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000000663001 + inSlope: 0.0000003013206 + outSlope: 0.0000003013206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000015181175 + inSlope: 0.000000068995384 + outSlope: 0.000000068995384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000012089568 + inSlope: -0.0000054944658 + outSlope: -0.0000054944658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00000026680425 + inSlope: -0.000012125716 + outSlope: -0.000012125716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000041854918 + inSlope: -0.000019022218 + outSlope: -0.000019022218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000055528636 + inSlope: -0.00002523665 + outSlope: -0.00002523665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000006670106 + inSlope: -0.000030314292 + outSlope: -0.000030314292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00000073037666 + inSlope: -0.000033194152 + outSlope: -0.000033194152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000073371166 + inSlope: -0.00003334572 + outSlope: -0.00003334572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000068201837 + inSlope: -0.000030996365 + outSlope: -0.000030996365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000059697453 + inSlope: -0.000027131291 + outSlope: -0.000027131291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000049192033 + inSlope: -0.00002235679 + outSlope: -0.00002235679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00000036185327 + inSlope: -0.000016445503 + outSlope: -0.000016445503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00000022594985 + inSlope: -0.0000102689655 + outSlope: -0.0000102689655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000000076497784 + inSlope: -0.0000034766704 + outSlope: -0.0000034766704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000073579606 + inSlope: 0.0000033440454 + outSlope: 0.0000033440454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000002226148 + inSlope: 0.000010117395 + outSlope: 0.000010117395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000004885853 + inSlope: 0.000022205217 + outSlope: 0.000022205217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000595307 + inSlope: 0.000027055505 + outSlope: 0.000027055505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0000006803508 + inSlope: 0.00003092058 + outSlope: 0.00003092058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000073371166 + inSlope: 0.00003334572 + outSlope: 0.00003334572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000072537404 + inSlope: 0.00003296679 + outSlope: 0.00003296679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0000006336601 + inSlope: 0.000028798577 + outSlope: 0.000028798577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00000049025283 + inSlope: 0.000022281005 + outSlope: 0.000022281005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000032183263 + inSlope: 0.000014626646 + outSlope: 0.000014626646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5405038 + inSlope: 0.0003169426 + outSlope: 0.0003169426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.5405038 + inSlope: 0.0003169426 + outSlope: 0.0003169426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.5405038 + inSlope: 0.0003169426 + outSlope: 0.0003169426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000015131192 + inSlope: 0.0000068768227 + outSlope: 0.0000068768227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000006136894 + inSlope: -6.9355087 + outSlope: -6.9355087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.9155977 + inSlope: -15.182656 + outSlope: -15.182656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -2.0043728 + inSlope: -16.822067 + outSlope: -16.822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.136443 + inSlope: -16.493813 + outSlope: -16.493813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -4.1819243 + inSlope: -14.198617 + outSlope: -14.198617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -5.0109324 + inSlope: -9.935182 + outSlope: -9.935182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -5.493586 + inSlope: -3.7048154 + outSlope: -3.7048154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -5.4999995 + inSlope: 2.9736261 + outSlope: 2.9736261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -5.1009817 + inSlope: 7.721177 + outSlope: 7.721177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.480623 + inSlope: 10.771216 + outSlope: 10.771216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -3.678964 + inSlope: 13.213993 + outSlope: 13.213993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -2.7360473 + inSlope: 15.051036 + outSlope: 15.051036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.6919124 + inSlope: 16.28098 + outSlope: 16.28098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.5866026 + inSlope: 16.904015 + outSlope: 16.904015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.53984153 + inSlope: 16.921598 + outSlope: 16.921598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.6473778 + inSlope: 16.331793 + outSlope: 16.331793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 3.6427915 + inSlope: 13.332189 + outSlope: 13.332189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 4.456128 + inSlope: 10.931476 + outSlope: 10.931476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 5.0859675 + inSlope: 7.907095 + outSlope: 7.907095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 5.499999 + inSlope: 2.5472 + outSlope: 2.5472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 5.422221 + inSlope: -5.7653866 + outSlope: -5.7653866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 4.738791 + inSlope: -13.360199 + outSlope: -13.360199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 3.658411 + inSlope: -17.947035 + outSlope: -17.947035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 2.3693953 + inSlope: -19.526829 + outSlope: -19.526829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.023872824 + inSlope: -0.00032633916 + outSlope: -0.00032633916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.023872824 + inSlope: 0.011462842 + outSlope: 0.011462842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.022356575 + inSlope: 0.047961526 + outSlope: 0.047961526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.01756932 + inSlope: 0.10223507 + outSlope: 0.10223507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.008902257 + inSlope: 0.15424295 + outSlope: 0.15424295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.002790559 + inSlope: 0.18177387 + outSlope: 0.18177387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0150927575 + inSlope: 0.18715745 + outSlope: 0.18715745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.027520936 + inSlope: 0.18612202 + outSlope: 0.18612202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0396204 + inSlope: 0.1778346 + outSlope: 0.1778346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05094841 + inSlope: 0.16230577 + outSlope: 0.16230577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.061081283 + inSlope: 0.14076078 + outSlope: 0.14076078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06961762 + inSlope: 0.11341161 + outSlope: 0.11341161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.07617595 + inSlope: 0.080952086 + outSlope: 0.080952086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.08038602 + inSlope: 0.042872246 + outSlope: 0.042872246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.081875004 + inSlope: 0.00016625943 + outSlope: 0.00016625943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.08038602 + inSlope: -0.043119434 + outSlope: -0.043119434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.07617595 + inSlope: -0.08201601 + outSlope: -0.08201601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.061110638 + inSlope: -0.14143327 + outSlope: -0.14143327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.050948393 + inSlope: -0.1629361 + outSlope: -0.1629361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.039657235 + inSlope: -0.17751496 + outSlope: -0.17751496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.027520932 + inSlope: -0.18558379 + outSlope: -0.18558379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.015131635 + inSlope: -0.18700889 + outSlope: -0.18700889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0027905523 + inSlope: -0.18161002 + outSlope: -0.18161002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.008868373 + inSlope: -0.15381575 + outSlope: -0.15381575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.017569307 + inSlope: -0.13146871 + outSlope: -0.13146871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.3794726 + inSlope: -0.00008126734 + outSlope: -0.00008126734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.3794726 + inSlope: 0.0013056952 + outSlope: 0.0013056952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 1.3796073 + inSlope: 0.0041988124 + outSlope: 0.0041988124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 1.3799742 + inSlope: 0.0062467493 + outSlope: 0.0062467493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 1.3804135 + inSlope: 0.0043125865 + outSlope: 0.0043125865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.3805506 + inSlope: -0.0033048717 + outSlope: -0.0033048717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.3801291 + inSlope: -0.012580183 + outSlope: -0.012580183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.3791124 + inSlope: -0.020463115 + outSlope: -0.020463115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.3775446 + inSlope: -0.028270198 + outSlope: -0.028270198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 1.3755507 + inSlope: -0.033352114 + outSlope: -0.033352114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.3733268 + inSlope: -0.03491245 + outSlope: -0.03491245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.3711215 + inSlope: -0.03177553 + outSlope: -0.03177553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.3692164 + inSlope: -0.024943655 + outSlope: -0.024943655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.3678945 + inSlope: -0.014102592 + outSlope: -0.014102592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.3674082 + inSlope: -0.00031965153 + outSlope: -0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.3678945 + inSlope: 0.013636659 + outSlope: 0.013636659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.3692164 + inSlope: 0.024293516 + outSlope: 0.024293516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.3733199 + inSlope: 0.03336295 + outSlope: 0.03336295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 1.3755507 + inSlope: 0.031141644 + outSlope: 0.031141644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 1.3775387 + inSlope: 0.025398752 + outSlope: 0.025398752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 1.3791122 + inSlope: 0.018377254 + outSlope: 0.018377254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.380127 + inSlope: 0.009708738 + outSlope: 0.009708738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 1.3805505 + inSlope: 0.0008614338 + outSlope: 0.0008614338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 1.380415 + inSlope: -0.006154646 + outSlope: -0.006154646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 1.3799741 + inSlope: -0.009697902 + outSlope: -0.009697902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.482799 + inSlope: 0.0002167129 + outSlope: 0.0002167129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 10.482799 + inSlope: -2.5275226 + outSlope: -2.5275226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 10.149056 + inSlope: -10.501777 + outSlope: -10.501777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 9.096371 + inSlope: -22.386095 + outSlope: -22.386095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 7.1936088 + inSlope: -33.832417 + outSlope: -33.832417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 4.62959 + inSlope: -39.861866 + outSlope: -39.861866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.930528 + inSlope: -41.150543 + outSlope: -41.150543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.8036913 + inSlope: -40.97038 + outSlope: -40.97038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -3.4788964 + inSlope: -39.362724 + outSlope: -39.362724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -6.0009093 + inSlope: -36.329685 + outSlope: -36.329685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -8.275556 + inSlope: -31.869755 + outSlope: -31.869755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -10.20866 + inSlope: -25.98353 + outSlope: -25.98353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -11.70605 + inSlope: -18.67012 + outSlope: -18.67012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -12.673544 + inSlope: -9.929698 + outSlope: -9.929698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -13.01697 + inSlope: 0.00008668516 + outSlope: 0.00008668516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -12.673544 + inSlope: 9.930219 + outSlope: 9.930219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -11.70605 + inSlope: 18.67038 + outSlope: 18.67038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -8.282177 + inSlope: 31.870146 + outSlope: 31.870146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -6.0009084 + inSlope: 36.31798 + outSlope: 36.31798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.4870648 + inSlope: 39.36358 + outSlope: 39.36358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.80368954 + inSlope: 40.96713 + outSlope: 40.96713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.9219904 + inSlope: 41.150787 + outSlope: 41.150787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 4.629591 + inSlope: 39.869713 + outSlope: 39.869713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 7.1861696 + inSlope: 33.83092 + outSlope: 33.83092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 9.096371 + inSlope: 28.93568 + outSlope: 28.93568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000014307378 + inSlope: 0.000065024156 + outSlope: 0.000065024156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000045856982 + inSlope: 0.000020841075 + outSlope: 0.000020841075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000007270416 + inSlope: 0.00003304258 + outSlope: 0.00003304258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0000010738871 + inSlope: 0.000048806007 + outSlope: 0.000048806007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0000014140626 + inSlope: 0.00006426631 + outSlope: 0.00006426631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000017742483 + inSlope: 0.00008063602 + outSlope: 0.00008063602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0000019876916 + inSlope: 0.00009033659 + outSlope: 0.00009033659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0000021477742 + inSlope: 0.00009761201 + outSlope: 0.00009761201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000020277123 + inSlope: 0.00009215545 + outSlope: 0.00009215545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000188097 + inSlope: 0.0000854863 + outSlope: 0.0000854863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000016408461 + inSlope: 0.00007457315 + outSlope: 0.00007457315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000001320681 + inSlope: 0.0000600223 + outSlope: 0.0000600223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0000009638303 + inSlope: 0.00004380415 + outSlope: 0.00004380415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00000051693326 + inSlope: 0.000023493576 + outSlope: 0.000023493576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000001317346 + inSlope: 0.000005987072 + outSlope: 0.000005987072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000003201651 + inSlope: -0.00001455086 + outSlope: -0.00001455086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000007270416 + inSlope: -0.00003304258 + outSlope: -0.00003304258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000014274027 + inSlope: -0.00006487258 + outSlope: -0.00006487258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000017208874 + inSlope: -0.00007821087 + outSlope: -0.00007821087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0000019343308 + inSlope: -0.00008791145 + outSlope: -0.00008791145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000020277123 + inSlope: -0.00009215545 + outSlope: -0.00009215545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0000018542895 + inSlope: -0.00008427373 + outSlope: -0.00008427373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000014540832 + inSlope: -0.00006608516 + outSlope: -0.00006608516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00000084043336 + inSlope: -0.000038196005 + outSlope: -0.000038196005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000040020637 + inSlope: -0.0000018188575 + outSlope: -0.0000018188575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.6396201 + inSlope: 0.0000975208 + outSlope: 0.0000975208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -1.6396217 + inSlope: 0.00017337032 + outSlope: 0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.6396217 + inSlope: 0.00017337032 + outSlope: 0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.6396217 + inSlope: 0.00017337032 + outSlope: 0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -1.6396214 + inSlope: 0.00015711685 + outSlope: 0.00015711685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.639621 + inSlope: 0.00014086338 + outSlope: 0.00014086338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.6396207 + inSlope: 0.00012460991 + outSlope: 0.00012460991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99996805 + inSlope: 0.00006501387 + outSlope: 0.00006501387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99996716 + inSlope: 13.176944 + outSlope: 13.176944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 2.7396173 + inSlope: 29.206266 + outSlope: 29.206266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 4.8559427 + inSlope: 32.7718 + outSlope: 32.7718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 7.0664396 + inSlope: 32.05812 + outSlope: 32.05812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 9.088594 + inSlope: 27.065794 + outSlope: 27.065794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 10.639908 + inSlope: 17.794037 + outSlope: 17.794037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 11.437866 + inSlope: 4.242025 + outSlope: 4.242025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 11.199966 + inSlope: -10.468793 + outSlope: -10.468793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 10.055745 + inSlope: -21.289398 + outSlope: -21.289398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 8.389302 + inSlope: -28.447512 + outSlope: -28.447512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 6.2999682 + inSlope: -34.10036 + outSlope: -34.10036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 3.88707 + inSlope: -38.24897 + outSlope: -38.24897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.2499382 + inSlope: -40.89248 + outSlope: -40.89248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.5120988 + inSlope: -42.031963 + outSlope: -42.031963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -4.299711 + inSlope: -41.666523 + outSlope: -41.666523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -7.0135694 + inSlope: -39.79731 + outSlope: -39.79731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -11.816145 + inSlope: -31.545856 + outSlope: -31.545856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.71933 + inSlope: -25.18516 + outSlope: -25.18516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -15.14126 + inSlope: -17.275572 + outSlope: -17.275572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.000029 + inSlope: -2.8052185 + outSlope: -2.8052185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -15.511557 + inSlope: 20.23119 + outSlope: 20.23119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -13.329078 + inSlope: 41.44829 + outSlope: 41.44829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -10.03915 + inSlope: 54.25919 + outSlope: 54.25919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -6.164555 + inSlope: 58.67287 + outSlope: 58.67287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015744913 + inSlope: -0.00009706253 + outSlope: -0.00009706253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.015744913 + inSlope: 0.06376103 + outSlope: 0.06376103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.007179217 + inSlope: 0.13835725 + outSlope: 0.13835725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0026237713 + inSlope: 0.15246822 + outSlope: 0.15246822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.013116894 + inSlope: 0.15887016 + outSlope: 0.15887016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.023743281 + inSlope: 0.15584144 + outSlope: 0.15584144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.033951078 + inSlope: 0.14555675 + outSlope: 0.14555675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.043208595 + inSlope: 0.12790947 + outSlope: 0.12790947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05101452 + inSlope: 0.1021128 + outSlope: 0.1021128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05689836 + inSlope: 0.07011259 + outSlope: 0.07011259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06040937 + inSlope: 0.031593602 + outSlope: 0.031593602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06109328 + inSlope: -0.010168599 + outSlope: -0.010168599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.05907333 + inSlope: -0.046300337 + outSlope: -0.046300337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.05498382 + inSlope: -0.0751326 + outSlope: -0.0751326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.04910979 + inSlope: -0.09987902 + outSlope: -0.09987902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.04173913 + inSlope: -0.119761325 + outSlope: -0.119761325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.033174142 + inSlope: -0.13533837 + outSlope: -0.13533837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.023736931 + inSlope: -0.14531049 + outSlope: -0.14531049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.013801382 + inSlope: -0.15139681 + outSlope: -0.15139681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0036304179 + inSlope: -0.15100932 + outSlope: -0.15100932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.006285688 + inSlope: -0.14492433 + outSlope: -0.14492433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.015706576 + inSlope: -0.13365829 + outSlope: -0.13365829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0241633 + inSlope: -0.11771405 + outSlope: -0.11771405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.03142286 + inSlope: -0.096591465 + outSlope: -0.096591465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.03707459 + inSlope: -0.029031252 + outSlope: -0.029031252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.035294864 + inSlope: 0.026837036 + outSlope: 0.026837036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40112814 + inSlope: -0.00022932909 + outSlope: -0.00022932909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.40112814 + inSlope: -0.005035852 + outSlope: -0.005035852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.40061048 + inSlope: -0.004400168 + outSlope: -0.004400168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.40049303 + inSlope: 0.0036317015 + outSlope: 0.0036317015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.40092802 + inSlope: 0.012209428 + outSlope: 0.012209428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.40196368 + inSlope: 0.021223 + outSlope: 0.021223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.4035316 + inSlope: 0.027570453 + outSlope: 0.027570453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.40545115 + inSlope: 0.031141818 + outSlope: 0.031141818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.4074487 + inSlope: 0.029828874 + outSlope: 0.029828874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4091908 + inSlope: 0.022845656 + outSlope: 0.022845656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.41032988 + inSlope: 0.010039518 + outSlope: 0.010039518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.41056052 + inSlope: -0.0037725305 + outSlope: -0.0037725305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.40988758 + inSlope: -0.015375778 + outSlope: -0.015375778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.4086013 + inSlope: -0.02203839 + outSlope: -0.02203839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.40692863 + inSlope: -0.026418444 + outSlope: -0.026418444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.40511426 + inSlope: -0.025796078 + outSlope: -0.025796078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.40339223 + inSlope: -0.022462182 + outSlope: -0.022462182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.4019628 + inSlope: -0.017188953 + outSlope: -0.017188953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.40097654 + inSlope: -0.009886632 + outSlope: -0.009886632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.4005094 + inSlope: -0.0012244296 + outSlope: -0.0012244296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.40057862 + inSlope: 0.005959874 + outSlope: 0.005959874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.40112466 + inSlope: 0.012287212 + outSlope: 0.012287212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.4020166 + inSlope: 0.016094552 + outSlope: 0.016094552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.40308976 + inSlope: 0.016554609 + outSlope: 0.016554609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.40412515 + inSlope: 0.0056675132 + outSlope: 0.0056675132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.40378007 + inSlope: -0.004896377 + outSlope: -0.004896377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.503965 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.503966 + inSlope: 19.401144 + outSlope: 19.401144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.9170465 + inSlope: 41.56308 + outSlope: 41.56308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -3.9615624 + inSlope: 45.905533 + outSlope: 45.905533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.79547065 + inSlope: 47.879128 + outSlope: 47.879128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.4232726 + inSlope: 47.48392 + outSlope: 47.48392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.5367126 + inSlope: 44.720577 + outSlope: 44.720577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 8.386895 + inSlope: 39.588886 + outSlope: 39.588886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 10.81586 + inSlope: 32.087532 + outSlope: 32.087532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 12.665655 + inSlope: 22.216785 + outSlope: 22.216785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 13.778324 + inSlope: 9.976797 + outSlope: 9.976797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 13.995911 + inSlope: -3.1812317 + outSlope: -3.1812317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 13.354167 + inSlope: -14.504499 + outSlope: -14.504499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 12.061937 + inSlope: -23.499178 + outSlope: -23.499178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 10.220901 + inSlope: -30.967012 + outSlope: -30.967012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 7.9327416 + inSlope: -36.909954 + outSlope: -36.909954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 5.2991376 + inSlope: -41.328053 + outSlope: -41.328053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 2.4217737 + inSlope: -44.14885 + outSlope: -44.14885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.5881214 + inSlope: -45.588413 + outSlope: -45.588413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.657518 + inSlope: -45.434624 + outSlope: -45.434624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.6469145 + inSlope: -43.750217 + outSlope: -43.750217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -9.491691 + inSlope: -40.556454 + outSlope: -40.556454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -12.055137 + inSlope: -35.812977 + outSlope: -35.812977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.267293 + inSlope: -29.579128 + outSlope: -29.579128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -15.999338 + inSlope: -8.892325 + outSlope: -8.892325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -15.453005 + inSlope: 8.195208 + outSlope: 8.195208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000046690744 + inSlope: 0.0000021010856 + outSlope: 0.0000021010856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000050025797 + inSlope: 0.000002251163 + outSlope: 0.000002251163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000026680425 + inSlope: 0.0000012006203 + outSlope: 0.0000012006203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00000006670106 + inSlope: 0.0000030015399 + outSlope: 0.0000030015399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000026680425 + inSlope: 0.0000012006203 + outSlope: 0.0000012006203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000005336085 + inSlope: 0.000002401232 + outSlope: 0.000002401232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.000000080041275 + inSlope: 0.0000036018607 + outSlope: 0.0000036018607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.000000080041275 + inSlope: 0.0000036018607 + outSlope: 0.0000036018607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000090046434 + inSlope: 0.000004052079 + outSlope: 0.000004052079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000090046434 + inSlope: 0.0000040520936 + outSlope: 0.0000040520936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00000016008255 + inSlope: 0.0000072037215 + outSlope: 0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000013340212 + inSlope: 0.000006003101 + outSlope: 0.000006003101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000016008255 + inSlope: 0.0000072037215 + outSlope: 0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000080041275 + inSlope: 0.000003601848 + outSlope: 0.000003601848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000016008255 + inSlope: 0.0000072037215 + outSlope: 0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -3.6180325 + inSlope: 0.0002574914 + outSlope: 0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -3.6180322 + inSlope: 0.0002467626 + outSlope: 0.0002467626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.6180317 + inSlope: 0.00022530496 + outSlope: 0.00022530496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.6180308 + inSlope: 0.00018239039 + outSlope: 0.00018239039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.6180322 + inSlope: 0.0002467626 + outSlope: 0.0002467626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.5000001 + inSlope: 0.000005364423 + outSlope: 0.000005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.5000001 + inSlope: -19.259733 + outSlope: -19.259733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.068075 + inSlope: -42.054073 + outSlope: -42.054073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.107871 + inSlope: -46.47449 + outSlope: -46.47449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.265596 + inSlope: -45.589787 + outSlope: -45.589787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -13.187462 + inSlope: -39.4001 + outSlope: -39.4001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -15.519678 + inSlope: -27.905558 + outSlope: -27.905558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -16.90845 + inSlope: -11.102296 + outSlope: -11.102296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -16.999998 + inSlope: 6.8553896 + outSlope: 6.8553896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -15.994381 + inSlope: 19.515615 + outSlope: 19.515615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -14.397848 + inSlope: 27.58764 + outSlope: 27.58764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -12.315869 + inSlope: 34.076748 + outSlope: 34.076748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -9.853914 + inSlope: 38.98442 + outSlope: 38.98442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -7.1174536 + inSlope: 42.310062 + outSlope: 42.310062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -4.2119575 + inSlope: 44.05305 + outSlope: 44.05305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.2428943 + inSlope: 44.215958 + outSlope: 44.215958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.6842623 + inSlope: 42.796722 + outSlope: 42.796722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 4.4640427 + inSlope: 39.740677 + outSlope: 39.740677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 6.983584 + inSlope: 35.21317 + outSlope: 35.21317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 9.1595955 + inSlope: 29.070368 + outSlope: 29.070368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.85993 + inSlope: 21.302254 + outSlope: 21.302254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 12.000002 + inSlope: 7.665632 + outSlope: 7.665632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 11.882054 + inSlope: -13.311489 + outSlope: -13.311489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 10.225146 + inSlope: -32.422874 + outSlope: -32.422874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 7.558766 + inSlope: -43.96409 + outSlope: -43.96409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 4.3625736 + inSlope: -47.929016 + outSlope: -47.929016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.630448 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 12.630447 + inSlope: -2.6030755 + outSlope: -2.6030755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 12.282984 + inSlope: -10.849439 + outSlope: -10.849439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 11.181244 + inSlope: -23.321854 + outSlope: -23.321854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 9.170399 + inSlope: -35.6529 + outSlope: -35.6529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.430548 + inSlope: -42.41716 + outSlope: -42.41716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.5236228 + inSlope: -43.977036 + outSlope: -43.977036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.571734 + inSlope: -43.722305 + outSlope: -43.722305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.307041 + inSlope: -41.717712 + outSlope: -41.717712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -4.997966 + inSlope: -38.06019 + outSlope: -38.06019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -7.394275 + inSlope: -32.897755 + outSlope: -32.897755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -9.399968 + inSlope: -26.399271 + outSlope: -26.399271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -10.929749 + inSlope: -18.70012 + outSlope: -18.70012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -11.905506 + inSlope: -9.848394 + outSlope: -9.848394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -12.249275 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -11.905506 + inSlope: 9.874108 + outSlope: 9.874108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -10.929749 + inSlope: 18.783205 + outSlope: 18.783205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.399967 + inSlope: 26.488234 + outSlope: 26.488234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -7.401197 + inSlope: 33.068085 + outSlope: 33.068085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -4.9979644 + inSlope: 38.21295 + outSlope: 38.21295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -2.3158002 + inSlope: 41.838917 + outSlope: 41.838917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.57173645 + inSlope: 43.76798 + outSlope: 43.76798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 3.5144072 + inSlope: 43.941635 + outSlope: 43.941635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 6.4305496 + inSlope: 42.31217 + outSlope: 42.31217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 9.162496 + inSlope: 35.513126 + outSlope: 35.513126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 11.181246 + inSlope: 30.022831 + outSlope: 30.022831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.2700963 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.270095 + inSlope: -0.74634147 + outSlope: -0.74634147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 7.172089 + inSlope: -2.9594665 + outSlope: -2.9594665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.886192 + inSlope: -5.477679 + outSlope: -5.477679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 6.4580197 + inSlope: -6.154946 + outSlope: -6.154946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.058658 + inSlope: -4.067842 + outSlope: -4.067842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.854945 + inSlope: -0.85809314 + outSlope: -0.85809314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 5.8723826 + inSlope: 2.4674845 + outSlope: 2.4674845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 6.1062517 + inSlope: 5.4737287 + outSlope: 5.4737287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 6.5234113 + inSlope: 7.749954 + outSlope: 7.749954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 7.0645714 + inSlope: 8.936872 + outSlope: 8.936872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.648757 + inSlope: 8.767141 + outSlope: 8.767141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.180668 + inSlope: 7.116229 + outSlope: 7.116229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 8.561583 + inSlope: 4.0540447 + outSlope: 4.0540447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 8.703871 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 8.561583 + inSlope: -3.9865675 + outSlope: -3.9865675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 8.180668 + inSlope: -6.878993 + outSlope: -6.878993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 7.648758 + inSlope: -8.297432 + outSlope: -8.297432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 7.0663776 + inSlope: -8.267305 + outSlope: -8.267305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 6.523411 + inSlope: -6.8796797 + outSlope: -6.8796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 6.1072946 + inSlope: -4.4718904 + outSlope: -4.4718904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 5.872382 + inSlope: -1.3735927 + outSlope: -1.3735927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 5.8546505 + inSlope: 1.9580504 + outSlope: 1.9580504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 6.058659 + inSlope: 5.1235604 + outSlope: 5.1235604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 6.4565682 + inSlope: 6.920943 + outSlope: 6.920943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.8861933 + inSlope: 7.5898004 + outSlope: 7.5898004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 21.032192 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 21.032187 + inSlope: -4.146227 + outSlope: -4.146227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 20.479988 + inSlope: -17.169245 + outSlope: -17.169245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 18.746735 + inSlope: -36.3056 + outSlope: -36.3056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.643036 + inSlope: -54.23475 + outSlope: -54.23475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.508097 + inSlope: -63.210327 + outSlope: -63.210327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 7.1946826 + inSlope: -64.86178 + outSlope: -64.86178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 2.8435857 + inSlope: -64.52773 + outSlope: -64.52773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -1.4177064 + inSlope: -62.26521 + outSlope: -62.26521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -5.4581275 + inSlope: -57.956955 + outSlope: -57.956955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -9.136572 + inSlope: -51.40894 + outSlope: -51.40894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -12.298237 + inSlope: -42.407784 + outSlope: -42.407784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -14.77495 + inSlope: -30.787067 + outSlope: -30.787067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -16.389898 + inSlope: -16.48749 + outSlope: -16.48749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -16.966137 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -16.389898 + inSlope: 16.459793 + outSlope: 16.459793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -14.77495 + inSlope: 30.694542 + outSlope: 30.694542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -12.298236 + inSlope: 42.16913 + outSlope: 42.16913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -9.147342 + inSlope: 51.21844 + outSlope: 51.21844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -5.4581265 + inSlope: 57.75778 + outSlope: 57.75778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.4307436 + inSlope: 62.1478 + outSlope: 62.1478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 2.8435912 + inSlope: 64.50245 + outSlope: 64.50245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.181078 + inSlope: 64.952286 + outSlope: 64.952286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 11.508103 + inSlope: 63.41448 + outSlope: 63.41448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 15.630971 + inSlope: 54.43778 + outSlope: 54.43778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 18.746738 + inSlope: 47.091396 + outSlope: 47.091396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000003877802 + inSlope: -0.00017450127 + outSlope: -0.00017450127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000027512317 + inSlope: 26.893198 + outSlope: 26.893198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.5440333 + inSlope: 56.87918 + outSlope: 56.87918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 7.6020274 + inSlope: 60.04873 + outSlope: 60.04873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 11.605304 + inSlope: 55.26184 + outSlope: 55.26184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 15.063581 + inSlope: 44.13633 + outSlope: 44.13633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 17.606316 + inSlope: 28.585423 + outSlope: 28.585423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 18.978983 + inSlope: 9.793892 + outSlope: 9.793892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 18.960844 + inSlope: -8.887176 + outSlope: -8.887176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 17.782438 + inSlope: -22.861717 + outSlope: -22.861717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.905671 + inSlope: -33.01262 + outSlope: -33.01262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 13.386767 + inSlope: -42.262512 + outSlope: -42.262512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 10.292654 + inSlope: -50.31082 + outSlope: -50.31082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.714186 + inSlope: -56.743 + outSlope: -56.743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 2.7706447 + inSlope: -61.14376 + outSlope: -61.14376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.3923022 + inSlope: -63.16716 + outSlope: -63.16716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -5.608282 + inSlope: -62.566254 + outSlope: -62.566254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.697189 + inSlope: -59.116116 + outSlope: -59.116116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.460791 + inSlope: -53.009514 + outSlope: -53.009514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -16.744076 + inSlope: -44.062256 + outSlope: -44.062256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -19.321869 + inSlope: -32.327988 + outSlope: -32.327988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -21.0472 + inSlope: -11.155768 + outSlope: -11.155768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -20.80654 + inSlope: 21.755877 + outSlope: 21.755877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -18.15244 + inSlope: 51.49314 + outSlope: 51.49314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -13.944873 + inSlope: 68.846016 + outSlope: 68.846016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.965473 + inSlope: 73.98218 + outSlope: 73.98218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.8084545 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 2.8084538 + inSlope: 9.299367 + outSlope: 9.299367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.163907 + inSlope: 25.419083 + outSlope: 25.419083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.1446137 + inSlope: 34.309246 + outSlope: 34.309246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 8.62374 + inSlope: 39.88766 + outSlope: 39.88766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.303883 + inSlope: 39.405766 + outSlope: 39.405766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 13.709719 + inSlope: 30.531635 + outSlope: 30.531635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 15.243725 + inSlope: 12.408554 + outSlope: 12.408554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 15.310241 + inSlope: -8.685345 + outSlope: -8.685345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 14.101981 + inSlope: -22.80923 + outSlope: -22.80923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 12.277552 + inSlope: -30.307617 + outSlope: -30.307617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 10.051935 + inSlope: -34.59229 + outSlope: -34.59229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 7.63224 + inSlope: -35.96616 + outSlope: -35.96616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.1995034 + inSlope: -34.92877 + outSlope: -34.92877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 2.8985286 + inSlope: -32.063606 + outSlope: -32.063606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.83515996 + inSlope: -27.938189 + outSlope: -27.938189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.9213454 + inSlope: -23.058752 + outSlope: -23.058752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -2.3338091 + inSlope: -17.840773 + outSlope: -17.840773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.3898842 + inSlope: -12.741095 + outSlope: -12.741095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -4.1121454 + inSlope: -8.000415 + outSlope: -8.000415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -4.525356 + inSlope: -3.8886704 + outSlope: -3.8886704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -4.681186 + inSlope: 1.2663257 + outSlope: 1.2663257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -4.390664 + inSlope: 8.355467 + outSlope: 8.355467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -3.553539 + inSlope: 15.658783 + outSlope: 15.658783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -2.2827377 + inSlope: 21.802046 + outSlope: 21.802046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.65721697 + inSlope: 26.057102 + outSlope: 26.057102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000006983028 + inSlope: -0.00031423656 + outSlope: -0.00031423656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000011448486 + inSlope: 32.966576 + outSlope: 32.966576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.433602 + inSlope: 72.937935 + outSlope: 72.937935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 9.721598 + inSlope: 82.59663 + outSlope: 82.59663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.407331 + inSlope: 84.791275 + outSlope: 84.791275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 20.946276 + inSlope: 77.70972 + outSlope: 77.70972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 25.664175 + inSlope: 59.41798 + outSlope: 59.41798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 28.778515 + inSlope: 28.998611 + outSlope: 28.998611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 29.49365 + inSlope: -4.268107 + outSlope: -4.268107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 28.224543 + inSlope: -26.075037 + outSlope: -26.075037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 26.022821 + inSlope: -38.147057 + outSlope: -38.147057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 23.127674 + inSlope: -46.687305 + outSlope: -46.687305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 19.766382 + inSlope: -52.046837 + outSlope: -52.046837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.137604 + inSlope: -54.751106 + outSlope: -54.751106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 12.403377 + inSlope: -55.359947 + outSlope: -55.359947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 8.689813 + inSlope: -54.357162 + outSlope: -54.357162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 5.094535 + inSlope: -52.069366 + outSlope: -52.069366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.6980815 + inSlope: -48.565434 + outSlope: -48.565434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.4140371 + inSlope: -44.00349 + outSlope: -44.00349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -4.185615 + inSlope: -37.990437 + outSlope: -37.990437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.4820504 + inSlope: -30.233953 + outSlope: -30.233953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -8.210961 + inSlope: -17.53587 + outSlope: -17.53587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -8.809514 + inSlope: 0.8708788 + outSlope: 0.8708788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -8.086274 + inSlope: 17.753279 + outSlope: 17.753279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -6.440918 + inSlope: 28.840511 + outSlope: 28.840511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -4.248561 + inSlope: 33.981903 + outSlope: 33.981903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000022078052 + inSlope: -0.00009935133 + outSlope: -0.00009935133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.000002067733 + inSlope: -0.000093048075 + outSlope: -0.000093048075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000023612176 + inSlope: -0.0001062549 + outSlope: -0.0001062549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000002694723 + inSlope: -0.00012126222 + outSlope: -0.00012126222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000029882076 + inSlope: -0.00013446948 + outSlope: -0.00013446948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000033617334 + inSlope: -0.00015127815 + outSlope: -0.00015127815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000035751768 + inSlope: -0.00016088312 + outSlope: -0.00016088312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000003841981 + inSlope: -0.00017288933 + outSlope: -0.00017288933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000037886202 + inSlope: -0.00017048807 + outSlope: -0.00017048807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000036818988 + inSlope: -0.00016568502 + outSlope: -0.00016568502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000033083727 + inSlope: -0.00014887692 + outSlope: -0.00014887692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000029882076 + inSlope: -0.00013446948 + outSlope: -0.00013446948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000027214032 + inSlope: -0.00012246327 + outSlope: -0.00012246327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000002321197 + inSlope: -0.00010445396 + outSlope: -0.00010445396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000019343308 + inSlope: -0.00008704497 + outSlope: -0.00008704497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000015274543 + inSlope: -0.00006873526 + outSlope: -0.00006873526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000011072376 + inSlope: -0.000049825743 + outSlope: -0.000049825743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00000080041275 + inSlope: -0.00003601861 + outSlope: -0.00003601861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000005336085 + inSlope: -0.000024012405 + outSlope: -0.000024012405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0000003201651 + inSlope: -0.000014407443 + outSlope: -0.000014407443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000016008255 + inSlope: -0.0000072037215 + outSlope: -0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000016008255 + inSlope: -0.000007203696 + outSlope: -0.000007203696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0000002134434 + inSlope: -0.0000096049625 + outSlope: -0.0000096049625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000007470519 + inSlope: -0.00003361737 + outSlope: -0.00003361737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0000013073409 + inSlope: -0.000058830396 + outSlope: -0.000058830396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.829681 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.829682 + inSlope: -0.000021457616 + outSlope: -0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 5.829683 + inSlope: -0.000064373075 + outSlope: -0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.8296814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.829682 + inSlope: -0.000021457616 + outSlope: -0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.8296814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 5.829682 + inSlope: -0.000021457616 + outSlope: -0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 5.829681 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 5.829681 + inSlope: 0.000021457616 + outSlope: 0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.829681 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 5.8296814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.9999715 + inSlope: 0.000091195194 + outSlope: 0.000091195194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.9999719 + inSlope: -17.593828 + outSlope: -17.593828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.345891 + inSlope: -38.64423 + outSlope: -38.64423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.153033 + inSlope: -42.96662 + outSlope: -42.96662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.075482 + inSlope: -42.101837 + outSlope: -42.101837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -12.76732 + inSlope: -36.04957 + outSlope: -36.04957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -14.882625 + inSlope: -24.810114 + outSlope: -24.810114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -16.075483 + inSlope: -8.379915 + outSlope: -8.379915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -15.999973 + inSlope: 9.298734 + outSlope: 9.298734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.835682 + inSlope: 21.99749 + outSlope: 21.99749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.066894 + inSlope: 30.230242 + outSlope: 30.230242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -10.804753 + inSlope: 36.796207 + outSlope: 36.796207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -8.160405 + inSlope: 41.694057 + outSlope: 41.694057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -5.244984 + inSlope: 44.924706 + outSlope: 44.924706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -2.1696343 + inSlope: 46.489487 + outSlope: 46.489487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.954506 + inSlope: 46.38793 + outSlope: 46.38793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 4.0162935 + inSlope: 44.619083 + outSlope: 44.619083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 6.9045877 + inSlope: 41.127316 + outSlope: 41.127316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 9.500673 + inSlope: 36.082485 + outSlope: 36.082485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 11.716135 + inSlope: 29.338589 + outSlope: 29.338589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 13.412698 + inSlope: 20.878464 + outSlope: 20.878464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 14.500027 + inSlope: 5.7206206 + outSlope: 5.7206206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.175489 + inSlope: -18.003712 + outSlope: -18.003712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 12.099442 + inSlope: -39.739647 + outSlope: -39.739647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 8.876472 + inSlope: -52.863857 + outSlope: -52.863857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 5.049735 + inSlope: -57.377827 + outSlope: -57.377827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.962196 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -14.962194 + inSlope: 3.0640726 + outSlope: 3.0640726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -14.553241 + inSlope: 12.768314 + outSlope: 12.768314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -13.256918 + inSlope: 27.4303 + outSlope: 27.4303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.892917 + inSlope: 41.872498 + outSlope: 41.872498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.6775427 + inSlope: 49.690823 + outSlope: 49.690823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -4.2754693 + inSlope: 51.346134 + outSlope: 51.346134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.8332124 + inSlope: 50.83613 + outSlope: 50.83613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 2.5089579 + inSlope: 48.26569 + outSlope: 48.26569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.616912 + inSlope: 43.786625 + outSlope: 43.786625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 8.36869 + inSlope: 37.61967 + outSlope: 37.61967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 10.65806 + inSlope: 30.009441 + outSlope: 30.009441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 12.394219 + inSlope: 21.146942 + outSlope: 21.146942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 13.496451 + inSlope: 11.097275 + outSlope: 11.097275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 13.883731 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 13.496452 + inSlope: -11.137017 + outSlope: -11.137017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 12.394219 + inSlope: -21.274057 + outSlope: -21.274057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 10.65806 + inSlope: -30.168228 + outSlope: -30.168228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 8.376614 + inSlope: -37.89102 + outSlope: -37.89102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 5.6169114 + inSlope: -44.048286 + outSlope: -44.048286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 2.5191007 + inSlope: -48.488056 + outSlope: -48.488056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.8332158 + inSlope: -50.964508 + outSlope: -50.964508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -4.264704 + inSlope: -51.365993 + outSlope: -51.365993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.6775446 + inSlope: -49.61323 + outSlope: -49.61323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -10.883632 + inSlope: -41.731136 + outSlope: -41.731136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -13.256918 + inSlope: -35.318073 + outSlope: -35.318073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.567997 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -7.5679994 + inSlope: 0.7878621 + outSlope: 0.7878621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -7.464947 + inSlope: 3.0897574 + outSlope: 3.0897574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.169756 + inSlope: 5.521388 + outSlope: 5.521388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -6.7493196 + inSlope: 5.647257 + outSlope: 5.647257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -6.4076076 + inSlope: 2.6456263 + outSlope: 2.6456263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -6.319826 + inSlope: -1.4418712 + outSlope: -1.4418712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -6.5100923 + inSlope: -5.571168 + outSlope: -5.571168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -6.9661584 + inSlope: -9.217431 + outSlope: -9.217431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.641301 + inSlope: -11.878035 + outSlope: -11.878035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -8.456609 + inSlope: -13.105114 + outSlope: -13.105114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -9.305789 + inSlope: -12.553823 + outSlope: -12.553823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -10.063885 + inSlope: -10.055418 + outSlope: -10.055418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -10.600919 + inSlope: -5.6896787 + outSlope: -5.6896787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -10.80054 + inSlope: 0.00012874615 + outSlope: 0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -10.60092 + inSlope: 5.6043 + outSlope: 5.6043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -10.063885 + inSlope: 9.754324 + outSlope: 9.754324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.305789 + inSlope: 11.957385 + outSlope: 11.957385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -8.459272 + inSlope: 12.263414 + outSlope: 12.263414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -7.6412992 + inSlope: 10.788713 + outSlope: 10.788713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.96796 + inSlope: 7.968679 + outSlope: 7.968679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -6.510092 + inSlope: 4.210085 + outSlope: 4.210085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -6.3199844 + inSlope: 0.07038098 + outSlope: 0.07038098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -6.407607 + inSlope: -3.970231 + outSlope: -3.970231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -6.7479563 + inSlope: -6.617166 + outSlope: -6.617166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -7.169755 + inSlope: -7.787898 + outSlope: -7.787898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 21.253641 + inSlope: 0.0002574923 + outSlope: 0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 21.253641 + inSlope: -4.468436 + outSlope: -4.468436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 20.658638 + inSlope: -18.488977 + outSlope: -18.488977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 18.793674 + inSlope: -39.0084 + outSlope: -39.0084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.462622 + inSlope: -58.098076 + outSlope: -58.098076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.036817 + inSlope: -67.56723 + outSlope: -67.56723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 6.426696 + inSlope: -69.31757 + outSlope: -69.31757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.7742345 + inSlope: -69.079506 + outSlope: -69.079506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.7927227 + inSlope: -66.885605 + outSlope: -66.885605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.1395845 + inSlope: -62.544445 + outSlope: -62.544445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -11.116035 + inSlope: -55.763565 + outSlope: -55.763565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -14.551224 + inSlope: -46.228455 + outSlope: -46.228455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -17.254732 + inSlope: -33.69776 + outSlope: -33.69776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -19.023869 + inSlope: -18.093641 + outSlope: -18.093641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -19.656366 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -19.02387 + inSlope: 18.051434 + outSlope: 18.051434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -17.25473 + inSlope: 33.556396 + outSlope: 33.556396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -14.551222 + inSlope: 45.896717 + outSlope: 45.896717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -11.127706 + inSlope: 55.464058 + outSlope: 55.464058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -7.139581 + inSlope: 62.229774 + outSlope: 62.229774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -2.8067217 + inSlope: 66.67424 + outSlope: 66.67424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.7742386 + inSlope: 68.997986 + outSlope: 68.997986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 6.4121594 + inSlope: 69.403694 + outSlope: 69.403694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 11.036819 + inSlope: 67.818665 + outSlope: 67.818665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 15.449689 + inSlope: 58.368484 + outSlope: 58.368484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 18.793674 + inSlope: 50.645477 + outSlope: 50.645477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000048291568 + inSlope: -0.00021731226 + outSlope: -0.00021731226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000020010319 + inSlope: -21.191952 + outSlope: -21.191952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -2.8000195 + inSlope: -45.06316 + outSlope: -45.06316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -6.0196495 + inSlope: -48.07965 + outSlope: -48.07965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -9.242323 + inSlope: -45.202003 + outSlope: -45.202003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -12.09832 + inSlope: -37.341534 + outSlope: -37.341534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -14.282874 + inSlope: -25.481825 + outSlope: -25.481825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -15.548732 + inSlope: -10.152278 + outSlope: -10.152278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -15.658481 + inSlope: 5.5413632 + outSlope: 5.5413632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.801258 + inSlope: 17.008337 + outSlope: 17.008337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.387346 + inSlope: 25.039326 + outSlope: 25.039326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -11.468073 + inSlope: 32.245335 + outSlope: 32.245335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -9.103549 + inSlope: 38.4118 + outSlope: 38.4118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -6.3706803 + inSlope: 43.249718 + outSlope: 43.249718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -3.3658304 + inSlope: 46.478436 + outSlope: 46.478436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.2031886 + inSlope: 47.86605 + outSlope: 47.86605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 2.9895513 + inSlope: 47.260323 + outSlope: 47.260323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 6.076721 + inSlope: 44.53175 + outSlope: 44.53175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 8.911719 + inSlope: 39.868435 + outSlope: 39.868435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 11.383236 + inSlope: 33.166553 + outSlope: 33.166553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 13.329126 + inSlope: 24.48812 + outSlope: 24.48812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 14.646443 + inSlope: 9.214577 + outSlope: 9.214577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.556739 + inSlope: -14.232365 + outSlope: -14.232365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 12.747941 + inSlope: -35.602646 + outSlope: -35.602646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 9.812214 + inSlope: -48.33182 + outSlope: -48.33182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.30436 + inSlope: -52.199207 + outSlope: -52.199207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.1629066 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -5.162909 + inSlope: -7.9208713 + outSlope: -7.9208713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.285508 + inSlope: -20.099464 + outSlope: -20.099464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.8134627 + inSlope: -25.694143 + outSlope: -25.694143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -9.643841 + inSlope: -28.872955 + outSlope: -28.872955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.569108 + inSlope: -27.9801 + outSlope: -27.9801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -13.275704 + inSlope: -21.643387 + outSlope: -21.643387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -14.378157 + inSlope: -9.35152 + outSlope: -9.35152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -14.492242 + inSlope: 4.687433 + outSlope: 4.687433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -13.765097 + inSlope: 13.869087 + outSlope: 13.869087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -12.648406 + inSlope: 18.542837 + outSlope: 18.542837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -11.285529 + inSlope: 21.052872 + outSlope: 21.052872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -9.816859 + inSlope: 21.568027 + outSlope: 21.568027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -8.366911 + inSlope: 20.41665 + outSlope: 20.41665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -7.035547 + inSlope: 18.017317 + outSlope: 18.017317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -5.8933477 + inSlope: 14.827684 + outSlope: 14.827684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -4.980393 + inSlope: 11.296038 + outSlope: 11.296038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -4.3073077 + inSlope: 7.8330665 + outSlope: 7.8330665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.858987 + inSlope: 4.848119 + outSlope: 4.848119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.5933144 + inSlope: 2.577294 + outSlope: 2.577294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.458962 + inSlope: 1.2095487 + outSlope: 1.2095487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -3.3933234 + inSlope: 0.9069523 + outSlope: 0.9069523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.3192549 + inSlope: 1.3044084 + outSlope: 1.3044084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -3.251519 + inSlope: -0.11978757 + outSlope: -0.11978757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -3.3509014 + inSlope: -3.9662936 + outSlope: -3.9662936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -3.741898 + inSlope: -8.620134 + outSlope: -8.620134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.0000005 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 3.0000002 + inSlope: 24.066936 + outSlope: 24.066936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6.2331414 + inSlope: 53.79244 + outSlope: 53.79244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 10.16695 + inSlope: 61.279346 + outSlope: 61.279346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 14.37905 + inSlope: 62.086933 + outSlope: 62.086933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 18.399067 + inSlope: 55.256306 + outSlope: 55.256306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 21.688402 + inSlope: 39.76771 + outSlope: 39.76771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 23.650764 + inSlope: 15.112739 + outSlope: 15.112739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 23.681618 + inSlope: -11.996052 + outSlope: -11.996052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 22.058966 + inSlope: -30.8594 + outSlope: -30.8594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 19.570139 + inSlope: -42.268307 + outSlope: -42.268307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 16.417444 + inSlope: -50.67835 + outSlope: -50.67835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 12.795955 + inSlope: -56.29447 + outSlope: -56.29447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 8.884202 + inSlope: -59.419655 + outSlope: -59.419655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 4.8398404 + inSlope: -60.36978 + outSlope: -60.36978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8004541 + inSlope: -59.40811 + outSlope: -59.40811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.1113257 + inSlope: -56.6903 + outSlope: -56.6903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -6.7801175 + inSlope: -52.174957 + outSlope: -52.174957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -10.079833 + inSlope: -45.992977 + outSlope: -45.992977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -12.9151125 + inSlope: -37.796566 + outSlope: -37.796566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -15.115462 + inSlope: -27.394478 + outSlope: -27.394478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -16.561779 + inSlope: -8.563336 + outSlope: -8.563336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -16.253592 + inSlope: 20.853626 + outSlope: 20.853626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -13.789541 + inSlope: 47.285458 + outSlope: 47.285458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -9.946794 + inSlope: 62.828167 + outSlope: 62.828167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -5.396199 + inSlope: 68.1368 + outSlope: 68.1368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.800188 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -8.80018 + inSlope: 3.3739216 + outSlope: 3.3739216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -8.349689 + inSlope: 14.0715685 + outSlope: 14.0715685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -6.9200587 + inSlope: 30.287832 + outSlope: 30.287832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -4.3068314 + inSlope: 46.3778 + outSlope: 46.3778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.7406351 + inSlope: 55.24224 + outSlope: 55.24224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.0463345 + inSlope: 57.28512 + outSlope: 57.28512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 6.8911486 + inSlope: 56.89666 + outSlope: 56.89666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 10.635491 + inSlope: 54.16501 + outSlope: 54.16501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 14.125975 + inSlope: 49.235874 + outSlope: 49.235874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 17.221695 + inSlope: 42.350277 + outSlope: 42.350277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 19.799435 + inSlope: 33.79346 + outSlope: 33.79346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 21.754478 + inSlope: 23.806366 + outSlope: 23.806366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 22.995237 + inSlope: 12.488806 + outSlope: 12.488806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 23.431032 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 22.995241 + inSlope: -12.5340805 + outSlope: -12.5340805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 21.754477 + inSlope: -23.954596 + outSlope: -23.954596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 19.799429 + inSlope: -33.972763 + outSlope: -33.972763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 17.230614 + inSlope: -42.644505 + outSlope: -42.644505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 14.12597 + inSlope: -49.502083 + outSlope: -49.502083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.646871 + inSlope: -54.371605 + outSlope: -54.371605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.8911443 + inSlope: -56.982727 + outSlope: -56.982727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 3.0583389 + inSlope: -57.242256 + outSlope: -57.242256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.7406394 + inSlope: -55.089245 + outSlope: -55.089245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -4.296555 + inSlope: -46.16938 + outSlope: -46.16938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -6.9200573 + inSlope: -38.96176 + outSlope: -38.96176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 83.50871 + inSlope: 0.00068664615 + outSlope: 0.00068664615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 83.50871 + inSlope: -1.0182962 + outSlope: -1.0182962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 83.37503 + inSlope: -4.034733 + outSlope: -4.034733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 82.985695 + inSlope: -7.443561 + outSlope: -7.443561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 82.40516 + inSlope: -8.296402 + outSlope: -8.296402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 81.8703 + inSlope: -5.322881 + outSlope: -5.322881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 81.61132 + inSlope: -0.7659538 + outSlope: -0.7659538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 81.667786 + inSlope: 4.0374794 + outSlope: 4.0374794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 82.03909 + inSlope: 8.491066 + outSlope: 8.491066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 82.684555 + inSlope: 11.981246 + outSlope: 11.981246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 83.52293 + inSlope: 13.911108 + outSlope: 13.911108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 84.43517 + inSlope: 13.775839 + outSlope: 13.775839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 85.27337 + inSlope: 11.276446 + outSlope: 11.276446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 85.87815 + inSlope: 6.460997 + outSlope: 6.460997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 86.10502 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 85.87815 + inSlope: -6.344931 + outSlope: -6.344931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 85.27335 + inSlope: -10.874072 + outSlope: -10.874072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 84.435165 + inSlope: -12.997525 + outSlope: -12.997525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 83.52573 + inSlope: -12.833417 + outSlope: -12.833417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 82.68456 + inSlope: -10.627566 + outSlope: -10.627566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 82.04072 + inSlope: -6.9862814 + outSlope: -6.9862814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 81.667786 + inSlope: -2.443087 + outSlope: -2.443087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 81.61099 + inSlope: 2.3304687 + outSlope: 2.3304687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 81.8703 + inSlope: 6.8032904 + outSlope: 6.8032904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 82.4032 + inSlope: 9.36036 + outSlope: 9.36036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 82.985695 + inSlope: 10.328188 + outSlope: 10.328188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -18.830765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -18.830763 + inSlope: 4.5304055 + outSlope: 4.5304055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -18.22744 + inSlope: 18.75059 + outSlope: 18.75059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -16.335497 + inSlope: 39.595394 + outSlope: 39.595394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -12.952039 + inSlope: 59.091267 + outSlope: 59.091267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -8.445062 + inSlope: 68.97811 + outSlope: 68.97811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.7305555 + inSlope: 71.14388 + outSlope: 71.14388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.0555811 + inSlope: 71.40875 + outSlope: 71.40875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.7901535 + inSlope: 69.755356 + outSlope: 69.755356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 10.338525 + inSlope: 65.89063 + outSlope: 65.89063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 14.542249 + inSlope: 59.371677 + outSlope: 59.371677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 18.21167 + inSlope: 49.71318 + outSlope: 49.71318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 21.126791 + inSlope: 36.53756 + outSlope: 36.53756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 23.048296 + inSlope: 19.723139 + outSlope: 19.723139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 23.738035 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 23.048292 + inSlope: -19.650284 + outSlope: -19.650284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 21.12679 + inSlope: -36.2956 + outSlope: -36.2956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 18.211666 + inSlope: -49.201458 + outSlope: -49.201458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 14.554654 + inSlope: -58.84888 + outSlope: -58.84888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 10.338524 + inSlope: -65.33541 + outSlope: -65.33541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 5.8047314 + inSlope: -69.322334 + outSlope: -69.322334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.0555769 + inSlope: -71.14292 + outSlope: -71.14292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.71565 + inSlope: -71.09383 + outSlope: -71.09383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -8.4450655 + inSlope: -69.138535 + outSlope: -69.138535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -12.938893 + inSlope: -59.31709 + outSlope: -59.31709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -16.335499 + inSlope: -51.382935 + outSlope: -51.382935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.655157 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 9.655158 + inSlope: 2.839668 + outSlope: 2.839668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 10.032869 + inSlope: 13.357928 + outSlope: 13.357928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 11.427602 + inSlope: 24.613216 + outSlope: 24.613216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 13.315917 + inSlope: 27.386238 + outSlope: 27.386238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 15.098652 + inSlope: 22.859652 + outSlope: 22.859652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 16.394327 + inSlope: 13.012202 + outSlope: 13.012202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 16.864294 + inSlope: -1.6488949 + outSlope: -1.6488949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 16.189348 + inSlope: -16.339518 + outSlope: -16.339518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 14.682876 + inSlope: -26.727564 + outSlope: -26.727564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 12.624744 + inSlope: -34.232918 + outSlope: -34.232918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 10.120102 + inSlope: -40.10975 + outSlope: -40.10975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 7.280025 + inSlope: -44.24591 + outSlope: -44.24591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 4.2233176 + inSlope: -46.53425 + outSlope: -46.53425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.0751679 + inSlope: -46.909058 + outSlope: -46.909058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.0366123 + inSlope: -45.375874 + outSlope: -45.375874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -4.9866776 + inSlope: -42.02418 + outSlope: -42.02418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -7.6575336 + inSlope: -36.96551 + outSlope: -36.96551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -9.937444 + inSlope: -30.556913 + outSlope: -30.556913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -11.754694 + inSlope: -22.877247 + outSlope: -22.877247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -13.0084715 + inSlope: -14.051398 + outSlope: -14.051398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -13.642294 + inSlope: 1.9633789 + outSlope: 1.9633789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -12.748873 + inSlope: 28.308346 + outSlope: 28.308346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -9.841801 + inSlope: 54.301525 + outSlope: 54.301525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -5.505902 + inSlope: 71.759865 + outSlope: 71.759865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.30413595 + inSlope: 79.21964 + outSlope: 79.21964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.8378866 + inSlope: 0.00018239039 + outSlope: 0.00018239039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 3.8378866 + inSlope: -0.9425828 + outSlope: -0.9425828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.7092686 + inSlope: -4.21163 + outSlope: -4.21163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 3.2472603 + inSlope: -8.90402 + outSlope: -8.90402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 2.526065 + inSlope: -12.364577 + outSlope: -12.364577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.6546695 + inSlope: -13.526532 + outSlope: -13.526532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7931546 + inSlope: -11.454755 + outSlope: -11.454755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.18250504 + inSlope: -5.5931797 + outSlope: -5.5931797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.058194418 + inSlope: 0.8494985 + outSlope: 0.8494985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2771466 + inSlope: 3.8650625 + outSlope: 3.8650625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5719875 + inSlope: 4.1790843 + outSlope: 4.1790843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8484145 + inSlope: 3.1354382 + outSlope: 3.1354382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.0222906 + inSlope: 0.98750985 + outSlope: 0.98750985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.0296571 + inSlope: -1.9031149 + outSlope: -1.9031149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.83266354 + inSlope: -5.112381 + outSlope: -5.112381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.42273846 + inSlope: -8.185197 + outSlope: -8.185197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.17807826 + inSlope: -10.6625595 + outSlope: -10.6625595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.91737676 + inSlope: -12.084833 + outSlope: -12.084833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.7122958 + inSlope: -12.1186075 + outSlope: -12.1186075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.4674664 + inSlope: -10.482426 + outSlope: -10.482426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.0583453 + inSlope: -7.061662 + outSlope: -7.061662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -3.3773656 + inSlope: 1.3314284 + outSlope: 1.3314284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -2.8763723 + inSlope: 15.112298 + outSlope: 15.112298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.4200873 + inSlope: 24.430763 + outSlope: 24.430763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.3698175 + inSlope: 25.069891 + outSlope: 25.069891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.0011103 + inSlope: 19.809902 + outSlope: 19.809902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.512966 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.512966 + inSlope: -7.6617694 + outSlope: -7.6617694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -10.53534 + inSlope: -34.035633 + outSlope: -34.035633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -14.060365 + inSlope: -61.573357 + outSlope: -61.573357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -18.74744 + inSlope: -70.31651 + outSlope: -70.31651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -23.420328 + inSlope: -64.694 + outSlope: -64.694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -27.346987 + inSlope: -47.679935 + outSlope: -47.679935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -29.753153 + inSlope: -18.889893 + outSlope: -18.889893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -29.85988 + inSlope: 11.34142 + outSlope: 11.34142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -28.249147 + inSlope: 30.384756 + outSlope: 30.384756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -25.80804 + inSlope: 41.485615 + outSlope: 41.485615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -22.710155 + inSlope: 50.085175 + outSlope: 50.085175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -19.116636 + inSlope: 56.407898 + outSlope: 56.407898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -15.173647 + inSlope: 60.665962 + outSlope: 60.665962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -11.014862 + inSlope: 62.995667 + outSlope: 62.995667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -6.76783 + inSlope: 63.416008 + outSlope: 63.416008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -2.5621297 + inSlope: 61.81857 + outSlope: 61.81857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.4626471 + inSlope: 57.91377 + outSlope: 57.91377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 5.1403475 + inSlope: 51.67506 + outSlope: 51.67506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 8.330698 + inSlope: 42.660896 + outSlope: 42.660896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.80792 + inSlope: 30.695915 + outSlope: 30.695915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 12.409827 + inSlope: 8.544325 + outSlope: 8.544325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 11.948261 + inSlope: -25.811796 + outSlope: -25.811796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 9.001399 + inSlope: -55.202705 + outSlope: -55.202705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 4.5813723 + inSlope: -70.685974 + outSlope: -70.685974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.48223785 + inSlope: -74.34872 + outSlope: -74.34872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.937685 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.937685 + inSlope: -3.1916173 + outSlope: -3.1916173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 7.511624 + inSlope: -13.304306 + outSlope: -13.304306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.1603765 + inSlope: -28.61137 + outSlope: -28.61137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 3.692854 + inSlope: -43.772232 + outSlope: -43.772232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.32741416 + inSlope: -52.14763 + outSlope: -52.14763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.2486274 + inSlope: -54.163303 + outSlope: -54.163303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -6.8869977 + inSlope: -53.966763 + outSlope: -53.966763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.443298 + inSlope: -51.61794 + outSlope: -51.61794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -13.775596 + inSlope: -47.20577 + outSlope: -47.20577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -16.750021 + inSlope: -40.89227 + outSlope: -40.89227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -19.24463 + inSlope: -32.87104 + outSlope: -32.87104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -21.150229 + inSlope: -23.310694 + outSlope: -23.310694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -22.366875 + inSlope: -12.284443 + outSlope: -12.284443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -22.79571 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -22.366879 + inSlope: 12.314783 + outSlope: 12.314783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -21.15023 + inSlope: 23.407425 + outSlope: 23.407425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -19.244629 + inSlope: 32.965195 + outSlope: 32.965195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -16.758625 + inSlope: 41.077404 + outSlope: 41.077404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -13.775598 + inSlope: 47.35906 + outSlope: 47.35906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -10.454131 + inSlope: 51.7257 + outSlope: 51.7257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -6.886995 + inSlope: 53.98281 + outSlope: 53.98281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.259974 + inSlope: 54.08463 + outSlope: 54.08463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.32741585 + inSlope: 51.993176 + outSlope: 51.993176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 3.683155 + inSlope: 43.586754 + outSlope: 43.586754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.160377 + inSlope: 36.821766 + outSlope: 36.821766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -87.26685 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -87.26685 + inSlope: 0.96679777 + outSlope: 0.96679777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -87.13964 + inSlope: 3.8548315 + outSlope: 3.8548315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -86.76533 + inSlope: 7.253704 + outSlope: 7.253704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -86.19131 + inSlope: 8.50274 + outSlope: 8.50274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -85.62388 + inSlope: 6.308905 + outSlope: 6.308905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -85.27981 + inSlope: 2.5762963 + outSlope: 2.5762963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -85.196526 + inSlope: -1.4254774 + outSlope: -1.4254774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -85.377594 + inSlope: -5.194478 + outSlope: -5.194478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -85.79318 + inSlope: -8.225991 + outSlope: -8.225991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -86.3801 + inSlope: -10.030527 + outSlope: -10.030527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -87.04416 + inSlope: -10.192575 + outSlope: -10.192575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -87.66753 + inSlope: -8.46772 + outSlope: -8.46772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -88.12278 + inSlope: -4.888234 + outSlope: -4.888234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -88.29451 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -88.12277 + inSlope: 4.7914 + outSlope: 4.7914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -87.667534 + inSlope: 8.13195 + outSlope: 8.13195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -87.04416 + inSlope: 9.549875 + outSlope: 9.549875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -86.3821 + inSlope: 9.13926 + outSlope: 9.13926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -85.79319 + inSlope: 7.1067877 + outSlope: 7.1067877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -85.37855 + inSlope: 3.9468422 + outSlope: 3.9468422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -85.196526 + inSlope: 0.10025034 + outSlope: 0.10025034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -85.27914 + inSlope: -3.8795369 + outSlope: -3.8795369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -85.62388 + inSlope: -7.5434947 + outSlope: -7.5434947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -86.18931 + inSlope: -9.389886 + outSlope: -9.389886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -86.76533 + inSlope: -9.965982 + outSlope: -9.965982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -16.82643 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -16.826437 + inSlope: 3.998598 + outSlope: 3.998598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -16.293938 + inSlope: 16.551949 + outSlope: 16.551949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -14.623622 + inSlope: 34.965744 + outSlope: 34.965744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -11.635385 + inSlope: 52.19854 + outSlope: 52.19854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.6546636 + inSlope: 60.90691 + outSlope: 60.90691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.4938874 + inSlope: 62.730213 + outSlope: 62.730213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7226517 + inSlope: 62.811844 + outSlope: 62.811844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 4.882618 + inSlope: 61.162834 + outSlope: 61.162834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 8.865718 + inSlope: 57.567738 + outSlope: 57.567738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 12.533845 + inSlope: 51.68725 + outSlope: 51.68725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 15.724882 + inSlope: 43.145496 + outSlope: 43.145496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 18.252796 + inSlope: 31.635677 + outSlope: 31.635677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 19.915737 + inSlope: 17.053717 + outSlope: 17.053717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 20.51204 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 19.915735 + inSlope: -16.995548 + outSlope: -16.995548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 18.252796 + inSlope: -31.447193 + outSlope: -31.447193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 15.724884 + inSlope: -42.74098 + outSlope: -42.74098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 12.544653 + inSlope: -51.289978 + outSlope: -51.289978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 8.865719 + inSlope: -57.149387 + outSlope: -57.149387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 4.895408 + inSlope: -60.85022 + outSlope: -60.85022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7226551 + inSlope: -62.63306 + outSlope: -62.63306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.4807343 + inSlope: -62.721878 + outSlope: -62.721878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.6546574 + inSlope: -61.06439 + outSlope: -61.06439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -11.623763 + inSlope: -52.39801 + outSlope: -52.39801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -14.623615 + inSlope: -45.37066 + outSlope: -45.37066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.718043 + inSlope: -0.00021457692 + outSlope: -0.00021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.718044 + inSlope: -0.335255 + outSlope: -0.335255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -9.762679 + inSlope: -2.7548673 + outSlope: -2.7548673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -10.085174 + inSlope: -6.671473 + outSlope: -6.671473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.652155 + inSlope: -8.27297 + outSlope: -8.27297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.189135 + inSlope: -5.9689293 + outSlope: -5.9689293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -11.45011 + inSlope: -0.018925685 + outSlope: -0.018925685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -11.193752 + inSlope: 9.522238 + outSlope: 9.522238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.180508 + inSlope: 19.229355 + outSlope: 19.229355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -8.629027 + inSlope: 26.614267 + outSlope: 26.614267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.6322894 + inSlope: 32.52967 + outSlope: 32.52967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -4.2924356 + inSlope: 36.875 + outSlope: 36.875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.7155113 + inSlope: 39.59116 + outSlope: 39.59116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9889455 + inSlope: 40.64291 + outSlope: 40.64291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 3.7099707 + inSlope: 40.03584 + outSlope: 40.03584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 6.338431 + inSlope: 37.832417 + outSlope: 37.832417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 8.770861 + inSlope: 34.155067 + outSlope: 34.155067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 10.913112 + inSlope: 29.131865 + outSlope: 29.131865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 12.67796 + inSlope: 23.061827 + outSlope: 23.061827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 14.009815 + inSlope: 16.013103 + outSlope: 16.013103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 14.831571 + inSlope: 8.059295 + outSlope: 8.059295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 15.096003 + inSlope: -7.041299 + outSlope: -7.041299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 13.89251 + inSlope: -32.7478 + outSlope: -32.7478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 10.704609 + inSlope: -58.32939 + outSlope: -58.32939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 6.114675 + inSlope: -75.409775 + outSlope: -75.409775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6794901 + inSlope: -82.57268 + outSlope: -82.57268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.5138814 + inSlope: 0.00018239039 + outSlope: 0.00018239039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.5138817 + inSlope: 0.04549031 + outSlope: 0.04549031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 1.5201342 + inSlope: 0.16512768 + outSlope: 0.16512768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 1.5406917 + inSlope: 0.49934554 + outSlope: 0.49934554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 1.5886052 + inSlope: 1.0294006 + outSlope: 1.0294006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.6665349 + inSlope: 1.2840068 + outSlope: 1.2840068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.7440332 + inSlope: 0.83842176 + outSlope: 0.83842176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.7691578 + inSlope: -0.3375027 + outSlope: -0.3375027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.7068546 + inSlope: -1.2225199 + outSlope: -1.2225199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 1.617757 + inSlope: -1.0301855 + outSlope: -1.0301855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.5677626 + inSlope: 0.060499962 + outSlope: 0.060499962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.6121423 + inSlope: 1.9223624 + outSlope: 1.9223624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.7972358 + inSlope: 4.3590713 + outSlope: 4.3590713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 2.1539273 + inSlope: 7.0945783 + outSlope: 7.0945783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 2.6932802 + inSlope: 9.8047495 + outSlope: 9.8047495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.403784 + inSlope: 12.135472 + outSlope: 12.135472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 4.2499876 + inSlope: 13.725928 + outSlope: 13.725928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 5.1728287 + inSlope: 14.218725 + outSlope: 14.218725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 6.0894647 + inSlope: 13.395673 + outSlope: 13.395673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 6.9127164 + inSlope: 11.06408 + outSlope: 11.06408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 7.530663 + inSlope: 7.195687 + outSlope: 7.195687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 7.8537984 + inSlope: -1.2576139 + outSlope: -1.2576139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.370326 + inSlope: -14.459815 + outSlope: -14.459815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 5.9868274 + inSlope: -22.817059 + outSlope: -22.817059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 4.330886 + inSlope: -22.576883 + outSlope: -22.576883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.8863409 + inSlope: -16.647211 + outSlope: -16.647211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.325771 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.325773 + inSlope: -5.064788 + outSlope: -5.064788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -10.001129 + inSlope: -22.878363 + outSlope: -22.878363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -12.377156 + inSlope: -41.671505 + outSlope: -41.671505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -15.558353 + inSlope: -47.34614 + outSlope: -47.34614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -18.688831 + inSlope: -42.546486 + outSlope: -42.546486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -21.228676 + inSlope: -29.589987 + outSlope: -29.589987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -22.632595 + inSlope: -8.463085 + outSlope: -8.463085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -22.359114 + inSlope: 13.401187 + outSlope: 13.401187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -20.847685 + inSlope: 27.64007 + outSlope: 27.64007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -18.671871 + inSlope: 36.613174 + outSlope: 36.613174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -15.961354 + inSlope: 43.712795 + outSlope: 43.712795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -12.838101 + inSlope: 49.053875 + outSlope: 49.053875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -9.417064 + inSlope: 52.71842 + outSlope: 52.71842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -5.8096023 + inSlope: 54.714092 + outSlope: 54.714092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.1286666 + inSlope: 54.966034 + outSlope: 54.966034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.5056198 + inSlope: 53.31787 + outSlope: 53.31787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 4.9612923 + inSlope: 49.496716 + outSlope: 49.496716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 8.083134 + inSlope: 43.491997 + outSlope: 43.491997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 10.739311 + inSlope: 34.9781 + outSlope: 34.9781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 12.729902 + inSlope: 23.86104 + outSlope: 23.86104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 13.911289 + inSlope: 2.874129 + outSlope: 2.874129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 13.119007 + inSlope: -30.17267 + outSlope: -30.17267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 9.922192 + inSlope: -58.441658 + outSlope: -58.441658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.314981 + inSlope: -73.26281 + outSlope: -73.26281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.090009384 + inSlope: -76.839035 + outSlope: -76.839035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000051609945 + inSlope: 0.00023224497 + outSlope: 0.00023224497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000026847178 + inSlope: 0.000012081241 + outSlope: 0.000012081241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000041834073 + inSlope: -0.00001882535 + outSlope: -0.00001882535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0000011789413 + inSlope: -0.00005305222 + outSlope: -0.00005305222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000019676813 + inSlope: -0.00008854574 + outSlope: -0.00008854574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000027414137 + inSlope: -0.00012336374 + outSlope: -0.00012336374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000034417749 + inSlope: -0.00015488 + outSlope: -0.00015488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000040420846 + inSlope: -0.00018189398 + outSlope: -0.00018189398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000044956514 + inSlope: -0.00020230451 + outSlope: -0.00020230451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000047291055 + inSlope: -0.0002128092 + outSlope: -0.0002128092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000048691777 + inSlope: -0.0002191132 + outSlope: -0.0002191132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000049492187 + inSlope: -0.00022271504 + outSlope: -0.00022271504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000049959094 + inSlope: -0.00022481615 + outSlope: -0.00022481615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0000050159197 + inSlope: -0.0002257166 + outSlope: -0.0002257166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000049859045 + inSlope: -0.00022436591 + outSlope: -0.00022436591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000004902528 + inSlope: -0.00022061319 + outSlope: -0.00022061319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000004772461 + inSlope: -0.00021476096 + outSlope: -0.00021476096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000045881993 + inSlope: -0.00020646918 + outSlope: -0.00020646918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000043439068 + inSlope: -0.000195476 + outSlope: -0.000195476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000004037082 + inSlope: -0.00018166886 + outSlope: -0.00018166886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000036585532 + inSlope: -0.00016463504 + outSlope: -0.00016463504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0000032183264 + inSlope: -0.00014482482 + outSlope: -0.00014482482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000026980579 + inSlope: -0.00012141228 + outSlope: -0.00012141228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0000017775833 + inSlope: -0.000079991325 + outSlope: -0.000079991325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000002768094 + inSlope: -0.000012456436 + outSlope: -0.000012456436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0000015407945 + inSlope: 0.00006933582 + outSlope: 0.00006933582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.999996 + inSlope: -14.999603 + outSlope: -14.999603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.999999 + inSlope: -24.35461 + outSlope: -24.35461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.24739689 + inSlope: -36.358326 + outSlope: -36.358326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -2.8482153 + inSlope: -40.068653 + outSlope: -40.068653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -5.5904026 + inSlope: -40.598213 + outSlope: -40.598213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -8.261907 + inSlope: -37.94797 + outSlope: -37.94797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -10.650672 + inSlope: -32.117573 + outSlope: -32.117573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -12.544645 + inSlope: -23.107103 + outSlope: -23.107103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -13.7317705 + inSlope: -10.914713 + outSlope: -10.914713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.000003 + inSlope: 1.8746661 + outSlope: 1.8746661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.481816 + inSlope: 11.244045 + outSlope: 11.244045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -12.500806 + inSlope: 17.626078 + outSlope: 17.626078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -11.1315775 + inSlope: 22.89008 + outSlope: 22.89008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -9.4487295 + inSlope: 27.033903 + outSlope: 27.033903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -7.52687 + inSlope: 30.059267 + outSlope: 30.059267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -5.4406033 + inSlope: 31.965582 + outSlope: 31.965582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.2645288 + inSlope: 32.753128 + outSlope: 32.753128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.0732547 + inSlope: 32.372498 + outSlope: 32.372498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 1.0521245 + inSlope: 30.971153 + outSlope: 30.971153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 3.0564816 + inSlope: 28.411648 + outSlope: 28.411648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 4.8405466 + inSlope: 24.713726 + outSlope: 24.713726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.3517756 + inSlope: 19.92306 + outSlope: 19.92306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.497042 + inSlope: 10.714281 + outSlope: 10.714281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 7.7804403 + inSlope: -3.4915528 + outSlope: -3.4915528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 7.031497 + inSlope: -15.71334 + outSlope: -15.71334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 5.685329 + inSlope: -20.191324 + outSlope: -20.191324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.531375 + inSlope: -0.00013273665 + outSlope: -0.00013273665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.531375 + inSlope: -0.13328114 + outSlope: -0.13328114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5137515 + inSlope: -0.56395197 + outSlope: -0.56395197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.45665762 + inSlope: -1.2181094 + outSlope: -1.2181094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3525979 + inSlope: -1.730829 + outSlope: -1.730829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22866723 + inSlope: -1.9208984 + outSlope: -1.9208984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.09966916 + inSlope: -1.9416907 + outSlope: -1.9416907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.027260832 + inSlope: -1.8539765 + outSlope: -1.8539765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14495577 + inSlope: -1.6596246 + outSlope: -1.6596246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.2466342 + inSlope: -1.3686415 + outSlope: -1.3686415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3261168 + inSlope: -0.9893269 + outSlope: -0.9893269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.37778774 + inSlope: -0.52933615 + outSlope: -0.52933615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.3962446 + inSlope: -0.062909044 + outSlope: -0.062909044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.38618353 + inSlope: 0.29328975 + outSlope: 0.29328975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.35747945 + inSlope: 0.5594823 + outSlope: 0.5594823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3122718 + inSlope: 0.7940672 + outSlope: 0.7940672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.25268835 + inSlope: 0.99596643 + outSlope: 0.99596643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.09970053 + inSlope: 1.2905507 + outSlope: 1.2905507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.010716806 + inSlope: 1.3781807 + outSlope: 1.3781807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.08217147 + inSlope: 1.4235857 + outSlope: 1.4235857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.17728145 + inSlope: 1.4255774 + outSlope: 1.4255774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.27059603 + inSlope: 1.3857273 + outSlope: 1.3857273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.36051127 + inSlope: 1.2749883 + outSlope: 1.2749883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.43942535 + inSlope: 0.99502105 + outSlope: 0.99502105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.4925609 + inSlope: 0.7978705 + outSlope: 0.7978705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -91.38444 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -91.38444 + inSlope: -0.051317614 + outSlope: -0.051317614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -91.391075 + inSlope: -0.20596394 + outSlope: -0.20596394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -91.41085 + inSlope: -0.3814147 + outSlope: -0.3814147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -91.44038 + inSlope: -0.39875174 + outSlope: -0.39875174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -91.46516 + inSlope: -0.27115119 + outSlope: -0.27115119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -91.47954 + inSlope: -0.10263523 + outSlope: -0.10263523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -91.48264 + inSlope: 0.05963939 + outSlope: 0.05963939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -91.47579 + inSlope: 0.18307906 + outSlope: 0.18307906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -91.46224 + inSlope: 0.24549237 + outSlope: 0.24549237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -91.446594 + inSlope: 0.23092927 + outSlope: 0.23092927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -91.433975 + inSlope: 0.14147018 + outSlope: 0.14147018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -91.428986 + inSlope: 0.018030513 + outSlope: 0.018030513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -91.43173 + inSlope: -0.07836338 + outSlope: -0.07836338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -91.43916 + inSlope: -0.1373093 + outSlope: -0.1373093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -91.449646 + inSlope: -0.16643551 + outSlope: -0.16643551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -91.46121 + inSlope: -0.16435507 + outSlope: -0.16435507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -91.47954 + inSlope: -0.07420249 + outSlope: -0.07420249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -91.48285 + inSlope: 0.0041608876 + outSlope: 0.0041608876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -91.48061 + inSlope: 0.09431345 + outSlope: 0.09431345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -91.47225 + inSlope: 0.18723994 + outSlope: 0.18723994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -91.458 + inSlope: 0.27184466 + outSlope: 0.27184466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -91.43841 + inSlope: 0.33287102 + outSlope: 0.33287102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -91.416306 + inSlope: 0.31761444 + outSlope: 0.31761444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -91.39871 + inSlope: 0.28640777 + outSlope: 0.28640777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 20.99358 + inSlope: -0.00017337032 + outSlope: -0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 20.993578 + inSlope: -5.5118756 + outSlope: -5.5118756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 20.265919 + inSlope: -23.192268 + outSlope: -23.192268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 17.931744 + inSlope: -49.3327 + outSlope: -49.3327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 13.752242 + inSlope: -68.63103 + outSlope: -68.63103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 8.868516 + inSlope: -74.95566 + outSlope: -74.95566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.852928 + inSlope: -75.124466 + outSlope: -75.124466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -1.0532033 + inSlope: -71.64097 + outSlope: -71.64097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -5.608557 + inSlope: -64.50457 + outSlope: -64.50457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -9.571804 + inSlope: -53.71446 + outSlope: -53.71446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -12.70157 + inSlope: -39.266254 + outSlope: -39.266254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -14.756461 + inSlope: -21.15781 + outSlope: -21.15781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -15.495069 + inSlope: -2.5424323 + outSlope: -2.5424323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -15.09209 + inSlope: 11.728979 + outSlope: 11.728979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -13.946627 + inSlope: 22.255287 + outSlope: 22.255287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -12.153879 + inSlope: 31.338852 + outSlope: 31.338852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -9.809053 + inSlope: 38.979977 + outSlope: 38.979977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -3.854302 + inSlope: 49.933796 + outSlope: 49.933796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.414049 + inSlope: 53.24072 + outSlope: 53.24072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 3.1757648 + inSlope: 55.12211 + outSlope: 55.12211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 6.864595 + inSlope: 55.555412 + outSlope: 55.555412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 10.511695 + inSlope: 54.54616 + outSlope: 54.54616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.067234 + inSlope: 50.90482 + outSlope: 50.90482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 17.233435 + inSlope: 40.35619 + outSlope: 40.35619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 19.395855 + inSlope: 32.755375 + outSlope: 32.755375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000006525508 + inSlope: -0.0000029657122 + outSlope: -0.0000029657122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000009513336 + inSlope: -0.7337075 + outSlope: -0.7337075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.096830055 + inSlope: -1.5951078 + outSlope: -1.5951078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.21053903 + inSlope: -1.749039 + outSlope: -1.749039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.32787064 + inSlope: -1.7036546 + outSlope: -1.7036546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.43577614 + inSlope: -1.4646149 + outSlope: -1.4646149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.52174217 + inSlope: -1.0423754 + outSlope: -1.0423754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.5738419 + inSlope: -0.44222975 + outSlope: -0.44222975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5803433 + inSlope: 0.19027664 + outSlope: 0.19027664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.54871905 + inSlope: 0.63373893 + outSlope: 0.63373893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4966327 + inSlope: 0.9197783 + outSlope: 0.9197783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.42732278 + inSlope: 1.1560509 + outSlope: 1.1560509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.3441145 + inSlope: 1.3404222 + outSlope: 1.3404222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.25049222 + inSlope: 1.4710525 + outSlope: 1.4710525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.1501207 + inSlope: 1.5439047 + outSlope: 1.5439047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.046815597 + inSlope: 1.5583266 + outSlope: 1.5583266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.05552225 + inSlope: 1.5133799 + outSlope: 1.5133799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.24150707 + inSlope: 1.2493708 + outSlope: 1.2493708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.31816155 + inSlope: 1.0360366 + outSlope: 1.0360366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.37847367 + inSlope: 0.7686197 + outSlope: 0.7686197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.41975978 + inSlope: 0.31249866 + outSlope: 0.31249866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.41981506 + inSlope: -0.37656033 + outSlope: -0.37656033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.3699095 + inSlope: -1.0078979 + outSlope: -1.0078979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.2867323 + inSlope: -1.3968704 + outSlope: -1.3968704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.18567722 + inSlope: -1.5350499 + outSlope: -1.5350499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.5888002 + inSlope: 0.00027089112 + outSlope: 0.00027089112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 3.5887997 + inSlope: -0.0024813628 + outSlope: -0.0024813628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.586574 + inSlope: -0.08649012 + outSlope: -0.08649012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 3.5782547 + inSlope: -0.19174758 + outSlope: -0.19174758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 3.5631316 + inSlope: -0.2845982 + outSlope: -0.2845982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 3.5432396 + inSlope: -0.32160193 + outSlope: -0.32160193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.5231748 + inSlope: -0.27238643 + outSlope: -0.27238643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 3.509143 + inSlope: -0.12635446 + outSlope: -0.12635446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 3.5072916 + inSlope: 0.05418906 + outSlope: 0.05418906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 3.5160878 + inSlope: 0.1682884 + outSlope: 0.1682884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 3.5294282 + inSlope: 0.21871749 + outSlope: 0.21871749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 3.5450082 + inSlope: 0.23255461 + outSlope: 0.23255461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 3.5605078 + inSlope: 0.21190187 + outSlope: 0.21190187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 3.5738564 + inSlope: 0.1641817 + outSlope: 0.1641817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 3.5834448 + inSlope: 0.09803008 + outSlope: 0.09803008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.5882797 + inSlope: 0.022538142 + outSlope: 0.022538142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 3.5880673 + inSlope: -0.051718533 + outSlope: -0.051718533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 3.5749116 + inSlope: -0.1528476 + outSlope: -0.1528476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 3.5646372 + inSlope: -0.1643984 + outSlope: -0.1643984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 3.5545256 + inSlope: -0.14382152 + outSlope: -0.14382152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 3.546559 + inSlope: -0.06400616 + outSlope: -0.06400616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 3.546548 + inSlope: 0.07589286 + outSlope: 0.07589286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 3.5560708 + inSlope: 0.17430219 + outSlope: 0.17430219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 3.5691967 + inSlope: 0.18177877 + outSlope: 0.18177877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 3.580602 + inSlope: 0.12321212 + outSlope: 0.12321212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000021053218 + inSlope: 0.00009568263 + outSlope: 0.00009568263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000013349523 + inSlope: 19.952211 + outSlope: 19.952211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 2.6342278 + inSlope: 43.43776 + outSlope: 43.43776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.7352166 + inSlope: 47.854954 + outSlope: 47.854954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 8.952938 + inSlope: 46.97174 + outSlope: 46.97174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.937353 + inSlope: 40.787533 + outSlope: 40.787533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 14.338378 + inSlope: 29.300322 + outSlope: 29.300322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 15.80589 + inSlope: 12.508451 + outSlope: 12.508451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 15.989745 + inSlope: -5.369582 + outSlope: -5.369582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 15.096983 + inSlope: -17.839025 + outSlope: -17.839025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 13.634613 + inSlope: -25.71082 + outSlope: -25.71082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 11.702489 + inSlope: -32.07026 + outSlope: -32.07026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.400462 + inSlope: -36.916565 + outSlope: -36.916565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.828371 + inSlope: -40.250435 + outSlope: -40.250435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 4.086046 + inSlope: -42.072903 + outSlope: -42.072903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.2732989 + inSlope: -42.38344 + outSlope: -42.38344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.5100588 + inSlope: -41.18224 + outSlope: -41.18224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -6.582248 + inSlope: -34.245342 + outSlope: -34.245342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -8.685677 + inSlope: -28.529472 + outSlope: -28.529472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -10.348876 + inSlope: -21.259405 + outSlope: -21.259405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -11.492438 + inSlope: -8.673067 + outSlope: -8.673067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -11.493976 + inSlope: 10.455053 + outSlope: 10.455053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -10.112214 + inSlope: 27.812803 + outSlope: 27.812803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.8219995 + inSlope: 38.29512 + outSlope: 38.29512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -5.056054 + inSlope: 41.89221 + outSlope: 41.89221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6001942 + inSlope: -0.00022530578 + outSlope: -0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.60019505 + inSlope: -0.16093805 + outSlope: -0.16093805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5787189 + inSlope: -0.68109936 + outSlope: -0.68109936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.5089599 + inSlope: -1.478478 + outSlope: -1.478478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.38116363 + inSlope: -2.112082 + outSlope: -2.112082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22824845 + inSlope: -2.351413 + outSlope: -2.351413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.068770625 + inSlope: -2.3757627 + outSlope: -2.3757627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.08796443 + inSlope: -2.2605512 + outSlope: -2.2605512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.23270859 + inSlope: -2.0127041 + outSlope: -2.0127041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.35698512 + inSlope: -1.6476861 + outSlope: -1.6476861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4534516 + inSlope: -1.1835004 + outSlope: -1.1835004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.51576734 + inSlope: -0.6294292 + outSlope: -0.6294292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.53794074 + inSlope: -0.07519849 + outSlope: -0.07519849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.525861 + inSlope: 0.34869823 + outSlope: 0.34869823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.49131688 + inSlope: 0.6680678 + outSlope: 0.6680678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.43669832 + inSlope: 0.95337796 + outSlope: 0.95337796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.3643559 + inSlope: 1.2012378 + outSlope: 1.2012378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.27679446 + inSlope: 1.4062527 + outSlope: 1.4062527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.17714465 + inSlope: 1.5719745 + outSlope: 1.5719745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.067562744 + inSlope: 1.6835135 + outSlope: 1.6835135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.047143143 + inSlope: 1.7430012 + outSlope: 1.7430012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.16473243 + inSlope: 1.7455202 + outSlope: 1.7455202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.28004056 + inSlope: 1.6934431 + outSlope: 1.6934431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.3909054 + inSlope: 1.5522481 + outSlope: 1.5522481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.48784953 + inSlope: 1.2073251 + outSlope: 1.2073251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.5528671 + inSlope: 0.9642577 + outSlope: 0.9642577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 88.58583 + inSlope: -0.00068664615 + outSlope: -0.00068664615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 88.58583 + inSlope: -0.06660468 + outSlope: -0.06660468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 88.57692 + inSlope: -0.27259853 + outSlope: -0.27259853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 88.55051 + inSlope: -0.5012499 + outSlope: -0.5012499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 88.51178 + inSlope: -0.5053716 + outSlope: -0.5053716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 88.48081 + inSlope: -0.31208068 + outSlope: -0.31208068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 88.46531 + inSlope: -0.06626135 + outSlope: -0.06626135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 88.466286 + inSlope: 0.16719835 + outSlope: 0.16719835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 88.48149 + inSlope: 0.33851656 + outSlope: 0.33851656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 88.505806 + inSlope: 0.4143895 + outSlope: 0.4143895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 88.5322 + inSlope: 0.37731206 + outSlope: 0.37731206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 88.55291 + inSlope: 0.22830985 + outSlope: 0.22830985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 88.561005 + inSlope: 0.02883914 + outSlope: 0.02883914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 88.55656 + inSlope: -0.12668622 + outSlope: -0.12668622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 88.544426 + inSlope: -0.22213003 + outSlope: -0.22213003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 88.52712 + inSlope: -0.27431417 + outSlope: -0.27431417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 88.50759 + inSlope: -0.2811816 + outSlope: -0.2811816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 88.4889 + inSlope: -0.24341607 + outSlope: -0.24341607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 88.47401 + inSlope: -0.1637651 + outSlope: -0.1637651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 88.46525 + inSlope: -0.053901725 + outSlope: -0.053901725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 88.464485 + inSlope: 0.07518776 + outSlope: 0.07518776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 88.47262 + inSlope: 0.21045704 + outSlope: 0.21045704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 88.489494 + inSlope: 0.33542544 + outSlope: 0.33542544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 88.51431 + inSlope: 0.4284672 + outSlope: 0.4284672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 88.54327 + inSlope: 0.4164509 + outSlope: 0.4164509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 88.566666 + inSlope: 0.3810886 + outSlope: 0.3810886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 22.992592 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 22.992598 + inSlope: -6.5038266 + outSlope: -6.5038266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 22.125391 + inSlope: -27.366026 + outSlope: -27.366026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 19.343582 + inSlope: -58.210907 + outSlope: -58.210907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 14.362606 + inSlope: -80.97601 + outSlope: -80.97601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 8.542401 + inSlope: -88.4344 + outSlope: -88.4344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 2.5650733 + inSlope: -88.63204 + outSlope: -88.63204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -3.2818136 + inSlope: -84.524124 + outSlope: -84.524124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -8.710696 + inSlope: -76.10705 + outSlope: -76.10705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -13.433969 + inSlope: -63.378887 + outSlope: -63.378887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -17.163967 + inSlope: -46.332996 + outSlope: -46.332996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -19.612967 + inSlope: -24.966883 + outSlope: -24.966883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -20.493237 + inSlope: -3.0001287 + outSlope: -3.0001287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -20.01297 + inSlope: 13.840727 + outSlope: 13.840727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -18.647814 + inSlope: 26.262241 + outSlope: 26.262241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -16.511236 + inSlope: 36.98014 + outSlope: 36.98014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -13.716718 + inSlope: 45.995552 + outSlope: 45.995552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -10.377724 + inSlope: 53.21542 + outSlope: 53.21542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -6.6200433 + inSlope: 58.919155 + outSlope: 58.919155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.5201018 + inSlope: 62.81947 + outSlope: 62.81947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 1.7580632 + inSlope: 65.03883 + outSlope: 65.03883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.154224 + inSlope: 65.54984 + outSlope: 65.54984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 10.500658 + inSlope: 64.35972 + outSlope: 64.35972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 14.737992 + inSlope: 60.06433 + outSlope: 60.06433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 18.51135 + inSlope: 47.618996 + outSlope: 47.618996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 21.088465 + inSlope: 38.650196 + outSlope: 38.650196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000016284295 + inSlope: -0.0000007400884 + outSlope: -0.0000007400884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000017884418 + inSlope: 1.0721229 + outSlope: 1.0721229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14144458 + inSlope: 2.3365383 + outSlope: 2.3365383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.30844077 + inSlope: 2.5672853 + outSlope: 2.5672853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.48062202 + inSlope: 2.491647 + outSlope: 2.491647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.63805515 + inSlope: 2.1237295 + outSlope: 2.1237295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7619159 + inSlope: 1.4813302 + outSlope: 1.4813302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.83457464 + inSlope: 0.57927626 + outSlope: 0.57927626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.8387343 + inSlope: -0.37398958 + outSlope: -0.37398958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.78502554 + inSlope: -1.0557792 + outSlope: -1.0557792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6993517 + inSlope: -1.5032697 + outSlope: -1.5032697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5866264 + inSlope: -1.8759698 + outSlope: -1.8759698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.45201015 + inSlope: -2.1656988 + outSlope: -2.1656988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.30107012 + inSlope: -2.3674977 + outSlope: -2.3674977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13980658 + inSlope: -2.4759808 + outSlope: -2.4759808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.025444062 + inSlope: -2.4857824 + outSlope: -2.4857824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.18819258 + inSlope: -2.3964016 + outSlope: -2.3964016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.4803568 + inSlope: -1.9405936 + outSlope: -1.9405936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.59865826 + inSlope: -1.5848349 + outSlope: -1.5848349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.69010377 + inSlope: -1.1486542 + outSlope: -1.1486542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.7507341 + inSlope: -0.40353024 + outSlope: -0.40353024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.74363697 + inSlope: 0.7350847 + outSlope: 0.7350847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.65332913 + inSlope: 1.79305 + outSlope: 1.79305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.50681233 + inSlope: 2.4587054 + outSlope: 2.4587054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.32922292 + inSlope: 2.706625 + outSlope: 2.706625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.1079208 + inSlope: -0.00021129508 + outSlope: -0.00021129508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.1079209 + inSlope: 0.0046484917 + outSlope: 0.0046484917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.1041374 + inSlope: 0.14753814 + outSlope: 0.14753814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -1.0898817 + inSlope: 0.3297395 + outSlope: 0.3297395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.0639033 + inSlope: 0.48749566 + outSlope: 0.48749566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.0298351 + inSlope: 0.5487333 + outSlope: 0.5487333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.995843 + inSlope: 0.45600998 + outSlope: 0.45600998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.9728458 + inSlope: 0.19446732 + outSlope: 0.19446732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.97145903 + inSlope: -0.1244528 + outSlope: -0.1244528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.9887778 + inSlope: -0.32278574 + outSlope: -0.32278574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.0138214 + inSlope: -0.40166652 + outSlope: -0.40166652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.0420703 + inSlope: -0.41045964 + outSlope: -0.41045964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.0690261 + inSlope: -0.3552737 + outSlope: -0.3552737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.0907366 + inSlope: -0.24790873 + outSlope: -0.24790873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.1042248 + inSlope: -0.10507867 + outSlope: -0.10507867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.1077985 + inSlope: 0.04901504 + outSlope: 0.04901504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.1012198 + inSlope: 0.19454859 + outSlope: 0.19454859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.0639528 + inSlope: 0.37462616 + outSlope: 0.37462616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.039306 + inSlope: 0.37930718 + outSlope: 0.37930718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -1.016339 + inSlope: 0.31608117 + outSlope: 0.31608117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.99917966 + inSlope: 0.120137505 + outSlope: 0.120137505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -1.0012693 + inSlope: -0.21276872 + outSlope: -0.21276872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -1.0259919 + inSlope: -0.44215932 + outSlope: -0.44215932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.0589294 + inSlope: -0.45353675 + outSlope: -0.45353675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.0873597 + inSlope: -0.3084583 + outSlope: -0.3084583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000021865217 + inSlope: -0.000099373014 + outSlope: -0.000099373014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000074215575 + inSlope: 23.208706 + outSlope: 23.208706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.0642333 + inSlope: 50.697926 + outSlope: 50.697926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.694099 + inSlope: 56.0503 + outSlope: 56.0503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 10.465478 + inSlope: 54.98158 + outSlope: 54.98158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 13.954226 + inSlope: 47.48951 + outSlope: 47.48951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 16.736074 + inSlope: 33.571167 + outSlope: 33.571167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 18.386679 + inSlope: 13.221654 + outSlope: 13.221654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 18.481646 + inSlope: -8.538228 + outSlope: -8.538228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 17.259438 + inSlope: -23.900486 + outSlope: -23.900486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.326264 + inSlope: -33.705315 + outSlope: -33.705315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 12.809383 + inSlope: -41.58235 + outSlope: -41.58235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.836028 + inSlope: -47.531162 + outSlope: -47.531162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.5334177 + inSlope: -51.554134 + outSlope: -51.554134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 3.0287073 + inSlope: -53.65143 + outSlope: -53.65143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.5509702 + inSlope: -53.82359 + outSlope: -53.82359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -4.078491 + inSlope: -52.07143 + outSlope: -52.07143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -10.45965 + inSlope: -42.791523 + outSlope: -42.791523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.076747 + inSlope: -35.28801 + outSlope: -35.28801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -15.118713 + inSlope: -25.803051 + outSlope: -25.803051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.48338 + inSlope: -9.123613 + outSlope: -9.123613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -16.323153 + inSlope: 16.573595 + outSlope: 16.573595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -14.295324 + inSlope: 39.99402 + outSlope: 39.99402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -11.042779 + inSlope: 54.132847 + outSlope: 54.132847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -7.147428 + inSlope: 58.984634 + outSlope: 58.984634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.92765385 + inSlope: -0.00019043701 + outSlope: -0.00019043701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.9276493 + inSlope: -1.9971613 + outSlope: -1.9971613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.1934048 + inSlope: -4.435064 + outSlope: -4.435064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -1.5190967 + inSlope: -4.968881 + outSlope: -4.968881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.8567412 + inSlope: -4.794582 + outSlope: -4.794582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.1600013 + inSlope: -3.9476361 + outSlope: -3.9476361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -2.3849564 + inSlope: -2.4605966 + outSlope: -2.4605966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -2.4895573 + inSlope: -0.34632716 + outSlope: -0.34632716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.4313521 + inSlope: 1.9611259 + outSlope: 1.9611259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -2.227398 + inSlope: 3.7303636 + outSlope: 3.7303636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.9340297 + inSlope: 4.96759 + outSlope: 4.96759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.5657275 + inSlope: 5.9776087 + outSlope: 5.9776087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.1382097 + inSlope: 6.73786 + outSlope: 6.73786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.66879976 + inSlope: 7.2245207 + outSlope: 7.2245207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.17630666 + inSlope: 7.418136 + outSlope: 7.418136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3195008 + inSlope: 7.3115163 + outSlope: 7.3115163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7986636 + inSlope: 6.910257 + outSlope: 6.910257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.2418396 + inSlope: 6.220875 + outSlope: 6.220875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 1.6298285 + inSlope: 5.291682 + outSlope: 5.291682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 1.9494127 + inSlope: 4.1235085 + outSlope: 4.1235085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 2.181472 + inSlope: 2.7267041 + outSlope: 2.7267041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 2.3143232 + inSlope: 0.21321437 + outSlope: 0.21321437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 2.210121 + inSlope: -3.8324912 + outSlope: -3.8324912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 1.8009464 + inSlope: -7.7116 + outSlope: -7.7116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 1.1820259 + inSlope: -10.195494 + outSlope: -10.195494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.44482777 + inSlope: -11.112154 + outSlope: -11.112154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -82.93532 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -82.935326 + inSlope: -0.26779202 + outSlope: -0.26779202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -82.97514 + inSlope: -0.78140336 + outSlope: -0.78140336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -83.038 + inSlope: -1.1206025 + outSlope: -1.1206025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -83.11997 + inSlope: -1.3279737 + outSlope: -1.3279737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -83.20869 + inSlope: -1.2778485 + outSlope: -1.2778485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -83.28406 + inSlope: -0.88165367 + outSlope: -0.88165367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -83.321976 + inSlope: -0.12908947 + outSlope: -0.12908947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -83.30065 + inSlope: 0.70175236 + outSlope: 0.70175236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -83.23039 + inSlope: 1.1975067 + outSlope: 1.1975067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -83.1412 + inSlope: 1.3520063 + outSlope: 1.3520063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -83.048294 + inSlope: 1.2812817 + outSlope: 1.2812817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -82.96603 + inSlope: 1.0121164 + outSlope: 1.0121164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -82.90629 + inSlope: 0.5960089 + outSlope: 0.5960089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -82.87716 + inSlope: 0.096817106 + outSlope: 0.096817106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -82.88212 + inSlope: -0.4099263 + outSlope: -0.4099263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -82.91967 + inSlope: -0.85144126 + outSlope: -0.85144126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -82.9835 + inSlope: -1.1590587 + outSlope: -1.1590587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -83.06297 + inSlope: -1.2847149 + outSlope: -1.2847149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -83.14553 + inSlope: -1.197511 + outSlope: -1.197511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -83.21551 + inSlope: -0.88714683 + outSlope: -0.88714683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -83.2595 + inSlope: -0.07278449 + outSlope: -0.07278449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -83.22476 + inSlope: 1.2181059 + outSlope: 1.2181059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -83.10522 + inSlope: 1.9047564 + outSlope: 1.9047564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -82.97322 + inSlope: 1.5394607 + outSlope: 1.5394607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -82.88882 + inSlope: 0.4998784 + outSlope: 0.4998784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.442732 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.442734 + inSlope: 16.127945 + outSlope: 16.127945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 9.593363 + inSlope: 36.042316 + outSlope: 36.042316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 12.248694 + inSlope: 40.778095 + outSlope: 40.778095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.030942 + inSlope: 39.84758 + outSlope: 39.84758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 17.561907 + inSlope: 33.239082 + outSlope: 33.239082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 19.462814 + inSlope: 20.945454 + outSlope: 20.945454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 20.354437 + inSlope: 2.9612474 + outSlope: 2.9612474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 19.857672 + inSlope: -16.690565 + outSlope: -16.690565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 18.12916 + inSlope: -31.384167 + outSlope: -31.384167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.6728325 + inSlope: -41.230183 + outSlope: -41.230183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 12.630991 + inSlope: -48.943882 + outSlope: -48.943882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.145648 + inSlope: -54.53082 + outSlope: -54.53082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.358423 + inSlope: -57.996624 + outSlope: -57.996624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.4105654 + inSlope: -59.34876 + outSlope: -59.34876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.5569248 + inSlope: -58.58813 + outSlope: -58.58813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -6.4030924 + inSlope: -55.713055 + outSlope: -55.713055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.986831 + inSlope: -50.651184 + outSlope: -50.651184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.157552 + inSlope: -43.601818 + outSlope: -43.601818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -15.800928 + inSlope: -34.38681 + outSlope: -34.38681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -17.742485 + inSlope: -22.971403 + outSlope: -22.971403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -18.863688 + inSlope: -1.8095701 + outSlope: -1.8095701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -17.983671 + inSlope: 32.213116 + outSlope: 32.213116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.568885 + inSlope: 63.605022 + outSlope: 63.605022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -9.501106 + inSlope: 82.51736 + outSlope: 82.51736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -3.561053 + inSlope: 88.99495 + outSlope: 88.99495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11568816 + inSlope: -0.00017903763 + outSlope: -0.00017903763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11568816 + inSlope: 0.20032164 + outSlope: 0.20032164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08882445 + inSlope: 0.43272388 + outSlope: 0.43272388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.05806451 + inSlope: 0.481554 + outSlope: 0.481554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.024787063 + inSlope: 0.50773704 + outSlope: 0.50773704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.009522857 + inSlope: 0.5108029 + outSlope: 0.5108029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.043330535 + inSlope: 0.4918378 + outSlope: 0.4918378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.07512468 + inSlope: 0.45018506 + outSlope: 0.45018506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10348019 + inSlope: 0.388863 + outSlope: 0.388863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12709701 + inSlope: 0.30869463 + outSlope: 0.30869463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14479877 + inSlope: 0.21249487 + outSlope: 0.21249487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15548623 + inSlope: 0.0989146 + outSlope: 0.0989146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.15804832 + inSlope: -0.022559412 + outSlope: -0.022559412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.15249033 + inSlope: -0.13362578 + outSlope: -0.13362578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.1401887 + inSlope: -0.22893213 + outSlope: -0.22893213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.12198668 + inSlope: -0.31071934 + outSlope: -0.31071934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.09873886 + inSlope: -0.38036743 + outSlope: -0.38036743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.07136855 + inSlope: -0.4341042 + outSlope: -0.4341042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.04099776 + inSlope: -0.47229522 + outSlope: -0.47229522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.008450291 + inSlope: -0.49287343 + outSlope: -0.49287343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.024680087 + inSlope: -0.49477372 + outSlope: -0.49477372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.057583246 + inSlope: -0.4794331 + outSlope: -0.4794331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.08865914 + inSlope: -0.445381 + outSlope: -0.445381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.11717208 + inSlope: -0.39688885 + outSlope: -0.39688885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.1417558 + inSlope: -0.3336356 + outSlope: -0.3336356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.16181134 + inSlope: -0.2969966 + outSlope: -0.2969966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.572368 + inSlope: -0.00019311924 + outSlope: -0.00019311924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -7.572369 + inSlope: -0.05096202 + outSlope: -0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -7.5784674 + inSlope: -0.08003719 + outSlope: -0.08003719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.5834246 + inSlope: -0.055403564 + outSlope: -0.055403564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -7.5864215 + inSlope: -0.02147915 + outSlope: -0.02147915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.5869875 + inSlope: 0.016350761 + outSlope: 0.016350761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -7.58505 + inSlope: 0.05207782 + outSlope: 0.05207782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -7.5809393 + inSlope: 0.079264715 + outSlope: 0.079264715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -7.575352 + inSlope: 0.093577 + outSlope: 0.093577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.5692654 + inSlope: 0.09089446 + outSlope: 0.09089446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -7.563814 + inSlope: 0.07149703 + outSlope: 0.07149703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -7.560143 + inSlope: 0.035383735 + outSlope: 0.035383735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -7.5592184 + inSlope: -0.008282669 + outSlope: -0.008282669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -7.5612025 + inSlope: -0.04602675 + outSlope: -0.04602675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -7.565309 + inSlope: -0.07134683 + outSlope: -0.07134683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -7.570696 + inSlope: -0.082311414 + outSlope: -0.082311414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -7.576417 + inSlope: -0.07960804 + outSlope: -0.07960804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -7.581541 + inSlope: -0.06325728 + outSlope: -0.06325728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -7.5852647 + inSlope: -0.03645662 + outSlope: -0.03645662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -7.587009 + inSlope: -0.0032830269 + outSlope: -0.0032830269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -7.586427 + inSlope: 0.03233674 + outSlope: 0.03233674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -7.5834837 + inSlope: 0.066046774 + outSlope: 0.066046774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -7.5785 + inSlope: 0.09170985 + outSlope: 0.09170985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.5719814 + inSlope: 0.10874759 + outSlope: 0.10874759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -7.5648036 + inSlope: 0.11052857 + outSlope: 0.11052857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -7.557826 + inSlope: 0.11376869 + outSlope: 0.11376869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.499555 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -14.499555 + inSlope: 25.618639 + outSlope: 25.618639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -11.083426 + inSlope: 54.590042 + outSlope: 54.590042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.2195325 + inSlope: 60.043064 + outSlope: 60.043064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.0757897 + inSlope: 62.979156 + outSlope: 62.979156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.1798946 + inSlope: 63.398335 + outSlope: 63.398335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.3796096 + inSlope: 61.30027 + outSlope: 61.30027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 9.355441 + inSlope: 56.685257 + outSlope: 56.685257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 12.939479 + inSlope: 49.55341 + outSlope: 49.55341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 15.963813 + inSlope: 39.90194 + outSlope: 39.90194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 18.26052 + inSlope: 27.731236 + outSlope: 27.731236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 19.661686 + inSlope: 13.040612 + outSlope: 13.040612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 19.999393 + inSlope: -2.9554968 + outSlope: -2.9554968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 19.26764 + inSlope: -17.549303 + outSlope: -17.549303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 17.659487 + inSlope: -29.714012 + outSlope: -29.714012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 15.305616 + inSlope: -39.91726 + outSlope: -39.91726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 12.336699 + inSlope: -48.159904 + outSlope: -48.159904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 8.8834095 + inSlope: -54.349503 + outSlope: -54.349503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 5.0887427 + inSlope: -58.76376 + outSlope: -58.76376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 1.0464272 + inSlope: -61.122257 + outSlope: -61.122257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.0630338 + inSlope: -61.53175 + outSlope: -61.53175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -7.1599536 + inSlope: -59.985603 + outSlope: -59.985603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -11.063153 + inSlope: -56.4649 + outSlope: -56.4649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.69036 + inSlope: -51.012703 + outSlope: -51.012703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -17.866241 + inSlope: -43.56152 + outSlope: -43.56152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -20.4994 + inSlope: -39.489964 + outSlope: -39.489964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.335208 + inSlope: 0.00012874615 + outSlope: 0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -4.3352056 + inSlope: -4.3279095 + outSlope: -4.3279095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.910505 + inSlope: -12.500501 + outSlope: -12.500501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -5.9996743 + inSlope: -4.687266 + outSlope: -4.687266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -5.5446916 + inSlope: 17.580824 + outSlope: 17.580824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -3.650057 + inSlope: 31.3606 + outSlope: 31.3606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -1.3657297 + inSlope: 36.473587 + outSlope: 36.473587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.2106947 + inSlope: 40.041027 + outSlope: 40.041027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 3.973511 + inSlope: 41.962997 + outSlope: 41.962997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 6.811616 + inSlope: 42.19902 + outSlope: 42.19902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 9.613216 + inSlope: 40.790386 + outSlope: 40.790386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 12.271651 + inSlope: 37.869267 + outSlope: 37.869267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 14.691246 + inSlope: 33.64875 + outSlope: 33.64875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.791975 + inSlope: 28.387411 + outSlope: 28.387411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 18.511438 + inSlope: 22.34441 + outSlope: 22.34441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 19.802881 + inSlope: 15.700366 + outSlope: 15.700366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 20.628422 + inSlope: 8.493641 + outSlope: 8.493641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 20.947666 + inSlope: -0.25148416 + outSlope: -0.25148416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 20.594124 + inSlope: -10.891925 + outSlope: -10.891925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 19.483711 + inSlope: -21.703856 + outSlope: -21.703856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 17.696396 + inSlope: -31.628983 + outSlope: -31.628983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 15.278751 + inSlope: -40.26579 + outSlope: -40.26579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 12.357763 + inSlope: -47.11981 + outSlope: -47.11981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 9.033973 + inSlope: -51.568115 + outSlope: -51.568115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.5208592 + inSlope: -53.185574 + outSlope: -53.185574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 1.9717581 + inSlope: -53.55781 + outSlope: -53.55781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.634371 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 4.6343703 + inSlope: 1.7110579 + outSlope: 1.7110579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.8670807 + inSlope: 4.9397326 + outSlope: 4.9397326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.2995353 + inSlope: 4.0248694 + outSlope: 4.0248694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 5.3854485 + inSlope: -1.0909091 + outSlope: -1.0909091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 5.190381 + inSlope: -2.1531937 + outSlope: -2.1531937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.079392 + inSlope: -0.24240756 + outSlope: -0.24240756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 5.122217 + inSlope: 2.579987 + outSlope: 2.579987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.3711066 + inSlope: 5.995215 + outSlope: 5.995215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.855114 + inSlope: 9.6179905 + outSlope: 9.6179905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 6.576231 + inSlope: 13.018897 + outSlope: 13.018897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.507041 + inSlope: 15.745183 + outSlope: 15.745183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.59013 + inSlope: 17.3579 + outSlope: 17.3579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 9.739911 + inSlope: 17.471153 + outSlope: 17.471153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 10.8477 + inSlope: 15.806681 + outSlope: 15.806681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 11.790353 + inSlope: 12.2507105 + outSlope: 12.2507105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 12.442288 + inSlope: 6.8919964 + outSlope: 6.8919964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 12.690076 + inSlope: -0.7016236 + outSlope: -0.7016236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 12.3494 + inSlope: -9.762907 + outSlope: -9.762907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 11.406214 + inSlope: -17.05466 + outSlope: -17.05466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.084076 + inSlope: -20.934467 + outSlope: -20.934467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 8.598541 + inSlope: -21.371176 + outSlope: -21.371176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.1803837 + inSlope: -18.99986 + outSlope: -18.99986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 5.9805245 + inSlope: -14.5800085 + outSlope: -14.5800085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.120642 + inSlope: -9.167006 + outSlope: -9.167006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 4.631307 + inSlope: -3.7500107 + outSlope: -3.7500107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.040922 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -20.040922 + inSlope: -7.929476 + outSlope: -7.929476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -21.099514 + inSlope: -22.942392 + outSlope: -22.942392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -23.101936 + inSlope: -10.329525 + outSlope: -10.329525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -22.470173 + inSlope: 27.97963 + outSlope: 27.97963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -19.377361 + inSlope: 50.953094 + outSlope: 50.953094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -15.670274 + inSlope: 59.075645 + outSlope: 59.075645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -11.492939 + inSlope: 65.13886 + outSlope: 65.13886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -6.9791102 + inSlope: 69.272964 + outSlope: 69.272964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -2.255945 + inSlope: 71.52466 + outSlope: 71.52466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.549717 + inSlope: 71.82988 + outSlope: 71.82988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.3038554 + inSlope: 70.014244 + outSlope: 70.014244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 11.858391 + inSlope: 65.81675 + outSlope: 65.81675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.046734 + inSlope: 58.943253 + outSlope: 58.943253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 19.683237 + inSlope: 49.13391 + outSlope: 49.13391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 22.567158 + inSlope: 36.226463 + outSlope: 36.226463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 24.490852 + inSlope: 20.215893 + outSlope: 20.215893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 25.250883 + inSlope: -0.68106717 + outSlope: -0.68106717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 24.40057 + inSlope: -25.743567 + outSlope: -25.743567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 21.829468 + inSlope: -48.51979 + outSlope: -48.51979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 17.934656 + inSlope: -65.82713 + outSlope: -65.82713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 13.038016 + inSlope: -77.653114 + outSlope: -77.653114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.543508 + inSlope: -84.74855 + outSlope: -84.74855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 1.6870676 + inSlope: -87.63505 + outSlope: -87.63505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -4.1980205 + inSlope: -86.94831 + outSlope: -86.94831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -9.953589 + inSlope: -85.808495 + outSlope: -85.808495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.4465699 + inSlope: -0.0009655962 + outSlope: -0.0009655962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.4465226 + inSlope: 2.3337011 + outSlope: 2.3337011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 1.757122 + inSlope: 5.217309 + outSlope: 5.217309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 2.1422536 + inSlope: 5.886779 + outSlope: 5.886779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 2.5429008 + inSlope: 5.685055 + outSlope: 5.685055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.9018447 + inSlope: 4.646331 + outSlope: 4.646331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.164335 + inSlope: 2.8064194 + outSlope: 2.8064194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 3.2774105 + inSlope: 0.17277734 + outSlope: 0.17277734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 3.187449 + inSlope: -2.720256 + outSlope: -2.720256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 2.9139247 + inSlope: -4.959606 + outSlope: -4.959606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.5262716 + inSlope: -6.533256 + outSlope: -6.533256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 2.0436718 + inSlope: -7.8072205 + outSlope: -7.8072205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.4867609 + inSlope: -8.755672 + outSlope: -8.755672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.8779928 + inSlope: -9.3508415 + outSlope: -9.3508415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.24148034 + inSlope: -9.572984 + outSlope: -9.572984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3976155 + inSlope: -9.414483 + outSlope: -9.414483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.0139513 + inSlope: -8.881554 + outSlope: -8.881554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.582897 + inSlope: -7.980384 + outSlope: -7.980384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -2.0798037 + inSlope: -6.767574 + outSlope: -6.767574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.487416 + inSlope: -5.2409663 + outSlope: -5.2409663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -2.780677 + inSlope: -3.4123204 + outSlope: -3.4123204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -2.9438214 + inSlope: -0.07877119 + outSlope: -0.07877119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -2.7912502 + inSlope: 5.3238063 + outSlope: 5.3238063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -2.231132 + inSlope: 10.491589 + outSlope: 10.491589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.392724 + inSlope: 13.767642 + outSlope: 13.767642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.39919767 + inSlope: 14.950909 + outSlope: 14.950909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 80.272446 + inSlope: -0.0020599384 + outSlope: -0.0020599384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 80.27234 + inSlope: 0.34881625 + outSlope: 0.34881625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 80.32315 + inSlope: 0.9709177 + outSlope: 0.9709177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 80.40035 + inSlope: 1.3434184 + outSlope: 1.3434184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 80.497765 + inSlope: 1.549417 + outSlope: 1.549417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 80.60029 + inSlope: 1.4512267 + outSlope: 1.4512267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 80.6847 + inSlope: 0.9554681 + outSlope: 0.9554681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 80.72357 + inSlope: 0.06042486 + outSlope: 0.06042486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 80.69251 + inSlope: -0.91495603 + outSlope: -0.91495603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 80.604004 + inSlope: -1.4941367 + outSlope: -1.4941367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 80.493355 + inSlope: -1.6688935 + outSlope: -1.6688935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 80.379074 + inSlope: -1.5703598 + outSlope: -1.5703598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 80.27835 + inSlope: -1.2373364 + outSlope: -1.2373364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 80.20529 + inSlope: -0.7319648 + outSlope: -0.7319648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 80.169334 + inSlope: -0.13011944 + outSlope: -0.13011944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 80.17436 + inSlope: 0.4758441 + outSlope: 0.4758441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 80.21831 + inSlope: 1.0004435 + outSlope: 1.0004435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 80.293396 + inSlope: 1.3636793 + outSlope: 1.3636793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 80.38675 + inSlope: 1.5065017 + outSlope: 1.5065017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 80.4832 + inSlope: 1.393205 + outSlope: 1.393205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 80.56403 + inSlope: 1.0117731 + outSlope: 1.0117731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 80.61325 + inSlope: 0.024719262 + outSlope: 0.024719262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 80.56715 + inSlope: -1.5260656 + outSlope: -1.5260656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 80.42046 + inSlope: -2.288935 + outSlope: -2.288935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 80.26462 + inSlope: -1.7330949 + outSlope: -1.7330949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 80.17449 + inSlope: -0.3512195 + outSlope: -0.3512195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.376915 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 8.3769245 + inSlope: 13.627094 + outSlope: 13.627094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 10.194129 + inSlope: 30.643345 + outSlope: 30.643345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 12.462975 + inSlope: 34.885963 + outSlope: 34.885963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 14.845779 + inSlope: 34.0604 + outSlope: 34.0604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 17.004261 + inSlope: 28.153694 + outSlope: 28.153694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 18.599297 + inSlope: 17.154139 + outSlope: 17.154139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 19.291193 + inSlope: 1.0597525 + outSlope: 1.0597525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 18.74049 + inSlope: -16.604992 + outSlope: -16.604992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 17.077349 + inSlope: -29.954231 + outSlope: -29.954231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 14.746364 + inSlope: -38.971073 + outSlope: -38.971073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 11.880395 + inSlope: -45.998814 + outSlope: -45.998814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.611823 + inSlope: -51.046265 + outSlope: -51.046265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.0724196 + inSlope: -54.122887 + outSlope: -54.122887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.3933736 + inSlope: -55.237343 + outSlope: -55.237343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.294497 + inSlope: -54.391 + outSlope: -54.391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -5.8604383 + inSlope: -51.584507 + outSlope: -51.584507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.173449 + inSlope: -46.74541 + outSlope: -46.74541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -12.093618 + inSlope: -40.05456 + outSlope: -40.05456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -14.5141115 + inSlope: -31.345526 + outSlope: -31.345526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.272753 + inSlope: -20.583506 + outSlope: -20.583506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -17.258245 + inSlope: -0.47833487 + outSlope: -0.47833487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -16.336512 + inSlope: 32.020683 + outSlope: 32.020683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -12.989417 + inSlope: 62.035347 + outSlope: 62.035347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -8.063196 + inSlope: 80.0977 + outSlope: 80.0977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.303876 + inSlope: 86.2852 + outSlope: 86.2852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0107125 + inSlope: 0.0014108433 + outSlope: 0.0014108433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.0106322 + inSlope: 1.5592285 + outSlope: 1.5592285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.80154544 + inSlope: 3.3666825 + outSlope: 3.3666825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.5625468 + inSlope: 3.738134 + outSlope: 3.738134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.30401605 + inSlope: 3.9454663 + outSlope: 3.9454663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.037141915 + inSlope: 3.9812655 + outSlope: 3.9812655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.22646703 + inSlope: 3.8419614 + outSlope: 3.8419614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.4752693 + inSlope: 3.533311 + outSlope: 3.533311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.69824326 + inSlope: 3.0672002 + outSlope: 3.0672002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.8851755 + inSlope: 2.4562185 + outSlope: 2.4562185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.026682 + inSlope: 1.7100011 + outSlope: 1.7100011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.113927 + inSlope: 0.8319952 + outSlope: 0.8319952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.1380702 + inSlope: -0.106135115 + outSlope: -0.106135115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.0996588 + inSlope: -0.9600976 + outSlope: -0.9600976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.0099448 + inSlope: -1.6807327 + outSlope: -1.6807327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.875501 + inSlope: -2.3035743 + outSlope: -2.3035743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.70295876 + inSlope: -2.824248 + outSlope: -2.824248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.4993528 + inSlope: -3.2283258 + outSlope: -3.2283258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.27304697 + inSlope: -3.5234604 + outSlope: -3.5234604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.030053958 + inSlope: -3.6842797 + outSlope: -3.6842797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.21796583 + inSlope: -3.714338 + outSlope: -3.714338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.46524504 + inSlope: -3.6115537 + outSlope: -3.6115537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.7000519 + inSlope: -3.3826804 + outSlope: -3.3826804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.9170649 + inSlope: -3.0365102 + outSlope: -3.0365102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.1060458 + inSlope: -2.581913 + outSlope: -2.581913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -1.262492 + inSlope: -2.3231492 + outSlope: -2.3231492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.1850243 + inSlope: -0.0005149846 + outSlope: -0.0005149846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 6.184962 + inSlope: -0.42342466 + outSlope: -0.42342466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6.133468 + inSlope: -0.6928045 + outSlope: -0.6928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.08973 + inSlope: -0.5180941 + outSlope: -0.5180941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 6.0599704 + inSlope: -0.27137545 + outSlope: -0.27137545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.0479436 + inSlope: 0.00753165 + outSlope: 0.00753165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 6.05453 + inSlope: 0.27349976 + outSlope: 0.27349976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 6.0776677 + inSlope: 0.48406407 + outSlope: 0.48406407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 6.112615 + inSlope: 0.6040126 + outSlope: 0.6040126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 6.1525493 + inSlope: 0.6087311 + outSlope: 0.6087311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 6.189434 + inSlope: 0.49112368 + outSlope: 0.49112368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 6.215116 + inSlope: 0.25828624 + outSlope: 0.25828624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 6.222626 + inSlope: -0.03366712 + outSlope: -0.03366712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.210756 + inSlope: -0.2877691 + outSlope: -0.2877691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 6.184757 + inSlope: -0.45541808 + outSlope: -0.45541808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 6.1502266 + inSlope: -0.5302606 + outSlope: -0.5302606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 6.1134834 + inSlope: -0.5082898 + outSlope: -0.5082898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 6.0807676 + inSlope: -0.39769688 + outSlope: -0.39769688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 6.057579 + inSlope: -0.21801016 + outSlope: -0.21801016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 6.0478506 + inSlope: 0.010342608 + outSlope: 0.010342608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 6.0539994 + inSlope: 0.2548101 + outSlope: 0.2548101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.0763836 + inSlope: 0.48623133 + outSlope: 0.48623133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 6.1129227 + inSlope: 0.6711942 + outSlope: 0.6711942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 6.160325 + inSlope: 0.7868536 + outSlope: 0.7868536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 6.2126775 + inSlope: 0.810221 + outSlope: 0.810221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.264155 + inSlope: 0.84000427 + outSlope: 0.84000427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.467784 + inSlope: -0.00021457692 + outSlope: -0.00021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -15.467794 + inSlope: 24.415335 + outSlope: 24.415335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -12.212382 + inSlope: 51.95281 + outSlope: 51.95281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -8.539448 + inSlope: 57.037605 + outSlope: 57.037605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -4.60567 + inSlope: 59.773365 + outSlope: 59.773365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.56762576 + inSlope: 60.163193 + outSlope: 60.163193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.4181666 + inSlope: 58.207016 + outSlope: 58.207016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 7.1951785 + inSlope: 53.903633 + outSlope: 53.903633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 10.6068125 + inSlope: 47.251514 + outSlope: 47.251514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 13.496366 + inSlope: 38.247555 + outSlope: 38.247555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.707025 + inSlope: 26.890738 + outSlope: 26.890738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 17.081911 + inSlope: 13.178027 + outSlope: 13.178027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 17.464144 + inSlope: -1.691982 + outSlope: -1.691982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.856318 + inSlope: -15.149217 + outSlope: -15.149217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 15.444209 + inSlope: -26.32786 + outSlope: -26.32786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 13.345786 + inSlope: -35.73667 + outSlope: -35.73667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 10.6790085 + inSlope: -43.375095 + outSlope: -43.375095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 7.5617957 + inSlope: -49.16101 + outSlope: -49.16101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 4.123156 + inSlope: -53.348392 + outSlope: -53.348392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.4473171 + inSlope: -55.682453 + outSlope: -55.682453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.302707 + inSlope: -56.260902 + outSlope: -56.260902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -7.055773 + inSlope: -55.077175 + outSlope: -55.077175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -10.64791 + inSlope: -52.115955 + outSlope: -52.115955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.00591 + inSlope: -47.412704 + outSlope: -47.412704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -16.970575 + inSlope: -40.906517 + outSlope: -40.906517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -19.460638 + inSlope: -37.347115 + outSlope: -37.347115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.09759 + inSlope: 0.00023603461 + outSlope: 0.00023603461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 6.0975904 + inSlope: -1.4067234 + outSlope: -1.4067234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 5.908605 + inSlope: -3.035212 + outSlope: -3.035212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.6914053 + inSlope: -8.219082 + outSlope: -8.219082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 4.8181667 + inSlope: -17.44725 + outSlope: -17.44725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 3.3585246 + inSlope: -23.90371 + outSlope: -23.90371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.6344289 + inSlope: -27.38546 + outSlope: -27.38546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.28827265 + inSlope: -29.811956 + outSlope: -29.811956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.336687 + inSlope: -31.087133 + outSlope: -31.087133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -4.4324894 + inSlope: -31.158775 + outSlope: -31.158775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.4953065 + inSlope: -30.034998 + outSlope: -30.034998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -8.447084 + inSlope: -27.793291 + outSlope: -27.793291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -10.2165165 + inSlope: -24.570517 + outSlope: -24.570517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -11.742511 + inSlope: -20.537458 + outSlope: -20.537458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -12.97575 + inSlope: -15.868565 + outSlope: -15.868565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -13.877533 + inSlope: -10.690356 + outSlope: -10.690356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -14.415653 + inSlope: -5.0411844 + outSlope: -5.0411844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -14.557477 + inSlope: 1.9822187 + outSlope: 1.9822187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -14.1513815 + inSlope: 10.732237 + outSlope: 10.732237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -13.120118 + inSlope: 19.48294 + outSlope: 19.48294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -11.551281 + inSlope: 27.185524 + outSlope: 27.185524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -9.501668 + inSlope: 33.58408 + outSlope: 33.58408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -7.089179 + inSlope: 38.4084 + outSlope: 38.4084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -4.3996887 + inSlope: 41.285286 + outSlope: 41.285286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.6023315 + inSlope: 41.994865 + outSlope: 41.994865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 1.1891338 + inSlope: 41.8064 + outSlope: 41.8064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.29626712 + inSlope: -0.00011131178 + outSlope: -0.00011131178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2962669 + inSlope: -0.7327534 + outSlope: -0.7327534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.2013055 + inSlope: -1.984927 + outSlope: -1.984927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.031670295 + inSlope: -0.3691015 + outSlope: -0.3691015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14056492 + inSlope: 3.2883055 + outSlope: 3.2883055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.44003117 + inSlope: 4.060906 + outSlope: 4.060906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6962142 + inSlope: 2.8838496 + outSlope: 2.8838496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.851454 + inSlope: 0.9462735 + outSlope: 0.9462735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.86154526 + inSlope: -1.5059733 + outSlope: -1.5059733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7003842 + inSlope: -4.1702476 + outSlope: -4.1702476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.36296272 + inSlope: -6.714112 + outSlope: -6.714112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13333431 + inSlope: -8.801981 + outSlope: -8.801981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.74927765 + inSlope: -10.126891 + outSlope: -10.126891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.426363 + inSlope: -10.4348755 + outSlope: -10.4348755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -2.0915227 + inSlope: -9.56496 + outSlope: -9.56496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.6638021 + inSlope: -7.4707265 + outSlope: -7.4707265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.0626314 + inSlope: -4.238935 + outSlope: -4.238935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -3.2172637 + inSlope: 0.34785065 + outSlope: 0.34785065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.017656 + inSlope: 5.761723 + outSlope: 5.761723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.4616437 + inSlope: 9.971668 + outSlope: 9.971668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.6939036 + inSlope: 11.953592 + outSlope: 11.953592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.85624033 + inSlope: 11.685733 + outSlope: 11.685733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09791563 + inSlope: 9.5779915 + outSlope: 9.5779915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.480369 + inSlope: 6.1410456 + outSlope: 6.1410456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.8036619 + inSlope: 2.1205108 + outSlope: 2.1205108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.8556092 + inSlope: -1.8904763 + outSlope: -1.8904763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.082533 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -20.082537 + inSlope: -14.915242 + outSlope: -14.915242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -22.070848 + inSlope: -41.44519 + outSlope: -41.44519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -25.609037 + inSlope: -27.93756 + outSlope: -27.93756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -25.799082 + inSlope: 20.943136 + outSlope: 20.943136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -22.820196 + inSlope: 49.636536 + outSlope: 49.636536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -19.175999 + inSlope: 58.45024 + outSlope: 58.45024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -15.020213 + inSlope: 65.01694 + outSlope: 65.01694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.500405 + inSlope: 69.419624 + outSlope: 69.419624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -5.7598553 + inSlope: 71.693756 + outSlope: 71.693756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.94096285 + inSlope: 71.81559 + outSlope: 71.81559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 3.810646 + inSlope: 69.698364 + outSlope: 69.698364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.342363 + inSlope: 65.212074 + outSlope: 65.212074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 12.492238 + inSlope: 58.208153 + outSlope: 58.208153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 16.088787 + inSlope: 48.55704 + outSlope: 48.55704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 18.953125 + inSlope: 36.181316 + outSlope: 36.181316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 20.903145 + inSlope: 21.081068 + outSlope: 21.081068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 21.759031 + inSlope: 1.7235677 + outSlope: 1.7235677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 21.13373 + inSlope: -21.20784 + outSlope: -21.20784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 18.936914 + inSlope: -42.24084 + outSlope: -42.24084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 15.502476 + inSlope: -58.746872 + outSlope: -58.746872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 11.095445 + inSlope: -70.65593 + outSlope: -70.65593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 6.061808 + inSlope: -78.44331 + outSlope: -78.44331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.61049753 + inSlope: -82.320335 + outSlope: -82.320335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -4.9409924 + inSlope: -82.60225 + outSlope: -82.60225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -10.4232025 + inSlope: -82.18262 + outSlope: -82.18262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim.meta new file mode 100644 index 0000000000..a3bff561a4 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐1/tcks_飞鳐/飞行悬停.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0177b7e7935ff44fba2488c5737f118 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3.meta new file mode 100644 index 0000000000..2bad94018c --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1fcc99b2d4e13404ba2ea8c40bce1d83 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐.meta new file mode 100644 index 0000000000..b151f3ad1d --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed5c645e15725e145bc40e970902ce6a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller new file mode 100644 index 0000000000..685fb48b82 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1107 &-8101956827202700173 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 5150299955730751354} + m_Position: {x: 305, y: 195, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 5150299955730751354} +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "tcks_\u98DE\u9CD0" + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -8101956827202700173} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &5150299955730751354 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: b30047f09abc14042a912a151102472d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller.meta new file mode 100644 index 0000000000..f087ff2b0c --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/tcks_飞鳐.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: abc6cddfa0182ed42be9d3c52d2d35fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim new file mode 100644 index 0000000000..fd344d8422 --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim @@ -0,0 +1,60209 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u884C\u60AC\u505C" + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0, y: 0, z: 0, w: 1} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.041979775, y: -0.6344824, z: -0.047848724, w: 0.77031183} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.25419518, y: -1.182854, z: 0.25810674, w: -0.9441375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.024572887, y: -0.7090152, z: -0.031295724, w: 0.7040697} + inSlope: {x: -0.33077782, y: -1.0514259, z: 0.35975125, w: -1.0335445} + outSlope: {x: -0.33102927, y: -1.0514259, z: 0.3601424, w: -1.0335445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.003086896, y: -0.77342486, z: -0.0019472516, w: 0.63387746} + inSlope: {x: -0.3622344, y: -0.29861924, z: 0.42700556, w: -0.36567447} + outSlope: {x: -0.36186424, y: -0.29772523, z: 0.42679954, w: -0.3638864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.023851177, y: -0.7518486, z: 0.02459427, w: 0.65844506} + inSlope: {x: -0.31828883, y: 0.53375965, z: 0.40576795, w: 0.58382756} + outSlope: {x: -0.31845638, y: 0.53375953, z: 0.40590757, w: 0.5838274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.044171643, y: -0.70145136, z: 0.052342128, w: 0.70941895} + inSlope: {x: -0.26794147, y: 0.7474421, z: 0.35081053, w: 0.6973742} + outSlope: {x: -0.26782978, y: 0.74923044, z: 0.35064298, w: 0.69648033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.058336556, y: -0.6536846, z: 0.0718958, w: 0.7510821} + inSlope: {x: -0.078175224, y: 0.31739476, z: 0.0961125, w: 0.26196244} + outSlope: {x: -0.078119345, y: 0.3165007, z: 0.09577722, w: 0.2601743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.054534443, y: -0.6610553, z: 0.06529544, w: 0.74549866} + inSlope: {x: 0.28336424, y: -0.71346766, z: -0.43954703, w: -0.57488686} + outSlope: {x: 0.2842583, y: -0.71704394, z: -0.4409999, w: -0.5757809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.019448854, y: -0.74270177, z: 0.014280568, w: 0.6691875} + inSlope: {x: 0.26048163, y: -0.5730987, z: -0.39270616, w: -0.6204844} + outSlope: {x: 0.25900072, y: -0.5704162, z: -0.39086196, w: -0.61690784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.019448854, y: -0.74270177, z: 0.014280568, w: 0.6691875} + inSlope: {x: 0.14752144, y: 0.23871651, z: -0.10626852, w: 0.27269113} + outSlope: {x: 0.14844352, y: 0.24050476, z: -0.10712073, w: 0.27269128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.00000048658836, y: -0.71002156, z: 0.00000052854347, w: 0.70417994} + inSlope: {x: 0.14848492, y: 0.25659803, z: -0.107249685, w: 0.25838616} + outSlope: {x: 0.14790326, y: 0.25391582, z: -0.10679812, w: 0.25659803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.00000048658836, y: -0.71002156, z: 0.00000052854347, w: 0.70417994} + inSlope: {x: -0.00012674749, y: 0, z: 0.00008472114, w: 0} + outSlope: {x: 0.00000062669875, y: 0, z: -0.000002707168, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00000045175355, y: -0.71002156, z: 0.0000005419728, w: 0.70417994} + inSlope: {x: 0.000003301466, y: 0, z: 0.0000009737279, w: 0} + outSlope: {x: 0.000003300187, y: 0, z: 0.0000009711699, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.00000045175355, y: -0.71002156, z: 0.0000005419728, w: 0.70417994} + inSlope: {x: 0.0000032997607, y: 0, z: 0.0000009703173, w: 0} + outSlope: {x: 0.000003301466, y: 0, z: 0.0000009737279, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00000045430542, y: -0.71002156, z: 0.00000054323647, w: 0.70417994} + inSlope: {x: -0.00000083815627, y: 0, z: -0.000003374794, w: 0} + outSlope: {x: -0.000000835172, y: 0, z: -0.0000033730887, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00000045430542, y: -0.71002156, z: 0.00000054323647, w: 0.70417994} + inSlope: {x: -0.000000833893, y: 0, z: -0.0000033730887, w: 0} + outSlope: {x: -0.0000008368773, y: 0, z: -0.000003374794, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.0000004343142, y: -0.71002156, z: 0.0000005417304, w: 0.70417994} + inSlope: {x: 0.000002511911, y: 0, z: 0.0000009848123, w: 0} + outSlope: {x: 0.0000025067927, y: 0, z: 0.0000009796955, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0000004343142, y: -0.71002156, z: 0.0000005417304, w: 0.70417994} + inSlope: {x: 0.000002508498, y: 0, z: 0.0000009814008, w: 0} + outSlope: {x: 0.0000025102079, y: 0, z: 0.0000009831078, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00000044228204, y: -0.71002156, z: 0.0000005298717, w: 0.70417994} + inSlope: {x: -0.0000013838544, y: 0, z: -0.0000027685614, w: 0} + outSlope: {x: -0.0000013834256, y: 0, z: -0.0000027677038, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.0000004533228, y: -0.7100215, z: 0.00000054454756, w: 0.70418} + inSlope: {x: 0.0000033726594, y: 0, z: 0.0000008569138, w: 0} + outSlope: {x: 0.00016740289, y: 0, z: -0.00002128987, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0000004533228, y: -0.7100215, z: 0.00000054454756, w: 0.70418} + inSlope: {x: -0.16335697, y: -0.025033975, z: 0.022052024, w: -0.025033975} + outSlope: {x: -0.16444941, y: -0.02413986, z: 0.022204448, w: -0.02503393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.021619957, y: -0.71307796, z: 0.0029022805, w: 0.70074534} + inSlope: {x: -0.16411753, y: -0.022351723, z: 0.022184085, w: -0.027716137} + outSlope: {x: -0.16327962, y: -0.021457693, z: 0.022058396, w: -0.028610257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.021619957, y: -0.71307796, z: 0.0029022805, w: 0.70074534} + inSlope: {x: 0.00016763822, y: 0, z: -0.000027939705, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.021619968, y: -0.71307796, z: 0.0029022787, w: 0.70074534} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00016763822, y: 0, z: 0.000027939705, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.021619968, y: -0.71307796, z: 0.0029022787, w: 0.70074534} + inSlope: {x: 0.16330756, y: 0.021457693, z: -0.021778999, w: 0.028610257} + outSlope: {x: 0.16431311, y: 0.022351723, z: -0.021932628, w: 0.026822068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0000004501403, y: -0.7100215, z: 0.0000005468558, w: 0.70418} + inSlope: {x: 0.32750788, y: 0.04738565, z: -0.043422814, w: 0.04827972} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12718168, y: -0.704205, z: 0.13051671, w: 0.686211} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.12718166, y: -0.704205, z: 0.13051671, w: 0.686211} + inSlope: {x: 0.033080578, y: -0.0053644176, z: -0.033527613, w: 0.007152557} + outSlope: {x: 0.033080578, y: -0.0062584872, z: -0.033974648, w: 0.0062584872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.122820556, y: -0.7050198, z: 0.12604128, w: 0.6870049} + inSlope: {x: 0.13880432, y: -0.025928019, z: -0.14260411, w: 0.025033949} + outSlope: {x: 0.13913961, y: -0.026822092, z: -0.14282764, w: 0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.108798414, y: -0.70744145, z: 0.11165139, w: 0.68936455} + inSlope: {x: 0.29683116, y: -0.047385696, z: -0.30443075, w: 0.047385696} + outSlope: {x: 0.2970546, y: -0.047385685, z: -0.30465418, w: 0.048279755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.083581224, y: -0.7110432, z: 0.08577295, w: 0.6928744} + inSlope: {x: 0.41484827, y: -0.050961964, z: -0.42568886, w: 0.050961964} + outSlope: {x: 0.4152954, y: -0.050067905, z: -0.42624775, w: 0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.053975794, y: -0.7140526, z: 0.055391196, w: 0.695807} + inSlope: {x: 0.45524913, y: -0.03576279, z: -0.46715143, w: 0.03665686} + outSlope: {x: 0.4553609, y: -0.03576279, z: -0.46731907, w: 0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.023468899, y: -0.71579266, z: 0.02408434, w: 0.6975027} + inSlope: {x: 0.4574843, y: -0.014305116, z: -0.46949837, w: 0.015199185} + outSlope: {x: 0.45742843, y: -0.016093256, z: -0.46941453, w: 0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0064164, y: -0.71616757, z: -0.0065846248, w: 0.6978678} + inSlope: {x: 0.43643874, y: 0.004470349, z: -0.44787306, w: -0.004470349} + outSlope: {x: 0.43643156, y: 0.0044703465, z: -0.44787985, w: -0.0035762773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.034155555, y: -0.71533966, z: -0.035051163, w: 0.69706106} + inSlope: {x: 0.3928317, y: 0.019669525, z: -0.4031694, w: -0.018775456} + outSlope: {x: 0.39232898, y: 0.019669535, z: -0.4025549, w: -0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.058246534, y: -0.71369904, z: -0.059773877, w: 0.6954625} + inSlope: {x: 0.3259443, y: 0.028610231, z: -0.33449385, w: -0.026822092} + outSlope: {x: 0.32627958, y: 0.026822092, z: -0.33482912, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.077223055, y: -0.7117998, z: -0.079247996, w: 0.69361186} + inSlope: {x: 0.23815782, y: 0.027716162, z: -0.2441928, w: -0.026822092} + outSlope: {x: 0.23748727, y: 0.026822092, z: -0.24374576, w: -0.027716162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.089651726, y: -0.7102639, z: -0.092002556, w: 0.692115} + inSlope: {x: 0.12774022, y: 0.017881395, z: -0.13109298, w: -0.017881395} + outSlope: {x: 0.12774022, y: 0.016093256, z: -0.1313165, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.09411219, y: -0.709656, z: -0.09658, w: 0.69152266} + inSlope: {x: 0.015199185, y: 0.0026822092, z: -0.015646221, w: -0.0026822092} + outSlope: {x: 0.015422703, y: 0.0017881395, z: -0.015646221, w: -0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.09167906, y: -0.7099913, z: -0.094083086, w: 0.69184947} + inSlope: {x: -0.07085503, y: -0.008940698, z: 0.07275493, w: 0.008940698} + outSlope: {x: -0.07107855, y: -0.009834767, z: 0.072866686, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.08475679, y: -0.71089643, z: -0.08697931, w: 0.6927316} + inSlope: {x: -0.13466926, y: -0.016093256, z: 0.13824554, w: 0.016987326} + outSlope: {x: -0.13444574, y: -0.016987326, z: 0.13791026, w: 0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.07390606, y: -0.71217066, z: -0.07584402, w: 0.6939731} + inSlope: {x: -0.18965454, y: -0.020563604, z: 0.19457193, w: 0.021457674} + outSlope: {x: -0.18987788, y: -0.020563586, z: 0.19479527, w: 0.019669516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.059686746, y: -0.7135738, z: -0.061251853, w: 0.69534034} + inSlope: {x: -0.23642536, y: -0.021457653, z: 0.24257207, w: 0.021457653} + outSlope: {x: -0.23748748, y: -0.020563623, z: 0.24363422, w: 0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.02347729, y: -0.7157925, z: -0.0240929, w: 0.6975023} + inSlope: {x: -0.30468246, y: -0.010728846, z: 0.31267324, w: 0.008940705} + outSlope: {x: -0.30392754, y: -0.010728827, z: 0.31189036, w: 0.011622896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0025225335, y: -0.7161931, z: -0.002588659, w: 0.6978928} + inSlope: {x: -0.32421872, y: 0, z: 0.33271936, w: 0} + outSlope: {x: -0.32479557, y: -0.0017881411, z: 0.3333102, w: 0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.01934535, y: -0.71592265, z: 0.019852651, w: 0.69762915} + inSlope: {x: -0.33549997, y: 0.0080466345, z: 0.344301, w: -0.008940705} + outSlope: {x: -0.33616993, y: 0.009834758, z: 0.3449709, w: -0.0080466205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.041796308, y: -0.7149123, z: 0.042892322, w: 0.6966447} + inSlope: {x: -0.33773455, y: 0.020563586, z: 0.34667522, w: -0.018775448} + outSlope: {x: -0.33767927, y: 0.022351762, z: 0.34656408, w: -0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.06395053, y: -0.71318465, z: 0.06562749, w: 0.69496113} + inSlope: {x: -0.33091787, y: 0.030398399, z: 0.33929977, w: -0.030398399} + outSlope: {x: -0.33069375, y: 0.031292412, z: 0.33952266, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.085486054, y: -0.7108046, z: 0.08772772, w: 0.692642} + inSlope: {x: -0.3075597, y: 0.039339032, z: 0.31560633, w: -0.037550896} + outSlope: {x: -0.30823082, y: 0.038445033, z: 0.31627744, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.10459435, y: -0.70810884, z: 0.10733709, w: 0.69001496} + inSlope: {x: -0.24296367, y: 0.037550963, z: 0.24933392, w: -0.037550963} + outSlope: {x: -0.24318674, y: 0.038444962, z: 0.2497805, w: -0.035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.117599495, y: -0.70595664, z: 0.12068326, w: 0.68791795} + inSlope: {x: -0.19647165, y: 0.035762757, z: 0.20161255, w: -0.033974618} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -6.1174954e-12, y: 0.031313073, z: -0.000000018381222, w: 0.99950963} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0000009469133, y: 0, z: -0.00017322275, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 4.6500157e-10, y: 0.03131307, z: -0.0000000116699415, w: 0.99950963} + inSlope: {x: -0.00094584445, y: -0.00005587935, z: 0.1738775, w: 0} + outSlope: {x: -0.00094925397, y: 0, z: 0.17454119, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.00012505037, y: 0.031304788, z: 0.023001123, w: 0.99924517} + inSlope: {x: -0.0020631705, y: -0.00039115545, z: 0.3793649, w: -0.008940696} + outSlope: {x: -0.0020614245, y: -0.00033527616, z: 0.37922525, w: -0.008046628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.00027216726, y: 0.031273816, z: 0.05006114, w: 0.9982564} + inSlope: {x: -0.0022613679, y: -0.0008381904, z: 0.41736293, w: -0.020563604} + outSlope: {x: -0.0022631134, y: -0.00078231085, z: 0.41730696, w: -0.021457668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.00042461022, y: 0.031217424, z: 0.0781003, w: 0.99645656} + inSlope: {x: -0.0022177114, y: -0.0011455265, z: 0.40892506, w: -0.031292435} + outSlope: {x: -0.0022072347, y: -0.0011734666, z: 0.4090369, w: -0.03308058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.00056569604, y: 0.031143107, z: 0.10405123, w: 0.99408406} + inSlope: {x: -0.0019103755, y: -0.0012293459, z: 0.3543869, w: -0.03665686} + outSlope: {x: -0.0019208529, y: -0.0012852253, z: 0.35427514, w: -0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.00067892764, y: 0.031067962, z: 0.1248783, w: 0.9916853} + inSlope: {x: -0.0013690443, y: -0.0010617079, z: 0.25391582, w: -0.032186512} + outSlope: {x: -0.0013620594, y: -0.0010617079, z: 0.25391582, w: -0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00074798753, y: 0.031015301, z: 0.13758115, w: 0.99000454} + inSlope: {x: -0.0005867333, y: -0.00044703486, z: 0.10818244, w: -0.014305116} + outSlope: {x: -0.000586733, y: -0.00044703466, z: 0.10795887, w: -0.015199179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0007566316, y: 0.031008346, z: 0.13917105, w: 0.9897824} + inSlope: {x: 0.00026542682, y: 0.00019557767, z: -0.046491604, w: 0.0062584854} + outSlope: {x: 0.00025844204, y: 0.00016763808, z: -0.046715144, w: 0.006258488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.00071464013, y: 0.031041374, z: 0.13144755, w: 0.99083674} + inSlope: {x: 0.0008381904, y: 0.00061467296, z: -0.15422703, w: 0.020563604} + outSlope: {x: 0.0008381904, y: 0.00061467296, z: -0.15467407, w: 0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.00064576557, y: 0.031091394, z: 0.11877901, w: 0.99243355} + inSlope: {x: 0.0012014062, y: 0.000782311, z: -0.2230704, w: 0.026822092} + outSlope: {x: 0.0012258535, y: 0.0008381904, z: -0.22284688, w: 0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00055460003, y: 0.031149717, z: 0.10201132, w: 0.9942952} + inSlope: {x: 0.0015296974, y: 0.0008381904, z: -0.27839097, w: 0.027716162} + outSlope: {x: 0.0015157276, y: 0.0008102507, z: -0.278838, w: 0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.0004457787, y: 0.03120763, z: 0.08199559, w: 0.9961438} + inSlope: {x: 0.0017497224, y: 0.000698492, z: -0.32130632, w: 0.025033953} + outSlope: {x: 0.0017427375, y: 0.00075437134, z: -0.32130632, w: 0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00032397744, y: 0.031257425, z: 0.059592467, w: 0.99773324} + inSlope: {x: 0.0019121218, y: 0.0005587936, z: -0.35069886, w: 0.020563604} + outSlope: {x: 0.001913868, y: 0.0005587936, z: -0.35103413, w: 0.021457674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00019393454, y: 0.03129314, z: 0.035673402, w: 0.9988734} + inSlope: {x: 0.0019994334, y: 0.0002793968, z: -0.3673509, w: 0.013411046} + outSlope: {x: 0.0019941947, y: 0.0002793968, z: -0.36701563, w: 0.013411046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.000060436083, y: 0.031311132, z: 0.011118743, w: 0.9994479} + inSlope: {x: 0.002007728, y: 0, z: -0.37000516, w: 0.003576279} + outSlope: {x: 0.0020120917, y: 0.000111758614, z: -0.36992103, w: 0.0044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.000071703835, y: 0.031310342, z: -0.013186075, w: 0.9994227} + inSlope: {x: 0.0019501005, y: -0.00022351723, z: -0.3594576, w: -0.0053644134} + outSlope: {x: 0.001957089, y: -0.00027939703, z: -0.36040822, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.00031233998, y: 0.03126135, z: -0.05744694, w: 0.997859} + inSlope: {x: 0.0016170103, y: -0.0006146735, z: -0.299346, w: -0.01698734} + outSlope: {x: 0.0016222461, y: -0.0005587931, z: -0.29828376, w: -0.016987309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.00041197776, y: 0.031223038, z: -0.075773455, w: 0.9966359} + inSlope: {x: 0.0013480883, y: -0.00064261205, z: -0.24832764, w: -0.018775448} + outSlope: {x: 0.0013411058, y: -0.0006426132, z: -0.24877512, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0004906631, y: 0.031185288, z: -0.09024641, w: 0.9954309} + inSlope: {x: 0.0009988444, y: -0.00055879407, z: -0.18473732, w: -0.01788141} + outSlope: {x: 0.0010128125, y: -0.0005308534, z: -0.18518403, w: -0.016093241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.0005447052, y: 0.03115551, z: -0.10018658, w: 0.9944806} + inSlope: {x: 0.00040861743, y: -0.00022351723, z: -0.07543707, w: -0.0071525513} + outSlope: {x: 0.0004051257, y: -0.00022351764, z: -0.075213686, w: -0.0080466345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0005447769, y: 0.031155467, z: -0.10019992, w: 0.99447924} + inSlope: {x: -0.0004924373, y: 0.00025145733, z: 0.09074816, w: 0.008940705} + outSlope: {x: -0.0004924364, y: 0.00027939654, z: 0.090748, w: 0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.0004794686, y: 0.03119106, z: -0.08818812, w: 0.9956153} + inSlope: {x: -0.0013271335, y: 0.0006705517, z: 0.24162212, w: 0.021457653} + outSlope: {x: -0.0013166586, y: 0.0006426132, z: 0.24251664, w: 0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.000371075, y: 0.031240046, z: -0.068251275, w: 0.99717885} + inSlope: {x: -0.0018195732, y: 0.0006146735, z: 0.33360007, w: 0.022351762} + outSlope: {x: -0.0018335398, y: 0.0006705517, z: 0.33393475, w: 0.023245793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.00023996795, y: 0.03128255, z: -0.044137068, w: 0.9985356} + inSlope: {x: -0.001987208, y: 0.00039115516, z: 0.36533892, w: 0.016987309} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14285162, y: 0.68356013, z: 0.13907187, w: 0.7021381} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.14285167, y: 0.6835601, z: 0.13907191, w: 0.70213807} + inSlope: {x: -0.040009614, y: 0.0062584872, z: -0.03866851, w: 0.007152557} + outSlope: {x: -0.040009614, y: 0.008046627, z: -0.038892027, w: 0.008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.13753265, y: 0.6845933, z: 0.13389362, w: 0.7031993} + inSlope: {x: -0.16808508, y: 0.03129244, z: -0.1631677, w: 0.033080578} + outSlope: {x: -0.1678616, y: 0.03308058, z: -0.16383828, w: 0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.120418414, y: 0.68764246, z: 0.11723222, w: 0.7063314} + inSlope: {x: -0.35852197, y: 0.06079674, z: -0.34891072, w: 0.062584884} + outSlope: {x: -0.35908067, y: 0.059902657, z: -0.34991646, w: 0.059008587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.08960284, y: 0.69208807, z: 0.087231986, w: 0.7108979} + inSlope: {x: -0.50257885, y: 0.060796726, z: -0.4893913, w: 0.06258487} + outSlope: {x: -0.502579, y: 0.062584884, z: -0.48939142, w: 0.063478954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.053383686, y: 0.69562525, z: 0.051971182, w: 0.7145311} + inSlope: {x: -0.5516969, y: 0.04023314, z: -0.53700066, w: 0.04202128} + outSlope: {x: -0.5516969, y: 0.04023314, z: -0.5371124, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.01604342, y: 0.6973892, z: 0.015618902, w: 0.7163428} + inSlope: {x: -0.5542953, y: 0.011622907, z: -0.53962696, w: 0.011622907} + outSlope: {x: -0.5542953, y: 0.010728837, z: -0.539599, w: 0.012516976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.020525198, y: 0.6972778, z: -0.019982133, w: 0.71622837} + inSlope: {x: -0.52842313, y: -0.014305116, z: -0.5144533, w: -0.016093256} + outSlope: {x: -0.52850676, y: -0.015199179, z: -0.5145369, w: -0.015199179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.054433372, y: 0.6955481, z: -0.05299311, w: 0.71445185} + inSlope: {x: -0.4750302, y: -0.035762772, z: -0.4623456, w: -0.03665684} + outSlope: {x: -0.47441575, y: -0.03486872, z: -0.46195465, w: -0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.08383707, y: 0.69277257, z: -0.081618816, w: 0.71160096} + inSlope: {x: -0.39350244, y: -0.044703487, z: -0.38322064, w: -0.046491627} + outSlope: {x: -0.39383772, y: -0.044703487, z: -0.38344416, w: -0.047385696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.1069586, y: 0.6897484, z: -0.10412854, w: 0.70849437} + inSlope: {x: -0.28666112, y: -0.04112721, z: -0.27894977, w: -0.043809418} + outSlope: {x: -0.28632584, y: -0.042915348, z: -0.27894977, w: -0.042915348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.12207897, y: 0.6873649, z: -0.118848875, w: 0.7060462} + inSlope: {x: -0.15389176, y: -0.024139883, z: -0.1499802, w: -0.025033953} + outSlope: {x: -0.15389176, y: -0.027716162, z: -0.15009196, w: -0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.1275005, y: 0.6864313, z: -0.12412698, w: 0.70508736} + inSlope: {x: -0.01832843, y: -0.004470349, z: -0.017881395, w: -0.003576279} + outSlope: {x: -0.01832843, y: -0.0026822092, z: -0.017993154, w: -0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.12454351, y: 0.6869457, z: -0.121248156, w: 0.7056156} + inSlope: {x: 0.08516014, y: 0.014305116, z: 0.08303673, w: 0.016093256} + outSlope: {x: 0.0852719, y: 0.015199185, z: 0.08292497, w: 0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.11612633, y: 0.6883417, z: -0.113053724, w: 0.70704967} + inSlope: {x: 0.1621619, y: 0.025928022, z: 0.15791507, w: 0.025928022} + outSlope: {x: 0.16205014, y: 0.025928022, z: 0.15791507, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.10291997, y: 0.69033045, z: -0.10019679, w: 0.70909244} + inSlope: {x: 0.22877009, y: 0.03308058, z: 0.22284688, w: 0.03308058} + outSlope: {x: 0.22876988, y: 0.031292412, z: 0.22262317, w: 0.03308055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.08559322, y: 0.692569, z: -0.08332849, w: 0.71139175} + inSlope: {x: 0.2854315, y: 0.03308055, z: 0.27794367, w: 0.03308055} + outSlope: {x: 0.285432, y: 0.03397468, z: 0.27805594, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.0648243, y: 0.69470334, z: -0.063109115, w: 0.7135842} + inSlope: {x: 0.33147666, y: 0.028610257, z: 0.32253593, w: 0.030398399} + outSlope: {x: 0.3313643, y: 0.029504275, z: 0.32253537, w: 0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.041385762, y: 0.6963994, z: -0.040290747, w: 0.71532637} + inSlope: {x: 0.3678535, y: 0.020563586, z: 0.35813048, w: 0.021457653} + outSlope: {x: 0.36835706, y: 0.020563623, z: 0.3586899, w: 0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.01576217, y: 0.69739515, z: -0.015345131, w: 0.7163491} + inSlope: {x: 0.39277637, y: 0.0080466345, z: 0.38243866, w: 0.0080466345} + outSlope: {x: 0.39339033, y: 0.009834758, z: 0.38296884, w: 0.0080466205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.010996415, y: 0.6974818, z: 0.010705439, w: 0.7164382} + inSlope: {x: 0.40661976, y: -0.0053644134, z: 0.39583504, w: -0.0062584826} + outSlope: {x: 0.40660653, y: -0.005364423, z: 0.39586368, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.038476598, y: 0.69655746, z: 0.037458517, w: 0.7154887} + inSlope: {x: 0.40926078, y: -0.021457693, z: 0.39842018, w: -0.023245834} + outSlope: {x: 0.40931594, y: -0.020563586, z: 0.39847535, w: -0.022351723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.065590076, y: 0.6946352, z: 0.06385458, w: 0.71351415} + inSlope: {x: 0.40065464, y: -0.034868687, z: 0.39003757, w: -0.037550896} + outSlope: {x: 0.40143767, y: -0.03576282, z: 0.3908206, w: -0.03665689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.091931894, y: 0.6917986, z: 0.08949944, w: 0.7106005} + inSlope: {x: 0.37249213, y: -0.045597598, z: 0.36265737, w: -0.048279807} + outSlope: {x: 0.37305027, y: -0.046491586, z: 0.362992, w: -0.04827972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.11528403, y: 0.68847597, z: 0.112233676, w: 0.7071875} + inSlope: {x: 0.29403692, y: -0.046491586, z: 0.28632557, w: -0.04738565} + outSlope: {x: 0.29370216, y: -0.047385737, z: 0.28565553, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.13116226, y: 0.6857772, z: 0.12769179, w: 0.7044154} + inSlope: {x: 0.23759924, y: -0.042021316, z: 0.23111723, w: -0.044703525} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -4.2379877e-11, y: -0.009668282, z: 0.000000019081485, w: 0.99995327} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000073881324, y: 0, z: -0.0002032786, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -2.1868066e-10, y: -0.009668284, z: 0.0000000064747194, w: 0.99995327} + inSlope: {x: 0.0073828376, y: 0.000041909512, z: 0.20222218, w: 0} + outSlope: {x: 0.007410565, y: 0.00005587935, z: 0.20297444, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0009762172, y: -0.009664818, z: 0.026747921, w: 0.999595} + inSlope: {x: 0.016147386, y: 0.00030733642, z: 0.44253653, w: -0.011622905} + outSlope: {x: 0.01614215, y: 0.00032130632, z: 0.44250864, w: -0.011622907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0021316586, y: -0.009651753, z: 0.058406524, w: 0.9982439} + inSlope: {x: 0.017811546, y: 0.0005308539, z: 0.4886091, w: -0.028610231} + outSlope: {x: 0.01781154, y: 0.00051688397, z: 0.4885531, w: -0.028610224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0033298223, y: -0.009627904, z: 0.091235675, w: 0.9957772} + inSlope: {x: 0.017416893, y: 0.000684522, z: 0.47821543, w: -0.044703476} + outSlope: {x: 0.017423883, y: 0.0006565825, z: 0.47788027, w: -0.043809418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.004434951, y: -0.009596539, z: 0.121515736, w: 0.9925332} + inSlope: {x: 0.014996623, y: 0.0006565825, z: 0.4114956, w: -0.050067905} + outSlope: {x: 0.014996623, y: 0.00068452215, z: 0.4117191, w: -0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.005313211, y: -0.00956514, z: 0.14557959, w: 0.989286} + inSlope: {x: 0.010575169, y: 0.0005168841, z: 0.2896786, w: -0.042915348} + outSlope: {x: 0.010582154, y: 0.0004889444, z: 0.28990212, w: -0.04112721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00583285, y: -0.009543841, z: 0.15981747, w: 0.98708314} + inSlope: {x: 0.0041630124, y: 0.00018160792, z: 0.11399389, w: -0.018775465} + outSlope: {x: 0.0041490407, y: 0.00019557767, z: 0.114217356, w: -0.018775456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00586271, y: -0.009542554, z: 0.16063565, w: 0.9869503} + inSlope: {x: -0.002682208, y: -0.000097788834, z: -0.0735372, w: 0.011622901} + outSlope: {x: -0.002696179, y: -0.000111758716, z: -0.07353724, w: 0.011622907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.005478101, y: -0.0095586, z: 0.15009752, w: 0.9886098} + inSlope: {x: -0.0075297435, y: -0.00025145712, z: -0.20608307, w: 0.031292442} + outSlope: {x: -0.0075437133, y: -0.00025145712, z: -0.20653011, w: 0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.004868485, y: -0.009581759, z: 0.13339432, w: 0.99100477} + inSlope: {x: -0.010652003, y: -0.00030733648, z: -0.29191378, w: 0.04023314} + outSlope: {x: -0.010645018, y: -0.00030733648, z: -0.29146674, w: 0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.004072712, y: -0.0096078105, z: 0.1115905, w: 0.9936995} + inSlope: {x: -0.013173559, y: -0.00022351743, z: -0.36053362, w: 0.04023314} + outSlope: {x: -0.013187529, y: -0.00026542696, z: -0.36075714, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.003130069, y: -0.009632611, z: 0.08576244, w: 0.9962641} + inSlope: {x: -0.015108381, y: -0.00016763808, z: -0.413619, w: 0.03576279} + outSlope: {x: -0.015083934, y: -0.00016763808, z: -0.41317198, w: 0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.0020805516, y: -0.00965254, z: 0.05700613, w: 0.998325} + inSlope: {x: -0.016407577, y: -0.000055879358, z: -0.4491024, w: 0.025928022} + outSlope: {x: -0.016418055, y: -0.000055879358, z: -0.44943768, w: 0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.00096490467, y: -0.009664901, z: 0.026437888, w: 0.9996033} + inSlope: {x: -0.017101703, y: 0.0000698492, z: -0.46838078, w: 0.013411046} + outSlope: {x: -0.017088607, y: 0.00009778888, z: -0.46801755, w: 0.012516976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.00017554745, y: -0.0096681705, z: -0.0048100254, w: 0.9999417} + inSlope: {x: -0.017144486, y: 0.00025145712, z: -0.469666, w: -0.0026822092} + outSlope: {x: -0.017144252, y: 0.00022351723, z: -0.46967256, w: -0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0012992182, y: -0.009662146, z: -0.03559812, w: 0.99931866} + inSlope: {x: -0.016559483, y: 0.0003632155, z: -0.4542429, w: -0.016093241} + outSlope: {x: -0.016608408, y: 0.00036321615, z: -0.45530543, w: -0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.003327968, y: -0.009627954, z: -0.09118501, w: 0.9957819} + inSlope: {x: -0.013592666, y: 0.00047497498, z: -0.37305093, w: -0.03486875} + outSlope: {x: -0.01356121, y: 0.00044703446, z: -0.37170917, w: -0.033974618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.004157342, y: -0.009605274, z: -0.113909476, w: 0.993436} + inSlope: {x: -0.011161892, y: 0.00043306465, z: -0.30588332, w: -0.035762757} + outSlope: {x: -0.011175881, y: 0.00041909557, z: -0.30644268, w: -0.03486875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0048029427, y: -0.009584092, z: -0.13159862, w: 0.9912451} + inSlope: {x: -0.008137438, y: 0.0003213066, z: -0.22307059, w: -0.029504327} + outSlope: {x: -0.008151394, y: 0.00034924567, z: -0.22374074, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0052335486, y: -0.009568233, z: -0.14339711, w: 0.9896051} + inSlope: {x: -0.0028707995, y: 0.00013969827, z: -0.07890158, w: -0.011622896} + outSlope: {x: -0.0028777895, y: 0.00011175882, z: -0.07845469, w: -0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.005183029, y: -0.00957017, z: -0.14201288, w: 0.98980504} + inSlope: {x: 0.0052317097, y: -0.00019557793, z: 0.14282776, w: 0.020563623} + outSlope: {x: 0.0052317004, y: -0.00016763792, z: 0.14349806, w: 0.020563586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.0045427894, y: -0.009593, z: -0.12447056, w: 0.99216646} + inSlope: {x: 0.012649679, y: -0.00029336638, z: 0.34622818, w: 0.042915307} + outSlope: {x: 0.0126916105, y: -0.00030733674, z: 0.3467876, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.0035129362, y: -0.009623337, z: -0.09625299, w: 0.9953042} + inSlope: {x: 0.017182918, y: -0.00022351764, z: 0.47016934, w: 0.045597598} + outSlope: {x: 0.017217811, y: -0.00019557758, z: 0.47117433, w: 0.044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0022758292, y: -0.009649445, z: -0.062356796, w: 0.99800473} + inSlope: {x: 0.018761478, y: -0.000069849135, z: 0.5138661, w: 0.032186482} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.04903133, y: -0.66038567, z: 0.043283887, w: 0.748073} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0001117587, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.04903131, y: -0.6603857, z: 0.04328392, w: 0.7480729} + inSlope: {x: -0.10577961, y: 0.0053644176, z: 0.093318515, w: -0.008046627} + outSlope: {x: -0.106282525, y: 0.007152557, z: 0.094044946, w: -0.0053644176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.06316576, y: -0.65944934, z: 0.055761565, w: 0.7470122} + inSlope: {x: -0.23670493, y: 0.018775461, z: 0.20893289, w: -0.02145767} + outSlope: {x: -0.23681672, y: 0.016093256, z: 0.20904468, w: -0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.08058174, y: -0.6579684, z: 0.07113608, w: 0.7453347} + inSlope: {x: -0.2672151, y: 0.025033953, z: 0.23592265, w: -0.028610231} + outSlope: {x: -0.26710328, y: 0.025033947, z: 0.23592259, w: -0.029504294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.09877729, y: -0.6560329, z: 0.08719879, w: 0.7431421} + inSlope: {x: -0.26017424, y: 0.030398363, z: 0.2296641, w: -0.03486871} + outSlope: {x: -0.26028606, y: 0.029504301, z: 0.22988768, w: -0.03397465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.11527256, y: -0.65393245, z: 0.10176053, w: 0.74076277} + inSlope: {x: -0.21647663, y: 0.028610231, z: 0.19099565, w: -0.03308058} + outSlope: {x: -0.21636488, y: 0.029504301, z: 0.19099565, w: -0.03397465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.12762025, y: -0.6521428, z: 0.11266083, w: 0.7387356} + inSlope: {x: -0.1358986, y: 0.021457674, z: 0.119693585, w: -0.024139883} + outSlope: {x: -0.13567509, y: 0.020563604, z: 0.1199171, w: -0.024139883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.13339853, y: -0.65124094, z: 0.11776183, w: 0.7377141} + inSlope: {x: -0.018998982, y: 0.003576279, z: 0.017099084, w: -0.0026822092} + outSlope: {x: -0.018998973, y: 0.0017881386, z: 0.016875558, w: -0.0035762773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.13018028, y: -0.6517485, z: 0.11492082, w: 0.7382889} + inSlope: {x: 0.10773535, y: -0.017881386, z: -0.095106624, w: 0.020563595} + outSlope: {x: 0.108405955, y: -0.016093256, z: -0.0955537, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.11896117, y: -0.65341735, z: 0.10501677, w: 0.74017936} + inSlope: {x: 0.2038479, y: -0.029504301, z: -0.17993154, w: 0.032186512} + outSlope: {x: 0.20429493, y: -0.028610231, z: -0.18015505, w: 0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.10296626, y: -0.6555308, z: 0.09089673, w: 0.7425733} + inSlope: {x: 0.26900324, y: -0.03397465, z: -0.23748727, w: 0.03665686} + outSlope: {x: 0.26900324, y: -0.032186512, z: -0.23726375, w: 0.038445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.08308537, y: -0.6577257, z: 0.07334625, w: 0.7450598} + inSlope: {x: 0.3203005, y: -0.031292442, z: -0.28286132, w: 0.03576279} + outSlope: {x: 0.320524, y: -0.03308058, z: -0.28297308, w: 0.03486872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.06022517, y: -0.6596637, z: 0.05316567, w: 0.7472551} + inSlope: {x: 0.35835433, y: -0.025928022, z: -0.31638893, w: 0.028610231} + outSlope: {x: 0.35824257, y: -0.025033953, z: -0.31610954, w: 0.027716162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.03531391, y: -0.6610681, z: 0.031174446, w: 0.7488459} + inSlope: {x: 0.3817119, y: -0.016987326, z: -0.33698046, w: 0.016987326} + outSlope: {x: 0.38215894, y: -0.015199185, z: -0.3373437, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.009299745, y: -0.66175175, z: 0.008209597, w: 0.7496204} + inSlope: {x: 0.39150476, y: -0.0053644185, z: -0.34559986, w: 0.004470349} + outSlope: {x: 0.39109963, y: -0.003576279, z: -0.34523663, w: 0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.016856406, y: -0.66163534, z: -0.014880594, w: 0.74948865} + inSlope: {x: 0.3860146, y: 0.006258488, z: -0.34079424, w: -0.008046628} + outSlope: {x: 0.38595837, y: 0.0062584826, z: -0.34072408, w: -0.010728827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.04219109, y: -0.6607538, z: -0.0372456, w: 0.7484899} + inSlope: {x: 0.3665124, y: 0.017881379, z: -0.32365295, w: -0.019669516} + outSlope: {x: 0.36640128, y: 0.01788141, z: -0.32354176, w: -0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.065749094, y: -0.6592525, z: -0.058042206, w: 0.74678934} + inSlope: {x: 0.33237073, y: 0.025033975, z: -0.29342276, w: -0.028610257} + outSlope: {x: 0.33225837, y: 0.025927998, z: -0.29342225, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.086532004, y: -0.65737927, z: -0.076388985, w: 0.74466735} + inSlope: {x: 0.28509623, y: 0.028610205, z: -0.2516804, w: -0.032186482} + outSlope: {x: 0.28565553, y: 0.029504327, z: -0.25223964, w: -0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.10380168, y: -0.65542805, z: -0.091634385, w: 0.7424571} + inSlope: {x: 0.22396466, y: 0.027716186, z: -0.19803663, w: -0.03129247} + outSlope: {x: 0.22463481, y: 0.028610205, z: -0.19837154, w: -0.032186482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.11644706, y: -0.65377015, z: -0.10279749, w: 0.7405791} + inSlope: {x: 0.14930952, y: 0.019669516, z: -0.13176341, w: -0.02413986} + outSlope: {x: 0.14942154, y: 0.021457693, z: -0.1318754, w: -0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.12373253, y: -0.6527265, z: -0.10922895, w: 0.7393967} + inSlope: {x: 0.012069952, y: 0.0017881411, z: -0.0102818115, w: -0.0026822116} + outSlope: {x: 0.011734654, y: 0.0008940689, z: -0.010281793, w: -0.0026822067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.11801534, y: -0.65355104, z: -0.10418195, w: 0.7403307} + inSlope: {x: -0.20932388, y: -0.030398343, z: 0.18496051, w: 0.03308055} + outSlope: {x: -0.20977129, y: -0.029504327, z: 0.18518436, w: 0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.09575967, y: -0.65638155, z: -0.08453501, w: 0.743537} + inSlope: {x: -0.415184, y: -0.04917388, z: 0.36668068, w: 0.05185609} + outSlope: {x: -0.41652435, y: -0.044703446, z: 0.36723882, w: 0.052750066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.062559836, y: -0.6594943, z: -0.055226803, w: 0.7470632} + inSlope: {x: -0.54180574, y: -0.04112717, z: 0.47815925, w: 0.043809377} + outSlope: {x: -0.5419185, y: -0.041127246, z: 0.47832772, w: 0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.023473982, y: -0.6614782, z: -0.020722505, w: 0.7493105} + inSlope: {x: -0.5861191, y: -0.018775482, z: 0.5174154, w: 0.016093269} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.007333762, y: -0.06563248, z: -0.12598574, w: 0.9898314} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000013969838, y: 0.0001117587, z: -0.0002235174, w: -0.0008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.007333763, y: -0.065632485, z: -0.12598574, w: 0.9898314} + inSlope: {x: -0.012873205, y: -0.0017881392, z: 0.22105871, w: 0.028610228} + outSlope: {x: -0.01290813, y: -0.0017881392, z: 0.22150575, w: 0.027716158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.00561216, y: -0.0658522, z: -0.09641026, w: 0.993145} + inSlope: {x: -0.02757646, y: -0.0029057262, z: 0.47374514, w: 0.04559755} + outSlope: {x: -0.027562493, y: -0.0029057267, z: 0.47340992, w: 0.045597557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0036589634, y: -0.0660302, z: -0.06285626, w: 0.99582916} + inSlope: {x: -0.0303844, y: -0.0021234157, z: 0.522025, w: 0.03308058} + outSlope: {x: -0.030370424, y: -0.0022351737, z: 0.5221366, w: 0.033080574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0015597368, y: -0.066137634, z: -0.02679362, w: 0.9974495} + inSlope: {x: -0.031926315, y: -0.0008940695, z: 0.5485116, w: 0.015199182} + outSlope: {x: -0.031929813, y: -0.000782311, z: 0.5485397, w: 0.014305116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0005982961, y: -0.06615795, z: 0.01027928, w: 0.99775606} + inSlope: {x: -0.032154206, y: 0.00044703486, z: 0.5523116, w: -0.0053644185} + outSlope: {x: -0.03215246, y: 0.0005587936, z: 0.55232555, w: -0.006258488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0027271535, y: -0.06608856, z: 0.046850927, w: 0.9967095} + inSlope: {x: -0.03105146, y: 0.0016763808, z: 0.53336847, w: -0.025033953} + outSlope: {x: -0.031044476, y: 0.0017881395, z: 0.53336847, w: -0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0047391914, y: -0.065941066, z: 0.08141575, w: 0.99448514} + inSlope: {x: -0.028659126, y: 0.002793968, z: 0.49229714, w: -0.04023314} + outSlope: {x: -0.028652128, y: 0.002682208, z: 0.49218518, w: -0.03933905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0065481304, y: -0.065740086, z: 0.11249156, w: 0.99145395} + inSlope: {x: -0.024971077, y: 0.0033527599, z: 0.42926502, w: -0.048279744} + outSlope: {x: -0.024964103, y: 0.0032410028, z: 0.4288182, w: -0.047385696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.008069663, y: -0.06552045, z: 0.13862997, w: 0.98814154} + inSlope: {x: -0.02004672, y: 0.0032410028, z: 0.34421685, w: -0.048279766} + outSlope: {x: -0.02003275, y: 0.0032410028, z: 0.34444037, w: -0.048279766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.009221426, y: -0.065323144, z: 0.15841617, w: 0.9851661} + inSlope: {x: -0.013872051, y: 0.0025704505, z: 0.23826958, w: -0.038445} + outSlope: {x: -0.013872051, y: 0.0024586918, z: 0.2384931, w: -0.038445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.009922297, y: -0.0651899, z: 0.17045648, w: 0.9831563} + inSlope: {x: -0.006523915, y: 0.0012293459, z: 0.111982234, w: -0.019669535} + outSlope: {x: -0.006523915, y: 0.0011175872, z: 0.111982234, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.010091001, y: -0.06515631, z: 0.17335467, w: 0.98265} + inSlope: {x: 0.001480803, y: -0.000111758716, z: -0.02525747, w: 0.004470349} + outSlope: {x: 0.001480803, y: -0.00044703486, z: -0.02525747, w: 0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.009725332, y: -0.06522836, z: 0.16707289, w: 0.9837364} + inSlope: {x: 0.008800999, y: -0.001564622, z: -0.15109779, w: 0.025928022} + outSlope: {x: 0.00877306, y: -0.0016763808, z: -0.15065075, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.008920346, y: -0.06537731, z: 0.15324408, w: 0.98598295} + inSlope: {x: 0.014905819, y: -0.0025704505, z: -0.256151, w: 0.03933907} + outSlope: {x: 0.014877879, y: -0.0026822092, z: -0.25570396, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.0077389544, y: -0.06557215, z: 0.13294896, w: 0.9889211} + inSlope: {x: 0.020053705, y: -0.003129244, z: -0.3446639, w: 0.046491627} + outSlope: {x: 0.020053687, y: -0.002905724, z: -0.34444004, w: 0.045597516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.006244277, y: -0.06577841, z: 0.10727196, w: 0.9920317} + inSlope: {x: 0.02425162, y: -0.0030174826, z: -0.4169714, w: 0.045597516} + outSlope: {x: 0.024286587, y: -0.0029057292, z: -0.4170839, w: 0.044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.004500538, y: -0.06596273, z: 0.07731636, w: 0.99481195} + inSlope: {x: 0.027471714, y: -0.002458694, z: -0.47184572, w: 0.03665689} + outSlope: {x: 0.02746468, y: -0.0022351723, z: -0.47195664, w: 0.037550896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.0025797682, y: -0.06609623, z: 0.044319484, w: 0.99682516} + inSlope: {x: 0.02975224, y: -0.0015646206, z: -0.5111839, w: 0.022351723} + outSlope: {x: 0.029822141, y: -0.0013411058, z: -0.51219064, w: 0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0005305807, y: -0.0661587, z: 0.009116545, w: 0.9977673} + inSlope: {x: 0.030988624, y: -0.00011175882, z: -0.53233516, w: 0.0044703525} + outSlope: {x: 0.03103921, y: -0.00033527584, z: -0.53321433, w: 0.0053644134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.0015533069, y: -0.06613783, z: -0.026682526, w: 0.9974525} + inSlope: {x: 0.0311824, y: 0.0011175862, z: -0.5356311, w: -0.014305103} + outSlope: {x: 0.031184202, y: 0.0010058293, z: -0.5356321, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0036288474, y: -0.06603235, z: -0.062338214, w: 0.9958617} + inSlope: {x: 0.030352997, y: 0.0022351763, z: -0.521299, w: -0.033080608} + outSlope: {x: 0.030345956, y: 0.0021234136, z: -0.52135396, w: -0.032186482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.00560197, y: -0.065853335, z: -0.09623447, w: 0.99316204} + inSlope: {x: 0.028512416, y: 0.0031292413, z: -0.48972625, w: -0.04738565} + outSlope: {x: 0.028540408, y: 0.0031292469, z: -0.49006242, w: -0.047385737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.007429791, y: -0.065618485, z: -0.12763461, w: 0.9896203} + inSlope: {x: 0.025662618, y: 0.0037997998, z: -0.44055325, w: -0.05632644} + outSlope: {x: 0.025697496, y: 0.0037997928, z: -0.44144654, w: -0.05722041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.009024127, y: -0.06535889, z: -0.15502374, w: 0.98570496} + inSlope: {x: 0.02182087, y: 0.0039115516, z: -0.3748384, w: -0.05900855} + outSlope: {x: 0.021820908, y: 0.0039115585, z: -0.37483907, w: -0.057220515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.010340802, y: -0.065105565, z: -0.17764293, w: 0.98188454} + inSlope: {x: 0.01972543, y: 0.0040233172, z: -0.3384057, w: -0.060796797} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.044245433, y: 0.03321047, z: -0.17222728, w: 0.98350245} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0001117587, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.04424541, y: 0.03321047, z: -0.17222728, w: 0.98350245} + inSlope: {x: -0.04196539, y: 0.005085021, z: -0.065267086, w: -0.014305114} + outSlope: {x: -0.04202127, y: 0.004973262, z: -0.06571412, w: -0.0125169745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.04984394, y: 0.033868145, z: -0.18096808, w: 0.981641} + inSlope: {x: -0.12148171, y: 0.012125819, z: -0.18909572, w: -0.04202127} + outSlope: {x: -0.12176112, y: 0.01223758, z: -0.18931927, w: -0.04112721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.060462926, y: 0.034764353, z: -0.19738099, w: 0.97784275} + inSlope: {x: -0.050235543, y: 0.020619484, z: -0.08404256, w: -0.020563604} + outSlope: {x: -0.049956135, y: 0.020563599, z: -0.08337198, w: -0.019669529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.056530945, y: 0.03661205, z: -0.19216338, w: 0.9790491} + inSlope: {x: 0.16087663, y: 0.03470107, z: 0.22999938, w: 0.052750103} + outSlope: {x: 0.16093256, y: 0.034645204, z: 0.23022296, w: 0.052750114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0389773, y: 0.039256427, z: -0.16661532, w: 0.984469} + inSlope: {x: 0.28990212, y: 0.04531816, z: 0.42378905, w: 0.08225442} + outSlope: {x: 0.28984624, y: 0.045094643, z: 0.42334202, w: 0.07957221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.017835362, y: 0.042271655, z: -0.13565639, w: 0.98969305} + inSlope: {x: 0.3370643, y: 0.0506267, z: 0.49576166, w: 0.07241965} + outSlope: {x: 0.33709222, y: 0.05057082, z: 0.49553815, w: 0.07241965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0060276114, y: 0.045514658, z: -0.1004909, w: 0.9938781} + inSlope: {x: 0.37100402, y: 0.053755943, z: 0.5496294, w: 0.050961975} + outSlope: {x: 0.37094796, y: 0.053644158, z: 0.5498526, w: 0.050067883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.031716034, y: 0.048847444, z: -0.062384557, w: 0.9963515} + inSlope: {x: 0.3914906, y: 0.054705866, z: 0.58444196, w: 0.022351732} + outSlope: {x: 0.39098787, y: 0.054482374, z: 0.5840511, w: 0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.05831491, y: 0.052141145, z: -0.0226587, w: 0.9966781} + inSlope: {x: 0.39758164, y: 0.053308908, z: 0.59871936, w: -0.012516976} + outSlope: {x: 0.3979728, y: 0.053364787, z: 0.59911054, w: -0.011622907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.08490576, y: 0.05527988, z: 0.017328992, w: 0.99470335} + inSlope: {x: 0.39070848, y: 0.050179664, z: 0.59301966, w: -0.047385696} + outSlope: {x: 0.39026144, y: 0.050179664, z: 0.5926565, w: -0.045597557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.11058581, y: 0.058163766, z: 0.05621127, w: 0.9905695} + inSlope: {x: 0.37014487, y: 0.0452064, z: 0.56611377, w: -0.07689} + outSlope: {x: 0.37048015, y: 0.045150522, z: 0.56667256, w: -0.07510186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.13448617, y: 0.06071063, z: 0.09263973, w: 0.9847059} + inSlope: {x: 0.33795837, y: 0.039003793, z: 0.5199016, w: -0.09566546} + outSlope: {x: 0.3370643, y: 0.03933907, z: 0.51945454, w: -0.0974536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.15578483, y: 0.06285593, z: 0.12530816, w: 0.97779244} + inSlope: {x: 0.29280785, y: 0.031962994, z: 0.45329335, w: -0.10818244} + outSlope: {x: 0.29280785, y: 0.031739477, z: 0.4537404, w: -0.10728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.17371057, y: 0.06455047, z: 0.15296514, w: 0.9707005} + inSlope: {x: 0.23670496, y: 0.023692848, z: 0.36947432, w: -0.10281802} + outSlope: {x: 0.23759903, y: 0.023804607, z: 0.36835673, w: -0.10102988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.18753552, y: 0.0657558, z: 0.1744115, w: 0.9644103} + inSlope: {x: 0.17032029, y: 0.015087427, z: 0.2664328, w: -0.08225442} + outSlope: {x: 0.17076716, y: 0.015199171, z: 0.26643255, w: -0.08225434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.19655523, y: 0.066437386, z: 0.18848233, w: 0.9599097} + inSlope: {x: 0.09365372, y: 0.0062584826, z: 0.14752138, w: -0.04738565} + outSlope: {x: 0.09343037, y: 0.0063702525, z: 0.14640404, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.20005782, y: 0.066555575, z: 0.1940136, w: 0.9580741} + inSlope: {x: -0.0040233172, y: -0.0040233172, z: -0.004246835, w: 0.0017881411} + outSlope: {x: -0.0033527585, y: -0.004246827, z: -0.0040233103, w: 0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.19606563, y: 0.06588148, z: 0.18792742, w: 0.9601569} + inSlope: {x: -0.12136985, y: -0.016205, z: -0.18507227, w: 0.062584825} + outSlope: {x: -0.12137008, y: -0.016540304, z: -0.18663722, w: 0.061690867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.18387093, y: 0.06428815, z: 0.1691831, w: 0.96614474} + inSlope: {x: -0.23379944, y: -0.027604427, z: -0.35673413, w: 0.109076604} + outSlope: {x: -0.23446958, y: -0.027716137, z: -0.35852164, w: 0.10818234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.1648851, y: 0.061896414, z: 0.14006706, w: 0.97435254} + inSlope: {x: -0.32879385, y: -0.03721562, z: -0.4993375, w: 0.12874593} + outSlope: {x: -0.3283474, y: -0.037103925, z: -0.49911487, w: 0.12964022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.14014193, y: 0.05876996, z: 0.10230716, w: 0.9830766} + inSlope: {x: -0.40344933, y: -0.04548584, z: -0.6086385, w: 0.123381734} + outSlope: {x: -0.4032251, y: -0.045597516, z: -0.60852563, w: 0.12516965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.111284345, y: 0.055054642, z: 0.058546156, w: 0.9905337} + inSlope: {x: -0.4568692, y: -0.05241479, z: -0.6854715, w: 0.0947713} + outSlope: {x: -0.4580994, y: -0.052414883, z: -0.68664616, w: 0.095665544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.079404496, y: 0.050840735, z: 0.010548314, w: 0.99548924} + inSlope: {x: -0.48816252, y: -0.05749991, z: -0.7271308, w: 0.04917388} + outSlope: {x: -0.48872042, y: -0.057611566, z: -0.728289, w: 0.05006786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.046445347, y: 0.04635156, z: -0.038697343, w: 0.99709415} + inSlope: {x: -0.49464363, y: -0.06051729, z: -0.73257774, w: -0.0026822067} + outSlope: {x: -0.49475628, y: -0.060461517, z: -0.7326349, w: -0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.013622433, y: 0.04173793, z: -0.08736118, w: 0.9952087} + inSlope: {x: -0.49341518, y: -0.06258494, z: -0.7264323, w: -0.054538302} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -5.1628875e-11, y: -0.0047167693, z: -0.0000000013207039, w: 0.99998885} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000002828483, y: 0, z: 0.00006052253, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -1.577397e-11, y: -0.0047167693, z: 5.3547655e-10, w: 0.99998885} + inSlope: {x: 0.00028491655, y: 0, z: -0.06040422, w: 0} + outSlope: {x: 0.00028598186, y: 0, z: -0.06063006, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.000037688096, y: -0.0047166175, z: -0.0079899235, w: 0.9999569} + inSlope: {x: 0.0006250957, y: 0.000013969838, z: -0.13253185, w: -0.0017881392} + outSlope: {x: 0.00062493206, y: 0, z: -0.13250393, w: -0.00089406973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.00008250127, y: -0.0047160476, z: -0.017490366, w: 0.9998359} + inSlope: {x: 0.0006921619, y: 0.0000069849198, z: -0.14676714, w: -0.0017881395} + outSlope: {x: 0.00069227087, y: 0.000013969836, z: -0.14679503, w: -0.0026822085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.00012908847, y: -0.004715002, z: -0.027366906, w: 0.9996143} + inSlope: {x: 0.00067862845, y: 0.000013969836, z: -0.14388931, w: -0.003576278} + outSlope: {x: 0.00067841035, y: 0.0000139698395, z: -0.14388935, w: -0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.00017210124, y: -0.0047136284, z: -0.036485672, w: 0.999323} + inSlope: {x: 0.0005836774, y: 0.00002095476, z: -0.12382866, w: -0.004470349} + outSlope: {x: 0.00058389566, y: 0.00002095476, z: -0.12382866, w: -0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00020619796, y: -0.0047122594, z: -0.043714214, w: 0.9990329} + inSlope: {x: 0.00040796297, y: 0.00002095476, z: -0.08655713, w: -0.003576279} + outSlope: {x: 0.00040839953, y: 0.0000139698395, z: -0.086668886, w: -0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00022604442, y: -0.004711349, z: -0.04792169, w: 0.9988399} + inSlope: {x: 0.00015192201, y: 0.0000069849198, z: -0.03229827, w: -0.0017881395} + outSlope: {x: 0.00015170366, y: 0.0000069849166, z: -0.032242376, w: -0.0017881386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00022630816, y: -0.004711337, z: -0.047977593, w: 0.99883723} + inSlope: {x: -0.0001226726, y: -0.0000069849166, z: 0.025928011, w: 0.0008940693} + outSlope: {x: -0.00012267266, y: -0.0000069849198, z: 0.025983902, w: 0.0017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00020990105, y: -0.0047120955, z: -0.04449927, w: 0.9989982} + inSlope: {x: -0.00031781386, y: -0.0000139698395, z: 0.06733463, w: 0.0026822092} + outSlope: {x: -0.00031803214, y: -0.0000139698395, z: 0.06733463, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.00018438774, y: -0.004713164, z: -0.039090417, w: 0.99922454} + inSlope: {x: -0.00044310585, y: -0.00002095476, z: 0.09387732, w: 0.004470349} + outSlope: {x: -0.00044288757, y: -0.00002095476, z: 0.09387732, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.00015141025, y: -0.004714338, z: -0.03209915, w: 0.9994735} + inSlope: {x: -0.0005435141, y: -0.0000139698395, z: 0.11516736, w: 0.003576279} + outSlope: {x: -0.0005441689, y: -0.0000139698395, z: 0.115334995, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.00011261249, y: -0.004715425, z: -0.023873985, w: 0.9997038} + inSlope: {x: -0.00061969337, y: -0.00002095476, z: 0.13134444, w: 0.003576279} + outSlope: {x: -0.00061936595, y: -0.0000139698395, z: 0.13128856, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.000069641224, y: -0.004716255, z: -0.014764021, w: 0.99987984} + inSlope: {x: -0.0006700066, y: -0.0000069849198, z: 0.1420174, w: 0.0017881395} + outSlope: {x: -0.0006704432, y: -0.0000139698395, z: 0.14212915, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.000024146051, y: -0.004716707, z: -0.0051189945, w: 0.99997574} + inSlope: {x: -0.00069611816, y: 0, z: 0.14757739, w: 0.00089406973} + outSlope: {x: -0.0006955179, y: -0.0000069849198, z: 0.14744467, w: 0.00089406973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.000022221293, y: -0.004716717, z: 0.004710937, w: 0.99997777} + inSlope: {x: -0.00069639104, y: 0, z: 0.14764723, w: -0.00089406973} + outSlope: {x: -0.0006961176, y: 0.0000069849134, z: 0.14759122, w: -0.0008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.00006780827, y: -0.004716281, z: 0.01437543, w: 0.9998855} + inSlope: {x: -0.00067186134, y: 0.000013969827, z: 0.14245033, w: -0.0026822067} + outSlope: {x: -0.00067349966, y: 0.000006984926, z: 0.14282776, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00014992205, y: -0.0047143856, z: 0.031783648, w: 0.9994836} + inSlope: {x: -0.00054984464, y: 0.000020954778, z: 0.116620325, w: -0.0044703525} + outSlope: {x: -0.0005480974, y: 0.000013969827, z: 0.11622896, w: -0.0035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.00018338024, y: -0.0047132033, z: 0.038876824, w: 0.9992328} + inSlope: {x: -0.00044899897, y: 0.000013969827, z: 0.09527422, w: -0.0035762757} + outSlope: {x: -0.00045009117, y: 0.000013969852, z: 0.09544203, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.00020928368, y: -0.004712124, z: 0.04436838, w: 0.99900407} + inSlope: {x: -0.00032479907, y: 0.000013969852, z: 0.06889931, w: -0.0026822116} + outSlope: {x: -0.00032545332, y: 0.000013969827, z: 0.06906682, w: -0.0026822067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.00022630814, y: -0.004711337, z: 0.04797759, w: 0.99883723} + inSlope: {x: -0.0001047737, y: 0.0000069849134, z: 0.022295844, w: -0.0008940689} + outSlope: {x: -0.000104337334, y: 0.000006984926, z: 0.022184124, w: -0.00089407054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.00022311024, y: -0.004711489, z: 0.047299627, w: 0.9988696} + inSlope: {x: 0.00023683265, y: -0.000013969852, z: -0.05017971, w: 0.0026822116} + outSlope: {x: 0.00023770533, y: -0.0000069849134, z: -0.050291378, w: 0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.00019500607, y: -0.0047127367, z: 0.04134151, w: 0.9991339} + inSlope: {x: 0.0005494071, y: -0.00002095474, z: -0.1163966, w: 0.0044703446} + outSlope: {x: 0.0005504995, y: -0.000020954778, z: -0.116676204, w: 0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.00015056467, y: -0.0047143656, z: 0.03191988, w: 0.9994793} + inSlope: {x: 0.00073821936, y: -0.000027939705, z: -0.15646234, w: 0.005364423} + outSlope: {x: 0.0007395277, y: -0.00002095474, z: -0.15668558, w: 0.0044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.00009752391, y: -0.004715761, z: 0.020675171, w: 0.9997751} + inSlope: {x: 0.0008034833, y: -0.000013969827, z: -0.17032012, w: 0.0035762757} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00089224253, y: 0.012006575, z: 0.091348015, w: 0.99574625} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000026193445, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.00089224253, y: 0.012006575, z: 0.091348015, w: 0.99574625} + inSlope: {x: -0.00016327247, y: 0.000027939675, z: -0.021904705, w: 0.0026822088} + outSlope: {x: -0.00016414559, y: 0.000027939675, z: -0.021904705, w: 0.0017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0008705533, y: 0.012009124, z: 0.08844742, w: 0.9960081} + inSlope: {x: -0.00068015646, y: 0.000083819024, z: -0.0911951, w: 0.008046627} + outSlope: {x: -0.0006810297, y: 0.0000698492, z: -0.09130687, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.00080209324, y: 0.012016493, z: 0.079293564, w: 0.99677855} + inSlope: {x: -0.0014528633, y: 0.0001396984, z: -0.19468369, w: 0.015199185} + outSlope: {x: -0.0014546092, y: 0.00012572853, z: -0.19468364, w: 0.016093252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.00067818165, y: 0.012027236, z: 0.06273124, w: 0.99795777} + inSlope: {x: -0.0022054878, y: 0.0001536682, z: -0.29470766, w: 0.01877546} + outSlope: {x: -0.0022072347, y: 0.0001396984, z: -0.2948195, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.0005109182, y: 0.0120364735, z: 0.040386584, w: 0.9991115} + inSlope: {x: -0.002603629, y: 0.00009778888, z: -0.3476255, w: 0.014305116} + outSlope: {x: -0.002603629, y: 0.000055879358, z: -0.3475696, w: 0.013411046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00033457042, y: 0.012039681, z: 0.016843433, w: 0.99978554} + inSlope: {x: -0.0026935597, y: 0, z: -0.3590528, w: 0.006258488} + outSlope: {x: -0.00269225, y: -0.000027939679, z: -0.3590528, w: 0.006258488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0001557369, y: 0.012036124, z: -0.0070158555, w: 0.99990296} + inSlope: {x: -0.0026782802, y: -0.000111758716, z: -0.35755107, w: -0.0026822092} + outSlope: {x: -0.0026778425, y: -0.000111758665, z: -0.35751596, w: -0.0017881386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.000019323401, y: 0.01202601, z: -0.030356396, w: 0.99946684} + inSlope: {x: -0.0025730687, y: -0.00020954749, z: -0.34349027, w: -0.010728832} + outSlope: {x: -0.0025713237, y: -0.0002095476, z: -0.34321102, w: -0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.00018435073, y: 0.012010471, z: -0.05234544, w: 0.99855673} + inSlope: {x: -0.0023770556, y: -0.0002793968, z: -0.3165007, w: -0.016987326} + outSlope: {x: -0.0023779287, y: -0.0002793968, z: -0.31666833, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.0003331175, y: 0.01199147, z: -0.07215627, w: 0.9973212} + inSlope: {x: -0.0020902373, y: -0.00029336664, z: -0.27760866, w: -0.019669535} + outSlope: {x: -0.0020867449, y: -0.00032130632, z: -0.2772734, w: -0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.0004594457, y: 0.011971604, z: -0.08897044, w: 0.9959622} + inSlope: {x: -0.0017025742, y: -0.00029336664, z: -0.2257526, w: -0.020563604} + outSlope: {x: -0.0017060667, y: -0.00029336664, z: -0.22597612, w: -0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.0005572122, y: 0.011953877, z: -0.10197759, w: 0.9947146} + inSlope: {x: -0.0012249803, y: -0.00023748727, z: -0.16238542, w: -0.016987326} + outSlope: {x: -0.0012206148, y: -0.00022351743, z: -0.16182663, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00062033144, y: 0.011941338, z: -0.11037265, w: 0.99381834} + inSlope: {x: -0.0006478513, y: -0.00012572856, z: -0.08616597, w: -0.008940698} + outSlope: {x: -0.00064959755, y: -0.0001396984, z: -0.08616597, w: -0.009834767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00064272597, y: 0.0119366795, z: -0.11335074, w: 0.9934832} + inSlope: {x: 0.0000017462299, y: 0, z: 0, w: 0} + outSlope: {x: 0.00000087311497, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.00062033144, y: 0.011941338, z: -0.11037265, w: 0.99381834} + inSlope: {x: 0.000645232, y: 0.0001396984, z: 0.085942455, w: 0.009834767} + outSlope: {x: 0.0006452314, y: 0.00012572845, z: 0.08616589, w: 0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0005572122, y: 0.011953877, z: -0.10197759, w: 0.9947146} + inSlope: {x: 0.0012118825, y: 0.00022351723, z: 0.16182648, w: 0.016093241} + outSlope: {x: 0.0012206158, y: 0.00023748749, z: 0.1630561, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00033355062, y: 0.011991409, z: -0.07221392, w: 0.997317} + inSlope: {x: 0.0020858736, y: 0.0002933669, z: 0.27783242, w: 0.020563623} + outSlope: {x: 0.0020832506, y: 0.00029336638, z: 0.27749664, w: 0.019669516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.00018435076, y: 0.012010471, z: -0.052345432, w: 0.99855673} + inSlope: {x: 0.0023713782, y: 0.0002514569, z: 0.31627688, w: 0.016093241} + outSlope: {x: 0.0023753115, y: 0.00023748749, z: 0.31700388, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.000019857805, y: 0.012025967, z: -0.030427646, w: 0.9994647} + inSlope: {x: 0.0025739453, y: 0.00019557793, z: 0.34315544, w: 0.010728846} + outSlope: {x: 0.0025791794, y: 0.00016763792, z: 0.34379745, w: 0.009834758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.00015573706, y: 0.012036123, z: -0.00701584, w: 0.99990296} + inSlope: {x: 0.002681552, y: 0.00009778879, z: 0.3573831, w: 0.0017881378} + outSlope: {x: 0.0026813385, y: 0.000097788965, z: 0.35733485, w: 0.0026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.00033401232, y: 0.012039681, z: 0.01676894, w: 0.9997868} + inSlope: {x: 0.0026909427, y: -0.000013969852, z: 0.35880166, w: -0.0062584938} + outSlope: {x: 0.002691811, y: -0.000013969827, z: 0.35888484, w: -0.0062584826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.00051091815, y: 0.012036472, z: 0.04038659, w: 0.9991115} + inSlope: {x: 0.0026036266, y: -0.00009778879, z: 0.3475134, w: -0.013411034} + outSlope: {x: 0.0026079968, y: -0.00012572866, z: 0.3481287, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.0006776966, y: 0.012027273, z: 0.06266645, w: 0.9979618} + inSlope: {x: 0.0022054904, y: -0.00018160808, z: 0.29448447, w: -0.018775482} + outSlope: {x: 0.0022115982, y: -0.0001536681, z: 0.29504275, w: -0.018775448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.00080209324, y: 0.012016492, z: 0.079293564, w: 0.99677855} + inSlope: {x: 0.0018859266, y: -0.00018160776, z: 0.2516804, w: -0.020563586} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00012486689, y: -0.014307353, z: 0.008725365, w: 0.9998596} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0000024010658, y: 0, z: -0.00012572855, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.00012485843, y: -0.0143073695, z: 0.008725356, w: 0.9998596} + inSlope: {x: -0.0016416742, y: 0.000013969838, z: 0.11474825, w: -0.0008940696} + outSlope: {x: -0.001647786, y: 0.000013969838, z: 0.11516734, w: -0.0008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.00034204268, y: -0.014303824, z: 0.02390295, w: 0.99961185} + inSlope: {x: -0.003645691, y: 0.00009778886, z: 0.25483778, w: -0.0062584872} + outSlope: {x: -0.0036456916, y: 0.0000698492, z: 0.2548099, w: -0.0053644185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.0006061414, y: -0.014295069, z: 0.04235908, w: 0.9990001} + inSlope: {x: -0.0040887976, y: 0.00015366824, z: 0.28571117, w: -0.011622907} + outSlope: {x: -0.0040879236, y: 0.00018160787, z: 0.28576696, w: -0.012516974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.00088176975, y: -0.014280717, z: 0.061620943, w: 0.99799705} + inSlope: {x: -0.0039953734, y: 0.00025145707, z: 0.27922907, w: -0.01788139} + outSlope: {x: -0.003994501, y: 0.00023748727, z: 0.27917328, w: -0.016987326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.001133629, y: -0.014262933, z: 0.079221725, w: 0.99675435} + inSlope: {x: -0.00337197, y: 0.00026542696, z: 0.23558737, w: -0.018775465} + outSlope: {x: -0.003364985, y: 0.0002793968, z: 0.2352521, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0013266094, y: -0.014246282, z: 0.09270787, w: 0.99559057} + inSlope: {x: -0.0022107272, y: 0.00019557776, z: 0.15456231, w: -0.014305116} + outSlope: {x: -0.0022124734, y: 0.0002095476, z: 0.15456231, w: -0.014305116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0014257816, y: -0.014236697, z: 0.099638365, w: 0.9949209} + inSlope: {x: -0.00052561524, y: 0.000055879358, z: 0.036880378, w: -0.003576279} + outSlope: {x: -0.000525615, y: 0.000055879333, z: 0.0367686, w: -0.0035762773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0013962213, y: -0.014239628, z: 0.09757263, w: 0.9951256} + inSlope: {x: 0.0013044332, y: -0.0001257285, z: -0.09097155, w: 0.008940693} + outSlope: {x: 0.0013009413, y: -0.0001396984, z: -0.0909716, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.001253967, y: -0.014252858, z: 0.08763139, w: 0.99605024} + inSlope: {x: 0.0026472847, y: -0.00023748727, z: -0.18484892, w: 0.016093256} + outSlope: {x: 0.0026490309, y: -0.00023748727, z: -0.1851842, w: 0.016987326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.0010465682, y: -0.014269587, z: 0.07313761, w: 0.99721926} + inSlope: {x: 0.0035431006, y: -0.00025145712, z: -0.24765731, w: 0.017881395} + outSlope: {x: 0.0035431006, y: -0.00026542696, z: -0.24732204, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00078623, y: -0.014286295, z: 0.054944284, w: 0.998387} + inSlope: {x: 0.0042494508, y: -0.00025145712, z: -0.2969988, w: 0.016987326} + outSlope: {x: 0.0042546894, y: -0.00022351743, z: -0.29722232, w: 0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.00048525535, y: -0.014299683, z: 0.033911113, w: 0.9993225} + inSlope: {x: 0.004774193, y: -0.00016763808, z: -0.33365566, w: 0.011622907} + outSlope: {x: 0.00477201, y: -0.00015366824, z: -0.33343214, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00015606885, y: -0.014307063, z: 0.010906437, w: 0.9998382} + inSlope: {x: 0.0051042303, y: -0.000055879358, z: -0.3566919, w: 0.003576279} + outSlope: {x: 0.005108159, y: -0.000055879358, z: -0.3569713, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.0001887942, y: -0.014306667, z: -0.01319382, w: 0.9998106} + inSlope: {x: 0.0052504768, y: 0.00008381904, z: -0.36691782, w: -0.0053644185} + outSlope: {x: 0.0052454565, y: 0.000055879358, z: -0.3665686, w: -0.004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0005367393, y: -0.014297843, z: -0.03750942, w: 0.99919385} + inSlope: {x: 0.0051976535, y: 0.00019557776, z: -0.36321583, w: -0.013411046} + outSlope: {x: 0.0051959027, y: 0.00018160776, z: -0.36315963, w: -0.013411034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.0008751748, y: -0.014281125, z: -0.06116048, w: 0.9980254} + inSlope: {x: 0.004955796, y: 0.00029336638, z: -0.34639582, w: -0.020563586} + outSlope: {x: 0.004970648, y: 0.00030733674, z: -0.34740227, w: -0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.0014727645, y: -0.014231916, z: -0.10292216, w: 0.9945865} + inSlope: {x: 0.003929021, y: 0.0004051257, z: -0.27470317, w: -0.028610257} + outSlope: {x: 0.0039167902, y: 0.00040512497, z: -0.27369684, w: -0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0017089228, y: -0.014205492, z: -0.119425714, w: 0.99274004} + inSlope: {x: 0.0031205101, y: 0.00037718532, z: -0.21804106, w: -0.025927998} + outSlope: {x: 0.0031275006, y: 0.00036321615, z: -0.21848848, w: -0.025928045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0018850601, y: -0.014183193, z: -0.1317348, w: 0.99118173} + inSlope: {x: 0.0021391336, y: 0.0002933669, z: -0.1495333, w: -0.020563623} + outSlope: {x: 0.0021373834, y: 0.00027939654, z: -0.14953303, w: -0.019669516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.001991298, y: -0.014168669, z: -0.13915911, w: 0.9901667} + inSlope: {x: 0.00034575321, y: 0.00004190948, z: -0.02413986, w: -0.0026822067} + outSlope: {x: 0.00034575383, y: 0.00005587941, z: -0.024139903, w: -0.0035762822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0019308814, y: -0.014177028, z: -0.13493705, w: 0.9907509} + inSlope: {x: -0.0025006034, y: -0.0003492463, z: 0.17479078, w: 0.024139903} + outSlope: {x: -0.0025023452, y: -0.00033527584, z: 0.17479047, w: 0.02413986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.0016605319, y: -0.014211223, z: -0.11604416, w: 0.99314106} + inSlope: {x: -0.00513915, y: -0.00060070254, z: 0.35908043, w: 0.04202124} + outSlope: {x: -0.005149637, y: -0.00060070364, z: 0.3598634, w: 0.042021316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.0012518932, y: -0.014253032, z: -0.08748714, w: 0.99606293} + inSlope: {x: -0.0067474386, y: -0.0005867338, z: 0.4716222, w: 0.041127246} + outSlope: {x: -0.006757904, y: -0.00058673276, z: 0.47218016, w: 0.04112717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.00076933566, y: -0.0142872045, z: -0.05376445, w: 0.9984511} + inSlope: {x: -0.0073132045, y: -0.00039115516, z: 0.511128, w: 0.027716137} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00042691777, y: 0.0034770814, z: -0.08284172, w: 0.9965566} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0000013096723, y: -0.0000034924594, z: -0.0001117587, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.00042691777, y: 0.0034770814, z: -0.082841724, w: 0.9965566} + inSlope: {x: 0.001144217, y: 0.000073341645, z: 0.1683086, w: 0.014305114} + outSlope: {x: 0.0011485826, y: 0.000076834105, z: 0.16897915, w: 0.013411044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.00027343436, y: 0.0034858324, z: -0.060325388, w: 0.9981726} + inSlope: {x: 0.0024730978, y: 0.000129221, z: 0.36220995, w: 0.02145767} + outSlope: {x: 0.002472225, y: 0.0001396984, z: 0.36209825, w: 0.022351744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.00009791765, y: 0.0034936573, z: -0.03456414, w: 0.9993964} + inSlope: {x: 0.0027287025, y: 0.000118743636, z: 0.40043148, w: 0.013411046} + outSlope: {x: 0.0027285928, y: 0.00011525115, z: 0.40031964, w: 0.014305112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.00009017564, y: 0.0034994604, z: -0.0069420934, w: 0.9999698} + inSlope: {x: 0.002847882, y: 0.0000768341, z: 0.4178797, w: 0.0026822085} + outSlope: {x: 0.002847992, y: 0.00008032658, z: 0.41781694, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.00028132548, y: 0.0035026225, z: 0.021144612, w: 0.9997703} + inSlope: {x: 0.0028149227, y: 0.00003841706, z: 0.41428956, w: -0.008940698} + outSlope: {x: 0.0028149227, y: 0.00003841706, z: 0.4143175, w: -0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00046601193, y: 0.0035030514, z: 0.048296794, w: 0.99882674} + inSlope: {x: 0.0026472847, y: 0.0000034924599, z: 0.38975853, w: -0.018775465} + outSlope: {x: 0.0026477212, y: -0.0000034924599, z: 0.3898144, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00063478376, y: 0.0035011766, z: 0.07312235, w: 0.99731666} + inSlope: {x: 0.0023425675, y: -0.000027939679, z: 0.34455213, w: -0.025033953} + outSlope: {x: 0.0023434395, y: -0.000027939666, z: 0.34455198, w: -0.025033941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.0007783078, y: 0.0034978697, z: 0.09424393, w: 0.99554265} + inSlope: {x: 0.0018920393, y: -0.000045401957, z: 0.27883786, w: -0.026822079} + outSlope: {x: 0.0018902939, y: -0.0000349246, z: 0.2786145, w: -0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00088737777, y: 0.003494297, z: 0.11030131, w: 0.99389166} + inSlope: {x: 0.00130618, y: -0.00004190952, z: 0.19256027, w: -0.021457674} + outSlope: {x: 0.0013079263, y: -0.00004190952, z: 0.19278379, w: -0.021457674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.0009528748, y: 0.0034917092, z: 0.11994639, w: 0.9927738} + inSlope: {x: 0.0005867333, y: -0.0000349246, z: 0.08650125, w: -0.010728837} + outSlope: {x: 0.00059022574, y: -0.00002444722, z: 0.08650125, w: -0.009834767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.00096567214, y: 0.0034911644, z: 0.121831246, w: 0.99254423} + inSlope: {x: -0.00018771972, y: 0.0000069849198, z: -0.027492644, w: 0.003576279} + outSlope: {x: -0.00018946595, y: 0.0000069849198, z: -0.027604403, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.0009279151, y: 0.0034927346, z: 0.116270915, w: 0.99321103} + inSlope: {x: -0.00086001825, y: 0.000027939679, z: -0.12572856, w: 0.014305116} + outSlope: {x: -0.000858272, y: 0.0000349246, z: -0.1256168, w: 0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.00085180067, y: 0.0034955633, z: 0.10506362, w: 0.994459} + inSlope: {x: -0.0013882528, y: 0.000055879358, z: -0.20395966, w: 0.021457674} + outSlope: {x: -0.001389126, y: 0.0000523869, z: -0.20407142, w: 0.021457674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.0007431765, y: 0.0034988238, z: 0.08907389, w: 0.9960185} + inSlope: {x: -0.0018344146, y: 0.00004889444, z: -0.26922676, w: 0.024139883} + outSlope: {x: -0.0018326683, y: 0.00004889444, z: -0.26900324, w: 0.024139883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0006079068, y: 0.0035016192, z: 0.06916924, w: 0.9975986} + inSlope: {x: -0.0021854069, y: 0.00004540198, z: -0.3210828, w: 0.022351744} + outSlope: {x: -0.0021854048, y: 0.000038417023, z: -0.32119426, w: 0.021457653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.00045191933, y: 0.003503108, z: 0.046225917, w: 0.99892473} + inSlope: {x: -0.0024499584, y: 0.00002095474, z: -0.36003038, w: 0.016093241} + outSlope: {x: -0.0024512724, y: 0.000027939705, z: -0.3601428, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.0002812241, y: 0.0035026192, z: 0.021131534, w: 0.9997705} + inSlope: {x: -0.0026189107, y: -0.000017462315, z: -0.3849812, w: 0.0080466345} + outSlope: {x: -0.0026193426, y: -0.0000069849134, z: -0.38503638, w: 0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.00010247863, y: 0.0034997456, z: -0.0051326957, w: 0.9999807} + inSlope: {x: -0.0027122202, y: -0.000048894395, z: -0.397714, w: -0.0017881378} + outSlope: {x: -0.0027166996, y: -0.000052386946, z: -0.39837128, w: -0.0017881411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.00007987204, y: 0.0034943277, z: -0.031912364, w: 0.9994846} + inSlope: {x: -0.002701202, y: -0.00008731157, z: -0.396185, w: -0.0125169875} + outSlope: {x: -0.0027061084, y: -0.00008381896, z: -0.39691073, w: -0.012516965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0002574158, y: 0.0034866421, z: -0.057972208, w: 0.99831206} + inSlope: {x: -0.0025957685, y: -0.000115251074, z: -0.3809851, w: -0.021457653} + outSlope: {x: -0.0025953366, y: -0.00012572866, z: -0.38092992, w: -0.022351762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.0004262094, y: 0.0034771243, z: -0.08273497, w: 0.9965654} + inSlope: {x: -0.0024006318, y: -0.00014668345, z: -0.35259905, w: -0.029504327} + outSlope: {x: -0.0024006274, y: -0.00013271335, z: -0.35248667, w: -0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.0005780883, y: 0.003466712, z: -0.1050056, w: 0.9944655} + inSlope: {x: -0.002119048, y: -0.0001536681, z: -0.3108007, w: -0.03308055} + outSlope: {x: -0.0021225445, y: -0.00014319098, z: -0.31113654, w: -0.033080608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.00070892414, y: 0.0034563325, z: -0.12418248, w: 0.9922531} + inSlope: {x: -0.0017471046, y: -0.00014319098, z: -0.25603944, w: -0.03129247} + outSlope: {x: -0.0017479745, y: -0.00014668319, z: -0.25648603, w: -0.032186482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.00081118115, y: 0.0034473063, z: -0.13916539, w: 0.99026287} + inSlope: {x: -0.0005256147, y: -0.000048894395, z: -0.076889925, w: -0.010728827} + outSlope: {x: -0.0005238695, y: -0.00004540202, z: -0.07666655, w: -0.010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.00077894167, y: 0.0034502386, z: -0.13444266, w: 0.99091506} + inSlope: {x: 0.00048545236, y: 0.00004540202, z: 0.071078606, w: 0.009834776} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0004132125, y: -0.03156533, z: -0.013083074, w: 0.999416} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000005238689, y: 0, z: 0.00016763805, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.0004132126, y: -0.031565342, z: -0.013083074, w: 0.999416} + inSlope: {x: 0.005294132, y: 0.00005587935, z: -0.16762409, w: -0.0017881392} + outSlope: {x: 0.005315523, y: 0.00005587935, z: -0.16829464, w: -0.0026822088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0011204503, y: -0.031548146, z: -0.035475507, w: 0.9988718} + inSlope: {x: 0.011579249, y: 0.00039115545, z: -0.36656854, w: -0.013411044} + outSlope: {x: 0.011580997, y: 0.00044703486, z: -0.36668035, w: -0.013411046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0019568433, y: -0.03150734, z: -0.061957218, w: 0.99757946} + inSlope: {x: 0.012782403, y: 0.000782311, z: -0.40456656, w: -0.025033953} + outSlope: {x: 0.012778908, y: 0.0008381902, z: -0.40462235, w: -0.025928017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0028242168, y: -0.031441454, z: -0.08941987, w: 0.99549365} + inSlope: {x: 0.012509989, y: 0.0010617076, z: -0.3960728, w: -0.03486871} + outSlope: {x: 0.012509991, y: 0.0011734666, z: -0.3960729, w: -0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.0036249093, y: -0.031359226, z: -0.11477123, w: 0.9928902} + inSlope: {x: 0.010784716, y: 0.0012852253, z: -0.3414229, w: -0.03933907} + outSlope: {x: 0.010784716, y: 0.0012293459, z: -0.34153464, w: -0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.004262352, y: -0.031278968, z: -0.13495381, w: 0.9903489} + inSlope: {x: 0.0076275324, y: 0.0010617079, z: -0.24162234, w: -0.03308058} + outSlope: {x: 0.0076135625, y: 0.0010058285, z: -0.24095179, w: -0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0046411077, y: -0.031225007, z: -0.14694595, w: 0.98864067} + inSlope: {x: 0.0030244703, y: 0.00044703486, z: -0.09566546, w: -0.014305116} + outSlope: {x: 0.003017484, y: 0.00047497434, z: -0.0954419, w: -0.014305109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.004666053, y: -0.031221299, z: -0.14773573, w: 0.98852295} + inSlope: {x: -0.0018649728, y: -0.00027939666, z: 0.059008576, w: 0.008940693} + outSlope: {x: -0.0018719585, y: -0.00030733648, z: 0.05923212, w: 0.008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00439189, y: -0.031261045, z: -0.13905522, w: 0.9897813} + inSlope: {x: -0.005322509, y: -0.000782311, z: 0.16830863, w: 0.024139883} + outSlope: {x: -0.005329494, y: -0.00072643167, z: 0.16875567, w: 0.023245813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.0039559365, y: -0.031319197, z: -0.12525214, w: 0.99162257} + inSlope: {x: -0.0075506982, y: -0.0009499491, z: 0.23916365, w: 0.03039837} + outSlope: {x: -0.0075367284, y: -0.0009499491, z: 0.2384931, w: 0.03039837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.0033862856, y: -0.03138589, z: -0.10721599, w: 0.9937344} + inSlope: {x: -0.009324868, y: -0.0010058285, z: 0.29526654, w: 0.031292442} + outSlope: {x: -0.009338838, y: -0.0010058285, z: 0.29571357, w: 0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.0027112423, y: -0.031451397, z: -0.08584289, w: 0.9958084} + inSlope: {x: -0.01070439, y: -0.0009499491, z: 0.33885244, w: 0.029504301} + outSlope: {x: -0.010697405, y: -0.00089406973, z: 0.33874068, w: 0.029504301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.001959477, y: -0.031507168, z: -0.06204064, w: 0.99757427} + inSlope: {x: -0.011626399, y: -0.00072643167, z: 0.36813322, w: 0.023245813} + outSlope: {x: -0.0116368765, y: -0.00072643167, z: 0.3684126, w: 0.022351744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.0011600616, y: -0.031546723, z: -0.03672967, w: 0.9988265} + inSlope: {x: -0.012136298, y: -0.00044703486, z: 0.38428235, w: 0.014305116} + outSlope: {x: -0.012122328, y: -0.00044703486, z: 0.38377944, w: 0.014305116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.00034238893, y: -0.03156618, z: -0.010840682, w: 0.99944276} + inSlope: {x: -0.01217166, y: -0.000111758716, z: 0.38537198, w: 0.004470349} + outSlope: {x: -0.012175141, y: -0.00016763792, z: 0.38549736, w: 0.0044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.00046396995, y: -0.03156463, z: 0.014690108, w: 0.99939364} + inSlope: {x: -0.011785295, y: 0.00016763792, z: 0.37313408, w: -0.0053644134} + outSlope: {x: -0.011783133, y: 0.00016763822, z: 0.37307885, w: -0.005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.0012294586, y: -0.031544097, z: 0.03892686, w: 0.99874324} + inSlope: {x: -0.010934901, y: 0.00039115586, z: 0.3462288, w: -0.013411058} + outSlope: {x: -0.010936628, y: 0.00044703446, z: 0.34628406, w: -0.013411034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.0019226696, y: -0.031509433, z: 0.060875196, w: 0.9976461} + inSlope: {x: -0.009679344, y: 0.0005587931, z: 0.3064421, w: -0.018775448} + outSlope: {x: -0.009696824, y: 0.0006146735, z: 0.30705735, w: -0.018775482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.0025206292, y: -0.031467244, z: 0.07980767, w: 0.9963103} + inSlope: {x: -0.007976785, y: 0.0006705529, z: 0.25257492, w: -0.020563623} + outSlope: {x: -0.007994234, y: 0.0006146724, z: 0.2530215, w: -0.020563586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0029872516, y: -0.031426374, z: 0.09458181, w: 0.99501646} + inSlope: {x: -0.0058428803, y: 0.0005587931, z: 0.18496051, w: -0.017881379} + outSlope: {x: -0.0058428906, y: 0.00055879407, z: 0.18496084, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.0032997604, y: -0.031395104, z: 0.104476385, w: 0.99402624} + inSlope: {x: -0.0021024628, y: 0.00016763822, z: 0.0664965, w: -0.0062584938} + outSlope: {x: -0.0020989664, y: 0.00022351723, z: 0.06649638, w: -0.0071525513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.003267445, y: -0.031398494, z: 0.103453204, w: 0.99413323} + inSlope: {x: 0.0036356475, y: -0.00039115516, z: -0.11511137, w: 0.012516965} + outSlope: {x: 0.0036601012, y: -0.00039115586, z: -0.11589389, w: 0.011622917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.0028131194, y: -0.03144244, z: 0.089068465, w: 0.99552506} + inSlope: {x: 0.008891811, y: -0.0007823117, z: -0.2814087, w: 0.025033975} + outSlope: {x: 0.00891275, y: -0.0008381896, z: -0.2821905, w: 0.025927998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.002080804, y: -0.031499382, z: 0.065882005, w: 0.9973279} + inSlope: {x: 0.012080408, y: -0.0007823103, z: -0.38254973, w: 0.025927998} + outSlope: {x: 0.012080429, y: -0.0007823117, z: -0.38255042, w: 0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.001201526, y: -0.031545173, z: 0.03804248, w: 0.99877733} + inSlope: {x: 0.013185794, y: -0.00050291466, z: -0.41747504, w: 0.016093269} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.11943448, y: 0.04192222, z: 0.1741824, w: 0.97654414} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.119434476, y: 0.04192222, z: 0.17418234, w: 0.97654414} + inSlope: {x: -0.024698673, y: 0.002235174, z: -0.033080578, w: 0.008940696} + outSlope: {x: -0.025033949, y: 0.002235174, z: -0.032633543, w: 0.008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.116129264, y: 0.042216394, z: 0.16982035, w: 0.97769773} + inSlope: {x: -0.10304152, y: 0.00944361, z: -0.13589859, w: 0.034868717} + outSlope: {x: -0.103153296, y: 0.009443612, z: -0.13567509, w: 0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.10568059, y: 0.04313556, z: 0.15602742, w: 0.98113525} + inSlope: {x: -0.22027643, y: 0.020675363, z: -0.29057267, w: 0.06884337} + outSlope: {x: -0.22072342, y: 0.020731237, z: -0.29057258, w: 0.06884335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.086712874, y: 0.04476264, z: 0.13097578, w: 0.98657113} + inSlope: {x: -0.33471727, y: 0.031460073, z: -0.44167036, w: 0.08761881} + outSlope: {x: -0.33482912, y: 0.03157184, z: -0.44189397, w: 0.084936626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.061017122, y: 0.046882696, z: 0.09701153, w: 0.99230427} + inSlope: {x: -0.39640817, y: 0.036489222, z: -0.5239249, w: 0.07420779} + outSlope: {x: -0.39646405, y: 0.036489222, z: -0.52370137, w: 0.07420779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.033846892, y: 0.04902056, z: 0.06106562, w: 0.9963545} + inSlope: {x: -0.4104339, y: 0.036321584, z: -0.54342675, w: 0.045597557} + outSlope: {x: -0.41054565, y: 0.036321584, z: -0.54342675, w: 0.046491627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.006252187, y: 0.051083744, z: 0.024524048, w: 0.9983736} + inSlope: {x: -0.40921152, y: 0.034589324, z: -0.5426165, w: 0.014305116} + outSlope: {x: -0.4091834, y: 0.034421667, z: -0.54275596, w: 0.014305109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.020760056, y: 0.05299832, z: -0.0112792915, w: 0.9983151} + inSlope: {x: -0.39302728, y: 0.031460065, z: -0.52223426, w: -0.016093249} + outSlope: {x: -0.3926363, y: 0.03157184, z: -0.52174556, w: -0.016093256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.04618811, y: 0.05470554, z: -0.045012828, w: 0.9964175} + inSlope: {x: -0.36131594, y: 0.027492644, z: -0.4810654, w: -0.03933907} + outSlope: {x: -0.36181885, y: 0.027380886, z: -0.48151243, w: -0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.06905242, y: 0.056161344, z: -0.07537022, w: 0.9931752} + inSlope: {x: -0.31605366, y: 0.02263114, z: -0.42110685, w: -0.056326393} + outSlope: {x: -0.31605366, y: 0.022519382, z: -0.42088333, w: -0.055432323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.08840587, y: 0.05733432, z: -0.10108484, w: 0.98928213} + inSlope: {x: -0.2563745, y: 0.017210843, z: -0.34186992, w: -0.058114532} + outSlope: {x: -0.25682154, y: 0.017266722, z: -0.34231696, w: -0.05990267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.10333416, y: 0.0582015, z: -0.120931685, w: 0.9855507} + inSlope: {x: -0.18384309, y: 0.011399389, z: -0.24508686, w: -0.050067905} + outSlope: {x: -0.18350782, y: 0.011511148, z: -0.24486335, w: -0.049173836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.11294554, y: 0.05874229, z: -0.13371535, w: 0.9828086} + inSlope: {x: -0.0974536, y: 0.005587936, z: -0.12964012, w: -0.029504301} + outSlope: {x: -0.09767712, y: 0.0056438153, z: -0.12986363, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.11635022, y: 0.05893054, z: -0.13824478, w: 0.98177296} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.11294554, y: 0.05874229, z: -0.13371535, w: 0.9828086} + inSlope: {x: 0.09778888, y: -0.0051967804, z: 0.12964012, w: 0.028610231} + outSlope: {x: 0.09745351, y: -0.0050291377, z: 0.12941648, w: 0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.10333416, y: 0.0582015, z: -0.120931685, w: 0.9855507} + inSlope: {x: 0.18384293, y: -0.009499482, z: 0.24430433, w: 0.05006786} + outSlope: {x: 0.18429029, y: -0.009275981, z: 0.24419302, w: 0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.08840586, y: 0.057334326, z: -0.101084836, w: 0.98928213} + inSlope: {x: 0.25682175, y: -0.013299299, z: 0.34019384, w: 0.059008654} + outSlope: {x: 0.2565978, y: -0.013131637, z: 0.3401932, w: 0.05811448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.06911884, y: 0.05616547, z: -0.07545847, w: 0.99316365} + inSlope: {x: 0.31683567, y: -0.016652035, z: 0.41943008, w: 0.054538205} + outSlope: {x: 0.31728327, y: -0.016875582, z: 0.42043665, w: 0.053644232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.046188097, y: 0.054705538, z: -0.045012824, w: 0.9964175} + inSlope: {x: 0.36237797, y: -0.019893069, z: 0.4795012, w: 0.040233172} + outSlope: {x: 0.3629361, y: -0.019948913, z: 0.48056206, w: 0.039339032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.020842494, y: 0.053004004, z: -0.0113885915, w: 0.99831176} + inSlope: {x: 0.3935021, y: -0.022742879, z: 0.5209209, w: 0.014305103} + outSlope: {x: 0.3935028, y: -0.02268704, z: 0.5209078, w: 0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0062522106, y: 0.05108374, z: 0.024524095, w: 0.9983736} + inSlope: {x: 0.40969384, y: -0.024866337, z: 0.5421979, w: -0.014305129} + outSlope: {x: 0.4096163, y: -0.025145689, z: 0.5422528, w: -0.014305103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.033760805, y: 0.04902717, z: 0.060951672, w: 0.99636406} + inSlope: {x: 0.41071293, y: -0.02671031, z: 0.54353803, w: -0.046491586} + outSlope: {x: 0.41132832, y: -0.026766237, z: 0.5447125, w: -0.044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.061017137, y: 0.0468827, z: 0.09701159, w: 0.99230427} + inSlope: {x: 0.39635265, y: -0.027492668, z: 0.5248194, w: -0.07331378} + outSlope: {x: 0.3970225, y: -0.02749262, z: 0.52571255, w: -0.07510179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.08663854, y: 0.044768915, z: 0.1308776, w: 0.9865903} + inSlope: {x: 0.33427003, y: -0.02503393, z: 0.44278765, w: -0.08851282} + outSlope: {x: 0.33438239, y: -0.024922216, z: 0.4423414, w: -0.08672484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.105680615, y: 0.04313557, z: 0.15602745, w: 0.98113525} + inSlope: {x: 0.28442618, y: -0.022240004, z: 0.37618017, w: -0.08940705} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000035323403, y: 0.024505937, z: 0.000000060090834, w: 0.9996997} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.00024301349, y: -0.000083819024, z: -0.00028426966, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.000000002424665, y: 0.024505932, z: -9.399327e-10, w: 0.9996997} + inSlope: {x: 0.2411761, y: 0.08094124, z: 0.28129593, w: -0.0017881392} + outSlope: {x: 0.24211127, y: 0.08127651, z: 0.28237185, w: -0.0026822088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.03228362, y: 0.035089083, z: 0.03751426, w: 0.99815786} + inSlope: {x: 0.52616, y: 0.18132849, z: 0.6096437, w: -0.04649162} + outSlope: {x: 0.52616006, y: 0.181105, z: 0.60969967, w: -0.045597557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0704897, y: 0.0476768, z: 0.08088711, w: 0.9930838} + inSlope: {x: 0.5785749, y: 0.20043926, z: 0.66395855, w: -0.10550023} + outSlope: {x: 0.57879823, y: 0.20027158, z: 0.6638466, w: -0.10550021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.1099332, y: 0.060610607, z: 0.12545244, w: 0.98412526} + inSlope: {x: 0.5621462, y: 0.1934543, z: 0.6473063, w: -0.16003844} + outSlope: {x: 0.5622581, y: 0.19339846, z: 0.64775354, w: -0.1564622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.14601362, y: 0.0722983, z: 0.16663618, w: 0.9724636} + inSlope: {x: 0.47922137, y: 0.16137959, z: 0.563711, w: -0.17881395} + outSlope: {x: 0.47877434, y: 0.16160311, z: 0.5625934, w: -0.18149616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.17434725, y: 0.08125645, z: 0.20009953, w: 0.9607084} + inSlope: {x: 0.33304098, y: 0.106729575, z: 0.41462484, w: -0.1564622} + outSlope: {x: 0.33304098, y: 0.106617816, z: 0.41484836, w: -0.1564622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.1907937, y: 0.086107016, z: 0.22176108, w: 0.95236826} + inSlope: {x: 0.12673439, y: 0.03241003, z: 0.20585956, w: -0.07689} + outSlope: {x: 0.12584026, y: 0.03196298, z: 0.20608298, w: -0.07599589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.19131072, y: 0.08550939, z: 0.22761583, w: 0.9509361} + inSlope: {x: -0.093206726, y: -0.043809395, z: -0.007376072, w: 0.025033941} + outSlope: {x: -0.09320677, y: -0.04447997, z: -0.008046628, w: 0.025033953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.178331, y: 0.0802174, z: 0.22067116, w: 0.95554566} + inSlope: {x: -0.25078657, y: -0.09823591, z: -0.15065075, w: 0.090301044} + outSlope: {x: -0.25145712, y: -0.09845943, z: -0.1513213, w: 0.090301044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.15787739, y: 0.07221734, z: 0.20728543, w: 0.96275234} + inSlope: {x: -0.35427514, y: -0.13411047, z: -0.24005772, w: 0.11980534} + outSlope: {x: -0.35427514, y: -0.13411047, z: -0.24005772, w: 0.12069941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.13119316, y: 0.061969027, z: 0.18832393, w: 0.97133017} + inSlope: {x: -0.4385412, y: -0.16283245, z: -0.31605366, w: 0.13142826} + outSlope: {x: -0.43898824, y: -0.16288833, z: -0.31627718, w: 0.13142826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.099549934, y: 0.049940713, z: 0.16468786, w: 0.9800375} + inSlope: {x: -0.5039201, y: -0.18507244, z: -0.37841502, w: 0.12338162} + outSlope: {x: -0.50369656, y: -0.1849048, z: -0.37841502, w: 0.12606384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.06427514, y: 0.036621578, z: 0.13734722, w: 0.9877567} + inSlope: {x: -0.54784125, y: -0.19971283, z: -0.4255772, w: 0.10281802} + outSlope: {x: -0.54840004, y: -0.19988047, z: -0.42647126, w: 0.10192395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.026758343, y: 0.022525502, z: 0.107354656, w: 0.9936053} + inSlope: {x: -0.5713664, y: -0.2073683, z: -0.45809898, w: 0.06884337} + outSlope: {x: -0.5707518, y: -0.20711684, z: -0.45731667, w: 0.06973744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.011562483, y: 0.00818705, z: 0.07584096, w: 0.99701923} + inSlope: {x: -0.5717017, y: -0.20682347, z: -0.47206882, w: 0.031292442} + outSlope: {x: -0.57174313, y: -0.20679535, z: -0.4720684, w: 0.030398343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.04922895, y: -0.005848411, z: 0.04399596, w: 0.9978009} + inSlope: {x: -0.55080235, y: -0.19865793, z: -0.46865976, w: -0.008940689} + outSlope: {x: -0.55069155, y: -0.19863033, z: -0.46871647, w: -0.0071525644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.084796876, y: -0.019037616, z: 0.013040813, w: 0.996131} + inSlope: {x: -0.5077203, y: -0.18247421, z: -0.44635075, w: -0.040233172} + outSlope: {x: -0.5074959, y: -0.182418, z: -0.44629407, w: -0.04112717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.11677495, y: -0.030817468, z: -0.015715301, w: 0.9925558} + inSlope: {x: -0.44546986, y: -0.1593119, z: -0.406969, w: -0.062584825} + outSlope: {x: -0.4463647, y: -0.15942395, z: -0.4075844, w: -0.064373076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.14411321, y: -0.04078518, z: -0.041326143, w: 0.9878563} + inSlope: {x: -0.3636632, y: -0.12869027, z: -0.34907866, w: -0.07241971} + outSlope: {x: -0.3643331, y: -0.12880181, z: -0.34952506, w: -0.072419584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.16521777, y: -0.04833914, z: -0.062306136, w: 0.9830993} + inSlope: {x: -0.26263276, y: -0.09080388, z: -0.27308217, w: -0.0661611} + outSlope: {x: -0.2626332, y: -0.09080404, z: -0.2732503, w: -0.06347901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.17914522, y: -0.053114578, z: -0.07776977, w: 0.9793047} + inSlope: {x: -0.08828946, y: -0.022798799, z: -0.15053913, w: -0.028610257} + outSlope: {x: -0.08784227, y: -0.02263112, z: -0.15031534, w: -0.030398343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.17701615, y: -0.051423743, z: -0.08238059, w: 0.979405} + inSlope: {x: 0.17948434, y: 0.0856071, z: 0.024810413, w: 0.036656827} + outSlope: {x: 0.18015522, y: 0.08605429, z: 0.024922216, w: 0.040233172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.15512124, y: -0.041658193, z: -0.07447013, w: 0.9842034} + inSlope: {x: 0.4258011, y: 0.18741953, z: 0.18205512, w: 0.090301126} + outSlope: {x: 0.42647088, y: 0.1879221, z: 0.18272534, w: 0.08761875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.12006535, y: -0.026558997, z: -0.058165736, w: 0.99070466} + inSlope: {x: 0.5774568, y: 0.2506187, z: 0.2797877, w: 0.09387723} + outSlope: {x: 0.577346, y: 0.25067502, z: 0.27989995, w: 0.092983335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.07789178, y: -0.008610872, z: -0.037401155, w: 0.99622273} + inSlope: {x: 0.6322196, y: 0.27312458, z: 0.3147687, w: 0.061690867} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0008874514, y: 0.05084388, z: -0.017429583, w: 0.9985541} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.000007858034, y: 0, z: 0.00016763805, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.000887453, y: 0.050843894, z: -0.017429583, w: 0.9985541} + inSlope: {x: -0.007789931, y: -0.00016763805, z: -0.15299766, w: -0.0026822088} + outSlope: {x: -0.007822236, y: -0.0001117587, z: -0.15361233, w: -0.0026822088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.0019280685, y: 0.050815072, z: -0.037866913, w: 0.9979881} + inSlope: {x: -0.017139245, y: -0.0006705522, z: -0.3366172, w: -0.0125169745} + outSlope: {x: -0.017139247, y: -0.00061467296, z: -0.33656138, w: -0.012516976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.0031721757, y: 0.050752595, z: -0.062300753, w: 0.9967611} + inSlope: {x: -0.019026922, y: -0.0012293459, z: -0.37372115, w: -0.024139883} + outSlope: {x: -0.019037394, y: -0.0011734662, z: -0.37383282, w: -0.023245808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.004465354, y: 0.050655205, z: -0.087698326, w: 0.9948483} + inSlope: {x: -0.018607821, y: -0.001620501, z: -0.36556268, w: -0.032186504} + outSlope: {x: -0.018614812, y: -0.0016763808, z: -0.365451, w: -0.032186512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0056539373, y: 0.05053635, z: -0.11104168, w: 0.99251395} + inSlope: {x: -0.015897678, y: -0.0017881395, z: -0.31236562, w: -0.03486872} + outSlope: {x: -0.015904663, y: -0.0017322601, z: -0.3121421, w: -0.03486872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0065857945, y: 0.050423365, z: -0.12934303, w: 0.9902952} + inSlope: {x: -0.0109314, y: -0.001396984, z: -0.21435322, w: -0.027716162} + outSlope: {x: -0.010924415, y: -0.001396984, z: -0.21457674, w: -0.027716162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0071103172, y: 0.050352085, z: -0.13964449, w: 0.9888951} + inSlope: {x: -0.0036810527, y: -0.00050291425, z: -0.07241965, w: -0.009834767} + outSlope: {x: -0.003681051, y: -0.000502914, z: -0.072196096, w: -0.010728832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0070771365, y: 0.05035676, z: -0.13899282, w: 0.9889869} + inSlope: {x: 0.0040791915, y: 0.00061467267, z: 0.08024272, w: 0.011622901} + outSlope: {x: 0.004093163, y: 0.0005587936, z: 0.08024276, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.0065651378, y: 0.050426062, z: -0.12893736, w: 0.9903481} + inSlope: {x: 0.009674114, y: 0.0012293459, z: 0.19021334, w: 0.025033953} + outSlope: {x: 0.009681099, y: 0.0012293459, z: 0.19021334, w: 0.024139883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.005786034, y: 0.050521392, z: -0.113636, w: 0.9922202} + inSlope: {x: 0.013334212, y: 0.001564622, z: 0.26185068, w: 0.03039837} + outSlope: {x: 0.013320242, y: 0.001564622, z: 0.26173893, w: 0.03039837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.004787636, y: 0.05062576, z: -0.09402781, w: 0.99427} + inSlope: {x: 0.016246924, y: 0.001564622, z: 0.31907114, w: 0.03039837} + outSlope: {x: 0.016267879, y: 0.0015087427, z: 0.31951818, w: 0.029504301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.0036182126, y: 0.05072275, z: -0.07106074, w: 0.99617493} + inSlope: {x: 0.018464636, y: 0.0012852253, z: 0.36265704, w: 0.025928022} + outSlope: {x: 0.018443681, y: 0.0013411046, z: 0.36221, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.0023267034, y: 0.050798375, z: -0.045695946, w: 0.9976603} + inSlope: {x: 0.019910514, y: 0.00089406973, z: 0.39098787, w: 0.017881395} + outSlope: {x: 0.019920992, y: 0.00089406973, z: 0.39126727, w: 0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.00096273184, y: 0.05084252, z: -0.018908009, w: 0.9985272} + inSlope: {x: 0.020631706, y: 0.0003911555, z: 0.40518123, w: 0.008046628} + outSlope: {x: 0.020616863, y: 0.00044703486, z: 0.4049577, w: 0.008046628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.00042358405, y: 0.05084987, z: 0.008318763, w: 0.9986716} + inSlope: {x: 0.020571025, y: -0.00022351743, z: 0.4040357, w: -0.003576279} + outSlope: {x: 0.020576246, y: -0.00016763792, z: 0.4041052, w: -0.0035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.0017819323, y: 0.050820403, z: 0.034996264, w: 0.99809283} + inSlope: {x: 0.019776037, y: -0.000726431, z: 0.38841707, w: -0.014305103} + outSlope: {x: 0.01978131, y: -0.0006705529, z: 0.38847363, w: -0.013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.003062163, y: 0.050759356, z: 0.06013954, w: 0.9968938} + inSlope: {x: 0.018209701, y: -0.0011175881, z: 0.3576282, w: -0.021457693} + outSlope: {x: 0.018206177, y: -0.0010617068, z: 0.3575717, w: -0.021457653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0042112363, y: 0.050676968, z: 0.082706936, w: 0.99527574} + inSlope: {x: 0.015953543, y: -0.0012852241, z: 0.31337115, w: -0.025927998} + outSlope: {x: 0.015974525, y: -0.0013969851, z: 0.313707, w: -0.026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0051901503, y: 0.050586067, z: 0.10193249, w: 0.99349076} + inSlope: {x: 0.0129500525, y: -0.0013411058, z: 0.2542513, w: -0.025928045} + outSlope: {x: 0.012963999, y: -0.0013411033, z: 0.25458613, w: -0.026822068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.0059384964, y: 0.050503694, z: 0.11662971, w: 0.9918728} + inSlope: {x: 0.009206116, y: -0.0010617068, z: 0.18071368, w: -0.020563586} + outSlope: {x: 0.009192162, y: -0.0010617088, z: 0.18060225, w: -0.020563623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.006417436, y: 0.050445072, z: 0.12603594, w: 0.9907215} + inSlope: {x: 0.0025215582, y: -0.00033527645, z: 0.049620915, w: -0.0062584938} + outSlope: {x: 0.002500599, y: -0.00027939654, z: 0.04917379, w: -0.0062584826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.006274544, y: 0.050463032, z: 0.12322959, w: 0.99107444} + inSlope: {x: -0.007913907, y: 0.0009499482, z: -0.15545623, w: 0.018775448} + outSlope: {x: -0.007941861, y: 0.0010058293, z: -0.15590355, w: 0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.0053593307, y: 0.050568435, z: 0.10525512, w: 0.9931443} + inSlope: {x: -0.017532164, y: 0.0018998999, z: -0.3443289, w: 0.03665689} + outSlope: {x: -0.017574042, y: 0.0017881378, z: -0.3451106, w: 0.035762757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.0039351294, y: 0.050699137, z: 0.077284284, w: 0.99571145} + inSlope: {x: -0.023371521, y: 0.0017881378, z: -0.4591044, w: 0.035762757} + outSlope: {x: -0.023385532, y: 0.0018440204, z: -0.45921698, w: 0.03576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.0022401782, y: 0.050802264, z: 0.043996003, w: 0.9977367} + inSlope: {x: -0.02542513, y: 0.0011175881, z: -0.4993384, w: 0.022351762} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1397538, y: -0.04035337, z: 0.17399797, w: 0.97394305} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.1397538, y: -0.040353395, z: 0.17399797, w: 0.9739431} + inSlope: {x: 0.02838671, y: -0.003911555, z: -0.034421682, w: 0.011622905} + outSlope: {x: 0.028833745, y: -0.0037997959, z: -0.034421682, w: 0.009834765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.13592127, y: -0.04086443, z: 0.16937268, w: 0.97527874} + inSlope: {x: 0.11913478, y: -0.016205013, z: -0.1439452, w: 0.04202127} + outSlope: {x: 0.11980534, y: -0.016316773, z: -0.14416875, w: 0.04023314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.12379943, y: -0.042466074, z: 0.15474212, w: 0.9792472} + inSlope: {x: 0.2558157, y: -0.035259876, z: -0.3077835, w: 0.07867814} + outSlope: {x: 0.2557039, y: -0.035539262, z: -0.3086775, w: 0.079572186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.10177287, y: -0.045319814, z: 0.12815174, w: 0.98547727} + inSlope: {x: 0.38869673, y: -0.053700052, z: -0.46849242, w: 0.09834765} + outSlope: {x: 0.38892034, y: -0.05397946, z: -0.46871606, w: 0.09924174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.07189708, y: -0.049075834, z: 0.09207554, w: 0.99193984} + inSlope: {x: 0.46089295, y: -0.062640764, z: -0.5564467, w: 0.08314849} + outSlope: {x: 0.4610047, y: -0.062584884, z: -0.5563349, w: 0.08046628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0402743, y: -0.052910227, z: 0.05387698, w: 0.9963312} + inSlope: {x: 0.47760087, y: -0.06286428, z: -0.5776808, w: 0.047385696} + outSlope: {x: 0.47765675, y: -0.06286428, z: -0.5777367, w: 0.046491627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00813757, y: -0.056660023, z: 0.0150443055, w: 0.99824697} + inSlope: {x: 0.47631565, y: -0.060461465, z: -0.5770242, w: 0.008046628} + outSlope: {x: 0.47630146, y: -0.06040556, z: -0.5769401, w: 0.009834763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.023326244, y: -0.06018865, z: -0.02298816, w: 0.9976496} + inSlope: {x: 0.4573444, y: -0.05593521, z: -0.5549935, w: -0.025928011} + outSlope: {x: 0.45695344, y: -0.05571172, z: -0.55435115, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.05293734, y: -0.063380376, z: -0.058792815, w: 0.9948487} + inSlope: {x: 0.42054805, y: -0.049397353, z: -0.5108491, w: -0.055432323} + outSlope: {x: 0.42077157, y: -0.049173836, z: -0.5111844, w: -0.055432323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.079547055, y: -0.06614087, z: -0.09097804, w: 0.99046487} + inSlope: {x: 0.36757442, y: -0.041238967, z: -0.44681135, w: -0.07331372} + outSlope: {x: 0.3673509, y: -0.04112721, z: -0.4461408, w: -0.07331372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.1020524, y: -0.06839501, z: -0.11820618, w: 0.98536015} + inSlope: {x: 0.2980605, y: -0.031739477, z: -0.36209825, w: -0.07689} + outSlope: {x: 0.29828402, y: -0.031962994, z: -0.36243352, w: -0.07599593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.11939687, y: -0.070081115, z: -0.13919505, w: 0.98053956} + inSlope: {x: 0.21334739, y: -0.02179295, z: -0.25928023, w: -0.064373024} + outSlope: {x: 0.21290036, y: -0.02179295, z: -0.25860968, w: -0.064373024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.13055561, y: -0.07114199, z: -0.15270059, w: 0.9770244} + inSlope: {x: 0.11309982, y: -0.010840596, z: -0.13679267, w: -0.03755093} + outSlope: {x: 0.11309982, y: -0.011064113, z: -0.13746323, w: -0.038445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.13450666, y: -0.07151311, z: -0.15748306, w: 0.9757013} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.13055563, y: -0.07114199, z: -0.15270062, w: 0.9770244} + inSlope: {x: -0.11309982, y: 0.010281802, z: 0.13679267, w: 0.038445} + outSlope: {x: -0.11354675, y: 0.010058275, z: 0.13656902, w: 0.036656827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.11939687, y: -0.070081115, z: -0.13919502, w: 0.98053956} + inSlope: {x: -0.21357071, y: 0.019222481, z: 0.2579389, w: 0.065267034} + outSlope: {x: -0.21401814, y: 0.019334275, z: 0.25793934, w: 0.06347901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.1020524, y: -0.06839501, z: -0.118206166, w: 0.98536015} + inSlope: {x: -0.29861957, y: 0.027157392, z: 0.35975164, w: 0.07420785} + outSlope: {x: -0.29850727, y: 0.02671031, z: 0.35952747, w: 0.076889925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.07962434, y: -0.06614875, z: -0.09107152, w: 0.9904496} + inSlope: {x: -0.36869168, y: 0.03386286, z: 0.44390523, w: 0.07420772} + outSlope: {x: -0.36969817, y: 0.033862922, z: 0.44513535, w: 0.07152564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.052937333, y: -0.06338035, z: -0.058792785, w: 0.9948487} + inSlope: {x: -0.42211306, y: 0.039897896, z: 0.50844675, w: 0.054538302} + outSlope: {x: -0.4228946, y: 0.040009584, z: 0.509284, w: 0.054538205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.02342226, y: -0.060199205, z: -0.023104245, w: 0.99764407} + inSlope: {x: -0.45848972, y: 0.044926964, z: 0.5525905, w: 0.025927998} + outSlope: {x: -0.45854643, y: 0.044871163, z: 0.55273116, w: 0.025928045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.008137601, y: -0.05666002, z: 0.015044339, w: 0.99824697} + inSlope: {x: -0.477266, y: 0.048559204, z: 0.57585126, w: -0.010728846} + outSlope: {x: -0.477335, y: 0.048614997, z: 0.57583624, w: -0.008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.040174086, y: -0.05292215, z: 0.053755898, w: 0.99634117} + inSlope: {x: -0.478271, y: 0.050794292, z: 0.5776803, w: -0.04738565} + outSlope: {x: -0.47911003, y: 0.0510179, z: 0.57868713, w: -0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.07189709, y: -0.04907582, z: 0.09207557, w: 0.9919398} + inSlope: {x: -0.46111688, y: 0.051353175, z: 0.55778825, w: -0.081360415} + outSlope: {x: -0.46212187, y: 0.051297206, z: 0.5584578, w: -0.08314841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.10168649, y: -0.045330852, z: 0.12804747, w: 0.98549926} + inSlope: {x: -0.38880822, y: 0.045597516, z: 0.47028026, w: -0.09834758} + outSlope: {x: -0.38847363, y: 0.04554172, z: 0.47005758, w: -0.09834776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.12379943, y: -0.042466067, z: 0.15474212, w: 0.9792472} + inSlope: {x: -0.3300238, y: 0.040233172, z: 0.39987305, w: -0.10281811} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0011789581, y: -0.04502419, z: 0.026150394, w: 0.9986429} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0.0001938315, y: 0.00005587935, z: -0.0002235174, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.0011790025, y: -0.045024212, z: 0.026150389, w: 0.99864286} + inSlope: {x: -0.1955201, y: -0.0638701, z: 0.20094214, w: -0.008940696} + outSlope: {x: -0.19630416, y: -0.06392598, z: 0.20169652, w: -0.008046627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.027339282, y: -0.053400155, z: 0.052932143, w: 0.9967945} + inSlope: {x: -0.42649916, y: -0.14008954, z: 0.44127923, w: -0.04291534} + outSlope: {x: -0.42630363, y: -0.14014544, z: 0.44111165, w: -0.042915348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.058207832, y: -0.06312921, z: 0.08471581, w: 0.99269825} + inSlope: {x: -0.46905133, y: -0.15277417, z: 0.48760328, w: -0.07957221} + outSlope: {x: -0.4690512, y: -0.15288588, z: 0.48737964, w: -0.078678116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.090136684, y: -0.07307963, z: 0.11758436, w: 0.98625994} + inSlope: {x: -0.45776358, y: -0.14774498, z: 0.4747509, w: -0.109076485} + outSlope: {x: -0.45742843, y: -0.14796855, z: 0.47486278, w: -0.10907651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.11952015, y: -0.08217581, z: 0.1476888, w: 0.9783405} + inSlope: {x: -0.3936142, y: -0.12639911, z: 0.4052371, w: -0.118911274} + outSlope: {x: -0.3933907, y: -0.12628736, z: 0.40434304, w: -0.12069941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.14285953, y: -0.08941595, z: 0.17131431, w: 0.97069424} + inSlope: {x: -0.2780557, y: -0.089406975, z: 0.27984384, w: -0.09834767} + outSlope: {x: -0.27783218, y: -0.089406975, z: 0.2793968, w: -0.09924174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.15677054, y: -0.09385891, z: 0.18488058, w: 0.9656255} + inSlope: {x: -0.112652786, y: -0.038668517, z: 0.10170043, w: -0.04112721} + outSlope: {x: -0.11242922, y: -0.038892016, z: 0.10147687, w: -0.04112719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.15789796, y: -0.09456876, z: 0.18484077, w: 0.9653802} + inSlope: {x: 0.06370244, y: 0.012516971, z: -0.08761879, w: 0.028610218} + outSlope: {x: 0.06414951, y: 0.012293459, z: -0.0871718, w: 0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.14825128, y: -0.09217625, z: 0.17320293, w: 0.9692914} + inSlope: {x: 0.18887223, y: 0.04693866, z: -0.22195281, w: 0.07331372} + outSlope: {x: 0.18887223, y: 0.047385696, z: -0.22239985, w: 0.07331372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.13275975, y: -0.08812243, z: 0.15511416, w: 0.974961} + inSlope: {x: 0.26978555, y: 0.069402166, z: -0.31046572, w: 0.09298325} + outSlope: {x: 0.26978555, y: 0.069402166, z: -0.3102422, w: 0.09208918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.1123767, y: -0.08263525, z: 0.13165364, w: 0.9814327} + inSlope: {x: 0.3359467, y: 0.08806587, z: -0.3822148, w: 0.09655953} + outSlope: {x: 0.33617023, y: 0.08817763, z: -0.3822148, w: 0.09924174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.08808104, y: -0.07595148, z: 0.103927, w: 0.98776126} + inSlope: {x: 0.38746747, y: 0.10348857, z: -0.43753538, w: 0.089406975} + outSlope: {x: 0.38746747, y: 0.103153296, z: -0.43697658, w: 0.088512905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.060892913, y: -0.0683265, z: 0.07308456, w: 0.9931174} + inSlope: {x: 0.42278323, y: 0.1147762, z: -0.47497454, w: 0.06884337} + outSlope: {x: 0.42328614, y: 0.1147762, z: -0.47530982, w: 0.06973744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.031876326, y: -0.060039327, z: 0.04032492, w: 0.99687165} + inSlope: {x: 0.44245276, y: 0.122208156, z: -0.4950911, w: 0.04112721} + outSlope: {x: 0.4420616, y: 0.12198464, z: -0.4945882, w: 0.04202128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.0021298518, y: -0.0513928, z: 0.0068848273, w: 0.9986526} + inSlope: {x: 0.44453076, y: 0.12500213, z: -0.49599916, w: 0.010728837} + outSlope: {x: 0.44449195, y: 0.12522553, z: -0.49578217, w: 0.009834758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.027230702, y: -0.04271014, z: -0.025980268, w: 0.99837834} + inSlope: {x: 0.42999128, y: 0.12354915, z: -0.4781313, w: -0.018775448} + outSlope: {x: 0.4301038, y: 0.12343761, z: -0.47821596, w: -0.018775482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.055093497, y: -0.0343289, z: -0.057019945, w: 0.9962605} + inSlope: {x: 0.39869958, y: 0.11678796, z: -0.4415032, w: -0.042915385} + outSlope: {x: 0.39853123, y: 0.11695539, z: -0.44139066, w: -0.043809377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.080295734, y: -0.02661683, z: -0.08492886, w: 0.9927897} + inSlope: {x: 0.35203964, y: 0.10561189, z: -0.38769063, w: -0.05722041} + outSlope: {x: 0.35293433, y: 0.1056959, z: -0.3880266, w: -0.060796797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.102005266, y: -0.019851591, z: -0.108768076, w: 0.98862046} + inSlope: {x: 0.29001412, y: 0.08907177, z: -0.31605393, w: -0.061690867} + outSlope: {x: 0.2903489, y: 0.089295134, z: -0.31661215, w: -0.063478895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.118938535, y: -0.014458818, z: -0.12710461, w: 0.98462635} + inSlope: {x: 0.21234137, y: 0.06743235, z: -0.22664647, w: -0.053644136} + outSlope: {x: 0.21211824, y: 0.06747439, z: -0.22709392, w: -0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.13031189, y: -0.010709835, z: -0.13905402, w: 0.98161507} + inSlope: {x: 0.078678206, y: 0.02925287, z: -0.07085509, w: -0.019669551} + outSlope: {x: 0.07823103, y: 0.029280758, z: -0.07040793, w: -0.020563586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.12942645, y: -0.010538105, z: -0.136534, w: 0.9820877} + inSlope: {x: -0.12539317, y: -0.030146886, z: 0.1712142, w: 0.039339032} + outSlope: {x: -0.12539339, y: -0.03034252, z: 0.17166154, w: 0.041127246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.11355503, y: -0.014669906, z: -0.11612924, w: 0.9866125} + inSlope: {x: -0.31225413, y: -0.08590062, z: 0.3942851, w: 0.08225449} + outSlope: {x: -0.31258884, y: -0.08609604, z: 0.3950667, w: 0.0804662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.08769016, y: -0.021610066, z: -0.08384752, w: 0.9923774} + inSlope: {x: -0.42714143, y: -0.11983318, z: 0.53163576, w: 0.078678064} + outSlope: {x: -0.42725396, y: -0.11986133, z: 0.53152496, w: 0.081360415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.056432478, y: -0.029975785, z: -0.045183763, w: 0.9969329} + inSlope: {x: -0.46849295, y: -0.13064605, z: 0.58081055, w: 0.048279807} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15027462, y: -0.6736496, z: -0.058395013, w: 0.7212515} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.15027466, y: -0.6736496, z: -0.058395065, w: 0.7212515} + inSlope: {x: -0.04380941, y: -0.0026822088, z: 0.004805624, w: 0.0062584872} + outSlope: {x: -0.043585893, y: -0.004470348, z: 0.0048615034, w: 0.0053644176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.14444527, y: -0.6740911, z: -0.057762884, w: 0.72208047} + inSlope: {x: -0.18171965, y: -0.013411044, z: 0.01966953, w: 0.025033949} + outSlope: {x: -0.18149616, y: -0.013411046, z: 0.019390138, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.12602577, y: -0.6753278, z: -0.055755608, w: 0.7245282} + inSlope: {x: -0.38780275, y: -0.025033953, z: 0.04174188, w: 0.047385696} + outSlope: {x: -0.3882497, y: -0.025928017, z: 0.041965388, w: 0.047385685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.09262426, y: -0.67696166, z: -0.052078262, w: 0.7283073} + inSlope: {x: -0.58852124, y: -0.025033947, z: 0.06459653, w: 0.05632638} + outSlope: {x: -0.58896846, y: -0.025928022, z: 0.06448478, w: 0.055432323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.047454007, y: -0.6779359, z: -0.04702931, w: 0.7320788} + inSlope: {x: -0.6957539, y: -0.008940698, z: 0.07772819, w: 0.04202128} + outSlope: {x: -0.69608915, y: -0.008046628, z: 0.07800759, w: 0.04112721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.00020019338, y: -0.6774373, z: -0.041608892, w: 0.7344027} + inSlope: {x: -0.71958643, y: 0.016093256, z: 0.082422055, w: 0.018775465} + outSlope: {x: -0.7195585, y: 0.015199185, z: 0.082422055, w: 0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.048474174, y: -0.67533934, z: -0.0360201, w: 0.73503023} + inSlope: {x: -0.71553516, y: 0.04023314, z: 0.08398668, w: -0.008940698} + outSlope: {x: -0.7157025, y: 0.03844498, z: 0.08398664, w: -0.0062584854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.09559601, y: -0.67174, z: -0.03046935, w: 0.73396075} + inSlope: {x: -0.6857512, y: 0.060796715, z: 0.08217056, w: -0.031292427} + outSlope: {x: -0.6849692, y: 0.06079674, z: 0.0823103, w: -0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.13982297, y: -0.66695297, z: -0.02517299, w: 0.7314298} + inSlope: {x: -0.6292016, y: 0.07331372, z: 0.07705764, w: -0.050961975} + outSlope: {x: -0.6296486, y: 0.07420779, z: 0.07689, w: -0.049173836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.17947307, y: -0.6614834, z: -0.0203524, w: 0.72788393} + inSlope: {x: -0.5485118, y: 0.08136035, z: 0.06817282, w: -0.059008602} + outSlope: {x: -0.5485118, y: 0.07957221, z: 0.06817282, w: -0.06079674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.21294111, y: -0.65598303, z: -0.0162291, w: 0.7239329} + inSlope: {x: -0.44390562, y: 0.07689, z: 0.0557676, w: -0.05990267} + outSlope: {x: -0.44435266, y: 0.07599593, z: 0.056214634, w: -0.059008602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.23869443, y: -0.6511887, z: -0.013021693, w: 0.72028375} + inSlope: {x: -0.31739476, y: 0.06169081, z: 0.04023314, w: -0.049173836} + outSlope: {x: -0.3165007, y: 0.05990267, z: 0.04012138, w: -0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.25524524, y: -0.6478451, z: -0.010944299, w: 0.71765363} + inSlope: {x: -0.16763808, y: 0.03397465, z: 0.021457674, w: -0.028610231} + outSlope: {x: -0.16808511, y: 0.03397465, z: 0.021457674, w: -0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.26110232, y: -0.6466119, z: -0.010206103, w: 0.716669} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.25524527, y: -0.6478451, z: -0.010944314, w: 0.71765375} + inSlope: {x: 0.16763808, y: -0.03576279, z: -0.020451846, w: 0.027716162} + outSlope: {x: 0.16763793, y: -0.033974618, z: -0.020898862, w: 0.026822068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.23869443, y: -0.6511887, z: -0.013021722, w: 0.7202836} + inSlope: {x: 0.3165004, y: -0.061690755, z: -0.039115515, w: 0.046491586} + outSlope: {x: 0.31672448, y: -0.064373076, z: -0.039115585, w: 0.04917388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.21294111, y: -0.6559831, z: -0.016229063, w: 0.723933} + inSlope: {x: 0.4423414, y: -0.080466345, z: -0.054091267, w: 0.05632644} + outSlope: {x: 0.4423406, y: -0.0804662, z: -0.05420293, w: 0.055432275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.17958814, y: -0.6614658, z: -0.02033829, w: 0.72787184} + inSlope: {x: 0.54717016, y: -0.085830614, z: -0.065937586, w: 0.055432275} + outSlope: {x: 0.5485123, y: -0.08672484, z: -0.06604946, w: 0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.13982299, y: -0.666953, z: -0.025173008, w: 0.73142976} + inSlope: {x: 0.62808454, y: -0.08225449, z: -0.07487841, w: 0.042915385} + outSlope: {x: 0.62875396, y: -0.07957213, z: -0.074934155, w: 0.044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.09573962, y: -0.67172664, z: -0.030452255, w: 0.7339551} + inSlope: {x: 0.6841862, y: -0.067055166, z: -0.080410324, w: 0.025927998} + outSlope: {x: 0.68429923, y: -0.06705529, z: -0.08068986, w: 0.023245834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.048474174, y: -0.67533934, z: -0.03602006, w: 0.73503023} + inSlope: {x: 0.71480936, y: -0.045597598, z: -0.08314856, w: 0} + outSlope: {x: 0.7147522, y: -0.04738565, z: -0.08320429, w: 0.0008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.00035103224, y: -0.67743325, z: -0.04159154, w: 0.7344073} + inSlope: {x: 0.71913874, y: -0.02413986, z: -0.082924895, w: -0.025927998} + outSlope: {x: 0.72034144, y: -0.023245834, z: -0.0830368, w: -0.025928045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.047453977, y: -0.67793596, z: -0.047029253, w: 0.7320788} + inSlope: {x: 0.6963692, y: -0.0017881411, z: -0.07934876, w: -0.04917388} + outSlope: {x: 0.6973179, y: 0.0008940689, z: -0.079404496, w: -0.05006786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.09249343, y: -0.67696655, z: -0.052063722, w: 0.72832054} + inSlope: {x: 0.58919144, y: 0.017881379, z: -0.06621698, w: -0.060796686} + outSlope: {x: 0.58863366, y: 0.019669551, z: -0.06588182, w: -0.06347901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.12602572, y: -0.6753278, z: -0.05575556, w: 0.72452825} + inSlope: {x: 0.5017971, y: 0.028610257, z: -0.05571177, w: -0.064373076} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08548669, y: 0.00623442, z: -0.07987839, w: 0.99311256} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.085486695, y: 0.006234421, z: -0.079878405, w: 0.99311256} + inSlope: {x: -0.003352761, y: -0.003611203, z: -0.04380941, w: -0.0035762785} + outSlope: {x: -0.0031292436, y: -0.0036321578, z: -0.04369765, w: -0.0035762785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.085913174, y: 0.00575039, z: -0.0857173, w: 0.99259174} + inSlope: {x: -0.025033949, y: -0.01781853, z: -0.19736587, w: -0.018775461} + outSlope: {x: -0.025369229, y: -0.01786044, z: -0.19781293, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.08881981, y: 0.0038401308, z: -0.1061994, w: 0.9903625} + inSlope: {x: -0.059567396, y: -0.034309927, z: -0.35852197, w: -0.044703487} + outSlope: {x: -0.059455622, y: -0.034337856, z: -0.35863364, w: -0.043809406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.09382899, y: 0.0011128718, z: -0.1334832, w: 0.98659873} + inSlope: {x: -0.07286666, y: -0.039730214, z: -0.40478998, w: -0.061690796} + outSlope: {x: -0.07275493, y: -0.039702285, z: -0.4052371, w: -0.06079674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.098534755, y: -0.0015460085, z: -0.16017936, w: 0.98215634} + inSlope: {x: -0.052526597, y: -0.03410038, z: -0.36209825, w: -0.064373024} + outSlope: {x: -0.05219132, y: -0.03405847, z: -0.36187473, w: -0.064373024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.10082595, y: -0.0034884987, z: -0.18176515, w: 0.9781531} + inSlope: {x: -0.0005587936, y: -0.018957073, z: -0.25212768, w: -0.046491627} + outSlope: {x: -0.000782311, y: -0.018929133, z: -0.25212768, w: -0.047385696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.09863611, y: -0.004069389, z: -0.19378996, w: 0.9760635} + inSlope: {x: 0.08169562, y: 0.006174669, z: -0.07510186, w: -0.006258488} + outSlope: {x: 0.08214262, y: 0.006216576, z: -0.07510182, w: -0.0062584854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.08990805, y: -0.00264615, z: -0.19180185, w: 0.97730327} + inSlope: {x: 0.1657381, y: 0.03270338, z: 0.10795887, w: 0.03665684} + outSlope: {x: 0.16562642, y: 0.032703396, z: 0.108405955, w: 0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.07652931, y: 0.00023466162, z: -0.1793532, w: 0.98080355} + inSlope: {x: 0.22910537, y: 0.051744286, z: 0.22977592, w: 0.059008602} + outSlope: {x: 0.2295524, y: 0.051842075, z: 0.22977592, w: 0.06079674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.059289426, y: 0.0040941127, z: -0.16115507, w: 0.9851381} + inSlope: {x: 0.28096142, y: 0.06567222, z: 0.30845407, w: 0.06705523} + outSlope: {x: 0.2807379, y: 0.06563031, z: 0.30800703, w: 0.0679493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.039035276, y: 0.008723125, z: -0.13820627, w: 0.9895955} + inSlope: {x: 0.3191829, y: 0.07624739, z: 0.3717095, w: 0.064373024} + outSlope: {x: 0.31962994, y: 0.076331206, z: 0.37238005, w: 0.062584884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.016627599, y: 0.013909689, z: -0.11153978, w: 0.9935235} + inSlope: {x: 0.34505504, y: 0.08362346, z: 0.42010102, w: 0.051856045} + outSlope: {x: 0.34483153, y: 0.08358155, z: 0.41976574, w: 0.052750114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.0070566228, y: 0.019439619, z: -0.082231015, w: 0.9963987} + inSlope: {x: 0.35701323, y: 0.08742326, z: 0.45139346, w: 0.032186512} + outSlope: {x: 0.35744628, y: 0.087535016, z: 0.45161697, w: 0.03308058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.031129092, y: 0.025098592, z: -0.051395837, w: 0.9978774} + inSlope: {x: 0.35639855, y: 0.08800999, z: 0.46653676, w: 0.009834767} + outSlope: {x: 0.35611916, y: 0.08787029, z: 0.4659221, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0547003, y: 0.030675186, z: -0.020180106, w: 0.9978274} + inSlope: {x: 0.34175816, y: 0.084936626, z: 0.46323988, w: -0.013411046} + outSlope: {x: 0.34198135, y: 0.084964484, z: 0.46318358, w: -0.010728827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.07689207, y: 0.035963923, z: 0.010256091, w: 0.99633783} + inSlope: {x: 0.31493577, y: 0.078678064, z: 0.4429553, w: -0.032186482} + outSlope: {x: 0.31482458, y: 0.078789964, z: 0.4428443, w: -0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.09684939, y: 0.040768012, z: 0.03875483, w: 0.99370825} + inSlope: {x: 0.27503845, y: 0.069402225, z: 0.40439928, w: -0.046491668} + outSlope: {x: 0.2749262, y: 0.0694021, z: 0.40467796, w: -0.044703446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.11370119, y: 0.044888806, z: 0.064100444, w: 0.9904283} + inSlope: {x: 0.22340547, y: 0.05727629, z: 0.35036325, w: -0.05006786} + outSlope: {x: 0.22396466, y: 0.057444032, z: 0.35081092, w: -0.05185609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.12679806, y: 0.0481838, z: 0.08539343, w: 0.9870707} + inSlope: {x: 0.16070917, y: 0.04258011, z: 0.27895, w: -0.047385737} + outSlope: {x: 0.16070889, y: 0.04258003, z: 0.2795083, w: -0.046491586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.13521568, y: 0.050441634, z: 0.1012727, w: 0.98433536} + inSlope: {x: 0.0856071, y: 0.025425086, z: 0.19088371, w: -0.03308055} + outSlope: {x: 0.086277805, y: 0.025369251, z: 0.1907723, w: -0.032186538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.13830547, y: 0.05152054, z: 0.11084018, w: 0.9828182} + inSlope: {x: -0.059902724, y: -0.006314373, z: 0.031404227, w: 0.005364423} + outSlope: {x: -0.060126137, y: -0.006314362, z: 0.031180654, w: 0.0062584826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.12718658, y: 0.04959764, z: 0.10543979, w: 0.9850108} + inSlope: {x: -0.30733618, y: -0.05627046, z: -0.22094679, w: 0.067055166} + outSlope: {x: -0.30778378, y: -0.05632644, z: -0.221953, w: 0.064373076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.09729964, y: 0.043742955, z: 0.08113186, w: 0.99097776} + inSlope: {x: -0.54236555, y: -0.101365246, z: -0.45519367, w: 0.093877405} + outSlope: {x: -0.54337037, y: -0.101644464, z: -0.45631042, w: 0.09566537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.05498931, y: 0.035219613, z: 0.044253163, w: 0.99688387} + inSlope: {x: -0.6868684, y: -0.12941648, z: -0.5998085, w: 0.068843305} + outSlope: {x: -0.68692553, y: -0.12947258, z: -0.59986544, w: 0.06884343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.005947535, y: 0.025180306, z: 0.0006358768, w: 0.999665} + inSlope: {x: -0.7368468, y: -0.14056465, z: -0.6509855, w: 0.008940705} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.16508342, y: 0.6456678, z: -0.07127721, w: 0.74214566} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.16508338, y: 0.6456678, z: -0.071277246, w: 0.74214566} + inSlope: {x: 0.04738569, y: 0.0035762785, z: 0.008046627, w: 0.007152557} + outSlope: {x: 0.047609206, y: 0.0053644176, z: 0.008270144, w: 0.0062584872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.15874329, y: 0.64631814, z: -0.07016656, w: 0.7430681} + inSlope: {x: 0.19736587, y: 0.0205636, z: 0.03453344, w: 0.028610228} + outSlope: {x: 0.19781293, y: 0.018775465, z: 0.034645204, w: 0.026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.13870233, y: 0.64818823, z: -0.06664388, w: 0.7457697} + inSlope: {x: 0.42222443, y: 0.03755093, z: 0.07420779, w: 0.052750114} + outSlope: {x: 0.42267138, y: 0.03665685, z: 0.07376073, w: 0.050961964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.102333955, y: 0.6508693, z: -0.060205795, w: 0.7498481} + inSlope: {x: 0.64104784, y: 0.042915337, z: 0.11298804, w: 0.060796726} + outSlope: {x: 0.6413833, y: 0.043809418, z: 0.11332334, w: 0.059008602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.05311135, y: 0.65305287, z: -0.051399805, w: 0.7536971} + inSlope: {x: 0.7586182, y: 0.025928022, z: 0.13584273, w: 0.04112721} + outSlope: {x: 0.75872993, y: 0.025033953, z: 0.13612212, w: 0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0011540018, y: 0.6535732, z: -0.04199045, w: 0.75569665} + inSlope: {x: 0.78457415, y: -0.0026822092, z: 0.14316292, w: 0.008940698} + outSlope: {x: 0.7844624, y: 0, z: 0.14305116, w: 0.010728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.051482778, y: 0.6522397, z: -0.03233913, w: 0.7555706} + inSlope: {x: 0.78024346, y: -0.031292442, z: 0.1448393, w: -0.023245813} + outSlope: {x: 0.7800755, y: -0.026822079, z: 0.14478335, w: -0.021457665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.10284172, y: 0.64912605, z: -0.02280622, w: 0.7533518} + inSlope: {x: 0.7469949, y: -0.052750092, z: 0.14092767, w: -0.051856022} + outSlope: {x: 0.7463247, y: -0.054538254, z: 0.14070423, w: -0.051856045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.15100373, y: 0.6445596, z: -0.013761476, w: 0.74936724} + inSlope: {x: 0.6846339, y: -0.07152558, z: 0.13109298, w: -0.07420779} + outSlope: {x: 0.68508095, y: -0.07152558, z: 0.13109298, w: -0.07152558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.1941294, y: 0.639093, z: -0.0055744424, w: 0.7442063} + inSlope: {x: 0.59679157, y: -0.08046628, z: 0.11511148, w: -0.08404256} + outSlope: {x: 0.595674, y: -0.08225442, z: 0.11522324, w: -0.085830696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.23048037, y: 0.63345027, z: 0.0013926104, w: 0.7386593} + inSlope: {x: 0.48190358, y: -0.07778407, z: 0.09387732, w: -0.08314849} + outSlope: {x: 0.48235062, y: -0.07957221, z: 0.09398908, w: -0.08225442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.25841358, y: 0.62845516, z: 0.0067884475, w: 0.73363507} + inSlope: {x: 0.34376982, y: -0.064373024, z: 0.06727875, w: -0.06616116} + outSlope: {x: 0.34376982, y: -0.063478954, z: 0.0666082, w: -0.0679493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.27634525, y: 0.62494016, z: 0.010271996, w: 0.73005307} + inSlope: {x: 0.18149616, y: -0.03755093, z: 0.035315756, w: -0.03933907} + outSlope: {x: 0.1819432, y: -0.03576279, z: 0.03576279, w: -0.03665686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.28268683, y: 0.6236385, z: 0.011507764, w: 0.72871864} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.27634525, y: 0.62494016, z: 0.010271952, w: 0.73005307} + inSlope: {x: -0.18149616, y: 0.03665686, z: -0.03509224, w: 0.03665686} + outSlope: {x: -0.181496, y: 0.038444962, z: -0.035092205, w: 0.038444962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.25841355, y: 0.62845504, z: 0.006788492, w: 0.7336351} + inSlope: {x: -0.34332246, y: 0.0661611, z: -0.06549055, w: 0.065267034} + outSlope: {x: -0.34287605, y: 0.06705529, z: -0.06571418, w: 0.066161215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.23048031, y: 0.6334502, z: 0.0013926402, w: 0.7386594} + inSlope: {x: -0.48033938, y: 0.08404263, z: -0.091195196, w: 0.078678206} + outSlope: {x: -0.48011503, y: 0.08225434, z: -0.09108327, w: 0.078678064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.1942544, y: 0.63907516, z: -0.0055505633, w: 0.74418914} + inSlope: {x: -0.5947794, y: 0.08940689, z: -0.11209389, w: 0.0804662} + outSlope: {x: -0.59612155, y: 0.08851298, z: -0.11198233, w: 0.077784136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.15100369, y: 0.6445597, z: -0.013761453, w: 0.7493672} + inSlope: {x: -0.6835169, y: 0.080466345, z: -0.12740505, w: 0.064373076} + outSlope: {x: -0.68440974, y: 0.0804662, z: -0.12796362, w: 0.067949235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.10299817, y: 0.6491138, z: -0.022777006, w: 0.7533418} + inSlope: {x: -0.74554175, y: 0.062584825, z: -0.13802189, w: 0.042915307} + outSlope: {x: -0.7454313, y: 0.06347901, z: -0.1381339, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.051482722, y: 0.6522398, z: -0.03233913, w: 0.7555706} + inSlope: {x: -0.7793501, y: 0.039339103, z: -0.14321892, w: 0.0125169875} + outSlope: {x: -0.7792928, y: 0.0402331, z: -0.14333043, w: 0.014305103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.000989588, y: 0.653572, z: -0.041960493, w: 0.75569963} + inSlope: {x: -0.7841264, y: 0.010728827, z: -0.14293927, w: -0.018775448} + outSlope: {x: -0.785441, y: 0.010728846, z: -0.14316304, w: -0.01788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.053111393, y: 0.65305287, z: -0.0513998, w: 0.7536971} + inSlope: {x: -0.75884235, y: -0.016093269, z: -0.13729571, w: -0.048279807} + outSlope: {x: -0.7601821, y: -0.016987309, z: -0.1374631, w: -0.04917379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.10219151, y: 0.65087795, z: -0.060180463, w: 0.74986196} + inSlope: {x: -0.641718, y: -0.036656827, z: -0.11511137, w: -0.0661611} + outSlope: {x: -0.64127207, y: -0.03486875, z: -0.114888065, w: -0.065267146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.13870233, y: 0.64818823, z: -0.06664391, w: 0.7457697} + inSlope: {x: -0.5460536, y: -0.043809455, z: -0.097230166, w: -0.0697375} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.081053816, y: 0.040226426, z: -0.08538883, w: 0.9922302} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0.0001117587, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.08105382, y: 0.040226426, z: -0.08538883, w: 0.9922302} + inSlope: {x: 0.022463499, y: -0.00072643155, z: -0.066272914, w: -0.008940696} + outSlope: {x: 0.022575257, y: -0.0007823109, z: -0.06638467, w: -0.007152557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.08406668, y: 0.040127393, z: -0.09422715, w: 0.99118304} + inSlope: {x: 0.10695308, y: -0.0010617077, z: -0.29370186, w: -0.037550922} + outSlope: {x: 0.107511885, y: -0.0012293459, z: -0.29437247, w: -0.03576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.09532065, y: 0.040161572, z: -0.1245349, w: 0.986809} + inSlope: {x: 0.20038338, y: 0.000111758716, z: -0.5262718, w: -0.085830696} + outSlope: {x: 0.20015982, y: 0.00011175869, z: -0.526607, w: -0.08583067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.110800095, y: 0.040480573, z: -0.16425721, w: 0.97933865} + inSlope: {x: 0.22698191, y: 0.00039115542, z: -0.5894153, w: -0.12516974} + outSlope: {x: 0.22731723, y: 0.0003911555, z: -0.589639, w: -0.12606384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.12572667, y: 0.040678315, z: -0.20303833, w: 0.9702131} + inSlope: {x: 0.19513072, y: -0.0037997963, z: -0.5301834, w: -0.1358986} + outSlope: {x: 0.19446017, y: -0.0037997963, z: -0.5304069, w: -0.1358986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.13691625, y: 0.040360127, z: -0.23492686, w: 0.9614751} + inSlope: {x: 0.11578203, y: -0.012684614, z: -0.3833324, w: -0.10997058} + outSlope: {x: 0.11600555, y: -0.012740494, z: -0.38310888, w: -0.10907651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.14131826, y: 0.03917011, z: -0.25418782, w: 0.9559725} + inSlope: {x: -0.008046628, y: -0.02704561, z: -0.15154482, w: -0.038445} + outSlope: {x: -0.007823107, y: -0.026989717, z: -0.15154475, w: -0.03844498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.13592617, y: 0.03676358, z: -0.25513992, w: 0.95659614} + inSlope: {x: -0.13455744, y: -0.042635933, z: 0.088065825, w: 0.044703465} + outSlope: {x: -0.1345575, y: -0.04280359, z: 0.088512905, w: 0.044703487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.123333044, y: 0.033508874, z: -0.24232948, w: 0.96173936} + inSlope: {x: -0.22351743, y: -0.05666167, z: 0.24385752, w: 0.09298325} + outSlope: {x: -0.22374095, y: -0.05666167, z: 0.24408104, w: 0.09208918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.10606298, y: 0.02938929, z: -0.22249681, w: 0.96870124} + inSlope: {x: -0.28688464, y: -0.06920659, z: 0.34064057, w: 0.11175872} + outSlope: {x: -0.28677288, y: -0.06920659, z: 0.34131113, w: 0.11175872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.085018955, y: 0.024595603, z: -0.19675626, w: 0.9764496} + inSlope: {x: -0.33628199, y: -0.0787899, z: 0.4206598, w: 0.116229065} + outSlope: {x: -0.3365055, y: -0.07884578, z: 0.42133036, w: 0.115334995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.061125234, y: 0.019321222, z: -0.16626833, w: 0.9839945} + inSlope: {x: -0.3719889, y: -0.08538366, z: 0.4834682, w: 0.1063943} + outSlope: {x: -0.3717095, y: -0.08535572, z: 0.48279765, w: 0.10728837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.035337508, y: 0.01376529, z: -0.13226165, w: 0.9904891} + inSlope: {x: -0.39272013, y: -0.088568784, z: 0.5263836, w: 0.085830696} + outSlope: {x: -0.39299953, y: -0.08862466, z: 0.52705413, w: 0.08404256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.008641563, y: 0.008132894, z: -0.096035965, w: 0.9953071} + inSlope: {x: -0.39885288, y: -0.088443056, z: 0.55029994, w: 0.057220463} + outSlope: {x: -0.39854556, y: -0.08837321, z: 0.5498529, w: 0.057220463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.017958473, y: 0.00263307, z: -0.058950964, w: 0.99809587} + inSlope: {x: -0.3893953, y: -0.084702626, z: 0.5527027, w: 0.025928022} + outSlope: {x: -0.389367, y: -0.08470255, z: 0.5527581, w: 0.02503393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.043457605, y: -0.0025247645, z: -0.022403335, w: 0.99880093} + inSlope: {x: -0.3653948, y: -0.07761636, z: 0.53434587, w: -0.0035762757} + outSlope: {x: -0.36545134, y: -0.077613, z: 0.5343189, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.066869244, y: -0.0071347533, z: 0.012200237, w: 0.99766153} + inSlope: {x: -0.326671, y: -0.06707624, z: 0.49405777, w: -0.029504327} + outSlope: {x: -0.32655868, y: -0.067111045, z: 0.49407086, w: -0.027716137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.08718265, y: -0.01098742, z: 0.043376595, w: 0.99518687} + inSlope: {x: -0.27481443, y: -0.053644136, z: 0.434294, w: -0.043809377} + outSlope: {x: -0.27526197, y: -0.05374202, z: 0.43518883, w: -0.043809455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.10366079, y: -0.013925241, z: 0.07003754, w: 0.992046} + inSlope: {x: -0.20943601, y: -0.037327446, z: 0.35394016, w: -0.047385737} + outSlope: {x: -0.20999444, y: -0.03732738, z: 0.35449833, w: -0.04738565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.11523007, y: -0.015732052, z: 0.090528175, w: 0.9890799} + inSlope: {x: -0.13075759, y: -0.018244594, z: 0.25313327, w: -0.039339032} + outSlope: {x: -0.13109308, y: -0.018272566, z: 0.25324547, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.121185966, y: -0.016257122, z: 0.10379345, w: 0.9870545} + inSlope: {x: 0.016652064, y: 0.018524023, z: 0.075996, w: -0.005364423} + outSlope: {x: 0.01687555, y: 0.01860781, z: 0.07554883, w: -0.0053644134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.11298386, y: -0.013255979, z: 0.10063195, w: 0.98839885} + inSlope: {x: 0.2600623, y: 0.078566305, z: -0.1984833, w: 0.051855996} + outSlope: {x: 0.2607333, y: 0.07884584, z: -0.19937773, w: 0.05006795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.08647814, y: -0.0055777556, z: 0.077116296, w: 0.99324894} + inSlope: {x: 0.48961538, y: 0.13249007, z: -0.4509468, w: 0.077784136} + outSlope: {x: 0.4903968, y: 0.13276225, z: -0.4517283, w: 0.07957213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0478621, y: 0.0051406627, z: 0.040077914, w: 0.9980364} + inSlope: {x: 0.6303186, y: 0.16382416, z: -0.60561997, w: 0.054538205} + outSlope: {x: 0.6303756, y: 0.1638943, z: -0.60584456, w: 0.052750163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.0027271414, y: 0.01745071, z: -0.004161305, w: 0.9998353} + inSlope: {x: 0.67886496, y: 0.17398053, z: -0.6600755, w: -0.0035762822} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.026176248, y: 0.9996318, z: 0.0001870027, w: 0.007139633} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.13075769, y: 0.0035762785, z: -0.00093597913, w: 0.000027939675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.017451955, y: 0.9998222, z: 0.00012464881, w: 0.007140994} + inSlope: {x: -0.21234153, y: 0.0035762785, z: -0.0015166005, w: 0.000020954756} + outSlope: {x: -0.21264887, y: 0.0035762785, z: -0.0015190016, w: 0.000027939675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.0021588886, y: 0.99997216, z: -0.000015423004, w: 0.007142065} + inSlope: {x: -0.31728294, y: -0.0008940696, z: -0.0022659786, w: -0.000006984919} + outSlope: {x: -0.31732142, y: -0.00089406973, z: -0.0022662245, w: -0.0000069849198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.024852177, y: 0.9996656, z: -0.0001775111, w: 0.0071398756} + inSlope: {x: -0.34955332, y: -0.008940698, z: -0.0024962358, w: -0.00006286428} + outSlope: {x: -0.34955326, y: -0.008940695, z: -0.002496235, w: -0.00006286427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.048764877, y: 0.9987848, z: -0.00034830876, w: 0.0071335835} + inSlope: {x: -0.3538839, y: -0.016987322, z: -0.0025263575, w: -0.00011874361} + outSlope: {x: -0.3538281, y: -0.016987326, z: -0.0025267948, w: -0.000118743636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.072034456, y: 0.99737656, z: -0.000514513, w: 0.007123525} + inSlope: {x: -0.33035877, y: -0.024139883, z: -0.0023582836, w: -0.000174623} + outSlope: {x: -0.33035877, y: -0.024139883, z: -0.0023582836, w: -0.00016763808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.09280853, y: 0.99565834, z: -0.00066289294, w: 0.007111252} + inSlope: {x: -0.27917328, y: -0.026822092, z: -0.0019924485, w: -0.00019557776} + outSlope: {x: -0.27894977, y: -0.025928022, z: -0.0019907022, w: -0.00018160792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.10925138, y: 0.9939885, z: -0.00078033726, w: 0.0070993244} + inSlope: {x: -0.20049514, y: -0.022351744, z: -0.0014301623, w: -0.00016065316} + outSlope: {x: -0.20038329, y: -0.022351732, z: -0.0014301616, w: -0.00016065309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.11954268, y: 0.99280334, z: -0.00085384434, w: 0.007090859} + inSlope: {x: -0.09465959, y: -0.011622901, z: -0.0006749176, w: -0.000083819} + outSlope: {x: -0.09443612, y: -0.010728837, z: -0.00067229854, w: -0.00007683412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.12186627, y: 0.9925208, z: -0.0008704421, w: 0.0070888405} + inSlope: {x: 0.016205015, y: 0.0017881395, z: 0.000116997406, w: 0.0000069849198} + outSlope: {x: 0.016316773, y: 0.0017881395, z: 0.000118743636, w: 0.0000139698395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.11737683, y: 0.9930618, z: -0.0008383785, w: 0.0070927045} + inSlope: {x: 0.0974536, y: 0.011622907, z: 0.0006976189, w: 0.00008381904} + outSlope: {x: 0.0974536, y: 0.011622907, z: 0.0006976189, w: 0.00007683412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.108871095, y: 0.99403024, z: -0.0007776291, w: 0.0070996215} + inSlope: {x: 0.15288593, y: 0.016987326, z: 0.00109314, w: 0.000118743636} + outSlope: {x: 0.15299769, y: 0.016987326, z: 0.0010957593, w: 0.00012572856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.09698617, y: 0.9952601, z: -0.00069274416, w: 0.0071084066} + inSlope: {x: 0.19893052, y: 0.019669535, z: 0.0014240505, w: 0.00014668332} + outSlope: {x: 0.198707, y: 0.018775465, z: 0.0014205581, w: 0.00013271348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.08236023, y: 0.996577, z: -0.0005882821, w: 0.0071178125} + inSlope: {x: 0.23491682, y: 0.019669535, z: 0.0016798732, w: 0.0001396984} + outSlope: {x: 0.23536386, y: 0.018775465, z: 0.0016833657, w: 0.0001396984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.065635435, y: 0.9978181, z: -0.00046882904, w: 0.007126678} + inSlope: {x: 0.26185068, y: 0.016987326, z: 0.0018719585, w: 0.00012572856} + outSlope: {x: 0.26162717, y: 0.016987326, z: 0.0018706488, w: 0.000118743636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.047459178, y: 0.9988476, z: -0.0003390087, w: 0.0071340315} + inSlope: {x: 0.2785586, y: 0.013411046, z: 0.001992012, w: 0.00009080396} + outSlope: {x: 0.27850246, y: 0.013411034, z: 0.0019907004, w: 0.00009778879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.02848381, y: 0.9995687, z: -0.00020348052, w: 0.007139182} + inSlope: {x: 0.28559914, y: 0.0080466205, z: 0.0020415592, w: 0.000055879307} + outSlope: {x: 0.28559965, y: 0.0080466345, z: 0.002041781, w: 0.00005587941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.009365539, y: 0.9999306, z: -0.00006693119, w: 0.007141768} + inSlope: {x: 0.28234467, y: 0.0026822116, z: 0.0020183162, w: 0.000020954778} + outSlope: {x: 0.28235814, y: 0.0026822067, z: 0.0020185309, w: 0.00002095474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.009181156, y: 0.99993235, z: 0.000065536326, w: 0.0071417815} + inSlope: {x: 0.27014852, y: -0.0026822067, z: 0.0019310012, w: -0.000013969827} + outSlope: {x: 0.27063793, y: -0.0026822116, z: 0.0019348245, w: -0.000020954778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.026668994, y: 0.99961877, z: 0.00019044177, w: 0.007139542} + inSlope: {x: 0.24779724, y: -0.0071525644, z: 0.0017713336, w: -0.000048894482} + outSlope: {x: 0.24818794, y: -0.0062584826, z: 0.001774168, w: -0.00004190948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.042228103, y: 0.99908245, z: 0.00030157235, w: 0.007135712} + inSlope: {x: 0.21535885, y: -0.008940689, z: 0.0015393003, w: -0.00006286422} + outSlope: {x: 0.21541512, y: -0.008940705, z: 0.0015397397, w: -0.00006286433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.055399913, y: 0.9984387, z: 0.00039565278, w: 0.007131114} + inSlope: {x: 0.17356144, y: -0.009834776, z: 0.001241134, w: -0.00006984926} + outSlope: {x: 0.17350525, y: -0.009834758, z: 0.0012398221, w: -0.000069849135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.06537571, y: 0.99783516, z: 0.00046690708, w: 0.0071268035} + inSlope: {x: 0.09331845, y: -0.0062584826, z: 0.00066749577, w: -0.000048894395} + outSlope: {x: 0.09331861, y: -0.0062584938, z: 0.000667497, w: -0.000041909556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.06784327, y: 0.9976704, z: 0.00048453908, w: 0.0071256263} + inSlope: {x: -0.03028664, y: 0.0017881411, z: -0.00021565959, w: 0.000013969852} + outSlope: {x: -0.030510101, y: 0.0017881378, z: -0.00021696888, w: 0.000013969827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.06132133, y: 0.99809253, z: 0.0004379707, w: 0.0071286405} + inSlope: {x: -0.13679254, y: 0.0080466205, z: -0.0009770148, w: 0.00006286422} + outSlope: {x: -0.13690455, y: 0.0080466345, z: -0.0009778896, w: 0.00005587941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.04959224, y: 0.998744, z: 0.0003542143, w: 0.007133293} + inSlope: {x: -0.17590837, y: 0.0080466345, z: -0.0012572866, w: 0.00006286433} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05670157, y: 0.6421294, z: 0.047718197, w: 0.7630057} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.0001117587, y: 0, z: -0.00005587935, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.056701265, y: 0.6421287, z: 0.047718585, w: 0.7630063} + inSlope: {x: 0.09186565, y: -0.007152557, z: 0.0773929, w: -0.0053644176} + outSlope: {x: 0.09220093, y: -0.0053644176, z: 0.07756054, w: -0.007152557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.06896404, y: 0.64127845, z: 0.058038637, w: 0.7619957} + inSlope: {x: 0.20664184, y: -0.0151991835, z: 0.17412005, w: -0.018775461} + outSlope: {x: 0.20675363, y: -0.015199185, z: 0.17400832, w: -0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.08424338, y: 0.6399844, z: 0.070897385, w: 0.7604581} + inSlope: {x: 0.23480506, y: -0.020563604, z: 0.19758941, w: -0.025928022} + outSlope: {x: 0.23458149, y: -0.021457668, z: 0.19736585, w: -0.026822086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.10024528, y: 0.6383488, z: 0.08436421, w: 0.7585145} + inSlope: {x: 0.22821124, y: -0.025033947, z: 0.19188967, w: -0.033080574} + outSlope: {x: 0.2282113, y: -0.025928022, z: 0.19211324, w: -0.029504301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.11469405, y: 0.63662356, z: 0.096524, w: 0.7564647} + inSlope: {x: 0.18808992, y: -0.024139883, z: 0.15847386, w: -0.027716162} + outSlope: {x: 0.18808992, y: -0.024139883, z: 0.1583621, w: -0.028610231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.12533887, y: 0.6352008, z: 0.1054824, w: 0.7547739} + inSlope: {x: 0.114440925, y: -0.015199185, z: 0.0961125, w: -0.019669535} + outSlope: {x: 0.11421741, y: -0.016987326, z: 0.0961125, w: -0.018775465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.12994714, y: 0.6345446, z: 0.109360605, w: 0.7539942} + inSlope: {x: 0.007152558, y: 0, z: 0.0056996946, w: -0.00089406973} + outSlope: {x: 0.006929037, y: -0.0017881386, z: 0.0058114505, w: -0.0017881386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.12627971, y: 0.6350686, z: 0.10627423, w: 0.75461715} + inSlope: {x: -0.11064108, y: 0.014305109, z: -0.09309497, w: 0.018775456} + outSlope: {x: -0.11064113, y: 0.016987326, z: -0.09331853, w: 0.016987326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.115182444, y: 0.63656116, z: 0.096935004, w: 0.7563904} + inSlope: {x: -0.19982459, y: 0.025928022, z: -0.16842039, w: 0.028610231} + outSlope: {x: -0.2006069, y: 0.025033953, z: -0.16842039, w: 0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.099578656, y: 0.6384226, z: 0.08380323, w: 0.75860244} + inSlope: {x: -0.26162717, y: 0.028610231, z: -0.22005291, w: 0.03397465} + outSlope: {x: -0.26118013, y: 0.028610231, z: -0.21960588, w: 0.03486872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.08032368, y: 0.64034116, z: 0.06759871, w: 0.7608822} + inSlope: {x: -0.30979517, y: 0.025928022, z: -0.2601743, w: 0.03308058} + outSlope: {x: -0.30979517, y: 0.028610231, z: -0.2607331, w: 0.03039837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.058287468, y: 0.6420282, z: 0.04905354, w: 0.7628867} + inSlope: {x: -0.34494328, y: 0.023245813, z: -0.29018152, w: 0.025033953} + outSlope: {x: -0.3446639, y: 0.021457674, z: -0.289958, w: 0.025928022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.03435844, y: 0.6432498, z: 0.028915426, w: 0.7643384} + inSlope: {x: -0.36617744, y: 0.015199185, z: -0.3081188, w: 0.016093256} + outSlope: {x: -0.3665686, y: 0.013411046, z: -0.3084261, w: 0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.009441681, y: 0.6438504, z: 0.0079460535, w: 0.76505196} + inSlope: {x: -0.37450346, y: 0.0053644185, z: -0.31517354, w: 0.004470349} + outSlope: {x: -0.37412626, y: 0.0026822092, z: -0.31483826, w: 0.003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.01554722, y: 0.6437664, z: -0.013084027, w: 0.76495224} + inSlope: {x: -0.3683148, y: -0.0053644185, z: -0.30999073, w: -0.007152558} + outSlope: {x: -0.36827257, y: -0.0062584826, z: -0.3099765, w: -0.0080466205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.039690837, y: 0.64303243, z: -0.033402734, w: 0.76408} + inSlope: {x: -0.34874275, y: -0.014305103, z: -0.293534, w: -0.016987309} + outSlope: {x: -0.34879926, y: -0.015199199, z: -0.2935904, w: -0.019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.062078927, y: 0.6417764, z: -0.05224404, w: 0.76258755} + inSlope: {x: -0.3153275, y: -0.020563623, z: -0.26548305, w: -0.025033975} + outSlope: {x: -0.31532693, y: -0.020563586, z: -0.26537085, w: -0.025927998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.08175876, y: 0.6402126, z: -0.06880613, w: 0.7607292} + inSlope: {x: -0.26945, y: -0.02413986, z: -0.22675823, w: -0.030398343} + outSlope: {x: -0.26989755, y: -0.023245834, z: -0.22731744, w: -0.027716186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.098021135, y: 0.6385933, z: -0.0824922, w: 0.75880533} + inSlope: {x: -0.21010657, y: -0.023245834, z: -0.17702596, w: -0.026822116} + outSlope: {x: -0.21055323, y: -0.022351723, z: -0.17724916, w: -0.028610205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.10980289, y: 0.6372341, z: -0.09240747, w: 0.75719017} + inSlope: {x: -0.13757485, y: -0.017881379, z: -0.11555841, w: -0.019669516} + outSlope: {x: -0.13746335, y: -0.016093269, z: -0.115670376, w: -0.021457693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.1163911, y: 0.6364054, z: -0.09795201, w: 0.75620544} + inSlope: {x: -0.0034645232, y: -0.00089407054, z: -0.0029057292, w: 0} + outSlope: {x: -0.0030174826, y: 0, z: -0.0026822067, w: -0.0008940689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.11022939, y: 0.63718206, z: -0.09276648, w: 0.75712806} + inSlope: {x: 0.21390599, y: 0.027716137, z: 0.18026665, w: 0.030398343} + outSlope: {x: 0.21468869, y: 0.026822116, z: 0.18037874, w: 0.03129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.087782994, y: 0.63964754, z: -0.07387621, w: 0.76005745} + inSlope: {x: 0.41697213, y: 0.041127246, z: 0.35081092, w: 0.046491668} + outSlope: {x: 0.41786546, y: 0.04202124, z: 0.35136908, w: 0.04827972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0545822, y: 0.6422592, z: -0.045935303, w: 0.7631605} + inSlope: {x: 0.54102343, y: 0.034868687, z: 0.45508108, w: 0.038444962} + outSlope: {x: 0.54102445, y: 0.03397468, z: 0.45530543, w: 0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.015610483, y: 0.6437657, z: -0.013137728, w: 0.7649506} + inSlope: {x: 0.584303, y: 0.010728846, z: 0.49164099, w: 0.010728846} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.015986731, y: 0.05227031, z: -0.13389966, w: 0.9894863} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.000027939675, y: 0, z: -0.0004470348, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.01598597, y: 0.05226987, z: -0.13389981, w: 0.9894863} + inSlope: {x: 0.025033949, y: 0.0016763805, z: 0.20965932, w: 0.029504297} + outSlope: {x: 0.025145708, y: 0.0015646218, z: 0.21010636, w: 0.029504297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.0126357395, y: 0.052451257, z: -0.105844505, w: 0.9929181} + inSlope: {x: 0.053588297, y: 0.0029616056, z: 0.4487112, w: 0.04917383} + outSlope: {x: 0.053602275, y: 0.002793968, z: 0.4485995, w: 0.048279766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.008843268, y: 0.052604873, z: -0.07408575, w: 0.9958242} + inSlope: {x: 0.058994632, y: 0.0024028125, z: 0.49397352, w: 0.038445} + outSlope: {x: 0.059022557, y: 0.002291053, z: 0.49386165, w: 0.03576278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.004771105, y: 0.052709248, z: -0.039984796, w: 0.9977977} + inSlope: {x: 0.061942253, y: 0.001452863, z: 0.5186721, w: 0.022351738} + outSlope: {x: 0.061949253, y: 0.001564622, z: 0.51856047, w: 0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.0005849822, y: 0.05275152, z: -0.004929453, w: 0.9985953} + inSlope: {x: 0.06239716, y: 0.0005587936, z: 0.52259076, w: 0.0026822092} + outSlope: {x: 0.062391922, y: 0.0005587936, z: 0.522472, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.0035477353, y: 0.052728713, z: 0.029678706, w: 0.99816144} + inSlope: {x: 0.060321767, y: -0.0003911555, z: 0.5051773, w: -0.014305116} + outSlope: {x: 0.060325257, y: -0.0003911555, z: 0.5052891, w: -0.015199185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.007459948, y: 0.052647993, z: 0.062440317, w: 0.99663115} + inSlope: {x: 0.05575363, y: -0.0011734666, z: 0.46703967, w: -0.03039837} + outSlope: {x: 0.055767573, y: -0.001173466, z: 0.4672071, w: -0.028610218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.010986591, y: 0.052525718, z: 0.09197312, w: 0.99431443} + inSlope: {x: 0.048782658, y: -0.0017881386, z: 0.4088132, w: -0.03844498} + outSlope: {x: 0.0487268, y: -0.0018440188, z: 0.40836635, w: -0.03755093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.013965774, y: 0.052385587, z: 0.11692141, w: 0.9916603} + inSlope: {x: 0.03933907, y: -0.002011657, z: 0.32957646, w: -0.03933907} + outSlope: {x: 0.03939495, y: -0.0018998982, z: 0.32991174, w: -0.03933907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.016238894, y: 0.052255813, z: 0.13595696, w: 0.98920244} + inSlope: {x: 0.027604403, y: -0.001564622, z: 0.23134054, w: -0.032186512} + outSlope: {x: 0.027604403, y: -0.0016205014, z: 0.23111703, w: -0.03308058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.017649528, y: 0.052165244, z: 0.14776982, w: 0.9874874} + inSlope: {x: 0.013522805, y: -0.00089406973, z: 0.11309982, w: -0.016987326} + outSlope: {x: 0.013466925, y: -0.00089406973, z: 0.11309982, w: -0.017881395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.018041244, y: 0.052138723, z: 0.15105008, w: 0.98698527} + inSlope: {x: -0.0017601998, y: 0.000055879358, z: -0.0147521505, w: 0.0017881395} + outSlope: {x: -0.0017043204, y: 0.000111758716, z: -0.014528633, w: 0.0026822092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.017418277, y: 0.052180592, z: 0.14583302, w: 0.98777854} + inSlope: {x: -0.015506522, y: 0.0010617079, z: -0.12986363, w: 0.020563604} + outSlope: {x: -0.0155344615, y: 0.0011734666, z: -0.13031067, w: 0.019669535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.015969036, y: 0.052272193, z: 0.13369651, w: 0.98951393} + inSlope: {x: -0.02707355, y: 0.0016763808, z: -0.22619964, w: 0.03039837} + outSlope: {x: -0.02701767, y: 0.0017322601, z: -0.22642316, w: 0.031292442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.013810854, y: 0.05239362, z: 0.11562308, w: 0.99181426} + inSlope: {x: -0.03679656, y: 0.0020675363, z: -0.30800703, w: 0.03665686} + outSlope: {x: -0.036796525, y: 0.0020675345, z: -0.30789497, w: 0.036656827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.011061294, y: 0.052522477, z: 0.09259725, w: 0.9942559} + inSlope: {x: -0.044759326, y: 0.0020675345, z: -0.3748384, w: 0.036656827} + outSlope: {x: -0.044787344, y: 0.002067538, z: -0.37483907, w: 0.03397468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.007839534, y: 0.05263693, z: 0.06561717, w: 0.9964248} + inSlope: {x: -0.05086423, y: 0.0017881411, z: -0.4258011, w: 0.028610257} + outSlope: {x: -0.05085017, y: 0.0016763792, z: -0.42568856, w: 0.027716137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0042786696, y: 0.05271779, z: 0.03579739, w: 0.9979584} + inSlope: {x: -0.055278607, y: 0.0012293448, z: -0.46279243, w: 0.016987309} + outSlope: {x: -0.055369508, y: 0.0011734676, z: -0.46363145, w: 0.01698734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.0004678279, y: 0.052751534, z: 0.0038842973, w: 0.99859995} + inSlope: {x: -0.057712514, y: 0.00044703527, z: -0.48330098, w: 0.0017881411} + outSlope: {x: -0.057818495, y: 0.00039115516, z: -0.48420817, w: 0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.0034204205, y: 0.05272978, z: -0.028676907, w: 0.9981912} + inSlope: {x: -0.058289103, y: -0.00039115516, z: -0.48818958, w: -0.013411034} + outSlope: {x: -0.058282223, y: -0.00039115586, z: -0.48819044, w: -0.014305129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.0073080203, y: 0.052651256, z: -0.061232563, w: 0.9967071} + inSlope: {x: -0.056955088, y: -0.0011734676, z: -0.47715425, w: -0.030398399} + outSlope: {x: -0.056954984, y: -0.0012293448, z: -0.47709754, w: -0.029504275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.011021368, y: 0.052522972, z: -0.09232885, w: 0.99428123} + inSlope: {x: -0.053783834, y: -0.0018440172, z: -0.45049897, w: -0.04202124} + outSlope: {x: -0.05383981, y: -0.0018998999, z: -0.45117033, w: -0.042021316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.014482597, y: 0.052356232, z: -0.12131371, w: 0.9911268} + inSlope: {x: -0.04875478, y: -0.0023469352, z: -0.40847847, w: -0.04917388} + outSlope: {x: -0.048824545, y: -0.0024586895, z: -0.40903655, w: -0.051855996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.017527796, y: 0.052171525, z: -0.14681448, w: 0.98763174} + inSlope: {x: -0.041881543, y: -0.0026822067, z: -0.35092205, w: -0.051855996} + outSlope: {x: -0.041881617, y: -0.0026822116, z: -0.35092267, w: -0.054538302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: -0.020076225, y: 0.051989343, z: -0.16815498, w: 0.98418397} + inSlope: {x: -0.038109757, y: -0.0026822116, z: -0.3196302, w: -0.053644232} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.051921397, y: 0.011815625, z: -0.17424549, w: 0.9832615} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0.0002235174, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.0519214, y: 0.011815626, z: -0.17424552, w: 0.9832615} + inSlope: {x: -0.012461095, y: -0.0016624107, z: -0.12762845, w: -0.02145767} + outSlope: {x: -0.0125169745, y: -0.0016624107, z: -0.12762845, w: -0.02324581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.05025056, y: 0.011587404, z: -0.19125006, w: 0.9801857} + inSlope: {x: -0.026822088, y: -0.003869645, z: -0.35360453, w: -0.067949295} + outSlope: {x: -0.026877971, y: -0.0038836154, z: -0.35427514, w: -0.0679493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.048350673, y: 0.011272088, z: -0.22136548, w: 0.9739263} + inSlope: {x: -0.07180498, y: -0.007222407, z: -0.2384931, w: -0.050961975} + outSlope: {x: -0.071860835, y: -0.0072084353, z: -0.238046, w: -0.050961964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.04069961, y: 0.010578419, z: -0.2230951, w: 0.97388923} + inSlope: {x: -0.15266237, y: -0.013425013, z: 0.17501411, w: 0.047385685} + outSlope: {x: -0.15283005, y: -0.0134529555, z: 0.17613174, w: 0.046491627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.027965747, y: 0.009559741, z: -0.197854, w: 0.97978586} + inSlope: {x: -0.20728448, y: -0.018607827, z: 0.42289498, w: 0.091195114} + outSlope: {x: -0.20728448, y: -0.018607827, z: 0.42267147, w: 0.09208918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.013051247, y: 0.008365666, z: -0.16662766, w: 0.98589796} + inSlope: {x: -0.23555943, y: -0.021639282, z: 0.5038083, w: 0.086724766} + outSlope: {x: -0.23558737, y: -0.021611342, z: 0.5033613, w: 0.088512905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0034651437, y: 0.0070377197, z: -0.13067852, w: 0.99139374} + inSlope: {x: -0.254974, y: -0.023846516, z: 0.5650521, w: 0.07331372} + outSlope: {x: -0.2550228, y: -0.02385349, z: 0.5641577, w: 0.07331368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.020991735, y: 0.0056194915, z: -0.09133089, w: 0.9955835} + inSlope: {x: -0.2655386, y: -0.02522952, z: 0.6056202, w: 0.050067883} + outSlope: {x: -0.26537108, y: -0.02520159, z: 0.6052852, w: 0.050067905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.03892842, y: 0.0041567637, z: -0.049968485, w: 0.9979832} + inSlope: {x: -0.26682395, y: -0.025648626, z: 0.62467533, w: 0.022351744} + outSlope: {x: -0.2669357, y: -0.025690535, z: 0.62545764, w: 0.020563604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.056675676, y: 0.002697062, z: -0.008018695, w: 0.9983568} + inSlope: {x: -0.2596155, y: -0.025159681, z: 0.6236276, w: -0.009834767} + outSlope: {x: -0.2593361, y: -0.025152696, z: 0.62305486, w: -0.009834767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.0736458, y: 0.0012888896, z: 0.033072077, w: 0.9967351} + inSlope: {x: -0.24341048, y: -0.023677131, z: 0.59941787, w: -0.038445} + outSlope: {x: -0.243634, y: -0.023712056, z: 0.5999208, w: -0.03755093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.089273825, y: -0.000019244384, z: 0.07186548, w: 0.99341094} + inSlope: {x: -0.21938236, y: -0.021345915, z: 0.5547703, w: -0.06079674} + outSlope: {x: -0.21938236, y: -0.02129702, z: 0.55465853, w: -0.057220463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.10302551, y: -0.0011796253, z: 0.10695474, w: 0.98891103} + inSlope: {x: -0.18730761, y: -0.018146822, z: 0.48849735, w: -0.07331372} + outSlope: {x: -0.18764289, y: -0.018090943, z: 0.48905614, w: -0.07152558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.114400156, y: -0.002146002, z: 0.13697906, w: 0.9839435} + inSlope: {x: -0.14875086, y: -0.014109538, z: 0.40322545, w: -0.07241965} + outSlope: {x: -0.14841558, y: -0.014137478, z: 0.40233138, w: -0.07331372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.12292661, y: -0.002873797, z: 0.16062436, w: 0.9793266} + inSlope: {x: -0.1025945, y: -0.009555371, z: 0.29683116, w: -0.06169081} + outSlope: {x: -0.102706164, y: -0.009471543, z: 0.29727793, w: -0.062584825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.12815242, y: -0.0033198092, z: 0.17660928, w: 0.975897} + inSlope: {x: -0.05006786, y: -0.004442405, z: 0.1725553, w: -0.038444962} + outSlope: {x: -0.049844433, y: -0.004498292, z: 0.1723321, w: -0.037550963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.12962608, y: -0.0034416858, z: 0.18365686, w: 0.97440004} + inSlope: {x: 0.017210858, y: 0.0016205028, z: 0.015869752, w: -0.00089407054} + outSlope: {x: 0.017657861, y: 0.0016204999, z: 0.016093241, w: -0.0017881378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.12584141, y: -0.003105959, z: 0.17873475, w: 0.9758116} + inSlope: {x: 0.100582756, y: 0.008409835, z: -0.16987309, w: 0.044703446} + outSlope: {x: 0.10125349, y: 0.008409851, z: -0.17032044, w: 0.042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.11617268, y: -0.0022594426, z: 0.16096927, w: 0.98009574} + inSlope: {x: 0.1812728, y: 0.014305129, z: -0.34421715, w: 0.077784136} + outSlope: {x: 0.18160775, y: 0.014305103, z: -0.34488708, w: 0.076889925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.10168644, y: -0.0010009799, z: 0.13269909, w: 0.98592585} + inSlope: {x: 0.24799237, y: 0.01857987, z: -0.4877146, w: 0.09119503} + outSlope: {x: 0.24799281, y: 0.018510053, z: -0.487939, w: 0.092089266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.08315236, y: 0.00059516076, z: 0.09572402, w: 0.9919286} + inSlope: {x: 0.2998489, y: 0.021471662, z: -0.5983567, w: 0.08314856} + outSlope: {x: 0.29996014, y: 0.021443684, z: -0.5984674, w: 0.08314841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.061783895, y: 0.0024173395, z: 0.05272067, w: 0.99669325} + inSlope: {x: 0.33667284, y: 0.023315642, z: -0.6754132, w: 0.05632634} + outSlope: {x: 0.3372881, y: 0.0233541, z: -0.6767555, w: 0.057220515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.0383619, y: 0.0043933475, z: 0.005484506, w: 0.99923927} + inSlope: {x: 0.3570694, y: 0.024139903, z: -0.71700263, w: 0.018775482} + outSlope: {x: 0.35768345, y: 0.0241678, z: -0.71820974, w: 0.016093241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.0142714605, y: 0.006403312, z: -0.043001693, w: 0.9989525} + inSlope: {x: 0.36063108, y: 0.024035087, z: -0.7225753, w: -0.026822068} + outSlope: {x: 0.360506, y: 0.02403513, z: -0.72229725, w: -0.025033975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6666666 + value: {x: 0.009655599, y: 0.00837782, z: -0.09090397, w: 0.9957776} + inSlope: {x: 0.35870388, y: 0.02360905, z: -0.7160387, w: -0.06884343} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21/Bone22 + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.0096747875, y: -0.6577143, z: 0.435883} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.008748472, y: 0.33772007, z: 0.65171546} + inSlope: {x: 0, y: -0.006865284, z: 0} + outSlope: {x: 0, y: -0.006865284, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.008748472, y: 0.3372669, z: 0.65171546} + inSlope: {x: -0.000000007054456, y: 0.015692947, z: 0.0000009029704} + outSlope: {x: -0.000000007054456, y: 0.015692947, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.008748473, y: 0.33979183, z: 0.6517156} + inSlope: {x: 0, y: 0.07236834, z: 0} + outSlope: {x: 0, y: 0.07236834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: -0.008748472, y: 0.3468209, z: 0.65171546} + inSlope: {x: 0, y: 0.13440083, z: 0} + outSlope: {x: 0, y: 0.13440083, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: -0.008748473, y: 0.3575353, z: 0.6517156} + inSlope: {x: -0.000000014108912, y: 0.18403079, z: 0.0000009029704} + outSlope: {x: -0.000000014108912, y: 0.18403079, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: -0.008748474, y: 0.37111646, z: 0.6517156} + inSlope: {x: 0.000000014108913, y: 0.22125778, z: -0.0000018059408} + outSlope: {x: 0.000000014108913, y: 0.22125778, z: -0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.008748471, y: 0.38674554, z: 0.65171534} + inSlope: {x: 0.0000000070544575, y: 0.24608336, z: 0} + outSlope: {x: 0.0000000070544575, y: 0.24608336, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.008748473, y: 0.40360415, z: 0.6517156} + inSlope: {x: -0.000000007054456, y: 0.2585069, z: 0.0000018059408} + outSlope: {x: -0.000000007054456, y: 0.2585069, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.008748472, y: 0.42087337, z: 0.6517156} + inSlope: {x: 0.000000007054456, y: 0.25852674, z: -0.0000009029704} + outSlope: {x: 0.000000007054456, y: 0.25852674, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.008748472, y: 0.4377346, z: 0.65171546} + inSlope: {x: 0, y: 0.24614453, z: -0.0000009029704} + outSlope: {x: 0, y: 0.24614453, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: -0.008748472, y: 0.45336914, z: 0.65171546} + inSlope: {x: 0, y: 0.22135982, z: 0} + outSlope: {x: 0, y: 0.22135982, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.008748472, y: 0.4669583, z: 0.65171546} + inSlope: {x: 0, y: 0.18417278, z: 0.0000009029704} + outSlope: {x: 0, y: 0.18417278, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.008748472, y: 0.47768345, z: 0.6517156} + inSlope: {x: 0, y: 0.13458322, z: 0} + outSlope: {x: 0, y: 0.13458322, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.008748472, y: 0.48472586, z: 0.65171546} + inSlope: {x: 0, y: 0.07259137, z: -0.0000009029704} + outSlope: {x: 0, y: 0.07259137, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: -0.008748472, y: 0.4872669, z: 0.65171546} + inSlope: {x: -0.000000007054456, y: 0.00028308108, z: 0.0000009029704} + outSlope: {x: -0.000000007054456, y: 0.00028308108, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.008748473, y: 0.48476323, z: 0.6517156} + inSlope: {x: 0, y: -0.07199428, z: 0} + outSlope: {x: 0, y: -0.07199428, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.008748472, y: 0.47776228, z: 0.65171546} + inSlope: {x: 0, y: -0.1339333, z: 0} + outSlope: {x: 0, y: -0.1339333, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.008748471, y: 0.45358413, z: 0.65171534} + inSlope: {x: 0.000000014108912, y: -0.22066069, z: -0.0000018059408} + outSlope: {x: 0.000000014108912, y: -0.22066069, z: -0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.008748471, y: 0.43795007, z: 0.65171534} + inSlope: {x: 0, y: -0.24538943, z: 0} + outSlope: {x: 0, y: -0.24538943, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: -0.008748471, y: 0.42118806, z: 0.65171534} + inSlope: {x: -0.000000007054456, y: -0.25785154, z: 0.0000018059408} + outSlope: {x: -0.000000007054456, y: -0.25785154, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: -0.008748472, y: 0.40390876, z: 0.6517156} + inSlope: {x: -0.000000007054456, y: -0.25789106, z: 0} + outSlope: {x: -0.000000007054456, y: -0.25789106, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.008748472, y: 0.38714153, z: 0.65171534} + inSlope: {x: 0, y: -0.2455084, z: -0.0000009029704} + outSlope: {x: 0, y: -0.2455084, z: -0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.008748472, y: 0.37149698, z: 0.65171546} + inSlope: {x: 0.000000007054456, y: -0.22085822, z: 0.0000009029704} + outSlope: {x: 0.000000007054456, y: -0.22085822, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: -0.008748471, y: 0.35798404, z: 0.65171546} + inSlope: {x: 0, y: -0.18363056, z: 0.0000009029704} + outSlope: {x: 0, y: -0.18363056, z: 0.0000009029704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: -0.008748472, y: 0.34725425, z: 0.6517156} + inSlope: {x: -0.000000014108912, y: -0.16254912, z: 0.0000018059408} + outSlope: {x: -0.000000014108912, y: -0.16254912, z: 0.0000018059408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03779651, y: -0.00000019301805, z: 0.08896949} + inSlope: {x: -0.0000002257426, y: -0.000000020051637, z: -0.0000004514852} + outSlope: {x: -0.0000002257426, y: -0.000000020051637, z: -0.0000004514852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.037796494, y: -0.00000019434165, z: 0.08896946} + inSlope: {x: -0.0000001128713, y: -0.000000010025818, z: -0.0000002257426} + outSlope: {x: -0.0000001128713, y: -0.000000010025818, z: -0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.037796494, y: -0.00000019434165, z: 0.08896946} + inSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + outSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.0377965, y: -0.00000019368646, z: 0.08896948} + inSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + outSlope: {x: 0.00000005643565, y: 0.0000000049628555, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.0377965, y: -0.00000019368646, z: 0.08896948} + inSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + outSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.037796505, y: -0.00000019701218, z: 0.08896947} + inSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + outSlope: {x: 0.000000028217825, y: -0.000000025191243, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.037796505, y: -0.00000019701218, z: 0.08896947} + inSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + outSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.037796468, y: -0.0000001941296, z: 0.0889695} + inSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + outSlope: {x: -0.00000028217826, y: 0.000000021834627, z: 0.0000002257426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.037796468, y: -0.0000001941296, z: 0.0889695} + inSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + outSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.037796486, y: -0.00000019338897, z: 0.08896948} + inSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + outSlope: {x: 0.00000014108913, y: 0.0000000056100022, z: -0.00000016930696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.037796486, y: -0.00000019338897, z: 0.08896948} + inSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + outSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.037796486, y: -0.00000019040966, z: 0.08896947} + inSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + outSlope: {x: 0, y: 0.000000022567242, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.037796486, y: -0.00000019040966, z: 0.08896947} + inSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + outSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + outSlope: {x: 0.00000008465348, y: -0.000000013976727, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.037796497, y: -0.00000019225486, z: 0.08896947} + inSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000042069257, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: -0.00000005212834, z: 0} + outSlope: {x: 0, y: -0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: -0.00000005212834, z: 0} + outSlope: {x: 0, y: -0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.037796486, y: -0.0000001978088, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0, y: 0.00000005212834, z: 0} + outSlope: {x: 0, y: 0.00000005212834, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.037796486, y: -0.00000019092687, z: 0.08896946} + inSlope: {x: 0.00000042326738, y: -0.000000005873403, z: 0.00000005643565} + outSlope: {x: 0.00000042326738, y: -0.000000005873403, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.037796542, y: -0.00000019170227, z: 0.08896947} + inSlope: {x: 0.00000084653476, y: -0.000000011746806, z: 0.0000001128713} + outSlope: {x: 0.00000084653476, y: -0.000000011746806, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16918491, y: -2.990317e-10, z: 0.000000036659337} + inSlope: {x: -0.0000002257426, y: -0.000000093030586, z: -0.0000011940916} + outSlope: {x: -0.0000002257426, y: -0.000000093030586, z: -0.0000011940916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.1691849, y: -0.0000000064399366, z: -0.000000042162082} + inSlope: {x: -0.0000001128713, y: -0.000000046515293, z: -0.0000005970458} + outSlope: {x: -0.0000001128713, y: -0.000000046515293, z: -0.0000005970458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.1691849, y: -0.0000000064399366, z: -0.000000042162082} + inSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + outSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.16918491, y: 9.344068e-10, z: 0.00000002460617} + inSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + outSlope: {x: 0.0000001128713, y: 0.00000005585818, z: 0.00000050574715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.16918491, y: 9.344068e-10, z: 0.00000002460617} + inSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + outSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.16918491, y: -2.7425895e-10, z: 0.000000037284284} + inSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + outSlope: {x: 0, y: -0.0000000091552375, z: 0.000000096032466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.16918491, y: -2.7425895e-10, z: 0.000000037284284} + inSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + outSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.16918495, y: 0.0000000034814576, z: 0.0000000066248242} + inSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + outSlope: {x: 0.00000033861392, y: 0.000000028448294, z: -0.00000023223514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.16918495, y: 0.0000000034814576, z: 0.0000000066248242} + inSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + outSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.16918491, y: -0.000000002510999, z: 0.0000000056680443} + inSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + outSlope: {x: -0.00000033861392, y: -0.00000004539085, z: -0.0000000072472877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.16918491, y: -0.000000002510999, z: 0.0000000056680443} + inSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + outSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.1691849, y: 9.884902e-10, z: 0.000000005242545} + inSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + outSlope: {x: -0.0000001128713, y: 0.000000026507458, z: -0.0000000032230139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.1691849, y: 9.884902e-10, z: 0.000000005242545} + inSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + outSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + outSlope: {x: 0.0000001128713, y: -0.00000002137814, z: 0.00000011645881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.16918491, y: -0.0000000018338313, z: 0.000000020617327} + inSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + outSlope: {x: 0, y: -0.00000007469792, z: -0.00000013484879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + outSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + outSlope: {x: 0, y: -0.000000002161972, z: -0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.16918491, y: -0.00000001169538, z: 0.0000000028147193} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + outSlope: {x: 0, y: 0.000000002161972, z: 0.00000009534751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.16918491, y: -0.000000011409958, z: 0.000000015402406} + inSlope: {x: 0, y: 0.0000000714401, z: -0.000000027345996} + outSlope: {x: 0, y: 0.0000000714401, z: -0.000000027345996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.16918491, y: -0.0000000019785045, z: 0.000000011792214} + inSlope: {x: 0, y: 0.0000001428802, z: -0.00000005469199} + outSlope: {x: 0, y: 0.0000001428802, z: -0.00000005469199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16660501, y: -0.0000000012261461, z: 0.0000000034901215} + inSlope: {x: 0, y: -0.0000000596757, z: -0.00000075608915} + outSlope: {x: 0, y: -0.0000000596757, z: -0.00000075608915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.16660501, y: -0.000000005165311, z: -0.00000004641896} + inSlope: {x: 0, y: -0.00000002983785, z: -0.00000037804458} + outSlope: {x: 0, y: -0.00000002983785, z: -0.00000037804458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.16660501, y: -0.000000005165311, z: -0.00000004641896} + inSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + outSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.16660503, y: 0.0000000034442624, z: 0.000000008398947} + inSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + outSlope: {x: 0.0000001128713, y: 0.000000065214635, z: 0.0000004152273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.16660503, y: 0.0000000034442624, z: 0.000000008398947} + inSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + outSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.16660501, y: 0.0000000033272507, z: -0.0000000022970028} + inSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + outSlope: {x: -0.0000001128713, y: -8.863247e-10, z: -0.000000081018236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.16660501, y: 0.0000000033272507, z: -0.0000000022970028} + inSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + outSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.16660503, y: 0.000000010056783, z: 0.000000023844498} + inSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + outSlope: {x: 0.0000001128713, y: 0.000000050973952, z: 0.00000019801311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.16660503, y: 0.000000010056783, z: 0.000000023844498} + inSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + outSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.16660503, y: -6.768852e-10, z: 3.2232889e-10} + inSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + outSlope: {x: 0, y: -0.00000008130394, z: -0.00000017817254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.16660503, y: -6.768852e-10, z: 3.2232889e-10} + inSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + outSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.16660501, y: 0.0000000011205037, z: -0.000000007300324} + inSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + outSlope: {x: -0.0000001128713, y: 0.000000013614619, z: -0.00000005773904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.16660501, y: 0.0000000011205037, z: -0.000000007300324} + inSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + outSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.166605, y: -2.0020985e-10, z: 0.00000002334521} + inSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + outSlope: {x: -0.0000001128713, y: -0.000000010003962, z: 0.00000023212965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.166605, y: -2.0020985e-10, z: 0.00000002334521} + inSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + outSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.16660501, y: -3.1732195e-10, z: -0.000000008699833} + inSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + outSlope: {x: 0.0000001128713, y: -8.870849e-10, z: -0.00000024273047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.16660501, y: -3.1732195e-10, z: -0.000000008699833} + inSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + outSlope: {x: -0.0000002257426, y: -0.00000010653501, z: 0.000000003791618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + outSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + outSlope: {x: -0.0000001128713, y: -0.000000040859533, z: -0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.16660498, y: -0.000000014381972, z: -0.000000008199267} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + outSlope: {x: 0.0000001128713, y: 0.000000040859533, z: 0.00000015293625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.166605, y: -0.000000008987736, z: 0.00000001199123} + inSlope: {x: 0, y: 0.00000007599632, z: 0.00000008279898} + outSlope: {x: 0, y: 0.00000007599632, z: 0.00000008279898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.166605, y: 0.0000000010452248, z: 0.000000022922272} + inSlope: {x: 0, y: 0.00000015199264, z: 0.00000016559795} + outSlope: {x: 0, y: 0.00000015199264, z: 0.00000016559795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.1420546, y: 0.00000010304158, z: 0.00000017860373} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.1420546, y: 0.00000010304158, z: 0.00000017860373} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.0356122, y: -0.009224207, z: 0.7847072} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.0356122, y: -0.009224207, z: 0.7847072} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.9198914, y: 0.0000000056464766, z: 0.000000048295984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.9198914, y: 0.0000000056464766, z: 0.000000048295984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.8174602, y: 0.00000007313465, z: 0.00000000983755} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.8174602, y: 0.00000007313465, z: 0.00000000983755} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.0736117, y: -0.009224207, z: -0.7910624} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.0736117, y: -0.009224207, z: -0.7910624} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.848197, y: -0.0000000114241, z: -0.000000029501352} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.848197, y: -0.0000000114241, z: -0.000000029501352} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.81657094, y: -0.000000010017325, z: -0.000000031725655} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.81657094, y: -0.000000010017325, z: -0.000000031725655} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.5820273, y: -0.008281411, z: -0.33933067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.5820273, y: -0.008281411, z: -0.33933067} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.71559757, y: -0.0000000055035088, z: 0.0000000029377336} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.71559757, y: -0.0000000055035088, z: 0.0000000029377336} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone25/Bone26 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.60945666, y: -0.008281411, z: 0.32652536} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.60945666, y: -0.008281411, z: 0.32652536} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.5980861, y: 0.000000010154258, z: 0.00000000444109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.5980861, y: 0.000000010154258, z: 0.00000000444109} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone08/Bone23/Bone24 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: -0.007700801, y: 0, z: 0.002247423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.007700801, y: 0, z: 0.002247423} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone18 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.038948793, y: 0.00000032088323, z: -0.09688048} + inSlope: {x: -0.00000033861392, y: 0.0000000068602692, z: 0.0000001128713} + outSlope: {x: -0.00000033861392, y: 0.0000000068602692, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.03894877, y: 0.00000032133607, z: -0.09688047} + inSlope: {x: -0.00000016930696, y: 0.0000000034301346, z: 0.00000005643565} + outSlope: {x: -0.00000016930696, y: 0.0000000034301346, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.03894877, y: 0.00000032133607, z: -0.09688047} + inSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + outSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.038948786, y: 0.00000032434772, z: -0.09688052} + inSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + outSlope: {x: 0.0000001128713, y: 0.000000022812236, z: -0.00000033861392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.038948786, y: 0.00000032434772, z: -0.09688052} + inSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + outSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.03894878, y: 0.00000032601105, z: -0.0968805} + inSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + outSlope: {x: -0.000000028217825, y: 0.000000012599119, z: 0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.03894878, y: 0.00000032601105, z: -0.0968805} + inSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + outSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.038948763, y: 0.00000032301605, z: -0.09688051} + inSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + outSlope: {x: -0.00000014108913, y: -0.000000022686079, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.038948763, y: 0.00000032301605, z: -0.09688051} + inSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + outSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.03894876, y: 0.00000032321802, z: -0.09688052} + inSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + outSlope: {x: -0.000000028217825, y: 0.0000000015298146, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.03894876, y: 0.00000032321802, z: -0.09688052} + inSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + outSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.03894874, y: 0.00000032582955, z: -0.09688052} + inSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + outSlope: {x: -0.00000014108913, y: 0.000000019781455, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.03894874, y: 0.00000032582955, z: -0.09688052} + inSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + outSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + outSlope: {x: 0.00000028217826, y: 6.525286e-10, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.038948778, y: 0.0000003259157, z: -0.09688052} + inSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + outSlope: {x: -0.00000008465348, y: -0.000000037801666, z: 0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + outSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + outSlope: {x: -0.00000005643565, y: -0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.038948767, y: 0.00000032092515, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + outSlope: {x: 0.00000005643565, y: 0.0000000590772, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.038948774, y: 0.00000032872447, z: -0.09688051} + inSlope: {x: 0.00000025396042, y: 0.0000000025171114, z: -0.00000005643565} + outSlope: {x: 0.00000025396042, y: 0.0000000025171114, z: -0.00000005643565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.038948808, y: 0.00000032905677, z: -0.09688052} + inSlope: {x: 0.00000050792084, y: 0.000000005034223, z: -0.0000001128713} + outSlope: {x: 0.00000050792084, y: 0.000000005034223, z: -0.0000001128713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14589126, y: -0.000000007190708, z: 0.000000029976878} + inSlope: {x: 0.0000002257426, y: -0.00000000375136, z: 0.00000039181813} + outSlope: {x: 0.0000002257426, y: -0.00000000375136, z: 0.00000039181813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.14589128, y: -0.0000000074383335, z: 0.000000055840605} + inSlope: {x: 0.0000001128713, y: -0.00000000187568, z: 0.00000019590907} + outSlope: {x: 0.0000001128713, y: -0.00000000187568, z: 0.00000019590907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.14589128, y: -0.0000000074383335, z: 0.000000055840605} + inSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + outSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.14589135, y: 0.000000014384659, z: 0.000000008330403} + inSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + outSlope: {x: 0.0000005643565, y: 0.00000016530184, z: -0.00000035987387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.14589135, y: 0.000000014384659, z: 0.000000008330403} + inSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + outSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.14589126, y: -0.000000007771782, z: 0.000000021444642} + inSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + outSlope: {x: -0.00000067722783, y: -0.00000016782762, z: 0.00000009933596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.14589126, y: -0.000000007771782, z: 0.000000021444642} + inSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + outSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.14589131, y: 0.0000000043922364, z: 0.000000034121623} + inSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + outSlope: {x: 0.00000033861392, y: 0.000000092138364, z: 0.00000009602388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.14589131, y: 0.0000000043922364, z: 0.000000034121623} + inSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + outSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.14589134, y: 0.000000002795229, z: 0.000000013440285} + inSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + outSlope: {x: 0.0000002257426, y: -0.000000012096796, z: -0.0000001566542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.14589134, y: 0.000000002795229, z: 0.000000013440285} + inSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + outSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.14589131, y: 0.00000000700612, z: 0.0000000036485783} + inSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + outSlope: {x: -0.0000002257426, y: 0.00000003189609, z: -0.000000074168895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.14589131, y: 0.00000000700612, z: 0.0000000036485783} + inSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + outSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.1458913, y: -1.8919921e-10, z: 0.000000024775892} + inSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + outSlope: {x: -0.0000001128713, y: -0.000000054502134, z: 0.00000016003231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.1458913, y: -1.8919921e-10, z: 0.000000024775892} + inSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + outSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.14589128, y: -0.0000000017147164, z: 0.000000024109484} + inSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + outSlope: {x: -0.0000001128713, y: -0.000000011555281, z: -0.0000000050478124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.14589128, y: -0.0000000017147164, z: 0.000000024109484} + inSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + outSlope: {x: -0.0000001128713, y: -0.00000004158648, z: -0.000000116424594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + outSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + outSlope: {x: 0, y: -0.00000003625324, z: 0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.14589126, y: -0.0000000072049233, z: 0.000000008739221} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + outSlope: {x: 0, y: 0.00000003625324, z: -0.000000002822715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.14589126, y: -0.0000000024188054, z: 0.000000008366569} + inSlope: {x: 0.0000002257426, y: -0.000000024595987, z: 0.000000019211516} + outSlope: {x: 0.0000002257426, y: -0.000000024595987, z: 0.000000019211516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.1458913, y: -0.000000005665944, z: 0.000000010902855} + inSlope: {x: 0.0000004514852, y: -0.000000049191975, z: 0.000000038423032} + outSlope: {x: 0.0000004514852, y: -0.000000049191975, z: 0.000000038423032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone02/Bone04 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.35067046, y: -0.009224206, z: -0.34308544} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.35067046, y: -0.009224206, z: -0.34308544} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15576063, y: -0.000000011369518, z: -0.0000007896083} + inSlope: {x: -0.0000004514852, y: -0.000000080905785, z: -0.00000062071723} + outSlope: {x: -0.0000004514852, y: -0.000000080905785, z: -0.00000062071723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.1557606, y: -0.00000001671007, z: -0.00000083058154} + inSlope: {x: -0.0000002257426, y: -0.000000040452893, z: -0.00000031035862} + outSlope: {x: -0.0000002257426, y: -0.000000040452893, z: -0.00000031035862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.1557606, y: -0.00000001671007, z: -0.00000083058154} + inSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + outSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.2 + value: {x: 0.15576062, y: -0.000000023647786, z: -0.00000080964116} + inSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + outSlope: {x: 0.0000001128713, y: -0.000000052550874, z: 0.00000015861633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.26666668 + value: {x: 0.15576062, y: -0.000000023647786, z: -0.00000080964116} + inSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + outSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.33333334 + value: {x: 0.15576062, y: -0.0000000030251048, z: -0.00000079052694} + inSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + outSlope: {x: 0, y: 0.0000001562099, z: 0.00000014478384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.15576062, y: -0.0000000030251048, z: -0.00000079052694} + inSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + outSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.15576059, y: -0.000000011294975, z: -0.00000080704217} + inSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + outSlope: {x: -0.0000002257426, y: -0.0000000626415, z: -0.00000012509733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.15576059, y: -0.000000011294975, z: -0.00000080704217} + inSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + outSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.1557606, y: -0.0000000032033916, z: -0.0000008074531} + inSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + outSlope: {x: 0.0000001128713, y: 0.00000006129103, z: -0.0000000031125895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6666667 + value: {x: 0.1557606, y: -0.0000000032033916, z: -0.0000008074531} + inSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + outSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.15576057, y: -0.00000000704767, z: -0.00000080216506} + inSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + outSlope: {x: -0.0000002257426, y: -0.000000029119123, z: 0.000000040055053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.15576057, y: -0.00000000704767, z: -0.00000080216506} + inSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + outSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.15576059, y: -0.0000000090004715, z: -0.0000008069034} + inSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + outSlope: {x: 0.0000001128713, y: -0.000000014791817, z: -0.000000035891443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.93333334 + value: {x: 0.15576059, y: -0.0000000090004715, z: -0.0000008069034} + inSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + outSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.15576059, y: -0.000000009914647, z: -0.00000080430556} + inSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + outSlope: {x: 0, y: -0.0000000069245725, z: 0.000000019677904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.15576059, y: -0.000000009914647, z: -0.00000080430556} + inSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + outSlope: {x: 0, y: -0.000000044169415, z: -0.000000028086932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2666667 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + outSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3333334 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + outSlope: {x: 0, y: -0.000000017932157, z: 0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.15576059, y: -0.00000001574585, z: -0.00000080801357} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + outSlope: {x: 0, y: 0.000000017932157, z: -0.000000025462178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.15576059, y: -0.000000013378465, z: -0.00000081137506} + inSlope: {x: 0.0000001128713, y: -0.00000004565608, z: 0.0000000036572603} + outSlope: {x: 0.0000001128713, y: -0.00000004565608, z: 0.0000000036572603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6 + value: {x: 0.1557606, y: -0.000000019405936, z: -0.00000081089223} + inSlope: {x: 0.0000002257426, y: -0.00000009131216, z: 0.0000000073145205} + outSlope: {x: 0.0000002257426, y: -0.00000009131216, z: 0.0000000073145205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone05/Bone03 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.93991613, y: -0.00828141, z: 0.2927984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.93991613, y: -0.00828141, z: 0.2927984} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.5424665, y: 0.0000000041311936, z: -0.00000019516179} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.5424665, y: 0.0000000041311936, z: -0.00000019516179} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.9270634, y: -0.000000022259227, z: 0.0000000018832567} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.9270634, y: -0.000000022259227, z: 0.0000000018832567} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone06/Bone07/Bone19 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.9249606, y: -0.00828141, z: -0.3052871} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.9249606, y: -0.00828141, z: -0.3052871} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 0.56906635, y: -0.000000016917367, z: 0.00000013908223} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 0.56906635, y: -0.000000016917367, z: 0.00000013908223} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: {x: 1.0189703, y: -0.000000026109577, z: -0.0000001175429} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: 1.0189703, y: -0.000000026109577, z: -0.0000001175429} + inSlope: {x: 0, y: 0, z: 0} + outSlope: {x: 0, y: 0, z: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Box01/Bone01/Bone20/Bone21/Bone22 + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 15 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 2635294239 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 45982632 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2635294239 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3989619677 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2037210983 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1596138282 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4035943581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2696752017 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3097169453 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 45982632 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 563648882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2919814325 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 360520411 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185137064 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2325826247 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1696067156 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3716967535 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3280538074 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3495831604 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3001957094 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 960335105 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2593083981 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2709536620 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2222384285 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3275979307 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1367437642 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3097169453 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 563648882 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2919814325 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 360520411 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 185137064 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2325826247 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1696067156 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3716967535 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3280538074 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 960335105 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2593083981 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3495831604 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3001957094 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2709536620 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1481566003 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3989619677 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3324670608 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2037210983 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1596138282 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 4035943581 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2696752017 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 2222384285 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 3275979307 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1367437642 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + - serializedVersion: 2 + path: 1395528768 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + isIntCurve: 0 + isSerializeReferenceCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.6666666 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0096747875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0096747875 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.6577143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.6577143 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.435883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.435883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.008748472 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.008748473 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.008748473 + inSlope: -0.000000014108912 + outSlope: -0.000000014108912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.008748474 + inSlope: 0.000000014108913 + outSlope: 0.000000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.008748471 + inSlope: 0.0000000070544575 + outSlope: 0.0000000070544575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.008748473 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.008748472 + inSlope: 0.000000007054456 + outSlope: 0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.008748472 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008748473 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.008748471 + inSlope: 0.000000014108912 + outSlope: 0.000000014108912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.008748471 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.008748471 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.008748472 + inSlope: -0.000000007054456 + outSlope: -0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.008748472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.008748472 + inSlope: 0.000000007054456 + outSlope: 0.000000007054456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.008748471 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.008748472 + inSlope: -0.000000014108912 + outSlope: -0.000000014108912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33772007 + inSlope: -0.006865284 + outSlope: -0.006865284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3372669 + inSlope: 0.015692947 + outSlope: 0.015692947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.33979183 + inSlope: 0.07236834 + outSlope: 0.07236834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.3468209 + inSlope: 0.13440083 + outSlope: 0.13440083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3575353 + inSlope: 0.18403079 + outSlope: 0.18403079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.37111646 + inSlope: 0.22125778 + outSlope: 0.22125778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.38674554 + inSlope: 0.24608336 + outSlope: 0.24608336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.40360415 + inSlope: 0.2585069 + outSlope: 0.2585069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.42087337 + inSlope: 0.25852674 + outSlope: 0.25852674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4377346 + inSlope: 0.24614453 + outSlope: 0.24614453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.45336914 + inSlope: 0.22135982 + outSlope: 0.22135982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4669583 + inSlope: 0.18417278 + outSlope: 0.18417278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.47768345 + inSlope: 0.13458322 + outSlope: 0.13458322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.48472586 + inSlope: 0.07259137 + outSlope: 0.07259137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.4872669 + inSlope: 0.00028308108 + outSlope: 0.00028308108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.48476323 + inSlope: -0.07199428 + outSlope: -0.07199428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.47776228 + inSlope: -0.1339333 + outSlope: -0.1339333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.45358413 + inSlope: -0.22066069 + outSlope: -0.22066069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.43795007 + inSlope: -0.24538943 + outSlope: -0.24538943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.42118806 + inSlope: -0.25785154 + outSlope: -0.25785154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.40390876 + inSlope: -0.25789106 + outSlope: -0.25789106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.38714153 + inSlope: -0.2455084 + outSlope: -0.2455084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.37149698 + inSlope: -0.22085822 + outSlope: -0.22085822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.35798404 + inSlope: -0.18363056 + outSlope: -0.18363056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.34725425 + inSlope: -0.16254912 + outSlope: -0.16254912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6517156 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6517156 + inSlope: -0.0000018059408 + outSlope: -0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.65171534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6517156 + inSlope: 0.0000018059408 + outSlope: 0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6517156 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.65171546 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.65171546 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.65171546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.65171534 + inSlope: -0.0000018059408 + outSlope: -0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.65171534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.65171534 + inSlope: 0.0000018059408 + outSlope: 0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6517156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.65171534 + inSlope: -0.0000009029704 + outSlope: -0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.65171546 + inSlope: 0.0000009029704 + outSlope: 0.0000009029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.6517156 + inSlope: 0.0000018059408 + outSlope: 0.0000018059408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03779651 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.037796494 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.037796494 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0377965 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0377965 + inSlope: 0.000000028217825 + outSlope: 0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.037796505 + inSlope: 0.000000028217825 + outSlope: 0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.037796505 + inSlope: -0.00000028217826 + outSlope: -0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.037796468 + inSlope: -0.00000028217826 + outSlope: -0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.037796468 + inSlope: 0.00000014108913 + outSlope: 0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.037796486 + inSlope: 0.00000014108913 + outSlope: 0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.037796486 + inSlope: 0.00000008465348 + outSlope: 0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.037796497 + inSlope: 0.00000008465348 + outSlope: 0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.037796497 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.037796497 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.037796497 + inSlope: -0.00000008465348 + outSlope: -0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.037796486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.037796486 + inSlope: 0.00000042326738 + outSlope: 0.00000042326738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.037796542 + inSlope: 0.00000084653476 + outSlope: 0.00000084653476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000019301805 + inSlope: -0.000000020051637 + outSlope: -0.000000020051637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000019434165 + inSlope: -0.000000010025818 + outSlope: -0.000000010025818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000019434165 + inSlope: 0.0000000049628555 + outSlope: 0.0000000049628555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00000019368646 + inSlope: 0.0000000049628555 + outSlope: 0.0000000049628555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000019368646 + inSlope: -0.000000025191243 + outSlope: -0.000000025191243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000019701218 + inSlope: -0.000000025191243 + outSlope: -0.000000025191243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00000019701218 + inSlope: 0.000000021834627 + outSlope: 0.000000021834627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0000001941296 + inSlope: 0.000000021834627 + outSlope: 0.000000021834627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000001941296 + inSlope: 0.0000000056100022 + outSlope: 0.0000000056100022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000019338897 + inSlope: 0.0000000056100022 + outSlope: 0.0000000056100022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000019338897 + inSlope: 0.000000022567242 + outSlope: 0.000000022567242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000019040966 + inSlope: 0.000000022567242 + outSlope: 0.000000022567242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000019040966 + inSlope: -0.000000013976727 + outSlope: -0.000000013976727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00000019225486 + inSlope: -0.000000013976727 + outSlope: -0.000000013976727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00000019225486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000019225486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00000019225486 + inSlope: -0.000000042069257 + outSlope: -0.000000042069257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000001978088 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00000019092687 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00000019092687 + inSlope: -0.00000005212834 + outSlope: -0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0000001978088 + inSlope: -0.00000005212834 + outSlope: -0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0000001978088 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00000019092687 + inSlope: 0.00000005212834 + outSlope: 0.00000005212834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00000019092687 + inSlope: -0.000000005873403 + outSlope: -0.000000005873403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000019170227 + inSlope: -0.000000011746806 + outSlope: -0.000000011746806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08896949 + inSlope: -0.0000004514852 + outSlope: -0.0000004514852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08896946 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08896946 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08896948 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08896948 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08896947 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.08896947 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0889695 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0889695 + inSlope: -0.00000016930696 + outSlope: -0.00000016930696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08896948 + inSlope: -0.00000016930696 + outSlope: -0.00000016930696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08896948 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08896947 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.08896947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.08896947 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.08896946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.08896946 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.08896947 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16918491 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1691849 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1691849 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.16918491 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.16918491 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.16918495 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16918495 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.16918491 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16918491 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1691849 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.1691849 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.16918491 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.16918491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.990317e-10 + inSlope: -0.000000093030586 + outSlope: -0.000000093030586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000064399366 + inSlope: -0.000000046515293 + outSlope: -0.000000046515293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000000064399366 + inSlope: 0.00000005585818 + outSlope: 0.00000005585818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 9.344068e-10 + inSlope: 0.00000005585818 + outSlope: 0.00000005585818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 9.344068e-10 + inSlope: -0.0000000091552375 + outSlope: -0.0000000091552375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.7425895e-10 + inSlope: -0.0000000091552375 + outSlope: -0.0000000091552375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -2.7425895e-10 + inSlope: 0.000000028448294 + outSlope: 0.000000028448294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000000034814576 + inSlope: 0.000000028448294 + outSlope: 0.000000028448294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000000034814576 + inSlope: -0.00000004539085 + outSlope: -0.00000004539085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000000002510999 + inSlope: -0.00000004539085 + outSlope: -0.00000004539085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000000002510999 + inSlope: 0.000000026507458 + outSlope: 0.000000026507458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 9.884902e-10 + inSlope: 0.000000026507458 + outSlope: 0.000000026507458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.884902e-10 + inSlope: -0.00000002137814 + outSlope: -0.00000002137814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000000018338313 + inSlope: -0.00000002137814 + outSlope: -0.00000002137814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000000018338313 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000018338313 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000000018338313 + inSlope: -0.00000007469792 + outSlope: -0.00000007469792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000001169538 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000011409958 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000000011409958 + inSlope: -0.000000002161972 + outSlope: -0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000001169538 + inSlope: -0.000000002161972 + outSlope: -0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000001169538 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000011409958 + inSlope: 0.000000002161972 + outSlope: 0.000000002161972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.000000011409958 + inSlope: 0.0000000714401 + outSlope: 0.0000000714401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0000000019785045 + inSlope: 0.0000001428802 + outSlope: 0.0000001428802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000036659337 + inSlope: -0.0000011940916 + outSlope: -0.0000011940916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000042162082 + inSlope: -0.0000005970458 + outSlope: -0.0000005970458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000042162082 + inSlope: 0.00000050574715 + outSlope: 0.00000050574715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00000002460617 + inSlope: 0.00000050574715 + outSlope: 0.00000050574715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000002460617 + inSlope: 0.000000096032466 + outSlope: 0.000000096032466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000000037284284 + inSlope: 0.000000096032466 + outSlope: 0.000000096032466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.000000037284284 + inSlope: -0.00000023223514 + outSlope: -0.00000023223514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000000066248242 + inSlope: -0.00000023223514 + outSlope: -0.00000023223514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000000066248242 + inSlope: -0.0000000072472877 + outSlope: -0.0000000072472877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000000056680443 + inSlope: -0.0000000072472877 + outSlope: -0.0000000072472877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000000056680443 + inSlope: -0.0000000032230139 + outSlope: -0.0000000032230139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.000000005242545 + inSlope: -0.0000000032230139 + outSlope: -0.0000000032230139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.000000005242545 + inSlope: 0.00000011645881 + outSlope: 0.00000011645881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000000020617327 + inSlope: 0.00000011645881 + outSlope: 0.00000011645881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000000020617327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000020617327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000000020617327 + inSlope: -0.00000013484879 + outSlope: -0.00000013484879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000000028147193 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000000015402406 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000000015402406 + inSlope: -0.00000009534751 + outSlope: -0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000000028147193 + inSlope: -0.00000009534751 + outSlope: -0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0000000028147193 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000000015402406 + inSlope: 0.00000009534751 + outSlope: 0.00000009534751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.000000015402406 + inSlope: -0.000000027345996 + outSlope: -0.000000027345996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000011792214 + inSlope: -0.00000005469199 + outSlope: -0.00000005469199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16660501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.16660501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16660501 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.16660503 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16660503 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16660501 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.16660501 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.16660503 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16660503 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.16660503 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16660503 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16660501 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.16660501 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.166605 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.166605 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16660501 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.16660501 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.16660498 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.166605 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.166605 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.16660498 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.16660498 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.166605 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.166605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.166605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000012261461 + inSlope: -0.0000000596757 + outSlope: -0.0000000596757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000005165311 + inSlope: -0.00000002983785 + outSlope: -0.00000002983785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000005165311 + inSlope: 0.000000065214635 + outSlope: 0.000000065214635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0000000034442624 + inSlope: 0.000000065214635 + outSlope: 0.000000065214635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000000034442624 + inSlope: -8.863247e-10 + outSlope: -8.863247e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000000033272507 + inSlope: -8.863247e-10 + outSlope: -8.863247e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000000033272507 + inSlope: 0.000000050973952 + outSlope: 0.000000050973952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000000010056783 + inSlope: 0.000000050973952 + outSlope: 0.000000050973952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000000010056783 + inSlope: -0.00000008130394 + outSlope: -0.00000008130394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -6.768852e-10 + inSlope: -0.00000008130394 + outSlope: -0.00000008130394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.768852e-10 + inSlope: 0.000000013614619 + outSlope: 0.000000013614619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000000011205037 + inSlope: 0.000000013614619 + outSlope: 0.000000013614619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000000011205037 + inSlope: -0.000000010003962 + outSlope: -0.000000010003962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -2.0020985e-10 + inSlope: -0.000000010003962 + outSlope: -0.000000010003962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -2.0020985e-10 + inSlope: -8.870849e-10 + outSlope: -8.870849e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.1732195e-10 + inSlope: -8.870849e-10 + outSlope: -8.870849e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.1732195e-10 + inSlope: -0.00000010653501 + outSlope: -0.00000010653501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.000000014381972 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000008987736 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000000008987736 + inSlope: -0.000000040859533 + outSlope: -0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.000000014381972 + inSlope: -0.000000040859533 + outSlope: -0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.000000014381972 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000008987736 + inSlope: 0.000000040859533 + outSlope: 0.000000040859533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.000000008987736 + inSlope: 0.00000007599632 + outSlope: 0.00000007599632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000000010452248 + inSlope: 0.00000015199264 + outSlope: 0.00000015199264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000000034901215 + inSlope: -0.00000075608915 + outSlope: -0.00000075608915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000004641896 + inSlope: -0.00000037804458 + outSlope: -0.00000037804458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000004641896 + inSlope: 0.0000004152273 + outSlope: 0.0000004152273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000000008398947 + inSlope: 0.0000004152273 + outSlope: 0.0000004152273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.000000008398947 + inSlope: -0.000000081018236 + outSlope: -0.000000081018236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000000022970028 + inSlope: -0.000000081018236 + outSlope: -0.000000081018236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0000000022970028 + inSlope: 0.00000019801311 + outSlope: 0.00000019801311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000000023844498 + inSlope: 0.00000019801311 + outSlope: 0.00000019801311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000000023844498 + inSlope: -0.00000017817254 + outSlope: -0.00000017817254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 3.2232889e-10 + inSlope: -0.00000017817254 + outSlope: -0.00000017817254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 3.2232889e-10 + inSlope: -0.00000005773904 + outSlope: -0.00000005773904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000000007300324 + inSlope: -0.00000005773904 + outSlope: -0.00000005773904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.000000007300324 + inSlope: 0.00000023212965 + outSlope: 0.00000023212965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00000002334521 + inSlope: 0.00000023212965 + outSlope: 0.00000023212965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00000002334521 + inSlope: -0.00000024273047 + outSlope: -0.00000024273047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000008699833 + inSlope: -0.00000024273047 + outSlope: -0.00000024273047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000008699833 + inSlope: 0.000000003791618 + outSlope: 0.000000003791618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.000000008199267 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000001199123 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00000001199123 + inSlope: -0.00000015293625 + outSlope: -0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.000000008199267 + inSlope: -0.00000015293625 + outSlope: -0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.000000008199267 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000001199123 + inSlope: 0.00000015293625 + outSlope: 0.00000015293625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00000001199123 + inSlope: 0.00000008279898 + outSlope: 0.00000008279898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000022922272 + inSlope: 0.00000016559795 + outSlope: 0.00000016559795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.1420546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.1420546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000010304158 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000010304158 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000017860373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000017860373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.0356122 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.0356122 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.7847072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7847072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.9198914 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9198914 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000056464766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000056464766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.000000048295984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000048295984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.8174602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8174602 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000007313465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000007313465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000000983755 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000000983755 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.0736117 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.0736117 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.009224207 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.7910624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.7910624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.848197 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.848197 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.0000000114241 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000114241 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000029501352 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000029501352 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.81657094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.81657094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000010017325 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000010017325 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000031725655 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000031725655 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.5820273 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5820273 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.33933067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.33933067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.71559757 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.71559757 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.0000000055035088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000055035088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000029377336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000029377336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.60945666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.60945666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008281411 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.32652536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.32652536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.5980861 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5980861 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.000000010154258 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000010154258 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000000444109 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000000444109 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.007700801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.007700801 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.002247423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.002247423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.038948793 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03894877 + inSlope: -0.00000016930696 + outSlope: -0.00000016930696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03894877 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.038948786 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.038948786 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03894878 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.03894878 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.038948763 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.038948763 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.03894876 + inSlope: -0.000000028217825 + outSlope: -0.000000028217825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.03894876 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.03894874 + inSlope: -0.00000014108913 + outSlope: -0.00000014108913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.03894874 + inSlope: 0.00000028217826 + outSlope: 0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.038948778 + inSlope: 0.00000028217826 + outSlope: 0.00000028217826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.038948778 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.038948778 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.038948778 + inSlope: -0.00000008465348 + outSlope: -0.00000008465348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.038948767 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.038948774 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.038948774 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.038948767 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.038948767 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.038948774 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.038948774 + inSlope: 0.00000025396042 + outSlope: 0.00000025396042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.038948808 + inSlope: 0.00000050792084 + outSlope: 0.00000050792084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000032088323 + inSlope: 0.0000000068602692 + outSlope: 0.0000000068602692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000032133607 + inSlope: 0.0000000034301346 + outSlope: 0.0000000034301346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000032133607 + inSlope: 0.000000022812236 + outSlope: 0.000000022812236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00000032434772 + inSlope: 0.000000022812236 + outSlope: 0.000000022812236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000032434772 + inSlope: 0.000000012599119 + outSlope: 0.000000012599119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000032601105 + inSlope: 0.000000012599119 + outSlope: 0.000000012599119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00000032601105 + inSlope: -0.000000022686079 + outSlope: -0.000000022686079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00000032301605 + inSlope: -0.000000022686079 + outSlope: -0.000000022686079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000032301605 + inSlope: 0.0000000015298146 + outSlope: 0.0000000015298146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000032321802 + inSlope: 0.0000000015298146 + outSlope: 0.0000000015298146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000032321802 + inSlope: 0.000000019781455 + outSlope: 0.000000019781455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000032582955 + inSlope: 0.000000019781455 + outSlope: 0.000000019781455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00000032582955 + inSlope: 6.525286e-10 + outSlope: 6.525286e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0000003259157 + inSlope: 6.525286e-10 + outSlope: 6.525286e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000003259157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000003259157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000003259157 + inSlope: -0.000000037801666 + outSlope: -0.000000037801666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00000032092515 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000032872447 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00000032872447 + inSlope: -0.0000000590772 + outSlope: -0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000032092515 + inSlope: -0.0000000590772 + outSlope: -0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00000032092515 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000032872447 + inSlope: 0.0000000590772 + outSlope: 0.0000000590772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00000032872447 + inSlope: 0.0000000025171114 + outSlope: 0.0000000025171114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00000032905677 + inSlope: 0.000000005034223 + outSlope: 0.000000005034223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09688048 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.09688047 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09688047 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.09688052 + inSlope: -0.00000033861392 + outSlope: -0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09688052 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0968805 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0968805 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.09688051 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09688051 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09688052 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.09688052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.09688052 + inSlope: 0.00000005643565 + outSlope: 0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09688051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.09688051 + inSlope: -0.00000005643565 + outSlope: -0.00000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.09688052 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14589126 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14589128 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14589128 + inSlope: 0.0000005643565 + outSlope: 0.0000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.14589135 + inSlope: 0.0000005643565 + outSlope: 0.0000005643565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14589135 + inSlope: -0.00000067722783 + outSlope: -0.00000067722783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14589126 + inSlope: -0.00000067722783 + outSlope: -0.00000067722783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.14589126 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.14589131 + inSlope: 0.00000033861392 + outSlope: 0.00000033861392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14589131 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14589134 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14589134 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14589131 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.14589131 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.1458913 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.1458913 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14589128 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.14589128 + inSlope: -0.0000001128713 + outSlope: -0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.14589126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.14589126 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.1458913 + inSlope: 0.0000004514852 + outSlope: 0.0000004514852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000007190708 + inSlope: -0.00000000375136 + outSlope: -0.00000000375136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000074383335 + inSlope: -0.00000000187568 + outSlope: -0.00000000187568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000000074383335 + inSlope: 0.00000016530184 + outSlope: 0.00000016530184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000000014384659 + inSlope: 0.00000016530184 + outSlope: 0.00000016530184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.000000014384659 + inSlope: -0.00000016782762 + outSlope: -0.00000016782762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000007771782 + inSlope: -0.00000016782762 + outSlope: -0.00000016782762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.000000007771782 + inSlope: 0.000000092138364 + outSlope: 0.000000092138364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000000043922364 + inSlope: 0.000000092138364 + outSlope: 0.000000092138364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000000043922364 + inSlope: -0.000000012096796 + outSlope: -0.000000012096796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000002795229 + inSlope: -0.000000012096796 + outSlope: -0.000000012096796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.000000002795229 + inSlope: 0.00000003189609 + outSlope: 0.00000003189609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000000700612 + inSlope: 0.00000003189609 + outSlope: 0.00000003189609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00000000700612 + inSlope: -0.000000054502134 + outSlope: -0.000000054502134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.8919921e-10 + inSlope: -0.000000054502134 + outSlope: -0.000000054502134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.8919921e-10 + inSlope: -0.000000011555281 + outSlope: -0.000000011555281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000000017147164 + inSlope: -0.000000011555281 + outSlope: -0.000000011555281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000000017147164 + inSlope: -0.00000004158648 + outSlope: -0.00000004158648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000000072049233 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000000024188054 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0000000024188054 + inSlope: -0.00000003625324 + outSlope: -0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0000000072049233 + inSlope: -0.00000003625324 + outSlope: -0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0000000072049233 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0000000024188054 + inSlope: 0.00000003625324 + outSlope: 0.00000003625324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0000000024188054 + inSlope: -0.000000024595987 + outSlope: -0.000000024595987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.000000005665944 + inSlope: -0.000000049191975 + outSlope: -0.000000049191975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000029976878 + inSlope: 0.00000039181813 + outSlope: 0.00000039181813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.000000055840605 + inSlope: 0.00000019590907 + outSlope: 0.00000019590907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000000055840605 + inSlope: -0.00000035987387 + outSlope: -0.00000035987387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000000008330403 + inSlope: -0.00000035987387 + outSlope: -0.00000035987387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.000000008330403 + inSlope: 0.00000009933596 + outSlope: 0.00000009933596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000000021444642 + inSlope: 0.00000009933596 + outSlope: 0.00000009933596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.000000021444642 + inSlope: 0.00000009602388 + outSlope: 0.00000009602388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000000034121623 + inSlope: 0.00000009602388 + outSlope: 0.00000009602388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000000034121623 + inSlope: -0.0000001566542 + outSlope: -0.0000001566542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000013440285 + inSlope: -0.0000001566542 + outSlope: -0.0000001566542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.000000013440285 + inSlope: -0.000000074168895 + outSlope: -0.000000074168895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000000036485783 + inSlope: -0.000000074168895 + outSlope: -0.000000074168895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000000036485783 + inSlope: 0.00000016003231 + outSlope: 0.00000016003231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000000024775892 + inSlope: 0.00000016003231 + outSlope: 0.00000016003231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000000024775892 + inSlope: -0.0000000050478124 + outSlope: -0.0000000050478124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000024109484 + inSlope: -0.0000000050478124 + outSlope: -0.0000000050478124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000000024109484 + inSlope: -0.000000116424594 + outSlope: -0.000000116424594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.000000008739221 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000000008366569 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000000008366569 + inSlope: 0.000000002822715 + outSlope: 0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.000000008739221 + inSlope: 0.000000002822715 + outSlope: 0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.000000008739221 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000000008366569 + inSlope: -0.000000002822715 + outSlope: -0.000000002822715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.000000008366569 + inSlope: 0.000000019211516 + outSlope: 0.000000019211516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000010902855 + inSlope: 0.000000038423032 + outSlope: 0.000000038423032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.35067046 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.35067046 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.009224206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.009224206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.34308544 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.34308544 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15576063 + inSlope: -0.0000004514852 + outSlope: -0.0000004514852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1557606 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1557606 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.15576062 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15576062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15576062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.15576062 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.15576059 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.15576059 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.1557606 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1557606 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15576057 + inSlope: -0.0000002257426 + outSlope: -0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.15576057 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.15576059 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.15576059 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.15576059 + inSlope: 0.0000001128713 + outSlope: 0.0000001128713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.1557606 + inSlope: 0.0000002257426 + outSlope: 0.0000002257426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000011369518 + inSlope: -0.000000080905785 + outSlope: -0.000000080905785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000001671007 + inSlope: -0.000000040452893 + outSlope: -0.000000040452893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000001671007 + inSlope: -0.000000052550874 + outSlope: -0.000000052550874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.000000023647786 + inSlope: -0.000000052550874 + outSlope: -0.000000052550874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000000023647786 + inSlope: 0.0000001562099 + outSlope: 0.0000001562099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000000030251048 + inSlope: 0.0000001562099 + outSlope: 0.0000001562099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0000000030251048 + inSlope: -0.0000000626415 + outSlope: -0.0000000626415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.000000011294975 + inSlope: -0.0000000626415 + outSlope: -0.0000000626415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000000011294975 + inSlope: 0.00000006129103 + outSlope: 0.00000006129103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0000000032033916 + inSlope: 0.00000006129103 + outSlope: 0.00000006129103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000000032033916 + inSlope: -0.000000029119123 + outSlope: -0.000000029119123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000000704767 + inSlope: -0.000000029119123 + outSlope: -0.000000029119123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000000704767 + inSlope: -0.000000014791817 + outSlope: -0.000000014791817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000000090004715 + inSlope: -0.000000014791817 + outSlope: -0.000000014791817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000000090004715 + inSlope: -0.0000000069245725 + outSlope: -0.0000000069245725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000009914647 + inSlope: -0.0000000069245725 + outSlope: -0.0000000069245725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000009914647 + inSlope: -0.000000044169415 + outSlope: -0.000000044169415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000001574585 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000013378465 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000000013378465 + inSlope: -0.000000017932157 + outSlope: -0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000001574585 + inSlope: -0.000000017932157 + outSlope: -0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000001574585 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000013378465 + inSlope: 0.000000017932157 + outSlope: 0.000000017932157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.000000013378465 + inSlope: -0.00000004565608 + outSlope: -0.00000004565608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.000000019405936 + inSlope: -0.00000009131216 + outSlope: -0.00000009131216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000007896083 + inSlope: -0.00000062071723 + outSlope: -0.00000062071723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000083058154 + inSlope: -0.00000031035862 + outSlope: -0.00000031035862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000083058154 + inSlope: 0.00000015861633 + outSlope: 0.00000015861633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00000080964116 + inSlope: 0.00000015861633 + outSlope: 0.00000015861633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000080964116 + inSlope: 0.00000014478384 + outSlope: 0.00000014478384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000079052694 + inSlope: 0.00000014478384 + outSlope: 0.00000014478384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00000079052694 + inSlope: -0.00000012509733 + outSlope: -0.00000012509733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00000080704217 + inSlope: -0.00000012509733 + outSlope: -0.00000012509733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00000080704217 + inSlope: -0.0000000031125895 + outSlope: -0.0000000031125895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0000008074531 + inSlope: -0.0000000031125895 + outSlope: -0.0000000031125895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000008074531 + inSlope: 0.000000040055053 + outSlope: 0.000000040055053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000080216506 + inSlope: 0.000000040055053 + outSlope: 0.000000040055053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000080216506 + inSlope: -0.000000035891443 + outSlope: -0.000000035891443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000008069034 + inSlope: -0.000000035891443 + outSlope: -0.000000035891443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000008069034 + inSlope: 0.000000019677904 + outSlope: 0.000000019677904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000080430556 + inSlope: 0.000000019677904 + outSlope: 0.000000019677904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00000080430556 + inSlope: -0.000000028086932 + outSlope: -0.000000028086932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000080801357 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00000081137506 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00000081137506 + inSlope: 0.000000025462178 + outSlope: 0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000080801357 + inSlope: 0.000000025462178 + outSlope: 0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000080801357 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00000081137506 + inSlope: -0.000000025462178 + outSlope: -0.000000025462178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00000081137506 + inSlope: 0.0000000036572603 + outSlope: 0.0000000036572603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000081089223 + inSlope: 0.0000000073145205 + outSlope: 0.0000000073145205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.93991613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.93991613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.2927984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2927984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.5424665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5424665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000041311936 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000041311936 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.00000019516179 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000019516179 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.9270634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9270634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000022259227 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000022259227 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.0000000018832567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000000018832567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.9249606 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9249606 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00828141 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.3052871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3052871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.56906635 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.56906635 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000016917367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000016917367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0.00000013908223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000013908223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1.0189703 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.0189703 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.000000026109577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000026109577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: -0.0000001175429 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000001175429 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.041979775 + inSlope: 0 + outSlope: -0.25419518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.024572887 + inSlope: -0.33077782 + outSlope: -0.33102927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.003086896 + inSlope: -0.3622344 + outSlope: -0.36186424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.023851177 + inSlope: -0.31828883 + outSlope: -0.31845638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.044171643 + inSlope: -0.26794147 + outSlope: -0.26782978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.058336556 + inSlope: -0.078175224 + outSlope: -0.078119345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.054534443 + inSlope: 0.28336424 + outSlope: 0.2842583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.019448854 + inSlope: 0.26048163 + outSlope: 0.25900072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.019448854 + inSlope: 0.14752144 + outSlope: 0.14844352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000048658836 + inSlope: 0.14848492 + outSlope: 0.14790326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000048658836 + inSlope: -0.00012674749 + outSlope: 0.00000062669875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000045175355 + inSlope: 0.000003301466 + outSlope: 0.000003300187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00000045175355 + inSlope: 0.0000032997607 + outSlope: 0.000003301466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00000045430542 + inSlope: -0.00000083815627 + outSlope: -0.000000835172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00000045430542 + inSlope: -0.000000833893 + outSlope: -0.0000008368773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000004343142 + inSlope: 0.000002511911 + outSlope: 0.0000025067927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000004343142 + inSlope: 0.000002508498 + outSlope: 0.0000025102079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00000044228204 + inSlope: -0.0000013838544 + outSlope: -0.0000013834256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000004533228 + inSlope: 0.0000033726594 + outSlope: 0.00016740289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0000004533228 + inSlope: -0.16335697 + outSlope: -0.16444941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.021619957 + inSlope: -0.16411753 + outSlope: -0.16327962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.021619957 + inSlope: 0.00016763822 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.021619968 + inSlope: 0 + outSlope: -0.00016763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.021619968 + inSlope: 0.16330756 + outSlope: 0.16431311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0000004501403 + inSlope: 0.32750788 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6344824 + inSlope: 0 + outSlope: -1.182854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.7090152 + inSlope: -1.0514259 + outSlope: -1.0514259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.77342486 + inSlope: -0.29861924 + outSlope: -0.29772523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.7518486 + inSlope: 0.53375965 + outSlope: 0.53375953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.70145136 + inSlope: 0.7474421 + outSlope: 0.74923044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6536846 + inSlope: 0.31739476 + outSlope: 0.3165007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.6610553 + inSlope: -0.71346766 + outSlope: -0.71704394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.74270177 + inSlope: -0.5730987 + outSlope: -0.5704162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.74270177 + inSlope: 0.23871651 + outSlope: 0.24050476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.71002156 + inSlope: 0.25659803 + outSlope: 0.25391582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.71002156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.7100215 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.7100215 + inSlope: -0.025033975 + outSlope: -0.02413986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.71307796 + inSlope: -0.022351723 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.71307796 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.71307796 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.71307796 + inSlope: 0.021457693 + outSlope: 0.022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.7100215 + inSlope: 0.04738565 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.047848724 + inSlope: 0 + outSlope: 0.25810674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.031295724 + inSlope: 0.35975125 + outSlope: 0.3601424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0019472516 + inSlope: 0.42700556 + outSlope: 0.42679954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.02459427 + inSlope: 0.40576795 + outSlope: 0.40590757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.052342128 + inSlope: 0.35081053 + outSlope: 0.35064298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0718958 + inSlope: 0.0961125 + outSlope: 0.09577722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.06529544 + inSlope: -0.43954703 + outSlope: -0.4409999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.014280568 + inSlope: -0.39270616 + outSlope: -0.39086196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.014280568 + inSlope: -0.10626852 + outSlope: -0.10712073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000052854347 + inSlope: -0.107249685 + outSlope: -0.10679812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000052854347 + inSlope: 0.00008472114 + outSlope: -0.000002707168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000005419728 + inSlope: 0.0000009737279 + outSlope: 0.0000009711699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000005419728 + inSlope: 0.0000009703173 + outSlope: 0.0000009737279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00000054323647 + inSlope: -0.000003374794 + outSlope: -0.0000033730887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00000054323647 + inSlope: -0.0000033730887 + outSlope: -0.000003374794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000005417304 + inSlope: 0.0000009848123 + outSlope: 0.0000009796955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000005417304 + inSlope: 0.0000009814008 + outSlope: 0.0000009831078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000005298717 + inSlope: -0.0000027685614 + outSlope: -0.0000027677038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000054454756 + inSlope: 0.0000008569138 + outSlope: -0.00002128987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00000054454756 + inSlope: 0.022052024 + outSlope: 0.022204448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0029022805 + inSlope: 0.022184085 + outSlope: 0.022058396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0029022805 + inSlope: -0.000027939705 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0029022787 + inSlope: 0 + outSlope: 0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0029022787 + inSlope: -0.021778999 + outSlope: -0.021932628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000005468558 + inSlope: -0.043422814 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.77031183 + inSlope: 0 + outSlope: -0.9441375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7040697 + inSlope: -1.0335445 + outSlope: -1.0335445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.63387746 + inSlope: -0.36567447 + outSlope: -0.3638864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.65844506 + inSlope: 0.58382756 + outSlope: 0.5838274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.70941895 + inSlope: 0.6973742 + outSlope: 0.69648033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7510821 + inSlope: 0.26196244 + outSlope: 0.2601743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.74549866 + inSlope: -0.57488686 + outSlope: -0.5757809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6691875 + inSlope: -0.6204844 + outSlope: -0.61690784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6691875 + inSlope: 0.27269113 + outSlope: 0.27269128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.70417994 + inSlope: 0.25838616 + outSlope: 0.25659803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.70417994 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.70418 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.70418 + inSlope: -0.025033975 + outSlope: -0.02503393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.70074534 + inSlope: -0.027716137 + outSlope: -0.028610257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.70074534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.70074534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.70074534 + inSlope: 0.028610257 + outSlope: 0.026822068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.70418 + inSlope: 0.04827972 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12718168 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.12718166 + inSlope: 0.033080578 + outSlope: 0.033080578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.122820556 + inSlope: 0.13880432 + outSlope: 0.13913961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.108798414 + inSlope: 0.29683116 + outSlope: 0.2970546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.083581224 + inSlope: 0.41484827 + outSlope: 0.4152954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.053975794 + inSlope: 0.45524913 + outSlope: 0.4553609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.023468899 + inSlope: 0.4574843 + outSlope: 0.45742843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0064164 + inSlope: 0.43643874 + outSlope: 0.43643156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.034155555 + inSlope: 0.3928317 + outSlope: 0.39232898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.058246534 + inSlope: 0.3259443 + outSlope: 0.32627958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.077223055 + inSlope: 0.23815782 + outSlope: 0.23748727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.089651726 + inSlope: 0.12774022 + outSlope: 0.12774022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.09411219 + inSlope: 0.015199185 + outSlope: 0.015422703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.09167906 + inSlope: -0.07085503 + outSlope: -0.07107855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.08475679 + inSlope: -0.13466926 + outSlope: -0.13444574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07390606 + inSlope: -0.18965454 + outSlope: -0.18987788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.059686746 + inSlope: -0.23642536 + outSlope: -0.23748748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.02347729 + inSlope: -0.30468246 + outSlope: -0.30392754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0025225335 + inSlope: -0.32421872 + outSlope: -0.32479557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.01934535 + inSlope: -0.33549997 + outSlope: -0.33616993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.041796308 + inSlope: -0.33773455 + outSlope: -0.33767927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.06395053 + inSlope: -0.33091787 + outSlope: -0.33069375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.085486054 + inSlope: -0.3075597 + outSlope: -0.30823082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.10459435 + inSlope: -0.24296367 + outSlope: -0.24318674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.117599495 + inSlope: -0.19647165 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.704205 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.704205 + inSlope: -0.0053644176 + outSlope: -0.0062584872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.7050198 + inSlope: -0.025928019 + outSlope: -0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.70744145 + inSlope: -0.047385696 + outSlope: -0.047385685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.7110432 + inSlope: -0.050961964 + outSlope: -0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.7140526 + inSlope: -0.03576279 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.71579266 + inSlope: -0.014305116 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.71616757 + inSlope: 0.004470349 + outSlope: 0.0044703465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.71533966 + inSlope: 0.019669525 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.71369904 + inSlope: 0.028610231 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.7117998 + inSlope: 0.027716162 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.7102639 + inSlope: 0.017881395 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.709656 + inSlope: 0.0026822092 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.7099913 + inSlope: -0.008940698 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.71089643 + inSlope: -0.016093256 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.71217066 + inSlope: -0.020563604 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.7135738 + inSlope: -0.021457653 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.7157925 + inSlope: -0.010728846 + outSlope: -0.010728827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.7161931 + inSlope: 0 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.71592265 + inSlope: 0.0080466345 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.7149123 + inSlope: 0.020563586 + outSlope: 0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.71318465 + inSlope: 0.030398399 + outSlope: 0.031292412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.7108046 + inSlope: 0.039339032 + outSlope: 0.038445033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.70810884 + inSlope: 0.037550963 + outSlope: 0.038444962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.70595664 + inSlope: 0.035762757 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13051671 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13051671 + inSlope: -0.033527613 + outSlope: -0.033974648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.12604128 + inSlope: -0.14260411 + outSlope: -0.14282764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.11165139 + inSlope: -0.30443075 + outSlope: -0.30465418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08577295 + inSlope: -0.42568886 + outSlope: -0.42624775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.055391196 + inSlope: -0.46715143 + outSlope: -0.46731907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.02408434 + inSlope: -0.46949837 + outSlope: -0.46941453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0065846248 + inSlope: -0.44787306 + outSlope: -0.44787985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.035051163 + inSlope: -0.4031694 + outSlope: -0.4025549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.059773877 + inSlope: -0.33449385 + outSlope: -0.33482912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.079247996 + inSlope: -0.2441928 + outSlope: -0.24374576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.092002556 + inSlope: -0.13109298 + outSlope: -0.1313165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.09658 + inSlope: -0.015646221 + outSlope: -0.015646221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.094083086 + inSlope: 0.07275493 + outSlope: 0.072866686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.08697931 + inSlope: 0.13824554 + outSlope: 0.13791026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07584402 + inSlope: 0.19457193 + outSlope: 0.19479527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.061251853 + inSlope: 0.24257207 + outSlope: 0.24363422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0240929 + inSlope: 0.31267324 + outSlope: 0.31189036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.002588659 + inSlope: 0.33271936 + outSlope: 0.3333102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.019852651 + inSlope: 0.344301 + outSlope: 0.3449709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.042892322 + inSlope: 0.34667522 + outSlope: 0.34656408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.06562749 + inSlope: 0.33929977 + outSlope: 0.33952266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.08772772 + inSlope: 0.31560633 + outSlope: 0.31627744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.10733709 + inSlope: 0.24933392 + outSlope: 0.2497805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.12068326 + inSlope: 0.20161255 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.686211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.686211 + inSlope: 0.007152557 + outSlope: 0.0062584872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6870049 + inSlope: 0.025033949 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.68936455 + inSlope: 0.047385696 + outSlope: 0.048279755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6928744 + inSlope: 0.050961964 + outSlope: 0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.695807 + inSlope: 0.03665686 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6975027 + inSlope: 0.015199185 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6978678 + inSlope: -0.004470349 + outSlope: -0.0035762773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.69706106 + inSlope: -0.018775456 + outSlope: -0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6954625 + inSlope: -0.026822092 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.69361186 + inSlope: -0.026822092 + outSlope: -0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.692115 + inSlope: -0.017881395 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.69152266 + inSlope: -0.0026822092 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.69184947 + inSlope: 0.008940698 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6927316 + inSlope: 0.016987326 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6939731 + inSlope: 0.021457674 + outSlope: 0.019669516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.69534034 + inSlope: 0.021457653 + outSlope: 0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.6975023 + inSlope: 0.008940705 + outSlope: 0.011622896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.6978928 + inSlope: 0 + outSlope: 0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.69762915 + inSlope: -0.008940705 + outSlope: -0.0080466205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6966447 + inSlope: -0.018775448 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.69496113 + inSlope: -0.030398399 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.692642 + inSlope: -0.037550896 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.69001496 + inSlope: -0.037550963 + outSlope: -0.035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.68791795 + inSlope: -0.033974618 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.1174954e-12 + inSlope: 0 + outSlope: 0.0000009469133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 4.6500157e-10 + inSlope: -0.00094584445 + outSlope: -0.00094925397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00012505037 + inSlope: -0.0020631705 + outSlope: -0.0020614245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00027216726 + inSlope: -0.0022613679 + outSlope: -0.0022631134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00042461022 + inSlope: -0.0022177114 + outSlope: -0.0022072347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00056569604 + inSlope: -0.0019103755 + outSlope: -0.0019208529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00067892764 + inSlope: -0.0013690443 + outSlope: -0.0013620594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00074798753 + inSlope: -0.0005867333 + outSlope: -0.000586733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0007566316 + inSlope: 0.00026542682 + outSlope: 0.00025844204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00071464013 + inSlope: 0.0008381904 + outSlope: 0.0008381904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00064576557 + inSlope: 0.0012014062 + outSlope: 0.0012258535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00055460003 + inSlope: 0.0015296974 + outSlope: 0.0015157276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0004457787 + inSlope: 0.0017497224 + outSlope: 0.0017427375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00032397744 + inSlope: 0.0019121218 + outSlope: 0.001913868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00019393454 + inSlope: 0.0019994334 + outSlope: 0.0019941947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000060436083 + inSlope: 0.002007728 + outSlope: 0.0020120917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000071703835 + inSlope: 0.0019501005 + outSlope: 0.001957089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00031233998 + inSlope: 0.0016170103 + outSlope: 0.0016222461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00041197776 + inSlope: 0.0013480883 + outSlope: 0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0004906631 + inSlope: 0.0009988444 + outSlope: 0.0010128125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0005447052 + inSlope: 0.00040861743 + outSlope: 0.0004051257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0005447769 + inSlope: -0.0004924373 + outSlope: -0.0004924364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0004794686 + inSlope: -0.0013271335 + outSlope: -0.0013166586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.000371075 + inSlope: -0.0018195732 + outSlope: -0.0018335398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00023996795 + inSlope: -0.001987208 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031313073 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03131307 + inSlope: -0.00005587935 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.031304788 + inSlope: -0.00039115545 + outSlope: -0.00033527616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.031273816 + inSlope: -0.0008381904 + outSlope: -0.00078231085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.031217424 + inSlope: -0.0011455265 + outSlope: -0.0011734666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.031143107 + inSlope: -0.0012293459 + outSlope: -0.0012852253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.031067962 + inSlope: -0.0010617079 + outSlope: -0.0010617079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.031015301 + inSlope: -0.00044703486 + outSlope: -0.00044703466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.031008346 + inSlope: 0.00019557767 + outSlope: 0.00016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.031041374 + inSlope: 0.00061467296 + outSlope: 0.00061467296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.031091394 + inSlope: 0.000782311 + outSlope: 0.0008381904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.031149717 + inSlope: 0.0008381904 + outSlope: 0.0008102507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.03120763 + inSlope: 0.000698492 + outSlope: 0.00075437134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.031257425 + inSlope: 0.0005587936 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.03129314 + inSlope: 0.0002793968 + outSlope: 0.0002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.031311132 + inSlope: 0 + outSlope: 0.000111758614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.031310342 + inSlope: -0.00022351723 + outSlope: -0.00027939703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.03126135 + inSlope: -0.0006146735 + outSlope: -0.0005587931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.031223038 + inSlope: -0.00064261205 + outSlope: -0.0006426132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.031185288 + inSlope: -0.00055879407 + outSlope: -0.0005308534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.03115551 + inSlope: -0.00022351723 + outSlope: -0.00022351764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.031155467 + inSlope: 0.00025145733 + outSlope: 0.00027939654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.03119106 + inSlope: 0.0006705517 + outSlope: 0.0006426132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.031240046 + inSlope: 0.0006146735 + outSlope: 0.0006705517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.03128255 + inSlope: 0.00039115516 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000018381222 + inSlope: 0 + outSlope: -0.00017322275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000116699415 + inSlope: 0.1738775 + outSlope: 0.17454119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.023001123 + inSlope: 0.3793649 + outSlope: 0.37922525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.05006114 + inSlope: 0.41736293 + outSlope: 0.41730696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0781003 + inSlope: 0.40892506 + outSlope: 0.4090369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10405123 + inSlope: 0.3543869 + outSlope: 0.35427514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.1248783 + inSlope: 0.25391582 + outSlope: 0.25391582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.13758115 + inSlope: 0.10818244 + outSlope: 0.10795887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13917105 + inSlope: -0.046491604 + outSlope: -0.046715144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.13144755 + inSlope: -0.15422703 + outSlope: -0.15467407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11877901 + inSlope: -0.2230704 + outSlope: -0.22284688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10201132 + inSlope: -0.27839097 + outSlope: -0.278838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.08199559 + inSlope: -0.32130632 + outSlope: -0.32130632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.059592467 + inSlope: -0.35069886 + outSlope: -0.35103413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.035673402 + inSlope: -0.3673509 + outSlope: -0.36701563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.011118743 + inSlope: -0.37000516 + outSlope: -0.36992103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.013186075 + inSlope: -0.3594576 + outSlope: -0.36040822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.05744694 + inSlope: -0.299346 + outSlope: -0.29828376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.075773455 + inSlope: -0.24832764 + outSlope: -0.24877512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.09024641 + inSlope: -0.18473732 + outSlope: -0.18518403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10018658 + inSlope: -0.07543707 + outSlope: -0.075213686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.10019992 + inSlope: 0.09074816 + outSlope: 0.090748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.08818812 + inSlope: 0.24162212 + outSlope: 0.24251664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.068251275 + inSlope: 0.33360007 + outSlope: 0.33393475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.044137068 + inSlope: 0.36533892 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99950963 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99950963 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99924517 + inSlope: -0.008940696 + outSlope: -0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9982564 + inSlope: -0.020563604 + outSlope: -0.021457668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99645656 + inSlope: -0.031292435 + outSlope: -0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99408406 + inSlope: -0.03665686 + outSlope: -0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9916853 + inSlope: -0.032186512 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99000454 + inSlope: -0.014305116 + outSlope: -0.015199179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9897824 + inSlope: 0.0062584854 + outSlope: 0.006258488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99083674 + inSlope: 0.020563604 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99243355 + inSlope: 0.026822092 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9942952 + inSlope: 0.027716162 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9961438 + inSlope: 0.025033953 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99773324 + inSlope: 0.020563604 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9988734 + inSlope: 0.013411046 + outSlope: 0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9994479 + inSlope: 0.003576279 + outSlope: 0.0044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9994227 + inSlope: -0.0053644134 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.997859 + inSlope: -0.01698734 + outSlope: -0.016987309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9966359 + inSlope: -0.018775448 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9954309 + inSlope: -0.01788141 + outSlope: -0.016093241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9944806 + inSlope: -0.0071525513 + outSlope: -0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.99447924 + inSlope: 0.008940705 + outSlope: 0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9956153 + inSlope: 0.021457653 + outSlope: 0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99717885 + inSlope: 0.022351762 + outSlope: 0.023245793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9985356 + inSlope: 0.016987309 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14285162 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14285167 + inSlope: -0.040009614 + outSlope: -0.040009614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13753265 + inSlope: -0.16808508 + outSlope: -0.1678616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.120418414 + inSlope: -0.35852197 + outSlope: -0.35908067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08960284 + inSlope: -0.50257885 + outSlope: -0.502579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.053383686 + inSlope: -0.5516969 + outSlope: -0.5516969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.01604342 + inSlope: -0.5542953 + outSlope: -0.5542953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.020525198 + inSlope: -0.52842313 + outSlope: -0.52850676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.054433372 + inSlope: -0.4750302 + outSlope: -0.47441575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.08383707 + inSlope: -0.39350244 + outSlope: -0.39383772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.1069586 + inSlope: -0.28666112 + outSlope: -0.28632584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12207897 + inSlope: -0.15389176 + outSlope: -0.15389176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.1275005 + inSlope: -0.01832843 + outSlope: -0.01832843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.12454351 + inSlope: 0.08516014 + outSlope: 0.0852719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.11612633 + inSlope: 0.1621619 + outSlope: 0.16205014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10291997 + inSlope: 0.22877009 + outSlope: 0.22876988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.08559322 + inSlope: 0.2854315 + outSlope: 0.285432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0648243 + inSlope: 0.33147666 + outSlope: 0.3313643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.041385762 + inSlope: 0.3678535 + outSlope: 0.36835706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.01576217 + inSlope: 0.39277637 + outSlope: 0.39339033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.010996415 + inSlope: 0.40661976 + outSlope: 0.40660653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.038476598 + inSlope: 0.40926078 + outSlope: 0.40931594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.065590076 + inSlope: 0.40065464 + outSlope: 0.40143767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.091931894 + inSlope: 0.37249213 + outSlope: 0.37305027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.11528403 + inSlope: 0.29403692 + outSlope: 0.29370216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.13116226 + inSlope: 0.23759924 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.68356013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6835601 + inSlope: 0.0062584872 + outSlope: 0.008046627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6845933 + inSlope: 0.03129244 + outSlope: 0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.68764246 + inSlope: 0.06079674 + outSlope: 0.059902657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.69208807 + inSlope: 0.060796726 + outSlope: 0.062584884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.69562525 + inSlope: 0.04023314 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6973892 + inSlope: 0.011622907 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6972778 + inSlope: -0.014305116 + outSlope: -0.015199179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6955481 + inSlope: -0.035762772 + outSlope: -0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.69277257 + inSlope: -0.044703487 + outSlope: -0.044703487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6897484 + inSlope: -0.04112721 + outSlope: -0.042915348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6873649 + inSlope: -0.024139883 + outSlope: -0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.6864313 + inSlope: -0.004470349 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.6869457 + inSlope: 0.014305116 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6883417 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.69033045 + inSlope: 0.03308058 + outSlope: 0.031292412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.692569 + inSlope: 0.03308055 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.69470334 + inSlope: 0.028610257 + outSlope: 0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.6963994 + inSlope: 0.020563586 + outSlope: 0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.69739515 + inSlope: 0.0080466345 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6974818 + inSlope: -0.0053644134 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.69655746 + inSlope: -0.021457693 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.6946352 + inSlope: -0.034868687 + outSlope: -0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.6917986 + inSlope: -0.045597598 + outSlope: -0.046491586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.68847597 + inSlope: -0.046491586 + outSlope: -0.047385737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6857772 + inSlope: -0.042021316 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13907187 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13907191 + inSlope: -0.03866851 + outSlope: -0.038892027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13389362 + inSlope: -0.1631677 + outSlope: -0.16383828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.11723222 + inSlope: -0.34891072 + outSlope: -0.34991646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.087231986 + inSlope: -0.4893913 + outSlope: -0.48939142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.051971182 + inSlope: -0.53700066 + outSlope: -0.5371124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.015618902 + inSlope: -0.53962696 + outSlope: -0.539599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.019982133 + inSlope: -0.5144533 + outSlope: -0.5145369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.05299311 + inSlope: -0.4623456 + outSlope: -0.46195465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.081618816 + inSlope: -0.38322064 + outSlope: -0.38344416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10412854 + inSlope: -0.27894977 + outSlope: -0.27894977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.118848875 + inSlope: -0.1499802 + outSlope: -0.15009196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.12412698 + inSlope: -0.017881395 + outSlope: -0.017993154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.121248156 + inSlope: 0.08303673 + outSlope: 0.08292497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.113053724 + inSlope: 0.15791507 + outSlope: 0.15791507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10019679 + inSlope: 0.22284688 + outSlope: 0.22262317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.08332849 + inSlope: 0.27794367 + outSlope: 0.27805594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.063109115 + inSlope: 0.32253593 + outSlope: 0.32253537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.040290747 + inSlope: 0.35813048 + outSlope: 0.3586899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.015345131 + inSlope: 0.38243866 + outSlope: 0.38296884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.010705439 + inSlope: 0.39583504 + outSlope: 0.39586368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.037458517 + inSlope: 0.39842018 + outSlope: 0.39847535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.06385458 + inSlope: 0.39003757 + outSlope: 0.3908206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.08949944 + inSlope: 0.36265737 + outSlope: 0.362992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.112233676 + inSlope: 0.28632557 + outSlope: 0.28565553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.12769179 + inSlope: 0.23111723 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7021381 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.70213807 + inSlope: 0.007152557 + outSlope: 0.008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7031993 + inSlope: 0.033080578 + outSlope: 0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7063314 + inSlope: 0.062584884 + outSlope: 0.059008587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7108979 + inSlope: 0.06258487 + outSlope: 0.063478954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7145311 + inSlope: 0.04202128 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7163428 + inSlope: 0.011622907 + outSlope: 0.012516976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.71622837 + inSlope: -0.016093256 + outSlope: -0.015199179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.71445185 + inSlope: -0.03665684 + outSlope: -0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.71160096 + inSlope: -0.046491627 + outSlope: -0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.70849437 + inSlope: -0.043809418 + outSlope: -0.042915348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7060462 + inSlope: -0.025033953 + outSlope: -0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.70508736 + inSlope: -0.003576279 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.7056156 + inSlope: 0.016093256 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.70704967 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.70909244 + inSlope: 0.03308058 + outSlope: 0.03308055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.71139175 + inSlope: 0.03308055 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.7135842 + inSlope: 0.030398399 + outSlope: 0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.71532637 + inSlope: 0.021457653 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.7163491 + inSlope: 0.0080466345 + outSlope: 0.0080466205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7164382 + inSlope: -0.0062584826 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7154887 + inSlope: -0.023245834 + outSlope: -0.022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.71351415 + inSlope: -0.037550896 + outSlope: -0.03665689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.7106005 + inSlope: -0.048279807 + outSlope: -0.04827972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7071875 + inSlope: -0.04738565 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7044154 + inSlope: -0.044703525 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.2379877e-11 + inSlope: 0 + outSlope: -0.0000073881324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -2.1868066e-10 + inSlope: 0.0073828376 + outSlope: 0.007410565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0009762172 + inSlope: 0.016147386 + outSlope: 0.01614215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0021316586 + inSlope: 0.017811546 + outSlope: 0.01781154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0033298223 + inSlope: 0.017416893 + outSlope: 0.017423883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.004434951 + inSlope: 0.014996623 + outSlope: 0.014996623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.005313211 + inSlope: 0.010575169 + outSlope: 0.010582154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00583285 + inSlope: 0.0041630124 + outSlope: 0.0041490407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00586271 + inSlope: -0.002682208 + outSlope: -0.002696179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.005478101 + inSlope: -0.0075297435 + outSlope: -0.0075437133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.004868485 + inSlope: -0.010652003 + outSlope: -0.010645018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.004072712 + inSlope: -0.013173559 + outSlope: -0.013187529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.003130069 + inSlope: -0.015108381 + outSlope: -0.015083934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0020805516 + inSlope: -0.016407577 + outSlope: -0.016418055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00096490467 + inSlope: -0.017101703 + outSlope: -0.017088607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00017554745 + inSlope: -0.017144486 + outSlope: -0.017144252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0012992182 + inSlope: -0.016559483 + outSlope: -0.016608408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.003327968 + inSlope: -0.013592666 + outSlope: -0.01356121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.004157342 + inSlope: -0.011161892 + outSlope: -0.011175881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0048029427 + inSlope: -0.008137438 + outSlope: -0.008151394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0052335486 + inSlope: -0.0028707995 + outSlope: -0.0028777895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.005183029 + inSlope: 0.0052317097 + outSlope: 0.0052317004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0045427894 + inSlope: 0.012649679 + outSlope: 0.0126916105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0035129362 + inSlope: 0.017182918 + outSlope: 0.017217811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0022758292 + inSlope: 0.018761478 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009668282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.009668284 + inSlope: 0.000041909512 + outSlope: 0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.009664818 + inSlope: 0.00030733642 + outSlope: 0.00032130632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.009651753 + inSlope: 0.0005308539 + outSlope: 0.00051688397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.009627904 + inSlope: 0.000684522 + outSlope: 0.0006565825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.009596539 + inSlope: 0.0006565825 + outSlope: 0.00068452215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00956514 + inSlope: 0.0005168841 + outSlope: 0.0004889444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.009543841 + inSlope: 0.00018160792 + outSlope: 0.00019557767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.009542554 + inSlope: -0.000097788834 + outSlope: -0.000111758716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0095586 + inSlope: -0.00025145712 + outSlope: -0.00025145712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.009581759 + inSlope: -0.00030733648 + outSlope: -0.00030733648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0096078105 + inSlope: -0.00022351743 + outSlope: -0.00026542696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.009632611 + inSlope: -0.00016763808 + outSlope: -0.00016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00965254 + inSlope: -0.000055879358 + outSlope: -0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.009664901 + inSlope: 0.0000698492 + outSlope: 0.00009778888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0096681705 + inSlope: 0.00025145712 + outSlope: 0.00022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.009662146 + inSlope: 0.0003632155 + outSlope: 0.00036321615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.009627954 + inSlope: 0.00047497498 + outSlope: 0.00044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.009605274 + inSlope: 0.00043306465 + outSlope: 0.00041909557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.009584092 + inSlope: 0.0003213066 + outSlope: 0.00034924567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.009568233 + inSlope: 0.00013969827 + outSlope: 0.00011175882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00957017 + inSlope: -0.00019557793 + outSlope: -0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.009593 + inSlope: -0.00029336638 + outSlope: -0.00030733674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.009623337 + inSlope: -0.00022351764 + outSlope: -0.00019557758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.009649445 + inSlope: -0.000069849135 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000019081485 + inSlope: 0 + outSlope: -0.0002032786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000000064747194 + inSlope: 0.20222218 + outSlope: 0.20297444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.026747921 + inSlope: 0.44253653 + outSlope: 0.44250864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.058406524 + inSlope: 0.4886091 + outSlope: 0.4885531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.091235675 + inSlope: 0.47821543 + outSlope: 0.47788027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.121515736 + inSlope: 0.4114956 + outSlope: 0.4117191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.14557959 + inSlope: 0.2896786 + outSlope: 0.28990212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.15981747 + inSlope: 0.11399389 + outSlope: 0.114217356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16063565 + inSlope: -0.0735372 + outSlope: -0.07353724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15009752 + inSlope: -0.20608307 + outSlope: -0.20653011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13339432 + inSlope: -0.29191378 + outSlope: -0.29146674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1115905 + inSlope: -0.36053362 + outSlope: -0.36075714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.08576244 + inSlope: -0.413619 + outSlope: -0.41317198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.05700613 + inSlope: -0.4491024 + outSlope: -0.44943768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.026437888 + inSlope: -0.46838078 + outSlope: -0.46801755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0048100254 + inSlope: -0.469666 + outSlope: -0.46967256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.03559812 + inSlope: -0.4542429 + outSlope: -0.45530543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.09118501 + inSlope: -0.37305093 + outSlope: -0.37170917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.113909476 + inSlope: -0.30588332 + outSlope: -0.30644268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.13159862 + inSlope: -0.22307059 + outSlope: -0.22374074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.14339711 + inSlope: -0.07890158 + outSlope: -0.07845469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.14201288 + inSlope: 0.14282776 + outSlope: 0.14349806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.12447056 + inSlope: 0.34622818 + outSlope: 0.3467876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.09625299 + inSlope: 0.47016934 + outSlope: 0.47117433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.062356796 + inSlope: 0.5138661 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99995327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99995327 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.999595 + inSlope: -0.011622905 + outSlope: -0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9982439 + inSlope: -0.028610231 + outSlope: -0.028610224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9957772 + inSlope: -0.044703476 + outSlope: -0.043809418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9925332 + inSlope: -0.050067905 + outSlope: -0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.989286 + inSlope: -0.042915348 + outSlope: -0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.98708314 + inSlope: -0.018775465 + outSlope: -0.018775456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9869503 + inSlope: 0.011622901 + outSlope: 0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9886098 + inSlope: 0.031292442 + outSlope: 0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99100477 + inSlope: 0.04023314 + outSlope: 0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9936995 + inSlope: 0.04023314 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9962641 + inSlope: 0.03576279 + outSlope: 0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.998325 + inSlope: 0.025928022 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9996033 + inSlope: 0.013411046 + outSlope: 0.012516976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9999417 + inSlope: -0.0026822092 + outSlope: -0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99931866 + inSlope: -0.016093241 + outSlope: -0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9957819 + inSlope: -0.03486875 + outSlope: -0.033974618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.993436 + inSlope: -0.035762757 + outSlope: -0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9912451 + inSlope: -0.029504327 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9896051 + inSlope: -0.011622896 + outSlope: -0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.98980504 + inSlope: 0.020563623 + outSlope: 0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99216646 + inSlope: 0.042915307 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9953042 + inSlope: 0.045597598 + outSlope: 0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99800473 + inSlope: 0.032186482 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04903133 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04903131 + inSlope: -0.10577961 + outSlope: -0.106282525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.06316576 + inSlope: -0.23670493 + outSlope: -0.23681672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.08058174 + inSlope: -0.2672151 + outSlope: -0.26710328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09877729 + inSlope: -0.26017424 + outSlope: -0.26028606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11527256 + inSlope: -0.21647663 + outSlope: -0.21636488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.12762025 + inSlope: -0.1358986 + outSlope: -0.13567509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.13339853 + inSlope: -0.018998982 + outSlope: -0.018998973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.13018028 + inSlope: 0.10773535 + outSlope: 0.108405955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.11896117 + inSlope: 0.2038479 + outSlope: 0.20429493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10296626 + inSlope: 0.26900324 + outSlope: 0.26900324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08308537 + inSlope: 0.3203005 + outSlope: 0.320524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.06022517 + inSlope: 0.35835433 + outSlope: 0.35824257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.03531391 + inSlope: 0.3817119 + outSlope: 0.38215894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.009299745 + inSlope: 0.39150476 + outSlope: 0.39109963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.016856406 + inSlope: 0.3860146 + outSlope: 0.38595837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.04219109 + inSlope: 0.3665124 + outSlope: 0.36640128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.065749094 + inSlope: 0.33237073 + outSlope: 0.33225837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.086532004 + inSlope: 0.28509623 + outSlope: 0.28565553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.10380168 + inSlope: 0.22396466 + outSlope: 0.22463481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.11644706 + inSlope: 0.14930952 + outSlope: 0.14942154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.12373253 + inSlope: 0.012069952 + outSlope: 0.011734654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.11801534 + inSlope: -0.20932388 + outSlope: -0.20977129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09575967 + inSlope: -0.415184 + outSlope: -0.41652435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.062559836 + inSlope: -0.54180574 + outSlope: -0.5419185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.023473982 + inSlope: -0.5861191 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.66038567 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6603857 + inSlope: 0.0053644176 + outSlope: 0.007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.65944934 + inSlope: 0.018775461 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.6579684 + inSlope: 0.025033953 + outSlope: 0.025033947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.6560329 + inSlope: 0.030398363 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.65393245 + inSlope: 0.028610231 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.6521428 + inSlope: 0.021457674 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.65124094 + inSlope: 0.003576279 + outSlope: 0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6517485 + inSlope: -0.017881386 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.65341735 + inSlope: -0.029504301 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6555308 + inSlope: -0.03397465 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.6577257 + inSlope: -0.031292442 + outSlope: -0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.6596637 + inSlope: -0.025928022 + outSlope: -0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.6610681 + inSlope: -0.016987326 + outSlope: -0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.66175175 + inSlope: -0.0053644185 + outSlope: -0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.66163534 + inSlope: 0.006258488 + outSlope: 0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6607538 + inSlope: 0.017881379 + outSlope: 0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.6592525 + inSlope: 0.025033975 + outSlope: 0.025927998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.65737927 + inSlope: 0.028610205 + outSlope: 0.029504327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.65542805 + inSlope: 0.027716186 + outSlope: 0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.65377015 + inSlope: 0.019669516 + outSlope: 0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.6527265 + inSlope: 0.0017881411 + outSlope: 0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.65355104 + inSlope: -0.030398343 + outSlope: -0.029504327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.65638155 + inSlope: -0.04917388 + outSlope: -0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.6594943 + inSlope: -0.04112717 + outSlope: -0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.6614782 + inSlope: -0.018775482 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.043283887 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04328392 + inSlope: 0.093318515 + outSlope: 0.094044946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.055761565 + inSlope: 0.20893289 + outSlope: 0.20904468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.07113608 + inSlope: 0.23592265 + outSlope: 0.23592259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08719879 + inSlope: 0.2296641 + outSlope: 0.22988768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10176053 + inSlope: 0.19099565 + outSlope: 0.19099565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.11266083 + inSlope: 0.119693585 + outSlope: 0.1199171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.11776183 + inSlope: 0.017099084 + outSlope: 0.016875558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11492082 + inSlope: -0.095106624 + outSlope: -0.0955537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.10501677 + inSlope: -0.17993154 + outSlope: -0.18015505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09089673 + inSlope: -0.23748727 + outSlope: -0.23726375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.07334625 + inSlope: -0.28286132 + outSlope: -0.28297308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.05316567 + inSlope: -0.31638893 + outSlope: -0.31610954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.031174446 + inSlope: -0.33698046 + outSlope: -0.3373437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.008209597 + inSlope: -0.34559986 + outSlope: -0.34523663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.014880594 + inSlope: -0.34079424 + outSlope: -0.34072408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0372456 + inSlope: -0.32365295 + outSlope: -0.32354176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.058042206 + inSlope: -0.29342276 + outSlope: -0.29342225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.076388985 + inSlope: -0.2516804 + outSlope: -0.25223964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.091634385 + inSlope: -0.19803663 + outSlope: -0.19837154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10279749 + inSlope: -0.13176341 + outSlope: -0.1318754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.10922895 + inSlope: -0.0102818115 + outSlope: -0.010281793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.10418195 + inSlope: 0.18496051 + outSlope: 0.18518436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.08453501 + inSlope: 0.36668068 + outSlope: 0.36723882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.055226803 + inSlope: 0.47815925 + outSlope: 0.47832772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.020722505 + inSlope: 0.5174154 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.748073 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7480729 + inSlope: -0.008046627 + outSlope: -0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7470122 + inSlope: -0.02145767 + outSlope: -0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7453347 + inSlope: -0.028610231 + outSlope: -0.029504294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7431421 + inSlope: -0.03486871 + outSlope: -0.03397465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.74076277 + inSlope: -0.03308058 + outSlope: -0.03397465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7387356 + inSlope: -0.024139883 + outSlope: -0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7377141 + inSlope: -0.0026822092 + outSlope: -0.0035762773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7382889 + inSlope: 0.020563595 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.74017936 + inSlope: 0.032186512 + outSlope: 0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7425733 + inSlope: 0.03665686 + outSlope: 0.038445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7450598 + inSlope: 0.03576279 + outSlope: 0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.7472551 + inSlope: 0.028610231 + outSlope: 0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.7488459 + inSlope: 0.016987326 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.7496204 + inSlope: 0.004470349 + outSlope: 0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.74948865 + inSlope: -0.008046628 + outSlope: -0.010728827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7484899 + inSlope: -0.019669516 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.74678934 + inSlope: -0.028610257 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.74466735 + inSlope: -0.032186482 + outSlope: -0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.7424571 + inSlope: -0.03129247 + outSlope: -0.032186482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7405791 + inSlope: -0.02413986 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7393967 + inSlope: -0.0026822116 + outSlope: -0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.7403307 + inSlope: 0.03308055 + outSlope: 0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.743537 + inSlope: 0.05185609 + outSlope: 0.052750066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7470632 + inSlope: 0.043809377 + outSlope: 0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7493105 + inSlope: 0.016093269 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.007333762 + inSlope: 0 + outSlope: 0.000013969838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.007333763 + inSlope: -0.012873205 + outSlope: -0.01290813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00561216 + inSlope: -0.02757646 + outSlope: -0.027562493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0036589634 + inSlope: -0.0303844 + outSlope: -0.030370424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0015597368 + inSlope: -0.031926315 + outSlope: -0.031929813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0005982961 + inSlope: -0.032154206 + outSlope: -0.03215246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0027271535 + inSlope: -0.03105146 + outSlope: -0.031044476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0047391914 + inSlope: -0.028659126 + outSlope: -0.028652128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0065481304 + inSlope: -0.024971077 + outSlope: -0.024964103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.008069663 + inSlope: -0.02004672 + outSlope: -0.02003275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.009221426 + inSlope: -0.013872051 + outSlope: -0.013872051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.009922297 + inSlope: -0.006523915 + outSlope: -0.006523915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.010091001 + inSlope: 0.001480803 + outSlope: 0.001480803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.009725332 + inSlope: 0.008800999 + outSlope: 0.00877306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.008920346 + inSlope: 0.014905819 + outSlope: 0.014877879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0077389544 + inSlope: 0.020053705 + outSlope: 0.020053687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.006244277 + inSlope: 0.02425162 + outSlope: 0.024286587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.004500538 + inSlope: 0.027471714 + outSlope: 0.02746468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0025797682 + inSlope: 0.02975224 + outSlope: 0.029822141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0005305807 + inSlope: 0.030988624 + outSlope: 0.03103921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0015533069 + inSlope: 0.0311824 + outSlope: 0.031184202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0036288474 + inSlope: 0.030352997 + outSlope: 0.030345956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00560197 + inSlope: 0.028512416 + outSlope: 0.028540408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.007429791 + inSlope: 0.025662618 + outSlope: 0.025697496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.009024127 + inSlope: 0.02182087 + outSlope: 0.021820908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.010340802 + inSlope: 0.01972543 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06563248 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.065632485 + inSlope: -0.0017881392 + outSlope: -0.0017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0658522 + inSlope: -0.0029057262 + outSlope: -0.0029057267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0660302 + inSlope: -0.0021234157 + outSlope: -0.0022351737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.066137634 + inSlope: -0.0008940695 + outSlope: -0.000782311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06615795 + inSlope: 0.00044703486 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.06608856 + inSlope: 0.0016763808 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.065941066 + inSlope: 0.002793968 + outSlope: 0.002682208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.065740086 + inSlope: 0.0033527599 + outSlope: 0.0032410028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06552045 + inSlope: 0.0032410028 + outSlope: 0.0032410028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.065323144 + inSlope: 0.0025704505 + outSlope: 0.0024586918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0651899 + inSlope: 0.0012293459 + outSlope: 0.0011175872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.06515631 + inSlope: -0.000111758716 + outSlope: -0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.06522836 + inSlope: -0.001564622 + outSlope: -0.0016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.06537731 + inSlope: -0.0025704505 + outSlope: -0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.06557215 + inSlope: -0.003129244 + outSlope: -0.002905724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.06577841 + inSlope: -0.0030174826 + outSlope: -0.0029057292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.06596273 + inSlope: -0.002458694 + outSlope: -0.0022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06609623 + inSlope: -0.0015646206 + outSlope: -0.0013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0661587 + inSlope: -0.00011175882 + outSlope: -0.00033527584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.06613783 + inSlope: 0.0011175862 + outSlope: 0.0010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.06603235 + inSlope: 0.0022351763 + outSlope: 0.0021234136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.065853335 + inSlope: 0.0031292413 + outSlope: 0.0031292469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.065618485 + inSlope: 0.0037997998 + outSlope: 0.0037997928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.06535889 + inSlope: 0.0039115516 + outSlope: 0.0039115585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.065105565 + inSlope: 0.0040233172 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12598574 + inSlope: 0 + outSlope: -0.0002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.12598574 + inSlope: 0.22105871 + outSlope: 0.22150575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09641026 + inSlope: 0.47374514 + outSlope: 0.47340992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.06285626 + inSlope: 0.522025 + outSlope: 0.5221366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.02679362 + inSlope: 0.5485116 + outSlope: 0.5485397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01027928 + inSlope: 0.5523116 + outSlope: 0.55232555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.046850927 + inSlope: 0.53336847 + outSlope: 0.53336847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.08141575 + inSlope: 0.49229714 + outSlope: 0.49218518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11249156 + inSlope: 0.42926502 + outSlope: 0.4288182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.13862997 + inSlope: 0.34421685 + outSlope: 0.34444037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15841617 + inSlope: 0.23826958 + outSlope: 0.2384931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.17045648 + inSlope: 0.111982234 + outSlope: 0.111982234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.17335467 + inSlope: -0.02525747 + outSlope: -0.02525747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.16707289 + inSlope: -0.15109779 + outSlope: -0.15065075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.15324408 + inSlope: -0.256151 + outSlope: -0.25570396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13294896 + inSlope: -0.3446639 + outSlope: -0.34444004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.10727196 + inSlope: -0.4169714 + outSlope: -0.4170839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.07731636 + inSlope: -0.47184572 + outSlope: -0.47195664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.044319484 + inSlope: -0.5111839 + outSlope: -0.51219064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.009116545 + inSlope: -0.53233516 + outSlope: -0.53321433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.026682526 + inSlope: -0.5356311 + outSlope: -0.5356321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.062338214 + inSlope: -0.521299 + outSlope: -0.52135396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09623447 + inSlope: -0.48972625 + outSlope: -0.49006242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.12763461 + inSlope: -0.44055325 + outSlope: -0.44144654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.15502374 + inSlope: -0.3748384 + outSlope: -0.37483907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.17764293 + inSlope: -0.3384057 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9898314 + inSlope: 0 + outSlope: -0.0008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9898314 + inSlope: 0.028610228 + outSlope: 0.027716158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.993145 + inSlope: 0.04559755 + outSlope: 0.045597557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99582916 + inSlope: 0.03308058 + outSlope: 0.033080574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9974495 + inSlope: 0.015199182 + outSlope: 0.014305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99775606 + inSlope: -0.0053644185 + outSlope: -0.006258488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9967095 + inSlope: -0.025033953 + outSlope: -0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99448514 + inSlope: -0.04023314 + outSlope: -0.03933905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99145395 + inSlope: -0.048279744 + outSlope: -0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.98814154 + inSlope: -0.048279766 + outSlope: -0.048279766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9851661 + inSlope: -0.038445 + outSlope: -0.038445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9831563 + inSlope: -0.019669535 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98265 + inSlope: 0.004470349 + outSlope: 0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9837364 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.98598295 + inSlope: 0.03933907 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9889211 + inSlope: 0.046491627 + outSlope: 0.045597516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9920317 + inSlope: 0.045597516 + outSlope: 0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99481195 + inSlope: 0.03665689 + outSlope: 0.037550896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99682516 + inSlope: 0.022351723 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9977673 + inSlope: 0.0044703525 + outSlope: 0.0053644134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9974525 + inSlope: -0.014305103 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9958617 + inSlope: -0.033080608 + outSlope: -0.032186482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99316204 + inSlope: -0.04738565 + outSlope: -0.047385737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9896203 + inSlope: -0.05632644 + outSlope: -0.05722041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.98570496 + inSlope: -0.05900855 + outSlope: -0.057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.98188454 + inSlope: -0.060796797 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.044245433 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04424541 + inSlope: -0.04196539 + outSlope: -0.04202127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04984394 + inSlope: -0.12148171 + outSlope: -0.12176112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.060462926 + inSlope: -0.050235543 + outSlope: -0.049956135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.056530945 + inSlope: 0.16087663 + outSlope: 0.16093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0389773 + inSlope: 0.28990212 + outSlope: 0.28984624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.017835362 + inSlope: 0.3370643 + outSlope: 0.33709222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0060276114 + inSlope: 0.37100402 + outSlope: 0.37094796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.031716034 + inSlope: 0.3914906 + outSlope: 0.39098787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05831491 + inSlope: 0.39758164 + outSlope: 0.3979728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08490576 + inSlope: 0.39070848 + outSlope: 0.39026144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.11058581 + inSlope: 0.37014487 + outSlope: 0.37048015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.13448617 + inSlope: 0.33795837 + outSlope: 0.3370643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.15578483 + inSlope: 0.29280785 + outSlope: 0.29280785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.17371057 + inSlope: 0.23670496 + outSlope: 0.23759903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.18753552 + inSlope: 0.17032029 + outSlope: 0.17076716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.19655523 + inSlope: 0.09365372 + outSlope: 0.09343037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.20005782 + inSlope: -0.0040233172 + outSlope: -0.0033527585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.19606563 + inSlope: -0.12136985 + outSlope: -0.12137008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.18387093 + inSlope: -0.23379944 + outSlope: -0.23446958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.1648851 + inSlope: -0.32879385 + outSlope: -0.3283474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.14014193 + inSlope: -0.40344933 + outSlope: -0.4032251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.111284345 + inSlope: -0.4568692 + outSlope: -0.4580994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.079404496 + inSlope: -0.48816252 + outSlope: -0.48872042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.046445347 + inSlope: -0.49464363 + outSlope: -0.49475628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.013622433 + inSlope: -0.49341518 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03321047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03321047 + inSlope: 0.005085021 + outSlope: 0.004973262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.033868145 + inSlope: 0.012125819 + outSlope: 0.01223758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.034764353 + inSlope: 0.020619484 + outSlope: 0.020563599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.03661205 + inSlope: 0.03470107 + outSlope: 0.034645204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.039256427 + inSlope: 0.04531816 + outSlope: 0.045094643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.042271655 + inSlope: 0.0506267 + outSlope: 0.05057082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.045514658 + inSlope: 0.053755943 + outSlope: 0.053644158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.048847444 + inSlope: 0.054705866 + outSlope: 0.054482374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.052141145 + inSlope: 0.053308908 + outSlope: 0.053364787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.05527988 + inSlope: 0.050179664 + outSlope: 0.050179664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.058163766 + inSlope: 0.0452064 + outSlope: 0.045150522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.06071063 + inSlope: 0.039003793 + outSlope: 0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.06285593 + inSlope: 0.031962994 + outSlope: 0.031739477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.06455047 + inSlope: 0.023692848 + outSlope: 0.023804607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0657558 + inSlope: 0.015087427 + outSlope: 0.015199171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.066437386 + inSlope: 0.0062584826 + outSlope: 0.0063702525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.066555575 + inSlope: -0.0040233172 + outSlope: -0.004246827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.06588148 + inSlope: -0.016205 + outSlope: -0.016540304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.06428815 + inSlope: -0.027604427 + outSlope: -0.027716137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.061896414 + inSlope: -0.03721562 + outSlope: -0.037103925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.05876996 + inSlope: -0.04548584 + outSlope: -0.045597516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.055054642 + inSlope: -0.05241479 + outSlope: -0.052414883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.050840735 + inSlope: -0.05749991 + outSlope: -0.057611566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.04635156 + inSlope: -0.06051729 + outSlope: -0.060461517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.04173793 + inSlope: -0.06258494 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17222728 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.17222728 + inSlope: -0.065267086 + outSlope: -0.06571412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18096808 + inSlope: -0.18909572 + outSlope: -0.18931927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.19738099 + inSlope: -0.08404256 + outSlope: -0.08337198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19216338 + inSlope: 0.22999938 + outSlope: 0.23022296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16661532 + inSlope: 0.42378905 + outSlope: 0.42334202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.13565639 + inSlope: 0.49576166 + outSlope: 0.49553815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.1004909 + inSlope: 0.5496294 + outSlope: 0.5498526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.062384557 + inSlope: 0.58444196 + outSlope: 0.5840511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0226587 + inSlope: 0.59871936 + outSlope: 0.59911054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.017328992 + inSlope: 0.59301966 + outSlope: 0.5926565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05621127 + inSlope: 0.56611377 + outSlope: 0.56667256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.09263973 + inSlope: 0.5199016 + outSlope: 0.51945454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.12530816 + inSlope: 0.45329335 + outSlope: 0.4537404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.15296514 + inSlope: 0.36947432 + outSlope: 0.36835673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.1744115 + inSlope: 0.2664328 + outSlope: 0.26643255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.18848233 + inSlope: 0.14752138 + outSlope: 0.14640404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.1940136 + inSlope: -0.004246835 + outSlope: -0.0040233103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.18792742 + inSlope: -0.18507227 + outSlope: -0.18663722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.1691831 + inSlope: -0.35673413 + outSlope: -0.35852164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.14006706 + inSlope: -0.4993375 + outSlope: -0.49911487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.10230716 + inSlope: -0.6086385 + outSlope: -0.60852563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.058546156 + inSlope: -0.6854715 + outSlope: -0.68664616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.010548314 + inSlope: -0.7271308 + outSlope: -0.728289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.038697343 + inSlope: -0.73257774 + outSlope: -0.7326349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.08736118 + inSlope: -0.7264323 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98350245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.98350245 + inSlope: -0.014305114 + outSlope: -0.0125169745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.981641 + inSlope: -0.04202127 + outSlope: -0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.97784275 + inSlope: -0.020563604 + outSlope: -0.019669529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9790491 + inSlope: 0.052750103 + outSlope: 0.052750114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.984469 + inSlope: 0.08225442 + outSlope: 0.07957221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.98969305 + inSlope: 0.07241965 + outSlope: 0.07241965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9938781 + inSlope: 0.050961975 + outSlope: 0.050067883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9963515 + inSlope: 0.022351732 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9966781 + inSlope: -0.012516976 + outSlope: -0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99470335 + inSlope: -0.047385696 + outSlope: -0.045597557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9905695 + inSlope: -0.07689 + outSlope: -0.07510186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9847059 + inSlope: -0.09566546 + outSlope: -0.0974536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.97779244 + inSlope: -0.10818244 + outSlope: -0.10728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9707005 + inSlope: -0.10281802 + outSlope: -0.10102988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9644103 + inSlope: -0.08225442 + outSlope: -0.08225434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9599097 + inSlope: -0.04738565 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9580741 + inSlope: 0.0017881411 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9601569 + inSlope: 0.062584825 + outSlope: 0.061690867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.96614474 + inSlope: 0.109076604 + outSlope: 0.10818234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.97435254 + inSlope: 0.12874593 + outSlope: 0.12964022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9830766 + inSlope: 0.123381734 + outSlope: 0.12516965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9905337 + inSlope: 0.0947713 + outSlope: 0.095665544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99548924 + inSlope: 0.04917388 + outSlope: 0.05006786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99709415 + inSlope: -0.0026822067 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9952087 + inSlope: -0.054538302 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.1628875e-11 + inSlope: 0 + outSlope: -0.0000002828483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.577397e-11 + inSlope: 0.00028491655 + outSlope: 0.00028598186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000037688096 + inSlope: 0.0006250957 + outSlope: 0.00062493206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00008250127 + inSlope: 0.0006921619 + outSlope: 0.00069227087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00012908847 + inSlope: 0.00067862845 + outSlope: 0.00067841035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00017210124 + inSlope: 0.0005836774 + outSlope: 0.00058389566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00020619796 + inSlope: 0.00040796297 + outSlope: 0.00040839953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00022604442 + inSlope: 0.00015192201 + outSlope: 0.00015170366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00022630816 + inSlope: -0.0001226726 + outSlope: -0.00012267266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00020990105 + inSlope: -0.00031781386 + outSlope: -0.00031803214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00018438774 + inSlope: -0.00044310585 + outSlope: -0.00044288757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00015141025 + inSlope: -0.0005435141 + outSlope: -0.0005441689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00011261249 + inSlope: -0.00061969337 + outSlope: -0.00061936595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000069641224 + inSlope: -0.0006700066 + outSlope: -0.0006704432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000024146051 + inSlope: -0.00069611816 + outSlope: -0.0006955179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000022221293 + inSlope: -0.00069639104 + outSlope: -0.0006961176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00006780827 + inSlope: -0.00067186134 + outSlope: -0.00067349966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00014992205 + inSlope: -0.00054984464 + outSlope: -0.0005480974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00018338024 + inSlope: -0.00044899897 + outSlope: -0.00045009117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00020928368 + inSlope: -0.00032479907 + outSlope: -0.00032545332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00022630814 + inSlope: -0.0001047737 + outSlope: -0.000104337334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00022311024 + inSlope: 0.00023683265 + outSlope: 0.00023770533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00019500607 + inSlope: 0.0005494071 + outSlope: 0.0005504995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00015056467 + inSlope: 0.00073821936 + outSlope: 0.0007395277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00009752391 + inSlope: 0.0008034833 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0047167693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0047167693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0047166175 + inSlope: 0.000013969838 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0047160476 + inSlope: 0.0000069849198 + outSlope: 0.000013969836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004715002 + inSlope: 0.000013969836 + outSlope: 0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0047136284 + inSlope: 0.00002095476 + outSlope: 0.00002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0047122594 + inSlope: 0.00002095476 + outSlope: 0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.004711349 + inSlope: 0.0000069849198 + outSlope: 0.0000069849166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.004711337 + inSlope: -0.0000069849166 + outSlope: -0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0047120955 + inSlope: -0.0000139698395 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.004713164 + inSlope: -0.00002095476 + outSlope: -0.00002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.004714338 + inSlope: -0.0000139698395 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.004715425 + inSlope: -0.00002095476 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.004716255 + inSlope: -0.0000069849198 + outSlope: -0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.004716707 + inSlope: 0 + outSlope: -0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.004716717 + inSlope: 0 + outSlope: 0.0000069849134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.004716281 + inSlope: 0.000013969827 + outSlope: 0.000006984926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0047143856 + inSlope: 0.000020954778 + outSlope: 0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0047132033 + inSlope: 0.000013969827 + outSlope: 0.000013969852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.004712124 + inSlope: 0.000013969852 + outSlope: 0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.004711337 + inSlope: 0.0000069849134 + outSlope: 0.000006984926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.004711489 + inSlope: -0.000013969852 + outSlope: -0.0000069849134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0047127367 + inSlope: -0.00002095474 + outSlope: -0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0047143656 + inSlope: -0.000027939705 + outSlope: -0.00002095474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.004715761 + inSlope: -0.000013969827 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000013207039 + inSlope: 0 + outSlope: 0.00006052253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 5.3547655e-10 + inSlope: -0.06040422 + outSlope: -0.06063006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0079899235 + inSlope: -0.13253185 + outSlope: -0.13250393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.017490366 + inSlope: -0.14676714 + outSlope: -0.14679503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.027366906 + inSlope: -0.14388931 + outSlope: -0.14388935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.036485672 + inSlope: -0.12382866 + outSlope: -0.12382866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.043714214 + inSlope: -0.08655713 + outSlope: -0.086668886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.04792169 + inSlope: -0.03229827 + outSlope: -0.032242376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.047977593 + inSlope: 0.025928011 + outSlope: 0.025983902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04449927 + inSlope: 0.06733463 + outSlope: 0.06733463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.039090417 + inSlope: 0.09387732 + outSlope: 0.09387732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03209915 + inSlope: 0.11516736 + outSlope: 0.115334995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.023873985 + inSlope: 0.13134444 + outSlope: 0.13128856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.014764021 + inSlope: 0.1420174 + outSlope: 0.14212915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0051189945 + inSlope: 0.14757739 + outSlope: 0.14744467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.004710937 + inSlope: 0.14764723 + outSlope: 0.14759122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.01437543 + inSlope: 0.14245033 + outSlope: 0.14282776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.031783648 + inSlope: 0.116620325 + outSlope: 0.11622896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.038876824 + inSlope: 0.09527422 + outSlope: 0.09544203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.04436838 + inSlope: 0.06889931 + outSlope: 0.06906682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.04797759 + inSlope: 0.022295844 + outSlope: 0.022184124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.047299627 + inSlope: -0.05017971 + outSlope: -0.050291378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04134151 + inSlope: -0.1163966 + outSlope: -0.116676204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.03191988 + inSlope: -0.15646234 + outSlope: -0.15668558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.020675171 + inSlope: -0.17032012 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99998885 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99998885 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9999569 + inSlope: -0.0017881392 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9998359 + inSlope: -0.0017881395 + outSlope: -0.0026822085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9996143 + inSlope: -0.003576278 + outSlope: -0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.999323 + inSlope: -0.004470349 + outSlope: -0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9990329 + inSlope: -0.003576279 + outSlope: -0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9988399 + inSlope: -0.0017881395 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99883723 + inSlope: 0.0008940693 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9989982 + inSlope: 0.0026822092 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99922454 + inSlope: 0.004470349 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9994735 + inSlope: 0.003576279 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9997038 + inSlope: 0.003576279 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99987984 + inSlope: 0.0017881395 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.99997574 + inSlope: 0.00089406973 + outSlope: 0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99997777 + inSlope: -0.00089406973 + outSlope: -0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9998855 + inSlope: -0.0026822067 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9994836 + inSlope: -0.0044703525 + outSlope: -0.0035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9992328 + inSlope: -0.0035762757 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99900407 + inSlope: -0.0026822116 + outSlope: -0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99883723 + inSlope: -0.0008940689 + outSlope: -0.00089407054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9988696 + inSlope: 0.0026822116 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9991339 + inSlope: 0.0044703446 + outSlope: 0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9994793 + inSlope: 0.005364423 + outSlope: 0.0044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9997751 + inSlope: 0.0035762757 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00089224253 + inSlope: 0 + outSlope: -0.0000026193445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00089224253 + inSlope: -0.00016327247 + outSlope: -0.00016414559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0008705533 + inSlope: -0.00068015646 + outSlope: -0.0006810297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00080209324 + inSlope: -0.0014528633 + outSlope: -0.0014546092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00067818165 + inSlope: -0.0022054878 + outSlope: -0.0022072347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0005109182 + inSlope: -0.002603629 + outSlope: -0.002603629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00033457042 + inSlope: -0.0026935597 + outSlope: -0.00269225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0001557369 + inSlope: -0.0026782802 + outSlope: -0.0026778425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000019323401 + inSlope: -0.0025730687 + outSlope: -0.0025713237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00018435073 + inSlope: -0.0023770556 + outSlope: -0.0023779287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0003331175 + inSlope: -0.0020902373 + outSlope: -0.0020867449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0004594457 + inSlope: -0.0017025742 + outSlope: -0.0017060667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0005572122 + inSlope: -0.0012249803 + outSlope: -0.0012206148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00062033144 + inSlope: -0.0006478513 + outSlope: -0.00064959755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00064272597 + inSlope: 0.0000017462299 + outSlope: 0.00000087311497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00062033144 + inSlope: 0.000645232 + outSlope: 0.0006452314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0005572122 + inSlope: 0.0012118825 + outSlope: 0.0012206158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00033355062 + inSlope: 0.0020858736 + outSlope: 0.0020832506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00018435076 + inSlope: 0.0023713782 + outSlope: 0.0023753115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000019857805 + inSlope: 0.0025739453 + outSlope: 0.0025791794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00015573706 + inSlope: 0.002681552 + outSlope: 0.0026813385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00033401232 + inSlope: 0.0026909427 + outSlope: 0.002691811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00051091815 + inSlope: 0.0026036266 + outSlope: 0.0026079968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0006776966 + inSlope: 0.0022054904 + outSlope: 0.0022115982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00080209324 + inSlope: 0.0018859266 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012006575 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.012006575 + inSlope: 0.000027939675 + outSlope: 0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.012009124 + inSlope: 0.000083819024 + outSlope: 0.0000698492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.012016493 + inSlope: 0.0001396984 + outSlope: 0.00012572853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.012027236 + inSlope: 0.0001536682 + outSlope: 0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0120364735 + inSlope: 0.00009778888 + outSlope: 0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.012039681 + inSlope: 0 + outSlope: -0.000027939679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.012036124 + inSlope: -0.000111758716 + outSlope: -0.000111758665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.01202601 + inSlope: -0.00020954749 + outSlope: -0.0002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.012010471 + inSlope: -0.0002793968 + outSlope: -0.0002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.01199147 + inSlope: -0.00029336664 + outSlope: -0.00032130632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.011971604 + inSlope: -0.00029336664 + outSlope: -0.00029336664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.011953877 + inSlope: -0.00023748727 + outSlope: -0.00022351743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.011941338 + inSlope: -0.00012572856 + outSlope: -0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0119366795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.011941338 + inSlope: 0.0001396984 + outSlope: 0.00012572845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.011953877 + inSlope: 0.00022351723 + outSlope: 0.00023748749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.011991409 + inSlope: 0.0002933669 + outSlope: 0.00029336638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.012010471 + inSlope: 0.0002514569 + outSlope: 0.00023748749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.012025967 + inSlope: 0.00019557793 + outSlope: 0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.012036123 + inSlope: 0.00009778879 + outSlope: 0.000097788965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.012039681 + inSlope: -0.000013969852 + outSlope: -0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.012036472 + inSlope: -0.00009778879 + outSlope: -0.00012572866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.012027273 + inSlope: -0.00018160808 + outSlope: -0.0001536681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.012016492 + inSlope: -0.00018160776 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.091348015 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.091348015 + inSlope: -0.021904705 + outSlope: -0.021904705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08844742 + inSlope: -0.0911951 + outSlope: -0.09130687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.079293564 + inSlope: -0.19468369 + outSlope: -0.19468364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06273124 + inSlope: -0.29470766 + outSlope: -0.2948195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.040386584 + inSlope: -0.3476255 + outSlope: -0.3475696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.016843433 + inSlope: -0.3590528 + outSlope: -0.3590528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0070158555 + inSlope: -0.35755107 + outSlope: -0.35751596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.030356396 + inSlope: -0.34349027 + outSlope: -0.34321102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.05234544 + inSlope: -0.3165007 + outSlope: -0.31666833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07215627 + inSlope: -0.27760866 + outSlope: -0.2772734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08897044 + inSlope: -0.2257526 + outSlope: -0.22597612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.10197759 + inSlope: -0.16238542 + outSlope: -0.16182663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.11037265 + inSlope: -0.08616597 + outSlope: -0.08616597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.11335074 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11037265 + inSlope: 0.085942455 + outSlope: 0.08616589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10197759 + inSlope: 0.16182648 + outSlope: 0.1630561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.07221392 + inSlope: 0.27783242 + outSlope: 0.27749664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.052345432 + inSlope: 0.31627688 + outSlope: 0.31700388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.030427646 + inSlope: 0.34315544 + outSlope: 0.34379745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00701584 + inSlope: 0.3573831 + outSlope: 0.35733485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.01676894 + inSlope: 0.35880166 + outSlope: 0.35888484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04038659 + inSlope: 0.3475134 + outSlope: 0.3481287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.06266645 + inSlope: 0.29448447 + outSlope: 0.29504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.079293564 + inSlope: 0.2516804 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99574625 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99574625 + inSlope: 0.0026822088 + outSlope: 0.0017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9960081 + inSlope: 0.008046627 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99677855 + inSlope: 0.015199185 + outSlope: 0.016093252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99795777 + inSlope: 0.01877546 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9991115 + inSlope: 0.014305116 + outSlope: 0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99978554 + inSlope: 0.006258488 + outSlope: 0.006258488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99990296 + inSlope: -0.0026822092 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99946684 + inSlope: -0.010728832 + outSlope: -0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99855673 + inSlope: -0.016987326 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9973212 + inSlope: -0.019669535 + outSlope: -0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9959622 + inSlope: -0.020563604 + outSlope: -0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9947146 + inSlope: -0.016987326 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99381834 + inSlope: -0.008940698 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9934832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99381834 + inSlope: 0.009834767 + outSlope: 0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9947146 + inSlope: 0.016093241 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.997317 + inSlope: 0.020563623 + outSlope: 0.019669516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99855673 + inSlope: 0.016093241 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9994647 + inSlope: 0.010728846 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99990296 + inSlope: 0.0017881378 + outSlope: 0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9997868 + inSlope: -0.0062584938 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9991115 + inSlope: -0.013411034 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9979618 + inSlope: -0.018775482 + outSlope: -0.018775448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99677855 + inSlope: -0.020563586 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012486689 + inSlope: 0 + outSlope: 0.0000024010658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00012485843 + inSlope: -0.0016416742 + outSlope: -0.001647786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00034204268 + inSlope: -0.003645691 + outSlope: -0.0036456916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0006061414 + inSlope: -0.0040887976 + outSlope: -0.0040879236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00088176975 + inSlope: -0.0039953734 + outSlope: -0.003994501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.001133629 + inSlope: -0.00337197 + outSlope: -0.003364985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0013266094 + inSlope: -0.0022107272 + outSlope: -0.0022124734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0014257816 + inSlope: -0.00052561524 + outSlope: -0.000525615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0013962213 + inSlope: 0.0013044332 + outSlope: 0.0013009413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.001253967 + inSlope: 0.0026472847 + outSlope: 0.0026490309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0010465682 + inSlope: 0.0035431006 + outSlope: 0.0035431006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00078623 + inSlope: 0.0042494508 + outSlope: 0.0042546894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00048525535 + inSlope: 0.004774193 + outSlope: 0.00477201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00015606885 + inSlope: 0.0051042303 + outSlope: 0.005108159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0001887942 + inSlope: 0.0052504768 + outSlope: 0.0052454565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0005367393 + inSlope: 0.0051976535 + outSlope: 0.0051959027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0008751748 + inSlope: 0.004955796 + outSlope: 0.004970648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0014727645 + inSlope: 0.003929021 + outSlope: 0.0039167902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0017089228 + inSlope: 0.0031205101 + outSlope: 0.0031275006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0018850601 + inSlope: 0.0021391336 + outSlope: 0.0021373834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.001991298 + inSlope: 0.00034575321 + outSlope: 0.00034575383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0019308814 + inSlope: -0.0025006034 + outSlope: -0.0025023452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0016605319 + inSlope: -0.00513915 + outSlope: -0.005149637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0012518932 + inSlope: -0.0067474386 + outSlope: -0.006757904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00076933566 + inSlope: -0.0073132045 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.014307353 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0143073695 + inSlope: 0.000013969838 + outSlope: 0.000013969838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.014303824 + inSlope: 0.00009778886 + outSlope: 0.0000698492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.014295069 + inSlope: 0.00015366824 + outSlope: 0.00018160787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.014280717 + inSlope: 0.00025145707 + outSlope: 0.00023748727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.014262933 + inSlope: 0.00026542696 + outSlope: 0.0002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.014246282 + inSlope: 0.00019557776 + outSlope: 0.0002095476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.014236697 + inSlope: 0.000055879358 + outSlope: 0.000055879333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.014239628 + inSlope: -0.0001257285 + outSlope: -0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.014252858 + inSlope: -0.00023748727 + outSlope: -0.00023748727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.014269587 + inSlope: -0.00025145712 + outSlope: -0.00026542696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.014286295 + inSlope: -0.00025145712 + outSlope: -0.00022351743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.014299683 + inSlope: -0.00016763808 + outSlope: -0.00015366824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.014307063 + inSlope: -0.000055879358 + outSlope: -0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.014306667 + inSlope: 0.00008381904 + outSlope: 0.000055879358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.014297843 + inSlope: 0.00019557776 + outSlope: 0.00018160776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.014281125 + inSlope: 0.00029336638 + outSlope: 0.00030733674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.014231916 + inSlope: 0.0004051257 + outSlope: 0.00040512497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.014205492 + inSlope: 0.00037718532 + outSlope: 0.00036321615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.014183193 + inSlope: 0.0002933669 + outSlope: 0.00027939654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.014168669 + inSlope: 0.00004190948 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.014177028 + inSlope: -0.0003492463 + outSlope: -0.00033527584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.014211223 + inSlope: -0.00060070254 + outSlope: -0.00060070364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.014253032 + inSlope: -0.0005867338 + outSlope: -0.00058673276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0142872045 + inSlope: -0.00039115516 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008725365 + inSlope: 0 + outSlope: -0.00012572855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.008725356 + inSlope: 0.11474825 + outSlope: 0.11516734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.02390295 + inSlope: 0.25483778 + outSlope: 0.2548099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.04235908 + inSlope: 0.28571117 + outSlope: 0.28576696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.061620943 + inSlope: 0.27922907 + outSlope: 0.27917328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.079221725 + inSlope: 0.23558737 + outSlope: 0.2352521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.09270787 + inSlope: 0.15456231 + outSlope: 0.15456231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.099638365 + inSlope: 0.036880378 + outSlope: 0.0367686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09757263 + inSlope: -0.09097155 + outSlope: -0.0909716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08763139 + inSlope: -0.18484892 + outSlope: -0.1851842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07313761 + inSlope: -0.24765731 + outSlope: -0.24732204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.054944284 + inSlope: -0.2969988 + outSlope: -0.29722232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.033911113 + inSlope: -0.33365566 + outSlope: -0.33343214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.010906437 + inSlope: -0.3566919 + outSlope: -0.3569713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.01319382 + inSlope: -0.36691782 + outSlope: -0.3665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03750942 + inSlope: -0.36321583 + outSlope: -0.36315963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.06116048 + inSlope: -0.34639582 + outSlope: -0.34740227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.10292216 + inSlope: -0.27470317 + outSlope: -0.27369684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.119425714 + inSlope: -0.21804106 + outSlope: -0.21848848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.1317348 + inSlope: -0.1495333 + outSlope: -0.14953303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.13915911 + inSlope: -0.02413986 + outSlope: -0.024139903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.13493705 + inSlope: 0.17479078 + outSlope: 0.17479047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.11604416 + inSlope: 0.35908043 + outSlope: 0.3598634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.08748714 + inSlope: 0.4716222 + outSlope: 0.47218016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.05376445 + inSlope: 0.511128 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9998596 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9998596 + inSlope: -0.0008940696 + outSlope: -0.0008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99961185 + inSlope: -0.0062584872 + outSlope: -0.0053644185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9990001 + inSlope: -0.011622907 + outSlope: -0.012516974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99799705 + inSlope: -0.01788139 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99675435 + inSlope: -0.018775465 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99559057 + inSlope: -0.014305116 + outSlope: -0.014305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9949209 + inSlope: -0.003576279 + outSlope: -0.0035762773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9951256 + inSlope: 0.008940693 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99605024 + inSlope: 0.016093256 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99721926 + inSlope: 0.017881395 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.998387 + inSlope: 0.016987326 + outSlope: 0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9993225 + inSlope: 0.011622907 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9998382 + inSlope: 0.003576279 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9998106 + inSlope: -0.0053644185 + outSlope: -0.004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99919385 + inSlope: -0.013411046 + outSlope: -0.013411034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9980254 + inSlope: -0.020563586 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9945865 + inSlope: -0.028610257 + outSlope: -0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99274004 + inSlope: -0.025927998 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99118173 + inSlope: -0.020563623 + outSlope: -0.019669516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9901667 + inSlope: -0.0026822067 + outSlope: -0.0035762822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9907509 + inSlope: 0.024139903 + outSlope: 0.02413986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99314106 + inSlope: 0.04202124 + outSlope: 0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99606293 + inSlope: 0.041127246 + outSlope: 0.04112717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9984511 + inSlope: 0.027716137 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00042691777 + inSlope: 0 + outSlope: -0.0000013096723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00042691777 + inSlope: 0.001144217 + outSlope: 0.0011485826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00027343436 + inSlope: 0.0024730978 + outSlope: 0.002472225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00009791765 + inSlope: 0.0027287025 + outSlope: 0.0027285928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00009017564 + inSlope: 0.002847882 + outSlope: 0.002847992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00028132548 + inSlope: 0.0028149227 + outSlope: 0.0028149227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.00046601193 + inSlope: 0.0026472847 + outSlope: 0.0026477212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00063478376 + inSlope: 0.0023425675 + outSlope: 0.0023434395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0007783078 + inSlope: 0.0018920393 + outSlope: 0.0018902939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00088737777 + inSlope: 0.00130618 + outSlope: 0.0013079263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0009528748 + inSlope: 0.0005867333 + outSlope: 0.00059022574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00096567214 + inSlope: -0.00018771972 + outSlope: -0.00018946595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0009279151 + inSlope: -0.00086001825 + outSlope: -0.000858272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00085180067 + inSlope: -0.0013882528 + outSlope: -0.001389126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0007431765 + inSlope: -0.0018344146 + outSlope: -0.0018326683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0006079068 + inSlope: -0.0021854069 + outSlope: -0.0021854048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00045191933 + inSlope: -0.0024499584 + outSlope: -0.0024512724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0002812241 + inSlope: -0.0026189107 + outSlope: -0.0026193426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00010247863 + inSlope: -0.0027122202 + outSlope: -0.0027166996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00007987204 + inSlope: -0.002701202 + outSlope: -0.0027061084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0002574158 + inSlope: -0.0025957685 + outSlope: -0.0025953366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0004262094 + inSlope: -0.0024006318 + outSlope: -0.0024006274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0005780883 + inSlope: -0.002119048 + outSlope: -0.0021225445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00070892414 + inSlope: -0.0017471046 + outSlope: -0.0017479745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00081118115 + inSlope: -0.0005256147 + outSlope: -0.0005238695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00077894167 + inSlope: 0.00048545236 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0034770814 + inSlope: 0 + outSlope: -0.0000034924594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0034770814 + inSlope: 0.000073341645 + outSlope: 0.000076834105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0034858324 + inSlope: 0.000129221 + outSlope: 0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0034936573 + inSlope: 0.000118743636 + outSlope: 0.00011525115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0034994604 + inSlope: 0.0000768341 + outSlope: 0.00008032658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0035026225 + inSlope: 0.00003841706 + outSlope: 0.00003841706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0035030514 + inSlope: 0.0000034924599 + outSlope: -0.0000034924599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0035011766 + inSlope: -0.000027939679 + outSlope: -0.000027939666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0034978697 + inSlope: -0.000045401957 + outSlope: -0.0000349246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.003494297 + inSlope: -0.00004190952 + outSlope: -0.00004190952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0034917092 + inSlope: -0.0000349246 + outSlope: -0.00002444722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0034911644 + inSlope: 0.0000069849198 + outSlope: 0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0034927346 + inSlope: 0.000027939679 + outSlope: 0.0000349246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0034955633 + inSlope: 0.000055879358 + outSlope: 0.0000523869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0034988238 + inSlope: 0.00004889444 + outSlope: 0.00004889444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0035016192 + inSlope: 0.00004540198 + outSlope: 0.000038417023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.003503108 + inSlope: 0.00002095474 + outSlope: 0.000027939705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0035026192 + inSlope: -0.000017462315 + outSlope: -0.0000069849134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0034997456 + inSlope: -0.000048894395 + outSlope: -0.000052386946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0034943277 + inSlope: -0.00008731157 + outSlope: -0.00008381896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0034866421 + inSlope: -0.000115251074 + outSlope: -0.00012572866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0034771243 + inSlope: -0.00014668345 + outSlope: -0.00013271335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.003466712 + inSlope: -0.0001536681 + outSlope: -0.00014319098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0034563325 + inSlope: -0.00014319098 + outSlope: -0.00014668319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0034473063 + inSlope: -0.000048894395 + outSlope: -0.00004540202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0034502386 + inSlope: 0.00004540202 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08284172 + inSlope: 0 + outSlope: -0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.082841724 + inSlope: 0.1683086 + outSlope: 0.16897915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.060325388 + inSlope: 0.36220995 + outSlope: 0.36209825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.03456414 + inSlope: 0.40043148 + outSlope: 0.40031964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0069420934 + inSlope: 0.4178797 + outSlope: 0.41781694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.021144612 + inSlope: 0.41428956 + outSlope: 0.4143175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.048296794 + inSlope: 0.38975853 + outSlope: 0.3898144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.07312235 + inSlope: 0.34455213 + outSlope: 0.34455198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09424393 + inSlope: 0.27883786 + outSlope: 0.2786145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11030131 + inSlope: 0.19256027 + outSlope: 0.19278379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11994639 + inSlope: 0.08650125 + outSlope: 0.08650125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.121831246 + inSlope: -0.027492644 + outSlope: -0.027604403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.116270915 + inSlope: -0.12572856 + outSlope: -0.1256168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.10506362 + inSlope: -0.20395966 + outSlope: -0.20407142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.08907389 + inSlope: -0.26922676 + outSlope: -0.26900324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06916924 + inSlope: -0.3210828 + outSlope: -0.32119426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.046225917 + inSlope: -0.36003038 + outSlope: -0.3601428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.021131534 + inSlope: -0.3849812 + outSlope: -0.38503638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0051326957 + inSlope: -0.397714 + outSlope: -0.39837128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.031912364 + inSlope: -0.396185 + outSlope: -0.39691073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.057972208 + inSlope: -0.3809851 + outSlope: -0.38092992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.08273497 + inSlope: -0.35259905 + outSlope: -0.35248667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.1050056 + inSlope: -0.3108007 + outSlope: -0.31113654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.12418248 + inSlope: -0.25603944 + outSlope: -0.25648603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.13916539 + inSlope: -0.076889925 + outSlope: -0.07666655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.13444266 + inSlope: 0.071078606 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9965566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9965566 + inSlope: 0.014305114 + outSlope: 0.013411044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9981726 + inSlope: 0.02145767 + outSlope: 0.022351744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9993964 + inSlope: 0.013411046 + outSlope: 0.014305112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9999698 + inSlope: 0.0026822085 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9997703 + inSlope: -0.008940698 + outSlope: -0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99882674 + inSlope: -0.018775465 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99731666 + inSlope: -0.025033953 + outSlope: -0.025033941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99554265 + inSlope: -0.026822079 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99389166 + inSlope: -0.021457674 + outSlope: -0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9927738 + inSlope: -0.010728837 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.99254423 + inSlope: 0.003576279 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.99321103 + inSlope: 0.014305116 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.994459 + inSlope: 0.021457674 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9960185 + inSlope: 0.024139883 + outSlope: 0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9975986 + inSlope: 0.022351744 + outSlope: 0.021457653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99892473 + inSlope: 0.016093241 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9997705 + inSlope: 0.0080466345 + outSlope: 0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9999807 + inSlope: -0.0017881378 + outSlope: -0.0017881411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9994846 + inSlope: -0.0125169875 + outSlope: -0.012516965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99831206 + inSlope: -0.021457653 + outSlope: -0.022351762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9965654 + inSlope: -0.029504327 + outSlope: -0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9944655 + inSlope: -0.03308055 + outSlope: -0.033080608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9922531 + inSlope: -0.03129247 + outSlope: -0.032186482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99026287 + inSlope: -0.010728827 + outSlope: -0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99091506 + inSlope: 0.009834776 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0004132125 + inSlope: 0 + outSlope: -0.000005238689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0004132126 + inSlope: 0.005294132 + outSlope: 0.005315523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0011204503 + inSlope: 0.011579249 + outSlope: 0.011580997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0019568433 + inSlope: 0.012782403 + outSlope: 0.012778908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0028242168 + inSlope: 0.012509989 + outSlope: 0.012509991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0036249093 + inSlope: 0.010784716 + outSlope: 0.010784716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.004262352 + inSlope: 0.0076275324 + outSlope: 0.0076135625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0046411077 + inSlope: 0.0030244703 + outSlope: 0.003017484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.004666053 + inSlope: -0.0018649728 + outSlope: -0.0018719585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00439189 + inSlope: -0.005322509 + outSlope: -0.005329494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0039559365 + inSlope: -0.0075506982 + outSlope: -0.0075367284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0033862856 + inSlope: -0.009324868 + outSlope: -0.009338838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0027112423 + inSlope: -0.01070439 + outSlope: -0.010697405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.001959477 + inSlope: -0.011626399 + outSlope: -0.0116368765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0011600616 + inSlope: -0.012136298 + outSlope: -0.012122328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00034238893 + inSlope: -0.01217166 + outSlope: -0.012175141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00046396995 + inSlope: -0.011785295 + outSlope: -0.011783133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0012294586 + inSlope: -0.010934901 + outSlope: -0.010936628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0019226696 + inSlope: -0.009679344 + outSlope: -0.009696824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0025206292 + inSlope: -0.007976785 + outSlope: -0.007994234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0029872516 + inSlope: -0.0058428803 + outSlope: -0.0058428906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0032997604 + inSlope: -0.0021024628 + outSlope: -0.0020989664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.003267445 + inSlope: 0.0036356475 + outSlope: 0.0036601012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0028131194 + inSlope: 0.008891811 + outSlope: 0.00891275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.002080804 + inSlope: 0.012080408 + outSlope: 0.012080429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.001201526 + inSlope: 0.013185794 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03156533 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.031565342 + inSlope: 0.00005587935 + outSlope: 0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.031548146 + inSlope: 0.00039115545 + outSlope: 0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.03150734 + inSlope: 0.000782311 + outSlope: 0.0008381902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.031441454 + inSlope: 0.0010617076 + outSlope: 0.0011734666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.031359226 + inSlope: 0.0012852253 + outSlope: 0.0012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.031278968 + inSlope: 0.0010617079 + outSlope: 0.0010058285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.031225007 + inSlope: 0.00044703486 + outSlope: 0.00047497434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.031221299 + inSlope: -0.00027939666 + outSlope: -0.00030733648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.031261045 + inSlope: -0.000782311 + outSlope: -0.00072643167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.031319197 + inSlope: -0.0009499491 + outSlope: -0.0009499491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03138589 + inSlope: -0.0010058285 + outSlope: -0.0010058285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.031451397 + inSlope: -0.0009499491 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.031507168 + inSlope: -0.00072643167 + outSlope: -0.00072643167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.031546723 + inSlope: -0.00044703486 + outSlope: -0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03156618 + inSlope: -0.000111758716 + outSlope: -0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.03156463 + inSlope: 0.00016763792 + outSlope: 0.00016763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.031544097 + inSlope: 0.00039115586 + outSlope: 0.00044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.031509433 + inSlope: 0.0005587931 + outSlope: 0.0006146735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.031467244 + inSlope: 0.0006705529 + outSlope: 0.0006146724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.031426374 + inSlope: 0.0005587931 + outSlope: 0.00055879407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.031395104 + inSlope: 0.00016763822 + outSlope: 0.00022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.031398494 + inSlope: -0.00039115516 + outSlope: -0.00039115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.03144244 + inSlope: -0.0007823117 + outSlope: -0.0008381896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.031499382 + inSlope: -0.0007823103 + outSlope: -0.0007823117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.031545173 + inSlope: -0.00050291466 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013083074 + inSlope: 0 + outSlope: 0.00016763805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.013083074 + inSlope: -0.16762409 + outSlope: -0.16829464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.035475507 + inSlope: -0.36656854 + outSlope: -0.36668035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.061957218 + inSlope: -0.40456656 + outSlope: -0.40462235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08941987 + inSlope: -0.3960728 + outSlope: -0.3960729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11477123 + inSlope: -0.3414229 + outSlope: -0.34153464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.13495381 + inSlope: -0.24162234 + outSlope: -0.24095179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.14694595 + inSlope: -0.09566546 + outSlope: -0.0954419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14773573 + inSlope: 0.059008576 + outSlope: 0.05923212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13905522 + inSlope: 0.16830863 + outSlope: 0.16875567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12525214 + inSlope: 0.23916365 + outSlope: 0.2384931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10721599 + inSlope: 0.29526654 + outSlope: 0.29571357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.08584289 + inSlope: 0.33885244 + outSlope: 0.33874068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.06204064 + inSlope: 0.36813322 + outSlope: 0.3684126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.03672967 + inSlope: 0.38428235 + outSlope: 0.38377944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.010840682 + inSlope: 0.38537198 + outSlope: 0.38549736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.014690108 + inSlope: 0.37313408 + outSlope: 0.37307885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.03892686 + inSlope: 0.3462288 + outSlope: 0.34628406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.060875196 + inSlope: 0.3064421 + outSlope: 0.30705735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.07980767 + inSlope: 0.25257492 + outSlope: 0.2530215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.09458181 + inSlope: 0.18496051 + outSlope: 0.18496084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.104476385 + inSlope: 0.0664965 + outSlope: 0.06649638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.103453204 + inSlope: -0.11511137 + outSlope: -0.11589389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.089068465 + inSlope: -0.2814087 + outSlope: -0.2821905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.065882005 + inSlope: -0.38254973 + outSlope: -0.38255042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.03804248 + inSlope: -0.41747504 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.999416 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.999416 + inSlope: -0.0017881392 + outSlope: -0.0026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9988718 + inSlope: -0.013411044 + outSlope: -0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99757946 + inSlope: -0.025033953 + outSlope: -0.025928017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99549365 + inSlope: -0.03486871 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9928902 + inSlope: -0.03933907 + outSlope: -0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9903489 + inSlope: -0.03308058 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.98864067 + inSlope: -0.014305116 + outSlope: -0.014305109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.98852295 + inSlope: 0.008940693 + outSlope: 0.008940698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9897813 + inSlope: 0.024139883 + outSlope: 0.023245813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99162257 + inSlope: 0.03039837 + outSlope: 0.03039837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9937344 + inSlope: 0.031292442 + outSlope: 0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9958084 + inSlope: 0.029504301 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.99757427 + inSlope: 0.023245813 + outSlope: 0.022351744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9988265 + inSlope: 0.014305116 + outSlope: 0.014305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99944276 + inSlope: 0.004470349 + outSlope: 0.0044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99939364 + inSlope: -0.0053644134 + outSlope: -0.005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99874324 + inSlope: -0.013411058 + outSlope: -0.013411034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9976461 + inSlope: -0.018775448 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9963103 + inSlope: -0.020563623 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99501646 + inSlope: -0.017881379 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.99402624 + inSlope: -0.0062584938 + outSlope: -0.0071525513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99413323 + inSlope: 0.012516965 + outSlope: 0.011622917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99552506 + inSlope: 0.025033975 + outSlope: 0.025927998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9973279 + inSlope: 0.025927998 + outSlope: 0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99877733 + inSlope: 0.016093269 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11943448 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.119434476 + inSlope: -0.024698673 + outSlope: -0.025033949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.116129264 + inSlope: -0.10304152 + outSlope: -0.103153296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.10568059 + inSlope: -0.22027643 + outSlope: -0.22072342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.086712874 + inSlope: -0.33471727 + outSlope: -0.33482912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.061017122 + inSlope: -0.39640817 + outSlope: -0.39646405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.033846892 + inSlope: -0.4104339 + outSlope: -0.41054565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.006252187 + inSlope: -0.40921152 + outSlope: -0.4091834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.020760056 + inSlope: -0.39302728 + outSlope: -0.3926363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04618811 + inSlope: -0.36131594 + outSlope: -0.36181885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06905242 + inSlope: -0.31605366 + outSlope: -0.31605366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08840587 + inSlope: -0.2563745 + outSlope: -0.25682154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.10333416 + inSlope: -0.18384309 + outSlope: -0.18350782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.11294554 + inSlope: -0.0974536 + outSlope: -0.09767712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.11635022 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11294554 + inSlope: 0.09778888 + outSlope: 0.09745351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10333416 + inSlope: 0.18384293 + outSlope: 0.18429029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.08840586 + inSlope: 0.25682175 + outSlope: 0.2565978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06911884 + inSlope: 0.31683567 + outSlope: 0.31728327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.046188097 + inSlope: 0.36237797 + outSlope: 0.3629361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.020842494 + inSlope: 0.3935021 + outSlope: 0.3935028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0062522106 + inSlope: 0.40969384 + outSlope: 0.4096163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.033760805 + inSlope: 0.41071293 + outSlope: 0.41132832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.061017137 + inSlope: 0.39635265 + outSlope: 0.3970225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.08663854 + inSlope: 0.33427003 + outSlope: 0.33438239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.105680615 + inSlope: 0.28442618 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04192222 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04192222 + inSlope: 0.002235174 + outSlope: 0.002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.042216394 + inSlope: 0.00944361 + outSlope: 0.009443612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.04313556 + inSlope: 0.020675363 + outSlope: 0.020731237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04476264 + inSlope: 0.031460073 + outSlope: 0.03157184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.046882696 + inSlope: 0.036489222 + outSlope: 0.036489222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.04902056 + inSlope: 0.036321584 + outSlope: 0.036321584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.051083744 + inSlope: 0.034589324 + outSlope: 0.034421667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05299832 + inSlope: 0.031460065 + outSlope: 0.03157184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05470554 + inSlope: 0.027492644 + outSlope: 0.027380886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.056161344 + inSlope: 0.02263114 + outSlope: 0.022519382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05733432 + inSlope: 0.017210843 + outSlope: 0.017266722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0582015 + inSlope: 0.011399389 + outSlope: 0.011511148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.05874229 + inSlope: 0.005587936 + outSlope: 0.0056438153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.05893054 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05874229 + inSlope: -0.0051967804 + outSlope: -0.0050291377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0582015 + inSlope: -0.009499482 + outSlope: -0.009275981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.057334326 + inSlope: -0.013299299 + outSlope: -0.013131637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.05616547 + inSlope: -0.016652035 + outSlope: -0.016875582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.054705538 + inSlope: -0.019893069 + outSlope: -0.019948913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.053004004 + inSlope: -0.022742879 + outSlope: -0.02268704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.05108374 + inSlope: -0.024866337 + outSlope: -0.025145689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04902717 + inSlope: -0.02671031 + outSlope: -0.026766237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0468827 + inSlope: -0.027492668 + outSlope: -0.02749262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.044768915 + inSlope: -0.02503393 + outSlope: -0.024922216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.04313557 + inSlope: -0.022240004 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1741824 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17418234 + inSlope: -0.033080578 + outSlope: -0.032633543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16982035 + inSlope: -0.13589859 + outSlope: -0.13567509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.15602742 + inSlope: -0.29057267 + outSlope: -0.29057258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13097578 + inSlope: -0.44167036 + outSlope: -0.44189397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09701153 + inSlope: -0.5239249 + outSlope: -0.52370137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.06106562 + inSlope: -0.54342675 + outSlope: -0.54342675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.024524048 + inSlope: -0.5426165 + outSlope: -0.54275596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0112792915 + inSlope: -0.52223426 + outSlope: -0.52174556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.045012828 + inSlope: -0.4810654 + outSlope: -0.48151243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07537022 + inSlope: -0.42110685 + outSlope: -0.42088333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10108484 + inSlope: -0.34186992 + outSlope: -0.34231696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.120931685 + inSlope: -0.24508686 + outSlope: -0.24486335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.13371535 + inSlope: -0.12964012 + outSlope: -0.12986363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.13824478 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.13371535 + inSlope: 0.12964012 + outSlope: 0.12941648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.120931685 + inSlope: 0.24430433 + outSlope: 0.24419302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.101084836 + inSlope: 0.34019384 + outSlope: 0.3401932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.07545847 + inSlope: 0.41943008 + outSlope: 0.42043665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.045012824 + inSlope: 0.4795012 + outSlope: 0.48056206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0113885915 + inSlope: 0.5209209 + outSlope: 0.5209078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.024524095 + inSlope: 0.5421979 + outSlope: 0.5422528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.060951672 + inSlope: 0.54353803 + outSlope: 0.5447125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09701159 + inSlope: 0.5248194 + outSlope: 0.52571255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.1308776 + inSlope: 0.44278765 + outSlope: 0.4423414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.15602745 + inSlope: 0.37618017 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97654414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.97654414 + inSlope: 0.008940696 + outSlope: 0.008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.97769773 + inSlope: 0.034868717 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.98113525 + inSlope: 0.06884337 + outSlope: 0.06884335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98657113 + inSlope: 0.08761881 + outSlope: 0.084936626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99230427 + inSlope: 0.07420779 + outSlope: 0.07420779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9963545 + inSlope: 0.045597557 + outSlope: 0.046491627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9983736 + inSlope: 0.014305116 + outSlope: 0.014305109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9983151 + inSlope: -0.016093249 + outSlope: -0.016093256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9964175 + inSlope: -0.03933907 + outSlope: -0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9931752 + inSlope: -0.056326393 + outSlope: -0.055432323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.98928213 + inSlope: -0.058114532 + outSlope: -0.05990267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9855507 + inSlope: -0.050067905 + outSlope: -0.049173836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9828086 + inSlope: -0.029504301 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.98177296 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9828086 + inSlope: 0.028610231 + outSlope: 0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9855507 + inSlope: 0.05006786 + outSlope: 0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.98928213 + inSlope: 0.059008654 + outSlope: 0.05811448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99316365 + inSlope: 0.054538205 + outSlope: 0.053644232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9964175 + inSlope: 0.040233172 + outSlope: 0.039339032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99831176 + inSlope: 0.014305103 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9983736 + inSlope: -0.014305129 + outSlope: -0.014305103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99636406 + inSlope: -0.046491586 + outSlope: -0.044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99230427 + inSlope: -0.07331378 + outSlope: -0.07510179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9865903 + inSlope: -0.08851282 + outSlope: -0.08672484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.98113525 + inSlope: -0.08940705 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000035323403 + inSlope: 0 + outSlope: -0.00024301349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000002424665 + inSlope: 0.2411761 + outSlope: 0.24211127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03228362 + inSlope: 0.52616 + outSlope: 0.52616006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0704897 + inSlope: 0.5785749 + outSlope: 0.57879823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1099332 + inSlope: 0.5621462 + outSlope: 0.5622581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14601362 + inSlope: 0.47922137 + outSlope: 0.47877434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.17434725 + inSlope: 0.33304098 + outSlope: 0.33304098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.1907937 + inSlope: 0.12673439 + outSlope: 0.12584026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.19131072 + inSlope: -0.093206726 + outSlope: -0.09320677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.178331 + inSlope: -0.25078657 + outSlope: -0.25145712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15787739 + inSlope: -0.35427514 + outSlope: -0.35427514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13119316 + inSlope: -0.4385412 + outSlope: -0.43898824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.099549934 + inSlope: -0.5039201 + outSlope: -0.50369656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.06427514 + inSlope: -0.54784125 + outSlope: -0.54840004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.026758343 + inSlope: -0.5713664 + outSlope: -0.5707518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.011562483 + inSlope: -0.5717017 + outSlope: -0.57174313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.04922895 + inSlope: -0.55080235 + outSlope: -0.55069155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.084796876 + inSlope: -0.5077203 + outSlope: -0.5074959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.11677495 + inSlope: -0.44546986 + outSlope: -0.4463647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.14411321 + inSlope: -0.3636632 + outSlope: -0.3643331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.16521777 + inSlope: -0.26263276 + outSlope: -0.2626332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.17914522 + inSlope: -0.08828946 + outSlope: -0.08784227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.17701615 + inSlope: 0.17948434 + outSlope: 0.18015522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.15512124 + inSlope: 0.4258011 + outSlope: 0.42647088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.12006535 + inSlope: 0.5774568 + outSlope: 0.577346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.07789178 + inSlope: 0.6322196 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.024505937 + inSlope: 0 + outSlope: -0.000083819024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.024505932 + inSlope: 0.08094124 + outSlope: 0.08127651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.035089083 + inSlope: 0.18132849 + outSlope: 0.181105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0476768 + inSlope: 0.20043926 + outSlope: 0.20027158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.060610607 + inSlope: 0.1934543 + outSlope: 0.19339846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0722983 + inSlope: 0.16137959 + outSlope: 0.16160311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.08125645 + inSlope: 0.106729575 + outSlope: 0.106617816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.086107016 + inSlope: 0.03241003 + outSlope: 0.03196298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.08550939 + inSlope: -0.043809395 + outSlope: -0.04447997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0802174 + inSlope: -0.09823591 + outSlope: -0.09845943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07221734 + inSlope: -0.13411047 + outSlope: -0.13411047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.061969027 + inSlope: -0.16283245 + outSlope: -0.16288833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.049940713 + inSlope: -0.18507244 + outSlope: -0.1849048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.036621578 + inSlope: -0.19971283 + outSlope: -0.19988047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.022525502 + inSlope: -0.2073683 + outSlope: -0.20711684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00818705 + inSlope: -0.20682347 + outSlope: -0.20679535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.005848411 + inSlope: -0.19865793 + outSlope: -0.19863033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.019037616 + inSlope: -0.18247421 + outSlope: -0.182418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.030817468 + inSlope: -0.1593119 + outSlope: -0.15942395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.04078518 + inSlope: -0.12869027 + outSlope: -0.12880181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.04833914 + inSlope: -0.09080388 + outSlope: -0.09080404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.053114578 + inSlope: -0.022798799 + outSlope: -0.02263112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.051423743 + inSlope: 0.0856071 + outSlope: 0.08605429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.041658193 + inSlope: 0.18741953 + outSlope: 0.1879221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.026558997 + inSlope: 0.2506187 + outSlope: 0.25067502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.008610872 + inSlope: 0.27312458 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000060090834 + inSlope: 0 + outSlope: -0.00028426966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.399327e-10 + inSlope: 0.28129593 + outSlope: 0.28237185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03751426 + inSlope: 0.6096437 + outSlope: 0.60969967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08088711 + inSlope: 0.66395855 + outSlope: 0.6638466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12545244 + inSlope: 0.6473063 + outSlope: 0.64775354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16663618 + inSlope: 0.563711 + outSlope: 0.5625934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.20009953 + inSlope: 0.41462484 + outSlope: 0.41484836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.22176108 + inSlope: 0.20585956 + outSlope: 0.20608298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22761583 + inSlope: -0.007376072 + outSlope: -0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.22067116 + inSlope: -0.15065075 + outSlope: -0.1513213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.20728543 + inSlope: -0.24005772 + outSlope: -0.24005772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.18832393 + inSlope: -0.31605366 + outSlope: -0.31627718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.16468786 + inSlope: -0.37841502 + outSlope: -0.37841502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.13734722 + inSlope: -0.4255772 + outSlope: -0.42647126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.107354656 + inSlope: -0.45809898 + outSlope: -0.45731667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07584096 + inSlope: -0.47206882 + outSlope: -0.4720684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.04399596 + inSlope: -0.46865976 + outSlope: -0.46871647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.013040813 + inSlope: -0.44635075 + outSlope: -0.44629407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.015715301 + inSlope: -0.406969 + outSlope: -0.4075844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.041326143 + inSlope: -0.34907866 + outSlope: -0.34952506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.062306136 + inSlope: -0.27308217 + outSlope: -0.2732503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.07776977 + inSlope: -0.15053913 + outSlope: -0.15031534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.08238059 + inSlope: 0.024810413 + outSlope: 0.024922216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.07447013 + inSlope: 0.18205512 + outSlope: 0.18272534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.058165736 + inSlope: 0.2797877 + outSlope: 0.27989995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.037401155 + inSlope: 0.3147687 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9996997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9996997 + inSlope: -0.0017881392 + outSlope: -0.0026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99815786 + inSlope: -0.04649162 + outSlope: -0.045597557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9930838 + inSlope: -0.10550023 + outSlope: -0.10550021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98412526 + inSlope: -0.16003844 + outSlope: -0.1564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9724636 + inSlope: -0.17881395 + outSlope: -0.18149616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9607084 + inSlope: -0.1564622 + outSlope: -0.1564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.95236826 + inSlope: -0.07689 + outSlope: -0.07599589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9509361 + inSlope: 0.025033941 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.95554566 + inSlope: 0.090301044 + outSlope: 0.090301044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.96275234 + inSlope: 0.11980534 + outSlope: 0.12069941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.97133017 + inSlope: 0.13142826 + outSlope: 0.13142826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9800375 + inSlope: 0.12338162 + outSlope: 0.12606384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9877567 + inSlope: 0.10281802 + outSlope: 0.10192395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9936053 + inSlope: 0.06884337 + outSlope: 0.06973744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99701923 + inSlope: 0.031292442 + outSlope: 0.030398343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9978009 + inSlope: -0.008940689 + outSlope: -0.0071525644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.996131 + inSlope: -0.040233172 + outSlope: -0.04112717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9925558 + inSlope: -0.062584825 + outSlope: -0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9878563 + inSlope: -0.07241971 + outSlope: -0.072419584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9830993 + inSlope: -0.0661611 + outSlope: -0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9793047 + inSlope: -0.028610257 + outSlope: -0.030398343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.979405 + inSlope: 0.036656827 + outSlope: 0.040233172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9842034 + inSlope: 0.090301126 + outSlope: 0.08761875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99070466 + inSlope: 0.09387723 + outSlope: 0.092983335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.99622273 + inSlope: 0.061690867 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0008874514 + inSlope: 0 + outSlope: 0.000007858034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000887453 + inSlope: -0.007789931 + outSlope: -0.007822236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0019280685 + inSlope: -0.017139245 + outSlope: -0.017139247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0031721757 + inSlope: -0.019026922 + outSlope: -0.019037394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004465354 + inSlope: -0.018607821 + outSlope: -0.018614812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0056539373 + inSlope: -0.015897678 + outSlope: -0.015904663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0065857945 + inSlope: -0.0109314 + outSlope: -0.010924415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0071103172 + inSlope: -0.0036810527 + outSlope: -0.003681051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0070771365 + inSlope: 0.0040791915 + outSlope: 0.004093163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0065651378 + inSlope: 0.009674114 + outSlope: 0.009681099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.005786034 + inSlope: 0.013334212 + outSlope: 0.013320242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.004787636 + inSlope: 0.016246924 + outSlope: 0.016267879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0036182126 + inSlope: 0.018464636 + outSlope: 0.018443681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0023267034 + inSlope: 0.019910514 + outSlope: 0.019920992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00096273184 + inSlope: 0.020631706 + outSlope: 0.020616863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00042358405 + inSlope: 0.020571025 + outSlope: 0.020576246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0017819323 + inSlope: 0.019776037 + outSlope: 0.01978131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.003062163 + inSlope: 0.018209701 + outSlope: 0.018206177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0042112363 + inSlope: 0.015953543 + outSlope: 0.015974525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0051901503 + inSlope: 0.0129500525 + outSlope: 0.012963999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0059384964 + inSlope: 0.009206116 + outSlope: 0.009192162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.006417436 + inSlope: 0.0025215582 + outSlope: 0.002500599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.006274544 + inSlope: -0.007913907 + outSlope: -0.007941861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0053593307 + inSlope: -0.017532164 + outSlope: -0.017574042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0039351294 + inSlope: -0.023371521 + outSlope: -0.023385532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0022401782 + inSlope: -0.02542513 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05084388 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.050843894 + inSlope: -0.00016763805 + outSlope: -0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.050815072 + inSlope: -0.0006705522 + outSlope: -0.00061467296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.050752595 + inSlope: -0.0012293459 + outSlope: -0.0011734662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.050655205 + inSlope: -0.001620501 + outSlope: -0.0016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05053635 + inSlope: -0.0017881395 + outSlope: -0.0017322601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.050423365 + inSlope: -0.001396984 + outSlope: -0.001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.050352085 + inSlope: -0.00050291425 + outSlope: -0.000502914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05035676 + inSlope: 0.00061467267 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.050426062 + inSlope: 0.0012293459 + outSlope: 0.0012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.050521392 + inSlope: 0.001564622 + outSlope: 0.001564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05062576 + inSlope: 0.001564622 + outSlope: 0.0015087427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.05072275 + inSlope: 0.0012852253 + outSlope: 0.0013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.050798375 + inSlope: 0.00089406973 + outSlope: 0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.05084252 + inSlope: 0.0003911555 + outSlope: 0.00044703486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05084987 + inSlope: -0.00022351743 + outSlope: -0.00016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.050820403 + inSlope: -0.000726431 + outSlope: -0.0006705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.050759356 + inSlope: -0.0011175881 + outSlope: -0.0010617068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.050676968 + inSlope: -0.0012852241 + outSlope: -0.0013969851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.050586067 + inSlope: -0.0013411058 + outSlope: -0.0013411033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.050503694 + inSlope: -0.0010617068 + outSlope: -0.0010617088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.050445072 + inSlope: -0.00033527645 + outSlope: -0.00027939654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.050463032 + inSlope: 0.0009499482 + outSlope: 0.0010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.050568435 + inSlope: 0.0018998999 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.050699137 + inSlope: 0.0017881378 + outSlope: 0.0018440204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.050802264 + inSlope: 0.0011175881 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.017429583 + inSlope: 0 + outSlope: 0.00016763805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.017429583 + inSlope: -0.15299766 + outSlope: -0.15361233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.037866913 + inSlope: -0.3366172 + outSlope: -0.33656138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.062300753 + inSlope: -0.37372115 + outSlope: -0.37383282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.087698326 + inSlope: -0.36556268 + outSlope: -0.365451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11104168 + inSlope: -0.31236562 + outSlope: -0.3121421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.12934303 + inSlope: -0.21435322 + outSlope: -0.21457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.13964449 + inSlope: -0.07241965 + outSlope: -0.072196096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.13899282 + inSlope: 0.08024272 + outSlope: 0.08024276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12893736 + inSlope: 0.19021334 + outSlope: 0.19021334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.113636 + inSlope: 0.26185068 + outSlope: 0.26173893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09402781 + inSlope: 0.31907114 + outSlope: 0.31951818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.07106074 + inSlope: 0.36265704 + outSlope: 0.36221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.045695946 + inSlope: 0.39098787 + outSlope: 0.39126727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.018908009 + inSlope: 0.40518123 + outSlope: 0.4049577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.008318763 + inSlope: 0.4040357 + outSlope: 0.4041052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.034996264 + inSlope: 0.38841707 + outSlope: 0.38847363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.06013954 + inSlope: 0.3576282 + outSlope: 0.3575717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.082706936 + inSlope: 0.31337115 + outSlope: 0.313707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.10193249 + inSlope: 0.2542513 + outSlope: 0.25458613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.11662971 + inSlope: 0.18071368 + outSlope: 0.18060225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.12603594 + inSlope: 0.049620915 + outSlope: 0.04917379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.12322959 + inSlope: -0.15545623 + outSlope: -0.15590355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.10525512 + inSlope: -0.3443289 + outSlope: -0.3451106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.077284284 + inSlope: -0.4591044 + outSlope: -0.45921698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.043996003 + inSlope: -0.4993384 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9985541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9985541 + inSlope: -0.0026822088 + outSlope: -0.0026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9979881 + inSlope: -0.0125169745 + outSlope: -0.012516976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9967611 + inSlope: -0.024139883 + outSlope: -0.023245808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9948483 + inSlope: -0.032186504 + outSlope: -0.032186512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99251395 + inSlope: -0.03486872 + outSlope: -0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9902952 + inSlope: -0.027716162 + outSlope: -0.027716162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9888951 + inSlope: -0.009834767 + outSlope: -0.010728832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9889869 + inSlope: 0.011622901 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9903481 + inSlope: 0.025033953 + outSlope: 0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9922202 + inSlope: 0.03039837 + outSlope: 0.03039837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.99427 + inSlope: 0.03039837 + outSlope: 0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.99617493 + inSlope: 0.025928022 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9976603 + inSlope: 0.017881395 + outSlope: 0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9985272 + inSlope: 0.008046628 + outSlope: 0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9986716 + inSlope: -0.003576279 + outSlope: -0.0035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99809283 + inSlope: -0.014305103 + outSlope: -0.013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9968938 + inSlope: -0.021457693 + outSlope: -0.021457653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99527574 + inSlope: -0.025927998 + outSlope: -0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99349076 + inSlope: -0.025928045 + outSlope: -0.026822068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9918728 + inSlope: -0.020563586 + outSlope: -0.020563623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9907215 + inSlope: -0.0062584938 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99107444 + inSlope: 0.018775448 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9931443 + inSlope: 0.03665689 + outSlope: 0.035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99571145 + inSlope: 0.035762757 + outSlope: 0.03576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9977367 + inSlope: 0.022351762 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1397538 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1397538 + inSlope: 0.02838671 + outSlope: 0.028833745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.13592127 + inSlope: 0.11913478 + outSlope: 0.11980534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.12379943 + inSlope: 0.2558157 + outSlope: 0.2557039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10177287 + inSlope: 0.38869673 + outSlope: 0.38892034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07189708 + inSlope: 0.46089295 + outSlope: 0.4610047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0402743 + inSlope: 0.47760087 + outSlope: 0.47765675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00813757 + inSlope: 0.47631565 + outSlope: 0.47630146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.023326244 + inSlope: 0.4573444 + outSlope: 0.45695344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05293734 + inSlope: 0.42054805 + outSlope: 0.42077157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.079547055 + inSlope: 0.36757442 + outSlope: 0.3673509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1020524 + inSlope: 0.2980605 + outSlope: 0.29828402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.11939687 + inSlope: 0.21334739 + outSlope: 0.21290036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.13055561 + inSlope: 0.11309982 + outSlope: 0.11309982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13450666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13055563 + inSlope: -0.11309982 + outSlope: -0.11354675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.11939687 + inSlope: -0.21357071 + outSlope: -0.21401814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.1020524 + inSlope: -0.29861957 + outSlope: -0.29850727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.07962434 + inSlope: -0.36869168 + outSlope: -0.36969817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.052937333 + inSlope: -0.42211306 + outSlope: -0.4228946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.02342226 + inSlope: -0.45848972 + outSlope: -0.45854643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.008137601 + inSlope: -0.477266 + outSlope: -0.477335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.040174086 + inSlope: -0.478271 + outSlope: -0.47911003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.07189709 + inSlope: -0.46111688 + outSlope: -0.46212187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.10168649 + inSlope: -0.38880822 + outSlope: -0.38847363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.12379943 + inSlope: -0.3300238 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04035337 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.040353395 + inSlope: -0.003911555 + outSlope: -0.0037997959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04086443 + inSlope: -0.016205013 + outSlope: -0.016316773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.042466074 + inSlope: -0.035259876 + outSlope: -0.035539262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.045319814 + inSlope: -0.053700052 + outSlope: -0.05397946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.049075834 + inSlope: -0.062640764 + outSlope: -0.062584884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.052910227 + inSlope: -0.06286428 + outSlope: -0.06286428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.056660023 + inSlope: -0.060461465 + outSlope: -0.06040556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06018865 + inSlope: -0.05593521 + outSlope: -0.05571172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.063380376 + inSlope: -0.049397353 + outSlope: -0.049173836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06614087 + inSlope: -0.041238967 + outSlope: -0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06839501 + inSlope: -0.031739477 + outSlope: -0.031962994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.070081115 + inSlope: -0.02179295 + outSlope: -0.02179295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.07114199 + inSlope: -0.010840596 + outSlope: -0.011064113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.07151311 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07114199 + inSlope: 0.010281802 + outSlope: 0.010058275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.070081115 + inSlope: 0.019222481 + outSlope: 0.019334275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.06839501 + inSlope: 0.027157392 + outSlope: 0.02671031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06614875 + inSlope: 0.03386286 + outSlope: 0.033862922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.06338035 + inSlope: 0.039897896 + outSlope: 0.040009584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.060199205 + inSlope: 0.044926964 + outSlope: 0.044871163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.05666002 + inSlope: 0.048559204 + outSlope: 0.048614997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.05292215 + inSlope: 0.050794292 + outSlope: 0.0510179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.04907582 + inSlope: 0.051353175 + outSlope: 0.051297206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.045330852 + inSlope: 0.045597516 + outSlope: 0.04554172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.042466067 + inSlope: 0.040233172 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17399797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17399797 + inSlope: -0.034421682 + outSlope: -0.034421682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16937268 + inSlope: -0.1439452 + outSlope: -0.14416875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.15474212 + inSlope: -0.3077835 + outSlope: -0.3086775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12815174 + inSlope: -0.46849242 + outSlope: -0.46871606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09207554 + inSlope: -0.5564467 + outSlope: -0.5563349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.05387698 + inSlope: -0.5776808 + outSlope: -0.5777367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0150443055 + inSlope: -0.5770242 + outSlope: -0.5769401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02298816 + inSlope: -0.5549935 + outSlope: -0.55435115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.058792815 + inSlope: -0.5108491 + outSlope: -0.5111844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09097804 + inSlope: -0.44681135 + outSlope: -0.4461408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.11820618 + inSlope: -0.36209825 + outSlope: -0.36243352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.13919505 + inSlope: -0.25928023 + outSlope: -0.25860968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.15270059 + inSlope: -0.13679267 + outSlope: -0.13746323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.15748306 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.15270062 + inSlope: 0.13679267 + outSlope: 0.13656902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.13919502 + inSlope: 0.2579389 + outSlope: 0.25793934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.118206166 + inSlope: 0.35975164 + outSlope: 0.35952747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.09107152 + inSlope: 0.44390523 + outSlope: 0.44513535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.058792785 + inSlope: 0.50844675 + outSlope: 0.509284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.023104245 + inSlope: 0.5525905 + outSlope: 0.55273116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.015044339 + inSlope: 0.57585126 + outSlope: 0.57583624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.053755898 + inSlope: 0.5776803 + outSlope: 0.57868713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09207557 + inSlope: 0.55778825 + outSlope: 0.5584578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.12804747 + inSlope: 0.47028026 + outSlope: 0.47005758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.15474212 + inSlope: 0.39987305 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97394305 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9739431 + inSlope: 0.011622905 + outSlope: 0.009834765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.97527874 + inSlope: 0.04202127 + outSlope: 0.04023314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9792472 + inSlope: 0.07867814 + outSlope: 0.079572186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98547727 + inSlope: 0.09834765 + outSlope: 0.09924174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99193984 + inSlope: 0.08314849 + outSlope: 0.08046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9963312 + inSlope: 0.047385696 + outSlope: 0.046491627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99824697 + inSlope: 0.008046628 + outSlope: 0.009834763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9976496 + inSlope: -0.025928011 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9948487 + inSlope: -0.055432323 + outSlope: -0.055432323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99046487 + inSlope: -0.07331372 + outSlope: -0.07331372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.98536015 + inSlope: -0.07689 + outSlope: -0.07599593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98053956 + inSlope: -0.064373024 + outSlope: -0.064373024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9770244 + inSlope: -0.03755093 + outSlope: -0.038445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9757013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9770244 + inSlope: 0.038445 + outSlope: 0.036656827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.98053956 + inSlope: 0.065267034 + outSlope: 0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.98536015 + inSlope: 0.07420785 + outSlope: 0.076889925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9904496 + inSlope: 0.07420772 + outSlope: 0.07152564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9948487 + inSlope: 0.054538302 + outSlope: 0.054538205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99764407 + inSlope: 0.025927998 + outSlope: 0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.99824697 + inSlope: -0.010728846 + outSlope: -0.008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99634117 + inSlope: -0.04738565 + outSlope: -0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9919398 + inSlope: -0.081360415 + outSlope: -0.08314841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.98549926 + inSlope: -0.09834758 + outSlope: -0.09834776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9792472 + inSlope: -0.10281811 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0011789581 + inSlope: 0 + outSlope: 0.0001938315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0011790025 + inSlope: -0.1955201 + outSlope: -0.19630416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.027339282 + inSlope: -0.42649916 + outSlope: -0.42630363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.058207832 + inSlope: -0.46905133 + outSlope: -0.4690512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.090136684 + inSlope: -0.45776358 + outSlope: -0.45742843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11952015 + inSlope: -0.3936142 + outSlope: -0.3933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.14285953 + inSlope: -0.2780557 + outSlope: -0.27783218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.15677054 + inSlope: -0.112652786 + outSlope: -0.11242922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.15789796 + inSlope: 0.06370244 + outSlope: 0.06414951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14825128 + inSlope: 0.18887223 + outSlope: 0.18887223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.13275975 + inSlope: 0.26978555 + outSlope: 0.26978555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1123767 + inSlope: 0.3359467 + outSlope: 0.33617023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.08808104 + inSlope: 0.38746747 + outSlope: 0.38746747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.060892913 + inSlope: 0.42278323 + outSlope: 0.42328614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.031876326 + inSlope: 0.44245276 + outSlope: 0.4420616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0021298518 + inSlope: 0.44453076 + outSlope: 0.44449195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.027230702 + inSlope: 0.42999128 + outSlope: 0.4301038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.055093497 + inSlope: 0.39869958 + outSlope: 0.39853123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.080295734 + inSlope: 0.35203964 + outSlope: 0.35293433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.102005266 + inSlope: 0.29001412 + outSlope: 0.2903489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.118938535 + inSlope: 0.21234137 + outSlope: 0.21211824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.13031189 + inSlope: 0.078678206 + outSlope: 0.07823103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.12942645 + inSlope: -0.12539317 + outSlope: -0.12539339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.11355503 + inSlope: -0.31225413 + outSlope: -0.31258884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.08769016 + inSlope: -0.42714143 + outSlope: -0.42725396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.056432478 + inSlope: -0.46849295 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04502419 + inSlope: 0 + outSlope: 0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.045024212 + inSlope: -0.0638701 + outSlope: -0.06392598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.053400155 + inSlope: -0.14008954 + outSlope: -0.14014544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.06312921 + inSlope: -0.15277417 + outSlope: -0.15288588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.07307963 + inSlope: -0.14774498 + outSlope: -0.14796855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08217581 + inSlope: -0.12639911 + outSlope: -0.12628736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.08941595 + inSlope: -0.089406975 + outSlope: -0.089406975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.09385891 + inSlope: -0.038668517 + outSlope: -0.038892016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09456876 + inSlope: 0.012516971 + outSlope: 0.012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09217625 + inSlope: 0.04693866 + outSlope: 0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.08812243 + inSlope: 0.069402166 + outSlope: 0.069402166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08263525 + inSlope: 0.08806587 + outSlope: 0.08817763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.07595148 + inSlope: 0.10348857 + outSlope: 0.103153296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0683265 + inSlope: 0.1147762 + outSlope: 0.1147762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.060039327 + inSlope: 0.122208156 + outSlope: 0.12198464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0513928 + inSlope: 0.12500213 + outSlope: 0.12522553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.04271014 + inSlope: 0.12354915 + outSlope: 0.12343761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0343289 + inSlope: 0.11678796 + outSlope: 0.11695539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.02661683 + inSlope: 0.10561189 + outSlope: 0.1056959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.019851591 + inSlope: 0.08907177 + outSlope: 0.089295134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.014458818 + inSlope: 0.06743235 + outSlope: 0.06747439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.010709835 + inSlope: 0.02925287 + outSlope: 0.029280758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.010538105 + inSlope: -0.030146886 + outSlope: -0.03034252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.014669906 + inSlope: -0.08590062 + outSlope: -0.08609604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.021610066 + inSlope: -0.11983318 + outSlope: -0.11986133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.029975785 + inSlope: -0.13064605 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026150394 + inSlope: 0 + outSlope: -0.0002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.026150389 + inSlope: 0.20094214 + outSlope: 0.20169652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.052932143 + inSlope: 0.44127923 + outSlope: 0.44111165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08471581 + inSlope: 0.48760328 + outSlope: 0.48737964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11758436 + inSlope: 0.4747509 + outSlope: 0.47486278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1476888 + inSlope: 0.4052371 + outSlope: 0.40434304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.17131431 + inSlope: 0.27984384 + outSlope: 0.2793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.18488058 + inSlope: 0.10170043 + outSlope: 0.10147687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.18484077 + inSlope: -0.08761879 + outSlope: -0.0871718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.17320293 + inSlope: -0.22195281 + outSlope: -0.22239985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15511416 + inSlope: -0.31046572 + outSlope: -0.3102422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13165364 + inSlope: -0.3822148 + outSlope: -0.3822148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.103927 + inSlope: -0.43753538 + outSlope: -0.43697658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.07308456 + inSlope: -0.47497454 + outSlope: -0.47530982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.04032492 + inSlope: -0.4950911 + outSlope: -0.4945882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0068848273 + inSlope: -0.49599916 + outSlope: -0.49578217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.025980268 + inSlope: -0.4781313 + outSlope: -0.47821596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.057019945 + inSlope: -0.4415032 + outSlope: -0.44139066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.08492886 + inSlope: -0.38769063 + outSlope: -0.3880266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.108768076 + inSlope: -0.31605393 + outSlope: -0.31661215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.12710461 + inSlope: -0.22664647 + outSlope: -0.22709392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.13905402 + inSlope: -0.07085509 + outSlope: -0.07040793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.136534 + inSlope: 0.1712142 + outSlope: 0.17166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.11612924 + inSlope: 0.3942851 + outSlope: 0.3950667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.08384752 + inSlope: 0.53163576 + outSlope: 0.53152496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.045183763 + inSlope: 0.58081055 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9986429 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99864286 + inSlope: -0.008940696 + outSlope: -0.008046627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9967945 + inSlope: -0.04291534 + outSlope: -0.042915348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.99269825 + inSlope: -0.07957221 + outSlope: -0.078678116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98625994 + inSlope: -0.109076485 + outSlope: -0.10907651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9783405 + inSlope: -0.118911274 + outSlope: -0.12069941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.97069424 + inSlope: -0.09834767 + outSlope: -0.09924174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9656255 + inSlope: -0.04112721 + outSlope: -0.04112719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9653802 + inSlope: 0.028610218 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9692914 + inSlope: 0.07331372 + outSlope: 0.07331372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.974961 + inSlope: 0.09298325 + outSlope: 0.09208918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9814327 + inSlope: 0.09655953 + outSlope: 0.09924174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98776126 + inSlope: 0.089406975 + outSlope: 0.088512905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9931174 + inSlope: 0.06884337 + outSlope: 0.06973744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.99687165 + inSlope: 0.04112721 + outSlope: 0.04202128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9986526 + inSlope: 0.010728837 + outSlope: 0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99837834 + inSlope: -0.018775448 + outSlope: -0.018775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9962605 + inSlope: -0.042915385 + outSlope: -0.043809377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9927897 + inSlope: -0.05722041 + outSlope: -0.060796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.98862046 + inSlope: -0.061690867 + outSlope: -0.063478895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.98462635 + inSlope: -0.053644136 + outSlope: -0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.98161507 + inSlope: -0.019669551 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9820877 + inSlope: 0.039339032 + outSlope: 0.041127246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9866125 + inSlope: 0.08225449 + outSlope: 0.0804662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9923774 + inSlope: 0.078678064 + outSlope: 0.081360415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9969329 + inSlope: 0.048279807 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15027462 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15027466 + inSlope: -0.04380941 + outSlope: -0.043585893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14444527 + inSlope: -0.18171965 + outSlope: -0.18149616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.12602577 + inSlope: -0.38780275 + outSlope: -0.3882497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09262426 + inSlope: -0.58852124 + outSlope: -0.58896846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.047454007 + inSlope: -0.6957539 + outSlope: -0.69608915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00020019338 + inSlope: -0.71958643 + outSlope: -0.7195585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.048474174 + inSlope: -0.71553516 + outSlope: -0.7157025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09559601 + inSlope: -0.6857512 + outSlope: -0.6849692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13982297 + inSlope: -0.6292016 + outSlope: -0.6296486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.17947307 + inSlope: -0.5485118 + outSlope: -0.5485118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.21294111 + inSlope: -0.44390562 + outSlope: -0.44435266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.23869443 + inSlope: -0.31739476 + outSlope: -0.3165007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.25524524 + inSlope: -0.16763808 + outSlope: -0.16808511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.26110232 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.25524527 + inSlope: 0.16763808 + outSlope: 0.16763793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.23869443 + inSlope: 0.3165004 + outSlope: 0.31672448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.21294111 + inSlope: 0.4423414 + outSlope: 0.4423406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.17958814 + inSlope: 0.54717016 + outSlope: 0.5485123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.13982299 + inSlope: 0.62808454 + outSlope: 0.62875396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.09573962 + inSlope: 0.6841862 + outSlope: 0.68429923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.048474174 + inSlope: 0.71480936 + outSlope: 0.7147522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00035103224 + inSlope: 0.71913874 + outSlope: 0.72034144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.047453977 + inSlope: 0.6963692 + outSlope: 0.6973179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.09249343 + inSlope: 0.58919144 + outSlope: 0.58863366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.12602572 + inSlope: 0.5017971 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6736496 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6736496 + inSlope: -0.0026822088 + outSlope: -0.004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6740911 + inSlope: -0.013411044 + outSlope: -0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.6753278 + inSlope: -0.025033953 + outSlope: -0.025928017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.67696166 + inSlope: -0.025033947 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6779359 + inSlope: -0.008940698 + outSlope: -0.008046628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.6774373 + inSlope: 0.016093256 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.67533934 + inSlope: 0.04023314 + outSlope: 0.03844498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.67174 + inSlope: 0.060796715 + outSlope: 0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.66695297 + inSlope: 0.07331372 + outSlope: 0.07420779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6614834 + inSlope: 0.08136035 + outSlope: 0.07957221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.65598303 + inSlope: 0.07689 + outSlope: 0.07599593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.6511887 + inSlope: 0.06169081 + outSlope: 0.05990267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.6478451 + inSlope: 0.03397465 + outSlope: 0.03397465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.6466119 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.6478451 + inSlope: -0.03576279 + outSlope: -0.033974618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6511887 + inSlope: -0.061690755 + outSlope: -0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.6559831 + inSlope: -0.080466345 + outSlope: -0.0804662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.6614658 + inSlope: -0.085830614 + outSlope: -0.08672484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.666953 + inSlope: -0.08225449 + outSlope: -0.07957213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.67172664 + inSlope: -0.067055166 + outSlope: -0.06705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.67533934 + inSlope: -0.045597598 + outSlope: -0.04738565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.67743325 + inSlope: -0.02413986 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.67793596 + inSlope: -0.0017881411 + outSlope: 0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.67696655 + inSlope: 0.017881379 + outSlope: 0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.6753278 + inSlope: 0.028610257 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.058395013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.058395065 + inSlope: 0.004805624 + outSlope: 0.0048615034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.057762884 + inSlope: 0.01966953 + outSlope: 0.019390138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.055755608 + inSlope: 0.04174188 + outSlope: 0.041965388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.052078262 + inSlope: 0.06459653 + outSlope: 0.06448478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.04702931 + inSlope: 0.07772819 + outSlope: 0.07800759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.041608892 + inSlope: 0.082422055 + outSlope: 0.082422055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0360201 + inSlope: 0.08398668 + outSlope: 0.08398664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03046935 + inSlope: 0.08217056 + outSlope: 0.0823103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.02517299 + inSlope: 0.07705764 + outSlope: 0.07689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0203524 + inSlope: 0.06817282 + outSlope: 0.06817282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0162291 + inSlope: 0.0557676 + outSlope: 0.056214634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.013021693 + inSlope: 0.04023314 + outSlope: 0.04012138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.010944299 + inSlope: 0.021457674 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.010206103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.010944314 + inSlope: -0.020451846 + outSlope: -0.020898862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.013021722 + inSlope: -0.039115515 + outSlope: -0.039115585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.016229063 + inSlope: -0.054091267 + outSlope: -0.05420293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.02033829 + inSlope: -0.065937586 + outSlope: -0.06604946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.025173008 + inSlope: -0.07487841 + outSlope: -0.074934155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.030452255 + inSlope: -0.080410324 + outSlope: -0.08068986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.03602006 + inSlope: -0.08314856 + outSlope: -0.08320429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.04159154 + inSlope: -0.082924895 + outSlope: -0.0830368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.047029253 + inSlope: -0.07934876 + outSlope: -0.079404496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.052063722 + inSlope: -0.06621698 + outSlope: -0.06588182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.05575556 + inSlope: -0.05571177 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7212515 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7212515 + inSlope: 0.0062584872 + outSlope: 0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.72208047 + inSlope: 0.025033949 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7245282 + inSlope: 0.047385696 + outSlope: 0.047385685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7283073 + inSlope: 0.05632638 + outSlope: 0.055432323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7320788 + inSlope: 0.04202128 + outSlope: 0.04112721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7344027 + inSlope: 0.018775465 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.73503023 + inSlope: -0.008940698 + outSlope: -0.0062584854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.73396075 + inSlope: -0.031292427 + outSlope: -0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7314298 + inSlope: -0.050961975 + outSlope: -0.049173836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.72788393 + inSlope: -0.059008602 + outSlope: -0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7239329 + inSlope: -0.05990267 + outSlope: -0.059008602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.72028375 + inSlope: -0.049173836 + outSlope: -0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.71765363 + inSlope: -0.028610231 + outSlope: -0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.716669 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.71765375 + inSlope: 0.027716162 + outSlope: 0.026822068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7202836 + inSlope: 0.046491586 + outSlope: 0.04917388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.723933 + inSlope: 0.05632644 + outSlope: 0.055432275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.72787184 + inSlope: 0.055432275 + outSlope: 0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.73142976 + inSlope: 0.042915385 + outSlope: 0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7339551 + inSlope: 0.025927998 + outSlope: 0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.73503023 + inSlope: 0 + outSlope: 0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.7344073 + inSlope: -0.025927998 + outSlope: -0.025928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.7320788 + inSlope: -0.04917388 + outSlope: -0.05006786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.72832054 + inSlope: -0.060796686 + outSlope: -0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.72452825 + inSlope: -0.064373076 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08548669 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.085486695 + inSlope: -0.003352761 + outSlope: -0.0031292436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.085913174 + inSlope: -0.025033949 + outSlope: -0.025369229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.08881981 + inSlope: -0.059567396 + outSlope: -0.059455622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09382899 + inSlope: -0.07286666 + outSlope: -0.07275493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.098534755 + inSlope: -0.052526597 + outSlope: -0.05219132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.10082595 + inSlope: -0.0005587936 + outSlope: -0.000782311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.09863611 + inSlope: 0.08169562 + outSlope: 0.08214262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.08990805 + inSlope: 0.1657381 + outSlope: 0.16562642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07652931 + inSlope: 0.22910537 + outSlope: 0.2295524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.059289426 + inSlope: 0.28096142 + outSlope: 0.2807379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.039035276 + inSlope: 0.3191829 + outSlope: 0.31962994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.016627599 + inSlope: 0.34505504 + outSlope: 0.34483153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0070566228 + inSlope: 0.35701323 + outSlope: 0.35744628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.031129092 + inSlope: 0.35639855 + outSlope: 0.35611916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0547003 + inSlope: 0.34175816 + outSlope: 0.34198135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.07689207 + inSlope: 0.31493577 + outSlope: 0.31482458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.09684939 + inSlope: 0.27503845 + outSlope: 0.2749262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.11370119 + inSlope: 0.22340547 + outSlope: 0.22396466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.12679806 + inSlope: 0.16070917 + outSlope: 0.16070889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.13521568 + inSlope: 0.0856071 + outSlope: 0.086277805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.13830547 + inSlope: -0.059902724 + outSlope: -0.060126137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.12718658 + inSlope: -0.30733618 + outSlope: -0.30778378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.09729964 + inSlope: -0.54236555 + outSlope: -0.54337037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.05498931 + inSlope: -0.6868684 + outSlope: -0.68692553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.005947535 + inSlope: -0.7368468 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00623442 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.006234421 + inSlope: -0.003611203 + outSlope: -0.0036321578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00575039 + inSlope: -0.01781853 + outSlope: -0.01786044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0038401308 + inSlope: -0.034309927 + outSlope: -0.034337856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0011128718 + inSlope: -0.039730214 + outSlope: -0.039702285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0015460085 + inSlope: -0.03410038 + outSlope: -0.03405847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0034884987 + inSlope: -0.018957073 + outSlope: -0.018929133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.004069389 + inSlope: 0.006174669 + outSlope: 0.006216576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00264615 + inSlope: 0.03270338 + outSlope: 0.032703396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00023466162 + inSlope: 0.051744286 + outSlope: 0.051842075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0040941127 + inSlope: 0.06567222 + outSlope: 0.06563031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.008723125 + inSlope: 0.07624739 + outSlope: 0.076331206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.013909689 + inSlope: 0.08362346 + outSlope: 0.08358155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.019439619 + inSlope: 0.08742326 + outSlope: 0.087535016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.025098592 + inSlope: 0.08800999 + outSlope: 0.08787029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.030675186 + inSlope: 0.084936626 + outSlope: 0.084964484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.035963923 + inSlope: 0.078678064 + outSlope: 0.078789964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.040768012 + inSlope: 0.069402225 + outSlope: 0.0694021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.044888806 + inSlope: 0.05727629 + outSlope: 0.057444032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0481838 + inSlope: 0.04258011 + outSlope: 0.04258003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.050441634 + inSlope: 0.025425086 + outSlope: 0.025369251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.05152054 + inSlope: -0.006314373 + outSlope: -0.006314362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04959764 + inSlope: -0.05627046 + outSlope: -0.05632644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.043742955 + inSlope: -0.101365246 + outSlope: -0.101644464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.035219613 + inSlope: -0.12941648 + outSlope: -0.12947258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.025180306 + inSlope: -0.14056465 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07987839 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.079878405 + inSlope: -0.04380941 + outSlope: -0.04369765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0857173 + inSlope: -0.19736587 + outSlope: -0.19781293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.1061994 + inSlope: -0.35852197 + outSlope: -0.35863364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1334832 + inSlope: -0.40478998 + outSlope: -0.4052371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16017936 + inSlope: -0.36209825 + outSlope: -0.36187473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.18176515 + inSlope: -0.25212768 + outSlope: -0.25212768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.19378996 + inSlope: -0.07510186 + outSlope: -0.07510182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19180185 + inSlope: 0.10795887 + outSlope: 0.108405955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1793532 + inSlope: 0.22977592 + outSlope: 0.22977592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.16115507 + inSlope: 0.30845407 + outSlope: 0.30800703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13820627 + inSlope: 0.3717095 + outSlope: 0.37238005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.11153978 + inSlope: 0.42010102 + outSlope: 0.41976574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.082231015 + inSlope: 0.45139346 + outSlope: 0.45161697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.051395837 + inSlope: 0.46653676 + outSlope: 0.4659221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.020180106 + inSlope: 0.46323988 + outSlope: 0.46318358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.010256091 + inSlope: 0.4429553 + outSlope: 0.4428443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.03875483 + inSlope: 0.40439928 + outSlope: 0.40467796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.064100444 + inSlope: 0.35036325 + outSlope: 0.35081092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.08539343 + inSlope: 0.27895 + outSlope: 0.2795083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.1012727 + inSlope: 0.19088371 + outSlope: 0.1907723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.11084018 + inSlope: 0.031404227 + outSlope: 0.031180654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.10543979 + inSlope: -0.22094679 + outSlope: -0.221953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.08113186 + inSlope: -0.45519367 + outSlope: -0.45631042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.044253163 + inSlope: -0.5998085 + outSlope: -0.59986544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0006358768 + inSlope: -0.6509855 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99311256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99311256 + inSlope: -0.0035762785 + outSlope: -0.0035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99259174 + inSlope: -0.018775461 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9903625 + inSlope: -0.044703487 + outSlope: -0.043809406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98659873 + inSlope: -0.061690796 + outSlope: -0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98215634 + inSlope: -0.064373024 + outSlope: -0.064373024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9781531 + inSlope: -0.046491627 + outSlope: -0.047385696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9760635 + inSlope: -0.006258488 + outSlope: -0.0062584854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.97730327 + inSlope: 0.03665684 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.98080355 + inSlope: 0.059008602 + outSlope: 0.06079674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9851381 + inSlope: 0.06705523 + outSlope: 0.0679493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9895955 + inSlope: 0.064373024 + outSlope: 0.062584884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9935235 + inSlope: 0.051856045 + outSlope: 0.052750114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9963987 + inSlope: 0.032186512 + outSlope: 0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9978774 + inSlope: 0.009834767 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9978274 + inSlope: -0.013411046 + outSlope: -0.010728827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99633783 + inSlope: -0.032186482 + outSlope: -0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99370825 + inSlope: -0.046491668 + outSlope: -0.044703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9904283 + inSlope: -0.05006786 + outSlope: -0.05185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.9870707 + inSlope: -0.047385737 + outSlope: -0.046491586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.98433536 + inSlope: -0.03308055 + outSlope: -0.032186538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9828182 + inSlope: 0.005364423 + outSlope: 0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9850108 + inSlope: 0.067055166 + outSlope: 0.064373076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99097776 + inSlope: 0.093877405 + outSlope: 0.09566537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99688387 + inSlope: 0.068843305 + outSlope: 0.06884343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.999665 + inSlope: 0.008940705 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16508342 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.16508338 + inSlope: 0.04738569 + outSlope: 0.047609206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.15874329 + inSlope: 0.19736587 + outSlope: 0.19781293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.13870233 + inSlope: 0.42222443 + outSlope: 0.42267138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.102333955 + inSlope: 0.64104784 + outSlope: 0.6413833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.05311135 + inSlope: 0.7586182 + outSlope: 0.75872993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0011540018 + inSlope: 0.78457415 + outSlope: 0.7844624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.051482778 + inSlope: 0.78024346 + outSlope: 0.7800755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10284172 + inSlope: 0.7469949 + outSlope: 0.7463247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15100373 + inSlope: 0.6846339 + outSlope: 0.68508095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1941294 + inSlope: 0.59679157 + outSlope: 0.595674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.23048037 + inSlope: 0.48190358 + outSlope: 0.48235062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.25841358 + inSlope: 0.34376982 + outSlope: 0.34376982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.27634525 + inSlope: 0.18149616 + outSlope: 0.1819432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.28268683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.27634525 + inSlope: -0.18149616 + outSlope: -0.181496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.25841355 + inSlope: -0.34332246 + outSlope: -0.34287605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.23048031 + inSlope: -0.48033938 + outSlope: -0.48011503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.1942544 + inSlope: -0.5947794 + outSlope: -0.59612155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.15100369 + inSlope: -0.6835169 + outSlope: -0.68440974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.10299817 + inSlope: -0.74554175 + outSlope: -0.7454313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.051482722 + inSlope: -0.7793501 + outSlope: -0.7792928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000989588 + inSlope: -0.7841264 + outSlope: -0.785441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.053111393 + inSlope: -0.75884235 + outSlope: -0.7601821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.10219151 + inSlope: -0.641718 + outSlope: -0.64127207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.13870233 + inSlope: -0.5460536 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6456678 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6456678 + inSlope: 0.0035762785 + outSlope: 0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.64631814 + inSlope: 0.0205636 + outSlope: 0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.64818823 + inSlope: 0.03755093 + outSlope: 0.03665685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6508693 + inSlope: 0.042915337 + outSlope: 0.043809418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.65305287 + inSlope: 0.025928022 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6535732 + inSlope: -0.0026822092 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6522397 + inSlope: -0.031292442 + outSlope: -0.026822079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.64912605 + inSlope: -0.052750092 + outSlope: -0.054538254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6445596 + inSlope: -0.07152558 + outSlope: -0.07152558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.639093 + inSlope: -0.08046628 + outSlope: -0.08225442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.63345027 + inSlope: -0.07778407 + outSlope: -0.07957221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.62845516 + inSlope: -0.064373024 + outSlope: -0.063478954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.62494016 + inSlope: -0.03755093 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6236385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.62494016 + inSlope: 0.03665686 + outSlope: 0.038444962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.62845504 + inSlope: 0.0661611 + outSlope: 0.06705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.6334502 + inSlope: 0.08404263 + outSlope: 0.08225434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.63907516 + inSlope: 0.08940689 + outSlope: 0.08851298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.6445597 + inSlope: 0.080466345 + outSlope: 0.0804662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6491138 + inSlope: 0.062584825 + outSlope: 0.06347901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.6522398 + inSlope: 0.039339103 + outSlope: 0.0402331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.653572 + inSlope: 0.010728827 + outSlope: 0.010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.65305287 + inSlope: -0.016093269 + outSlope: -0.016987309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.65087795 + inSlope: -0.036656827 + outSlope: -0.03486875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.64818823 + inSlope: -0.043809455 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07127721 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.071277246 + inSlope: 0.008046627 + outSlope: 0.008270144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07016656 + inSlope: 0.03453344 + outSlope: 0.034645204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.06664388 + inSlope: 0.07420779 + outSlope: 0.07376073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.060205795 + inSlope: 0.11298804 + outSlope: 0.11332334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.051399805 + inSlope: 0.13584273 + outSlope: 0.13612212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.04199045 + inSlope: 0.14316292 + outSlope: 0.14305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.03233913 + inSlope: 0.1448393 + outSlope: 0.14478335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02280622 + inSlope: 0.14092767 + outSlope: 0.14070423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.013761476 + inSlope: 0.13109298 + outSlope: 0.13109298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0055744424 + inSlope: 0.11511148 + outSlope: 0.11522324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0013926104 + inSlope: 0.09387732 + outSlope: 0.09398908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0067884475 + inSlope: 0.06727875 + outSlope: 0.0666082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.010271996 + inSlope: 0.035315756 + outSlope: 0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.011507764 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.010271952 + inSlope: -0.03509224 + outSlope: -0.035092205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.006788492 + inSlope: -0.06549055 + outSlope: -0.06571418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0013926402 + inSlope: -0.091195196 + outSlope: -0.09108327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0055505633 + inSlope: -0.11209389 + outSlope: -0.11198233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.013761453 + inSlope: -0.12740505 + outSlope: -0.12796362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.022777006 + inSlope: -0.13802189 + outSlope: -0.1381339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.03233913 + inSlope: -0.14321892 + outSlope: -0.14333043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.041960493 + inSlope: -0.14293927 + outSlope: -0.14316304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0513998 + inSlope: -0.13729571 + outSlope: -0.1374631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.060180463 + inSlope: -0.11511137 + outSlope: -0.114888065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.06664391 + inSlope: -0.097230166 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.74214566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.74214566 + inSlope: 0.007152557 + outSlope: 0.0062584872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7430681 + inSlope: 0.028610228 + outSlope: 0.026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7457697 + inSlope: 0.052750114 + outSlope: 0.050961964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7498481 + inSlope: 0.060796726 + outSlope: 0.059008602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7536971 + inSlope: 0.04112721 + outSlope: 0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.75569665 + inSlope: 0.008940698 + outSlope: 0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7555706 + inSlope: -0.023245813 + outSlope: -0.021457665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7533518 + inSlope: -0.051856022 + outSlope: -0.051856045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.74936724 + inSlope: -0.07420779 + outSlope: -0.07152558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7442063 + inSlope: -0.08404256 + outSlope: -0.085830696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7386593 + inSlope: -0.08314849 + outSlope: -0.08225442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.73363507 + inSlope: -0.06616116 + outSlope: -0.0679493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.73005307 + inSlope: -0.03933907 + outSlope: -0.03665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.72871864 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.73005307 + inSlope: 0.03665686 + outSlope: 0.038444962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7336351 + inSlope: 0.065267034 + outSlope: 0.066161215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.7386594 + inSlope: 0.078678206 + outSlope: 0.078678064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.74418914 + inSlope: 0.0804662 + outSlope: 0.077784136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.7493672 + inSlope: 0.064373076 + outSlope: 0.067949235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.7533418 + inSlope: 0.042915307 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7555706 + inSlope: 0.0125169875 + outSlope: 0.014305103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.75569963 + inSlope: -0.018775448 + outSlope: -0.01788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.7536971 + inSlope: -0.048279807 + outSlope: -0.04917379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.74986196 + inSlope: -0.0661611 + outSlope: -0.065267146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7457697 + inSlope: -0.0697375 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.081053816 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08105382 + inSlope: 0.022463499 + outSlope: 0.022575257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08406668 + inSlope: 0.10695308 + outSlope: 0.107511885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.09532065 + inSlope: 0.20038338 + outSlope: 0.20015982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.110800095 + inSlope: 0.22698191 + outSlope: 0.22731723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12572667 + inSlope: 0.19513072 + outSlope: 0.19446017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.13691625 + inSlope: 0.11578203 + outSlope: 0.11600555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.14131826 + inSlope: -0.008046628 + outSlope: -0.007823107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13592617 + inSlope: -0.13455744 + outSlope: -0.1345575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.123333044 + inSlope: -0.22351743 + outSlope: -0.22374095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10606298 + inSlope: -0.28688464 + outSlope: -0.28677288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.085018955 + inSlope: -0.33628199 + outSlope: -0.3365055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.061125234 + inSlope: -0.3719889 + outSlope: -0.3717095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.035337508 + inSlope: -0.39272013 + outSlope: -0.39299953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.008641563 + inSlope: -0.39885288 + outSlope: -0.39854556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.017958473 + inSlope: -0.3893953 + outSlope: -0.389367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.043457605 + inSlope: -0.3653948 + outSlope: -0.36545134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.066869244 + inSlope: -0.326671 + outSlope: -0.32655868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.08718265 + inSlope: -0.27481443 + outSlope: -0.27526197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.10366079 + inSlope: -0.20943601 + outSlope: -0.20999444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.11523007 + inSlope: -0.13075759 + outSlope: -0.13109308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.121185966 + inSlope: 0.016652064 + outSlope: 0.01687555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.11298386 + inSlope: 0.2600623 + outSlope: 0.2607333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.08647814 + inSlope: 0.48961538 + outSlope: 0.4903968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0478621 + inSlope: 0.6303186 + outSlope: 0.6303756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0027271414 + inSlope: 0.67886496 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.040226426 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.040226426 + inSlope: -0.00072643155 + outSlope: -0.0007823109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.040127393 + inSlope: -0.0010617077 + outSlope: -0.0012293459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.040161572 + inSlope: 0.000111758716 + outSlope: 0.00011175869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.040480573 + inSlope: 0.00039115542 + outSlope: 0.0003911555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.040678315 + inSlope: -0.0037997963 + outSlope: -0.0037997963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.040360127 + inSlope: -0.012684614 + outSlope: -0.012740494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.03917011 + inSlope: -0.02704561 + outSlope: -0.026989717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.03676358 + inSlope: -0.042635933 + outSlope: -0.04280359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.033508874 + inSlope: -0.05666167 + outSlope: -0.05666167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.02938929 + inSlope: -0.06920659 + outSlope: -0.06920659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.024595603 + inSlope: -0.0787899 + outSlope: -0.07884578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.019321222 + inSlope: -0.08538366 + outSlope: -0.08535572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.01376529 + inSlope: -0.088568784 + outSlope: -0.08862466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.008132894 + inSlope: -0.088443056 + outSlope: -0.08837321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00263307 + inSlope: -0.084702626 + outSlope: -0.08470255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0025247645 + inSlope: -0.07761636 + outSlope: -0.077613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0071347533 + inSlope: -0.06707624 + outSlope: -0.067111045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.01098742 + inSlope: -0.053644136 + outSlope: -0.05374202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.013925241 + inSlope: -0.037327446 + outSlope: -0.03732738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.015732052 + inSlope: -0.018244594 + outSlope: -0.018272566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.016257122 + inSlope: 0.018524023 + outSlope: 0.01860781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.013255979 + inSlope: 0.078566305 + outSlope: 0.07884584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0055777556 + inSlope: 0.13249007 + outSlope: 0.13276225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0051406627 + inSlope: 0.16382416 + outSlope: 0.1638943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.01745071 + inSlope: 0.17398053 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08538883 + inSlope: 0 + outSlope: 0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.08538883 + inSlope: -0.066272914 + outSlope: -0.06638467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09422715 + inSlope: -0.29370186 + outSlope: -0.29437247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.1245349 + inSlope: -0.5262718 + outSlope: -0.526607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.16425721 + inSlope: -0.5894153 + outSlope: -0.589639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.20303833 + inSlope: -0.5301834 + outSlope: -0.5304069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.23492686 + inSlope: -0.3833324 + outSlope: -0.38310888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.25418782 + inSlope: -0.15154482 + outSlope: -0.15154475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.25513992 + inSlope: 0.088065825 + outSlope: 0.088512905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.24232948 + inSlope: 0.24385752 + outSlope: 0.24408104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.22249681 + inSlope: 0.34064057 + outSlope: 0.34131113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.19675626 + inSlope: 0.4206598 + outSlope: 0.42133036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.16626833 + inSlope: 0.4834682 + outSlope: 0.48279765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.13226165 + inSlope: 0.5263836 + outSlope: 0.52705413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.096035965 + inSlope: 0.55029994 + outSlope: 0.5498529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.058950964 + inSlope: 0.5527027 + outSlope: 0.5527581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.022403335 + inSlope: 0.53434587 + outSlope: 0.5343189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.012200237 + inSlope: 0.49405777 + outSlope: 0.49407086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.043376595 + inSlope: 0.434294 + outSlope: 0.43518883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.07003754 + inSlope: 0.35394016 + outSlope: 0.35449833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.090528175 + inSlope: 0.25313327 + outSlope: 0.25324547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.10379345 + inSlope: 0.075996 + outSlope: 0.07554883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.10063195 + inSlope: -0.1984833 + outSlope: -0.19937773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.077116296 + inSlope: -0.4509468 + outSlope: -0.4517283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.040077914 + inSlope: -0.60561997 + outSlope: -0.60584456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.004161305 + inSlope: -0.6600755 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9922302 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9922302 + inSlope: -0.008940696 + outSlope: -0.007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99118304 + inSlope: -0.037550922 + outSlope: -0.03576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.986809 + inSlope: -0.085830696 + outSlope: -0.08583067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.97933865 + inSlope: -0.12516974 + outSlope: -0.12606384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9702131 + inSlope: -0.1358986 + outSlope: -0.1358986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.9614751 + inSlope: -0.10997058 + outSlope: -0.10907651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9559725 + inSlope: -0.038445 + outSlope: -0.03844498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.95659614 + inSlope: 0.044703465 + outSlope: 0.044703487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.96173936 + inSlope: 0.09298325 + outSlope: 0.09208918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.96870124 + inSlope: 0.11175872 + outSlope: 0.11175872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9764496 + inSlope: 0.116229065 + outSlope: 0.115334995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9839945 + inSlope: 0.1063943 + outSlope: 0.10728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9904891 + inSlope: 0.085830696 + outSlope: 0.08404256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9953071 + inSlope: 0.057220463 + outSlope: 0.057220463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99809587 + inSlope: 0.025928022 + outSlope: 0.02503393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.99880093 + inSlope: -0.0035762757 + outSlope: -0.0044703525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.99766153 + inSlope: -0.029504327 + outSlope: -0.027716137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99518687 + inSlope: -0.043809377 + outSlope: -0.043809455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.992046 + inSlope: -0.047385737 + outSlope: -0.04738565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9890799 + inSlope: -0.039339032 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9870545 + inSlope: -0.005364423 + outSlope: -0.0053644134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.98839885 + inSlope: 0.051855996 + outSlope: 0.05006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99324894 + inSlope: 0.077784136 + outSlope: 0.07957213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9980364 + inSlope: 0.054538205 + outSlope: 0.052750163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9998353 + inSlope: -0.0035762822 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026176248 + inSlope: 0 + outSlope: -0.13075769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.017451955 + inSlope: -0.21234153 + outSlope: -0.21264887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0021588886 + inSlope: -0.31728294 + outSlope: -0.31732142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.024852177 + inSlope: -0.34955332 + outSlope: -0.34955326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.048764877 + inSlope: -0.3538839 + outSlope: -0.3538281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.072034456 + inSlope: -0.33035877 + outSlope: -0.33035877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.09280853 + inSlope: -0.27917328 + outSlope: -0.27894977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.10925138 + inSlope: -0.20049514 + outSlope: -0.20038329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.11954268 + inSlope: -0.09465959 + outSlope: -0.09443612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12186627 + inSlope: 0.016205015 + outSlope: 0.016316773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11737683 + inSlope: 0.0974536 + outSlope: 0.0974536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.108871095 + inSlope: 0.15288593 + outSlope: 0.15299769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.09698617 + inSlope: 0.19893052 + outSlope: 0.198707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.08236023 + inSlope: 0.23491682 + outSlope: 0.23536386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.065635435 + inSlope: 0.26185068 + outSlope: 0.26162717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.047459178 + inSlope: 0.2785586 + outSlope: 0.27850246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.02848381 + inSlope: 0.28559914 + outSlope: 0.28559965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.009365539 + inSlope: 0.28234467 + outSlope: 0.28235814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.009181156 + inSlope: 0.27014852 + outSlope: 0.27063793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.026668994 + inSlope: 0.24779724 + outSlope: 0.24818794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.042228103 + inSlope: 0.21535885 + outSlope: 0.21541512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.055399913 + inSlope: 0.17356144 + outSlope: 0.17350525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.06537571 + inSlope: 0.09331845 + outSlope: 0.09331861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.06784327 + inSlope: -0.03028664 + outSlope: -0.030510101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.06132133 + inSlope: -0.13679254 + outSlope: -0.13690455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.04959224 + inSlope: -0.17590837 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9996318 + inSlope: 0 + outSlope: 0.0035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9998222 + inSlope: 0.0035762785 + outSlope: 0.0035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99997216 + inSlope: -0.0008940696 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9996656 + inSlope: -0.008940698 + outSlope: -0.008940695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9987848 + inSlope: -0.016987322 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.99737656 + inSlope: -0.024139883 + outSlope: -0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99565834 + inSlope: -0.026822092 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.9939885 + inSlope: -0.022351744 + outSlope: -0.022351732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99280334 + inSlope: -0.011622901 + outSlope: -0.010728837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9925208 + inSlope: 0.0017881395 + outSlope: 0.0017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9930618 + inSlope: 0.011622907 + outSlope: 0.011622907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.99403024 + inSlope: 0.016987326 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.9952601 + inSlope: 0.019669535 + outSlope: 0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.996577 + inSlope: 0.019669535 + outSlope: 0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9978181 + inSlope: 0.016987326 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9988476 + inSlope: 0.013411046 + outSlope: 0.013411034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9995687 + inSlope: 0.0080466205 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9999306 + inSlope: 0.0026822116 + outSlope: 0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.99993235 + inSlope: -0.0026822067 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99961877 + inSlope: -0.0071525644 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99908245 + inSlope: -0.008940689 + outSlope: -0.008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9984387 + inSlope: -0.009834776 + outSlope: -0.009834758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99783516 + inSlope: -0.0062584826 + outSlope: -0.0062584938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9976704 + inSlope: 0.0017881411 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.99809253 + inSlope: 0.0080466205 + outSlope: 0.0080466345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.998744 + inSlope: 0.0080466345 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0001870027 + inSlope: 0 + outSlope: -0.00093597913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00012464881 + inSlope: -0.0015166005 + outSlope: -0.0015190016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000015423004 + inSlope: -0.0022659786 + outSlope: -0.0022662245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0001775111 + inSlope: -0.0024962358 + outSlope: -0.002496235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00034830876 + inSlope: -0.0025263575 + outSlope: -0.0025267948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000514513 + inSlope: -0.0023582836 + outSlope: -0.0023582836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00066289294 + inSlope: -0.0019924485 + outSlope: -0.0019907022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00078033726 + inSlope: -0.0014301623 + outSlope: -0.0014301616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00085384434 + inSlope: -0.0006749176 + outSlope: -0.00067229854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0008704421 + inSlope: 0.000116997406 + outSlope: 0.000118743636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0008383785 + inSlope: 0.0006976189 + outSlope: 0.0006976189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0007776291 + inSlope: 0.00109314 + outSlope: 0.0010957593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00069274416 + inSlope: 0.0014240505 + outSlope: 0.0014205581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0005882821 + inSlope: 0.0016798732 + outSlope: 0.0016833657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00046882904 + inSlope: 0.0018719585 + outSlope: 0.0018706488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0003390087 + inSlope: 0.001992012 + outSlope: 0.0019907004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00020348052 + inSlope: 0.0020415592 + outSlope: 0.002041781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00006693119 + inSlope: 0.0020183162 + outSlope: 0.0020185309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000065536326 + inSlope: 0.0019310012 + outSlope: 0.0019348245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00019044177 + inSlope: 0.0017713336 + outSlope: 0.001774168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00030157235 + inSlope: 0.0015393003 + outSlope: 0.0015397397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00039565278 + inSlope: 0.001241134 + outSlope: 0.0012398221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00046690708 + inSlope: 0.00066749577 + outSlope: 0.000667497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00048453908 + inSlope: -0.00021565959 + outSlope: -0.00021696888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0004379707 + inSlope: -0.0009770148 + outSlope: -0.0009778896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0003542143 + inSlope: -0.0012572866 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.007139633 + inSlope: 0 + outSlope: 0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.007140994 + inSlope: 0.000020954756 + outSlope: 0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.007142065 + inSlope: -0.000006984919 + outSlope: -0.0000069849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0071398756 + inSlope: -0.00006286428 + outSlope: -0.00006286427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0071335835 + inSlope: -0.00011874361 + outSlope: -0.000118743636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.007123525 + inSlope: -0.000174623 + outSlope: -0.00016763808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.007111252 + inSlope: -0.00019557776 + outSlope: -0.00018160792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0070993244 + inSlope: -0.00016065316 + outSlope: -0.00016065309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.007090859 + inSlope: -0.000083819 + outSlope: -0.00007683412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0070888405 + inSlope: 0.0000069849198 + outSlope: 0.0000139698395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0070927045 + inSlope: 0.00008381904 + outSlope: 0.00007683412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0070996215 + inSlope: 0.000118743636 + outSlope: 0.00012572856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0071084066 + inSlope: 0.00014668332 + outSlope: 0.00013271348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0071178125 + inSlope: 0.0001396984 + outSlope: 0.0001396984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.007126678 + inSlope: 0.00012572856 + outSlope: 0.000118743636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0071340315 + inSlope: 0.00009080396 + outSlope: 0.00009778879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.007139182 + inSlope: 0.000055879307 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.007141768 + inSlope: 0.000020954778 + outSlope: 0.00002095474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0071417815 + inSlope: -0.000013969827 + outSlope: -0.000020954778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.007139542 + inSlope: -0.000048894482 + outSlope: -0.00004190948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.007135712 + inSlope: -0.00006286422 + outSlope: -0.00006286433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.007131114 + inSlope: -0.00006984926 + outSlope: -0.000069849135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0071268035 + inSlope: -0.000048894395 + outSlope: -0.000041909556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0071256263 + inSlope: 0.000013969852 + outSlope: 0.000013969827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0071286405 + inSlope: 0.00006286422 + outSlope: 0.00005587941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.007133293 + inSlope: 0.00006286433 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05670157 + inSlope: 0 + outSlope: -0.0001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.056701265 + inSlope: 0.09186565 + outSlope: 0.09220093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.06896404 + inSlope: 0.20664184 + outSlope: 0.20675363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.08424338 + inSlope: 0.23480506 + outSlope: 0.23458149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10024528 + inSlope: 0.22821124 + outSlope: 0.2282113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11469405 + inSlope: 0.18808992 + outSlope: 0.18808992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.12533887 + inSlope: 0.114440925 + outSlope: 0.11421741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.12994714 + inSlope: 0.007152558 + outSlope: 0.006929037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.12627971 + inSlope: -0.11064108 + outSlope: -0.11064113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.115182444 + inSlope: -0.19982459 + outSlope: -0.2006069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.099578656 + inSlope: -0.26162717 + outSlope: -0.26118013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08032368 + inSlope: -0.30979517 + outSlope: -0.30979517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.058287468 + inSlope: -0.34494328 + outSlope: -0.3446639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.03435844 + inSlope: -0.36617744 + outSlope: -0.3665686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.009441681 + inSlope: -0.37450346 + outSlope: -0.37412626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.01554722 + inSlope: -0.3683148 + outSlope: -0.36827257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.039690837 + inSlope: -0.34874275 + outSlope: -0.34879926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.062078927 + inSlope: -0.3153275 + outSlope: -0.31532693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.08175876 + inSlope: -0.26945 + outSlope: -0.26989755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.098021135 + inSlope: -0.21010657 + outSlope: -0.21055323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10980289 + inSlope: -0.13757485 + outSlope: -0.13746335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.1163911 + inSlope: -0.0034645232 + outSlope: -0.0030174826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.11022939 + inSlope: 0.21390599 + outSlope: 0.21468869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.087782994 + inSlope: 0.41697213 + outSlope: 0.41786546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0545822 + inSlope: 0.54102343 + outSlope: 0.54102445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.015610483 + inSlope: 0.584303 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6421294 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6421287 + inSlope: -0.007152557 + outSlope: -0.0053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.64127845 + inSlope: -0.0151991835 + outSlope: -0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.6399844 + inSlope: -0.020563604 + outSlope: -0.021457668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6383488 + inSlope: -0.025033947 + outSlope: -0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.63662356 + inSlope: -0.024139883 + outSlope: -0.024139883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6352008 + inSlope: -0.015199185 + outSlope: -0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.6345446 + inSlope: 0 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6350686 + inSlope: 0.014305109 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.63656116 + inSlope: 0.025928022 + outSlope: 0.025033953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6384226 + inSlope: 0.028610231 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.64034116 + inSlope: 0.025928022 + outSlope: 0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.6420282 + inSlope: 0.023245813 + outSlope: 0.021457674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.6432498 + inSlope: 0.015199185 + outSlope: 0.013411046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.6438504 + inSlope: 0.0053644185 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6437664 + inSlope: -0.0053644185 + outSlope: -0.0062584826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.64303243 + inSlope: -0.014305103 + outSlope: -0.015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.6417764 + inSlope: -0.020563623 + outSlope: -0.020563586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.6402126 + inSlope: -0.02413986 + outSlope: -0.023245834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.6385933 + inSlope: -0.023245834 + outSlope: -0.022351723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.6372341 + inSlope: -0.017881379 + outSlope: -0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.6364054 + inSlope: -0.00089407054 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.63718206 + inSlope: 0.027716137 + outSlope: 0.026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.63964754 + inSlope: 0.041127246 + outSlope: 0.04202124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.6422592 + inSlope: 0.034868687 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6437657 + inSlope: 0.010728846 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.047718197 + inSlope: 0 + outSlope: -0.00005587935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.047718585 + inSlope: 0.0773929 + outSlope: 0.07756054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.058038637 + inSlope: 0.17412005 + outSlope: 0.17400832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.070897385 + inSlope: 0.19758941 + outSlope: 0.19736585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08436421 + inSlope: 0.19188967 + outSlope: 0.19211324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.096524 + inSlope: 0.15847386 + outSlope: 0.1583621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.1054824 + inSlope: 0.0961125 + outSlope: 0.0961125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.109360605 + inSlope: 0.0056996946 + outSlope: 0.0058114505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10627423 + inSlope: -0.09309497 + outSlope: -0.09331853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.096935004 + inSlope: -0.16842039 + outSlope: -0.16842039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08380323 + inSlope: -0.22005291 + outSlope: -0.21960588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06759871 + inSlope: -0.2601743 + outSlope: -0.2607331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.04905354 + inSlope: -0.29018152 + outSlope: -0.289958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.028915426 + inSlope: -0.3081188 + outSlope: -0.3084261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0079460535 + inSlope: -0.31517354 + outSlope: -0.31483826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.013084027 + inSlope: -0.30999073 + outSlope: -0.3099765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.033402734 + inSlope: -0.293534 + outSlope: -0.2935904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.05224404 + inSlope: -0.26548305 + outSlope: -0.26537085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06880613 + inSlope: -0.22675823 + outSlope: -0.22731744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0824922 + inSlope: -0.17702596 + outSlope: -0.17724916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.09240747 + inSlope: -0.11555841 + outSlope: -0.115670376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.09795201 + inSlope: -0.0029057292 + outSlope: -0.0026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09276648 + inSlope: 0.18026665 + outSlope: 0.18037874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.07387621 + inSlope: 0.35081092 + outSlope: 0.35136908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.045935303 + inSlope: 0.45508108 + outSlope: 0.45530543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.013137728 + inSlope: 0.49164099 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7630057 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7630063 + inSlope: -0.0053644176 + outSlope: -0.007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7619957 + inSlope: -0.018775461 + outSlope: -0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.7604581 + inSlope: -0.025928022 + outSlope: -0.026822086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7585145 + inSlope: -0.033080574 + outSlope: -0.029504301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7564647 + inSlope: -0.027716162 + outSlope: -0.028610231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7547739 + inSlope: -0.019669535 + outSlope: -0.018775465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7539942 + inSlope: -0.00089406973 + outSlope: -0.0017881386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.75461715 + inSlope: 0.018775456 + outSlope: 0.016987326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7563904 + inSlope: 0.028610231 + outSlope: 0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.75860244 + inSlope: 0.03397465 + outSlope: 0.03486872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7608822 + inSlope: 0.03308058 + outSlope: 0.03039837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.7628867 + inSlope: 0.025033953 + outSlope: 0.025928022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.7643384 + inSlope: 0.016093256 + outSlope: 0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.76505196 + inSlope: 0.004470349 + outSlope: 0.003576279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.76495224 + inSlope: -0.007152558 + outSlope: -0.0080466205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.76408 + inSlope: -0.016987309 + outSlope: -0.019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.76258755 + inSlope: -0.025033975 + outSlope: -0.025927998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.7607292 + inSlope: -0.030398343 + outSlope: -0.027716186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.75880533 + inSlope: -0.026822116 + outSlope: -0.028610205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.75719017 + inSlope: -0.019669516 + outSlope: -0.021457693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.75620544 + inSlope: 0 + outSlope: -0.0008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.75712806 + inSlope: 0.030398343 + outSlope: 0.03129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.76005745 + inSlope: 0.046491668 + outSlope: 0.04827972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.7631605 + inSlope: 0.038444962 + outSlope: 0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.7649506 + inSlope: 0.010728846 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015986731 + inSlope: 0 + outSlope: -0.000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.01598597 + inSlope: 0.025033949 + outSlope: 0.025145708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0126357395 + inSlope: 0.053588297 + outSlope: 0.053602275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.008843268 + inSlope: 0.058994632 + outSlope: 0.059022557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004771105 + inSlope: 0.061942253 + outSlope: 0.061949253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0005849822 + inSlope: 0.06239716 + outSlope: 0.062391922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0035477353 + inSlope: 0.060321767 + outSlope: 0.060325257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.007459948 + inSlope: 0.05575363 + outSlope: 0.055767573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.010986591 + inSlope: 0.048782658 + outSlope: 0.0487268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.013965774 + inSlope: 0.03933907 + outSlope: 0.03939495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.016238894 + inSlope: 0.027604403 + outSlope: 0.027604403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.017649528 + inSlope: 0.013522805 + outSlope: 0.013466925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.018041244 + inSlope: -0.0017601998 + outSlope: -0.0017043204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.017418277 + inSlope: -0.015506522 + outSlope: -0.0155344615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.015969036 + inSlope: -0.02707355 + outSlope: -0.02701767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.013810854 + inSlope: -0.03679656 + outSlope: -0.036796525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.011061294 + inSlope: -0.044759326 + outSlope: -0.044787344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.007839534 + inSlope: -0.05086423 + outSlope: -0.05085017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0042786696 + inSlope: -0.055278607 + outSlope: -0.055369508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0004678279 + inSlope: -0.057712514 + outSlope: -0.057818495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0034204205 + inSlope: -0.058289103 + outSlope: -0.058282223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.0073080203 + inSlope: -0.056955088 + outSlope: -0.056954984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.011021368 + inSlope: -0.053783834 + outSlope: -0.05383981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.014482597 + inSlope: -0.04875478 + outSlope: -0.048824545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.017527796 + inSlope: -0.041881543 + outSlope: -0.041881617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.020076225 + inSlope: -0.038109757 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05227031 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.05226987 + inSlope: 0.0016763805 + outSlope: 0.0015646218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.052451257 + inSlope: 0.0029616056 + outSlope: 0.002793968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.052604873 + inSlope: 0.0024028125 + outSlope: 0.002291053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.052709248 + inSlope: 0.001452863 + outSlope: 0.001564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05275152 + inSlope: 0.0005587936 + outSlope: 0.0005587936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.052728713 + inSlope: -0.0003911555 + outSlope: -0.0003911555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.052647993 + inSlope: -0.0011734666 + outSlope: -0.001173466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.052525718 + inSlope: -0.0017881386 + outSlope: -0.0018440188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.052385587 + inSlope: -0.002011657 + outSlope: -0.0018998982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.052255813 + inSlope: -0.001564622 + outSlope: -0.0016205014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.052165244 + inSlope: -0.00089406973 + outSlope: -0.00089406973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.052138723 + inSlope: 0.000055879358 + outSlope: 0.000111758716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.052180592 + inSlope: 0.0010617079 + outSlope: 0.0011734666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.052272193 + inSlope: 0.0016763808 + outSlope: 0.0017322601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05239362 + inSlope: 0.0020675363 + outSlope: 0.0020675345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.052522477 + inSlope: 0.0020675345 + outSlope: 0.002067538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.05263693 + inSlope: 0.0017881411 + outSlope: 0.0016763792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.05271779 + inSlope: 0.0012293448 + outSlope: 0.0011734676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.052751534 + inSlope: 0.00044703527 + outSlope: 0.00039115516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.05272978 + inSlope: -0.00039115516 + outSlope: -0.00039115586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.052651256 + inSlope: -0.0011734676 + outSlope: -0.0012293448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.052522972 + inSlope: -0.0018440172 + outSlope: -0.0018998999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.052356232 + inSlope: -0.0023469352 + outSlope: -0.0024586895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.052171525 + inSlope: -0.0026822067 + outSlope: -0.0026822116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.051989343 + inSlope: -0.0026822116 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13389966 + inSlope: 0 + outSlope: -0.0004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13389981 + inSlope: 0.20965932 + outSlope: 0.21010636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.105844505 + inSlope: 0.4487112 + outSlope: 0.4485995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.07408575 + inSlope: 0.49397352 + outSlope: 0.49386165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.039984796 + inSlope: 0.5186721 + outSlope: 0.51856047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.004929453 + inSlope: 0.52259076 + outSlope: 0.522472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.029678706 + inSlope: 0.5051773 + outSlope: 0.5052891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.062440317 + inSlope: 0.46703967 + outSlope: 0.4672071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09197312 + inSlope: 0.4088132 + outSlope: 0.40836635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11692141 + inSlope: 0.32957646 + outSlope: 0.32991174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13595696 + inSlope: 0.23134054 + outSlope: 0.23111703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14776982 + inSlope: 0.11309982 + outSlope: 0.11309982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.15105008 + inSlope: -0.0147521505 + outSlope: -0.014528633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.14583302 + inSlope: -0.12986363 + outSlope: -0.13031067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13369651 + inSlope: -0.22619964 + outSlope: -0.22642316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.11562308 + inSlope: -0.30800703 + outSlope: -0.30789497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.09259725 + inSlope: -0.3748384 + outSlope: -0.37483907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.06561717 + inSlope: -0.4258011 + outSlope: -0.42568856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.03579739 + inSlope: -0.46279243 + outSlope: -0.46363145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0038842973 + inSlope: -0.48330098 + outSlope: -0.48420817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.028676907 + inSlope: -0.48818958 + outSlope: -0.48819044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.061232563 + inSlope: -0.47715425 + outSlope: -0.47709754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09232885 + inSlope: -0.45049897 + outSlope: -0.45117033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.12131371 + inSlope: -0.40847847 + outSlope: -0.40903655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.14681448 + inSlope: -0.35092205 + outSlope: -0.35092267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.16815498 + inSlope: -0.3196302 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9894863 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9894863 + inSlope: 0.029504297 + outSlope: 0.029504297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9929181 + inSlope: 0.04917383 + outSlope: 0.048279766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9958242 + inSlope: 0.038445 + outSlope: 0.03576278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9977977 + inSlope: 0.022351738 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9985953 + inSlope: 0.0026822092 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.99816144 + inSlope: -0.014305116 + outSlope: -0.015199185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99663115 + inSlope: -0.03039837 + outSlope: -0.028610218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99431443 + inSlope: -0.03844498 + outSlope: -0.03755093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9916603 + inSlope: -0.03933907 + outSlope: -0.03933907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.98920244 + inSlope: -0.032186512 + outSlope: -0.03308058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9874874 + inSlope: -0.016987326 + outSlope: -0.017881395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.98698527 + inSlope: 0.0017881395 + outSlope: 0.0026822092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.98777854 + inSlope: 0.020563604 + outSlope: 0.019669535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.98951393 + inSlope: 0.03039837 + outSlope: 0.031292442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99181426 + inSlope: 0.03665686 + outSlope: 0.036656827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9942559 + inSlope: 0.036656827 + outSlope: 0.03397468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.9964248 + inSlope: 0.028610257 + outSlope: 0.027716137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9979584 + inSlope: 0.016987309 + outSlope: 0.01698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.99859995 + inSlope: 0.0017881411 + outSlope: 0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9981912 + inSlope: -0.013411034 + outSlope: -0.014305129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9967071 + inSlope: -0.030398399 + outSlope: -0.029504275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99428123 + inSlope: -0.04202124 + outSlope: -0.042021316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.9911268 + inSlope: -0.04917388 + outSlope: -0.051855996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.98763174 + inSlope: -0.051855996 + outSlope: -0.054538302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.98418397 + inSlope: -0.053644232 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.051921397 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0519214 + inSlope: -0.012461095 + outSlope: -0.0125169745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.05025056 + inSlope: -0.026822088 + outSlope: -0.026877971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.048350673 + inSlope: -0.07180498 + outSlope: -0.071860835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04069961 + inSlope: -0.15266237 + outSlope: -0.15283005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.027965747 + inSlope: -0.20728448 + outSlope: -0.20728448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.013051247 + inSlope: -0.23555943 + outSlope: -0.23558737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0034651437 + inSlope: -0.254974 + outSlope: -0.2550228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.020991735 + inSlope: -0.2655386 + outSlope: -0.26537108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03892842 + inSlope: -0.26682395 + outSlope: -0.2669357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.056675676 + inSlope: -0.2596155 + outSlope: -0.2593361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0736458 + inSlope: -0.24341048 + outSlope: -0.243634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.089273825 + inSlope: -0.21938236 + outSlope: -0.21938236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.10302551 + inSlope: -0.18730761 + outSlope: -0.18764289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.114400156 + inSlope: -0.14875086 + outSlope: -0.14841558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.12292661 + inSlope: -0.1025945 + outSlope: -0.102706164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.12815242 + inSlope: -0.05006786 + outSlope: -0.049844433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.12962608 + inSlope: 0.017210858 + outSlope: 0.017657861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.12584141 + inSlope: 0.100582756 + outSlope: 0.10125349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.11617268 + inSlope: 0.1812728 + outSlope: 0.18160775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.10168644 + inSlope: 0.24799237 + outSlope: 0.24799281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.08315236 + inSlope: 0.2998489 + outSlope: 0.29996014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.061783895 + inSlope: 0.33667284 + outSlope: 0.3372881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0383619 + inSlope: 0.3570694 + outSlope: 0.35768345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.0142714605 + inSlope: 0.36063108 + outSlope: 0.360506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.009655599 + inSlope: 0.35870388 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011815625 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.011815626 + inSlope: -0.0016624107 + outSlope: -0.0016624107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.011587404 + inSlope: -0.003869645 + outSlope: -0.0038836154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.011272088 + inSlope: -0.007222407 + outSlope: -0.0072084353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.010578419 + inSlope: -0.013425013 + outSlope: -0.0134529555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.009559741 + inSlope: -0.018607827 + outSlope: -0.018607827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.008365666 + inSlope: -0.021639282 + outSlope: -0.021611342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0070377197 + inSlope: -0.023846516 + outSlope: -0.02385349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0056194915 + inSlope: -0.02522952 + outSlope: -0.02520159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0041567637 + inSlope: -0.025648626 + outSlope: -0.025690535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002697062 + inSlope: -0.025159681 + outSlope: -0.025152696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0012888896 + inSlope: -0.023677131 + outSlope: -0.023712056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.000019244384 + inSlope: -0.021345915 + outSlope: -0.02129702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0011796253 + inSlope: -0.018146822 + outSlope: -0.018090943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.002146002 + inSlope: -0.014109538 + outSlope: -0.014137478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.002873797 + inSlope: -0.009555371 + outSlope: -0.009471543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0033198092 + inSlope: -0.004442405 + outSlope: -0.004498292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0034416858 + inSlope: 0.0016205028 + outSlope: 0.0016204999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.003105959 + inSlope: 0.008409835 + outSlope: 0.008409851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0022594426 + inSlope: 0.014305129 + outSlope: 0.014305103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0010009799 + inSlope: 0.01857987 + outSlope: 0.018510053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00059516076 + inSlope: 0.021471662 + outSlope: 0.021443684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0024173395 + inSlope: 0.023315642 + outSlope: 0.0233541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0043933475 + inSlope: 0.024139903 + outSlope: 0.0241678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.006403312 + inSlope: 0.024035087 + outSlope: 0.02403513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.00837782 + inSlope: 0.02360905 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17424549 + inSlope: 0 + outSlope: 0.0002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.17424552 + inSlope: -0.12762845 + outSlope: -0.12762845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.19125006 + inSlope: -0.35360453 + outSlope: -0.35427514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.22136548 + inSlope: -0.2384931 + outSlope: -0.238046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2230951 + inSlope: 0.17501411 + outSlope: 0.17613174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.197854 + inSlope: 0.42289498 + outSlope: 0.42267147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.16662766 + inSlope: 0.5038083 + outSlope: 0.5033613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.13067852 + inSlope: 0.5650521 + outSlope: 0.5641577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09133089 + inSlope: 0.6056202 + outSlope: 0.6052852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.049968485 + inSlope: 0.62467533 + outSlope: 0.62545764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.008018695 + inSlope: 0.6236276 + outSlope: 0.62305486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.033072077 + inSlope: 0.59941787 + outSlope: 0.5999208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.07186548 + inSlope: 0.5547703 + outSlope: 0.55465853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.10695474 + inSlope: 0.48849735 + outSlope: 0.48905614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13697906 + inSlope: 0.40322545 + outSlope: 0.40233138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16062436 + inSlope: 0.29683116 + outSlope: 0.29727793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.17660928 + inSlope: 0.1725553 + outSlope: 0.1723321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.18365686 + inSlope: 0.015869752 + outSlope: 0.016093241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.17873475 + inSlope: -0.16987309 + outSlope: -0.17032044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.16096927 + inSlope: -0.34421715 + outSlope: -0.34488708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.13269909 + inSlope: -0.4877146 + outSlope: -0.487939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.09572402 + inSlope: -0.5983567 + outSlope: -0.5984674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.05272067 + inSlope: -0.6754132 + outSlope: -0.6767555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.005484506 + inSlope: -0.71700263 + outSlope: -0.71820974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.043001693 + inSlope: -0.7225753 + outSlope: -0.72229725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.09090397 + inSlope: -0.7160387 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9832615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9832615 + inSlope: -0.02145767 + outSlope: -0.02324581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9801857 + inSlope: -0.067949295 + outSlope: -0.0679493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.9739263 + inSlope: -0.050961975 + outSlope: -0.050961964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.97388923 + inSlope: 0.047385685 + outSlope: 0.046491627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.97978586 + inSlope: 0.091195114 + outSlope: 0.09208918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.98589796 + inSlope: 0.086724766 + outSlope: 0.088512905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.99139374 + inSlope: 0.07331372 + outSlope: 0.07331368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9955835 + inSlope: 0.050067883 + outSlope: 0.050067905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9979832 + inSlope: 0.022351744 + outSlope: 0.020563604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9983568 + inSlope: -0.009834767 + outSlope: -0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9967351 + inSlope: -0.038445 + outSlope: -0.03755093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.99341094 + inSlope: -0.06079674 + outSlope: -0.057220463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.98891103 + inSlope: -0.07331372 + outSlope: -0.07152558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.9839435 + inSlope: -0.07241965 + outSlope: -0.07331372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9793266 + inSlope: -0.06169081 + outSlope: -0.062584825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.975897 + inSlope: -0.038444962 + outSlope: -0.037550963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.97440004 + inSlope: -0.00089407054 + outSlope: -0.0017881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9758116 + inSlope: 0.044703446 + outSlope: 0.042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.98009574 + inSlope: 0.077784136 + outSlope: 0.076889925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.98592585 + inSlope: 0.09119503 + outSlope: 0.092089266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.9919286 + inSlope: 0.08314856 + outSlope: 0.08314841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.99669325 + inSlope: 0.05632634 + outSlope: 0.057220515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.99923927 + inSlope: 0.018775482 + outSlope: 0.016093241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.9989525 + inSlope: -0.026822068 + outSlope: -0.025033975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.9957776 + inSlope: -0.06884343 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + m_EulerEditorCurves: + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22670202 + inSlope: -14.692888 + outSlope: -14.692888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5601461 + inSlope: -4.1319456 + outSlope: -4.1319456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.39680696 + inSlope: 11.604119 + outSlope: 11.604119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.31930828 + inSlope: 7.839676 + outSlope: 7.839676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6164292 + inSlope: -1.604927 + outSlope: -1.604927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.36459067 + inSlope: -3.894462 + outSlope: -3.894462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.28745952 + inSlope: -0.14836842 + outSlope: -0.14836842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.27602085 + inSlope: -11.122537 + outSlope: -11.122537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.27602085 + inSlope: 1.256798 + outSlope: 1.256798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000037392915 + inSlope: 3.2508702 + outSlope: 3.2508702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000037392915 + inSlope: -0.00016994329 + outSlope: -0.00016994329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.000007642864 + inSlope: 0.00034612848 + outSlope: 0.00034612848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.000007642864 + inSlope: 0.00034612848 + outSlope: 0.00034612848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0000075397606 + inSlope: -0.00034266696 + outSlope: -0.00034266696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000075397606 + inSlope: -0.00034266696 + outSlope: -0.00034266696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000009030373 + inSlope: 0.00028306898 + outSlope: 0.00028306898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000009030373 + inSlope: 0.00028306898 + outSlope: 0.00028306898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000074225777 + inSlope: -0.00033734125 + outSlope: -0.00033734125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000007725719 + inSlope: 0.00034236288 + outSlope: 0.00034236288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000007725719 + inSlope: -11.414359 + outSlope: -11.414359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.4990894 + inSlope: -11.266075 + outSlope: -11.266075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -1.4990894 + inSlope: 0.00022213072 + outSlope: 0.00022213072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -1.4990903 + inSlope: 0.0002654733 + outSlope: 0.0002654733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.4990903 + inSlope: 11.293608 + outSlope: 11.293608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000008170333 + inSlope: 22.895605 + outSlope: 22.895605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -78.96894 + inSlope: -172.58461 + outSlope: -172.58461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -90.3789 + inSlope: -169.17476 + outSlope: -169.17476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -101.32627 + inSlope: -54.221222 + outSlope: -54.221222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -97.56739 + inSlope: 91.11512 + outSlope: 91.11512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -89.31068 + inSlope: 117.59084 + outSlope: 117.59084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -82.03376 + inSlope: 46.87795 + outSlope: 46.87795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -83.104126 + inSlope: -105.54161 + outSlope: -105.54161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -95.96779 + inSlope: -96.54161 + outSlope: -96.54161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -95.96779 + inSlope: 41.64494 + outSlope: 41.64494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -90.473335 + inSlope: 41.516644 + outSlope: 41.516644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -90.473335 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -90.47333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -90.47332 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -90.47332 + inSlope: -4.0180306 + outSlope: -4.0180306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -91.02571 + inSlope: -4.4160886 + outSlope: -4.4160886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -91.02571 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -91.02571 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -91.02571 + inSlope: 4.3495145 + outSlope: 4.3495145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -90.47332 + inSlope: 7.8363385 + outSlope: 7.8363385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.2956166 + inSlope: 41.112713 + outSlope: 41.112713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -4.526353 + inSlope: 56.831528 + outSlope: 56.831528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13214605 + inSlope: 63.2737 + outSlope: 63.2737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 3.9137063 + inSlope: 58.379574 + outSlope: 58.379574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 7.8304086 + inSlope: 50.89899 + outSlope: 50.89899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 10.6186 + inSlope: 14.3768635 + outSlope: 14.3768635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 9.7563095 + inSlope: -59.77219 + outSlope: -59.77219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 2.7514098 + inSlope: -51.93786 + outSlope: -51.93786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 2.7514098 + inSlope: -20.910118 + outSlope: -20.910118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00008223983 + inSlope: -20.68335 + outSlope: -20.68335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00008223983 + inSlope: -0.00027022845 + outSlope: -0.00027022845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00008048923 + inSlope: -0.0001906674 + outSlope: -0.0001906674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00008048923 + inSlope: -0.0001906674 + outSlope: -0.0001906674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00008079883 + inSlope: -0.00020473807 + outSlope: -0.00020473807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00008079883 + inSlope: -0.00020473807 + outSlope: -0.00020473807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00007905076 + inSlope: -0.00012529177 + outSlope: -0.00012529177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00007905076 + inSlope: -0.00012529177 + outSlope: -0.00012529177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00007874213 + inSlope: -0.00011126509 + outSlope: -0.00011126509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00008082468 + inSlope: -0.00020591264 + outSlope: -0.00020591264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.00008082468 + inSlope: 15.10659 + outSlope: 15.10659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 2.000768 + inSlope: 15.221686 + outSlope: 15.221686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 2.000768 + inSlope: -0.00022754855 + outSlope: -0.00022754855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 2.0007687 + inSlope: -0.00026005547 + outSlope: -0.00026005547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 2.0007687 + inSlope: -15.202757 + outSlope: -15.202757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000080752005 + inSlope: -30.158316 + outSlope: -30.158316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000000663001 + inSlope: 0.0000003013206 + outSlope: 0.0000003013206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000000015181175 + inSlope: 0.000000068995384 + outSlope: 0.000000068995384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000012089568 + inSlope: -0.0000054944658 + outSlope: -0.0000054944658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.00000026680425 + inSlope: -0.000012125716 + outSlope: -0.000012125716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000041854918 + inSlope: -0.000019022218 + outSlope: -0.000019022218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000055528636 + inSlope: -0.00002523665 + outSlope: -0.00002523665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000006670106 + inSlope: -0.000030314292 + outSlope: -0.000030314292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00000073037666 + inSlope: -0.000033194152 + outSlope: -0.000033194152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000073371166 + inSlope: -0.00003334572 + outSlope: -0.00003334572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000068201837 + inSlope: -0.000030996365 + outSlope: -0.000030996365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000059697453 + inSlope: -0.000027131291 + outSlope: -0.000027131291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000049192033 + inSlope: -0.00002235679 + outSlope: -0.00002235679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.00000036185327 + inSlope: -0.000016445503 + outSlope: -0.000016445503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00000022594985 + inSlope: -0.0000102689655 + outSlope: -0.0000102689655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.000000076497784 + inSlope: -0.0000034766704 + outSlope: -0.0000034766704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000073579606 + inSlope: 0.0000033440454 + outSlope: 0.0000033440454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000002226148 + inSlope: 0.000010117395 + outSlope: 0.000010117395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000004885853 + inSlope: 0.000022205217 + outSlope: 0.000022205217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000595307 + inSlope: 0.000027055505 + outSlope: 0.000027055505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.0000006803508 + inSlope: 0.00003092058 + outSlope: 0.00003092058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000073371166 + inSlope: 0.00003334572 + outSlope: 0.00003334572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000072537404 + inSlope: 0.00003296679 + outSlope: 0.00003296679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0000006336601 + inSlope: 0.000028798577 + outSlope: 0.000028798577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.00000049025283 + inSlope: 0.000022281005 + outSlope: 0.000022281005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000032183263 + inSlope: 0.000014626646 + outSlope: 0.000014626646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5405038 + inSlope: 0.0003169426 + outSlope: 0.0003169426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.5405038 + inSlope: 0.0003169426 + outSlope: 0.0003169426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.5405038 + inSlope: 0.0003169426 + outSlope: 0.0003169426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.54050386 + inSlope: 0.00031965153 + outSlope: 0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.5405039 + inSlope: 0.00032236043 + outSlope: 0.00032236043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000015131192 + inSlope: 0.0000068768227 + outSlope: 0.0000068768227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000006136894 + inSlope: -6.9355087 + outSlope: -6.9355087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.9155977 + inSlope: -15.182656 + outSlope: -15.182656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -2.0043728 + inSlope: -16.822067 + outSlope: -16.822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.136443 + inSlope: -16.493813 + outSlope: -16.493813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -4.1819243 + inSlope: -14.198617 + outSlope: -14.198617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -5.0109324 + inSlope: -9.935182 + outSlope: -9.935182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -5.493586 + inSlope: -3.7048154 + outSlope: -3.7048154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -5.4999995 + inSlope: 2.9736261 + outSlope: 2.9736261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -5.1009817 + inSlope: 7.721177 + outSlope: 7.721177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.480623 + inSlope: 10.771216 + outSlope: 10.771216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -3.678964 + inSlope: 13.213993 + outSlope: 13.213993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -2.7360473 + inSlope: 15.051036 + outSlope: 15.051036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.6919124 + inSlope: 16.28098 + outSlope: 16.28098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.5866026 + inSlope: 16.904015 + outSlope: 16.904015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.53984153 + inSlope: 16.921598 + outSlope: 16.921598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.6473778 + inSlope: 16.331793 + outSlope: 16.331793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 3.6427915 + inSlope: 13.332189 + outSlope: 13.332189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 4.456128 + inSlope: 10.931476 + outSlope: 10.931476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 5.0859675 + inSlope: 7.907095 + outSlope: 7.907095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 5.499999 + inSlope: 2.5472 + outSlope: 2.5472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 5.422221 + inSlope: -5.7653866 + outSlope: -5.7653866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 4.738791 + inSlope: -13.360199 + outSlope: -13.360199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 3.658411 + inSlope: -17.947035 + outSlope: -17.947035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 2.3693953 + inSlope: -19.526829 + outSlope: -19.526829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.023872824 + inSlope: -0.00032633916 + outSlope: -0.00032633916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.023872824 + inSlope: 0.011462842 + outSlope: 0.011462842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.022356575 + inSlope: 0.047961526 + outSlope: 0.047961526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.01756932 + inSlope: 0.10223507 + outSlope: 0.10223507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.008902257 + inSlope: 0.15424295 + outSlope: 0.15424295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.002790559 + inSlope: 0.18177387 + outSlope: 0.18177387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0150927575 + inSlope: 0.18715745 + outSlope: 0.18715745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.027520936 + inSlope: 0.18612202 + outSlope: 0.18612202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0396204 + inSlope: 0.1778346 + outSlope: 0.1778346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05094841 + inSlope: 0.16230577 + outSlope: 0.16230577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.061081283 + inSlope: 0.14076078 + outSlope: 0.14076078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06961762 + inSlope: 0.11341161 + outSlope: 0.11341161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.07617595 + inSlope: 0.080952086 + outSlope: 0.080952086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.08038602 + inSlope: 0.042872246 + outSlope: 0.042872246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.081875004 + inSlope: 0.00016625943 + outSlope: 0.00016625943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.08038602 + inSlope: -0.043119434 + outSlope: -0.043119434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.07617595 + inSlope: -0.08201601 + outSlope: -0.08201601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.061110638 + inSlope: -0.14143327 + outSlope: -0.14143327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.050948393 + inSlope: -0.1629361 + outSlope: -0.1629361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.039657235 + inSlope: -0.17751496 + outSlope: -0.17751496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.027520932 + inSlope: -0.18558379 + outSlope: -0.18558379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.015131635 + inSlope: -0.18700889 + outSlope: -0.18700889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0027905523 + inSlope: -0.18161002 + outSlope: -0.18161002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.008868373 + inSlope: -0.15381575 + outSlope: -0.15381575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.017569307 + inSlope: -0.13146871 + outSlope: -0.13146871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.3794726 + inSlope: -0.00008126734 + outSlope: -0.00008126734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.3794726 + inSlope: 0.0013056952 + outSlope: 0.0013056952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 1.3796073 + inSlope: 0.0041988124 + outSlope: 0.0041988124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 1.3799742 + inSlope: 0.0062467493 + outSlope: 0.0062467493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 1.3804135 + inSlope: 0.0043125865 + outSlope: 0.0043125865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.3805506 + inSlope: -0.0033048717 + outSlope: -0.0033048717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.3801291 + inSlope: -0.012580183 + outSlope: -0.012580183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.3791124 + inSlope: -0.020463115 + outSlope: -0.020463115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.3775446 + inSlope: -0.028270198 + outSlope: -0.028270198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 1.3755507 + inSlope: -0.033352114 + outSlope: -0.033352114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.3733268 + inSlope: -0.03491245 + outSlope: -0.03491245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.3711215 + inSlope: -0.03177553 + outSlope: -0.03177553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.3692164 + inSlope: -0.024943655 + outSlope: -0.024943655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.3678945 + inSlope: -0.014102592 + outSlope: -0.014102592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.3674082 + inSlope: -0.00031965153 + outSlope: -0.00031965153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.3678945 + inSlope: 0.013636659 + outSlope: 0.013636659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.3692164 + inSlope: 0.024293516 + outSlope: 0.024293516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.3733199 + inSlope: 0.03336295 + outSlope: 0.03336295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 1.3755507 + inSlope: 0.031141644 + outSlope: 0.031141644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 1.3775387 + inSlope: 0.025398752 + outSlope: 0.025398752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 1.3791122 + inSlope: 0.018377254 + outSlope: 0.018377254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.380127 + inSlope: 0.009708738 + outSlope: 0.009708738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 1.3805505 + inSlope: 0.0008614338 + outSlope: 0.0008614338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 1.380415 + inSlope: -0.006154646 + outSlope: -0.006154646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 1.3799741 + inSlope: -0.009697902 + outSlope: -0.009697902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.482799 + inSlope: 0.0002167129 + outSlope: 0.0002167129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 10.482799 + inSlope: -2.5275226 + outSlope: -2.5275226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 10.149056 + inSlope: -10.501777 + outSlope: -10.501777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 9.096371 + inSlope: -22.386095 + outSlope: -22.386095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 7.1936088 + inSlope: -33.832417 + outSlope: -33.832417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 4.62959 + inSlope: -39.861866 + outSlope: -39.861866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.930528 + inSlope: -41.150543 + outSlope: -41.150543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.8036913 + inSlope: -40.97038 + outSlope: -40.97038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -3.4788964 + inSlope: -39.362724 + outSlope: -39.362724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -6.0009093 + inSlope: -36.329685 + outSlope: -36.329685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -8.275556 + inSlope: -31.869755 + outSlope: -31.869755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -10.20866 + inSlope: -25.98353 + outSlope: -25.98353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -11.70605 + inSlope: -18.67012 + outSlope: -18.67012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -12.673544 + inSlope: -9.929698 + outSlope: -9.929698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -13.01697 + inSlope: 0.00008668516 + outSlope: 0.00008668516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -12.673544 + inSlope: 9.930219 + outSlope: 9.930219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -11.70605 + inSlope: 18.67038 + outSlope: 18.67038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -8.282177 + inSlope: 31.870146 + outSlope: 31.870146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -6.0009084 + inSlope: 36.31798 + outSlope: 36.31798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.4870648 + inSlope: 39.36358 + outSlope: 39.36358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.80368954 + inSlope: 40.96713 + outSlope: 40.96713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.9219904 + inSlope: 41.150787 + outSlope: 41.150787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 4.629591 + inSlope: 39.869713 + outSlope: 39.869713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 7.1861696 + inSlope: 33.83092 + outSlope: 33.83092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 9.096371 + inSlope: 28.93568 + outSlope: 28.93568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone09 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000014307378 + inSlope: 0.000065024156 + outSlope: 0.000065024156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000045856982 + inSlope: 0.000020841075 + outSlope: 0.000020841075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000007270416 + inSlope: 0.00003304258 + outSlope: 0.00003304258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0000010738871 + inSlope: 0.000048806007 + outSlope: 0.000048806007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0000014140626 + inSlope: 0.00006426631 + outSlope: 0.00006426631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000017742483 + inSlope: 0.00008063602 + outSlope: 0.00008063602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0000019876916 + inSlope: 0.00009033659 + outSlope: 0.00009033659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0000021477742 + inSlope: 0.00009761201 + outSlope: 0.00009761201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000020277123 + inSlope: 0.00009215545 + outSlope: 0.00009215545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000188097 + inSlope: 0.0000854863 + outSlope: 0.0000854863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000016408461 + inSlope: 0.00007457315 + outSlope: 0.00007457315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000001320681 + inSlope: 0.0000600223 + outSlope: 0.0000600223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0000009638303 + inSlope: 0.00004380415 + outSlope: 0.00004380415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00000051693326 + inSlope: 0.000023493576 + outSlope: 0.000023493576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0000001317346 + inSlope: 0.000005987072 + outSlope: 0.000005987072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000003201651 + inSlope: -0.00001455086 + outSlope: -0.00001455086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000007270416 + inSlope: -0.00003304258 + outSlope: -0.00003304258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000014274027 + inSlope: -0.00006487258 + outSlope: -0.00006487258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000017208874 + inSlope: -0.00007821087 + outSlope: -0.00007821087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0000019343308 + inSlope: -0.00008791145 + outSlope: -0.00008791145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000020277123 + inSlope: -0.00009215545 + outSlope: -0.00009215545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0000018542895 + inSlope: -0.00008427373 + outSlope: -0.00008427373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000014540832 + inSlope: -0.00006608516 + outSlope: -0.00006608516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00000084043336 + inSlope: -0.000038196005 + outSlope: -0.000038196005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.000000040020637 + inSlope: -0.0000018188575 + outSlope: -0.0000018188575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.6396201 + inSlope: 0.0000975208 + outSlope: 0.0000975208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -1.6396217 + inSlope: 0.00017337032 + outSlope: 0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.6396217 + inSlope: 0.00017337032 + outSlope: 0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.6396217 + inSlope: 0.00017337032 + outSlope: 0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.6396219 + inSlope: 0.00017878815 + outSlope: 0.00017878815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.6396221 + inSlope: 0.00018962378 + outSlope: 0.00018962378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -1.639622 + inSlope: 0.00018420596 + outSlope: 0.00018420596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -1.6396214 + inSlope: 0.00015711685 + outSlope: 0.00015711685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.639621 + inSlope: 0.00014086338 + outSlope: 0.00014086338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.6396207 + inSlope: 0.00012460991 + outSlope: 0.00012460991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99996805 + inSlope: 0.00006501387 + outSlope: 0.00006501387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99996716 + inSlope: 13.176944 + outSlope: 13.176944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 2.7396173 + inSlope: 29.206266 + outSlope: 29.206266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 4.8559427 + inSlope: 32.7718 + outSlope: 32.7718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 7.0664396 + inSlope: 32.05812 + outSlope: 32.05812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 9.088594 + inSlope: 27.065794 + outSlope: 27.065794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 10.639908 + inSlope: 17.794037 + outSlope: 17.794037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 11.437866 + inSlope: 4.242025 + outSlope: 4.242025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 11.199966 + inSlope: -10.468793 + outSlope: -10.468793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 10.055745 + inSlope: -21.289398 + outSlope: -21.289398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 8.389302 + inSlope: -28.447512 + outSlope: -28.447512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 6.2999682 + inSlope: -34.10036 + outSlope: -34.10036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 3.88707 + inSlope: -38.24897 + outSlope: -38.24897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.2499382 + inSlope: -40.89248 + outSlope: -40.89248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.5120988 + inSlope: -42.031963 + outSlope: -42.031963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -4.299711 + inSlope: -41.666523 + outSlope: -41.666523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -7.0135694 + inSlope: -39.79731 + outSlope: -39.79731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -11.816145 + inSlope: -31.545856 + outSlope: -31.545856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.71933 + inSlope: -25.18516 + outSlope: -25.18516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -15.14126 + inSlope: -17.275572 + outSlope: -17.275572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.000029 + inSlope: -2.8052185 + outSlope: -2.8052185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -15.511557 + inSlope: 20.23119 + outSlope: 20.23119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -13.329078 + inSlope: 41.44829 + outSlope: 41.44829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -10.03915 + inSlope: 54.25919 + outSlope: 54.25919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -6.164555 + inSlope: 58.67287 + outSlope: 58.67287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone09/Bone10 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015744913 + inSlope: -0.00009706253 + outSlope: -0.00009706253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.015744913 + inSlope: 0.06376103 + outSlope: 0.06376103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.007179217 + inSlope: 0.13835725 + outSlope: 0.13835725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0026237713 + inSlope: 0.15246822 + outSlope: 0.15246822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.013116894 + inSlope: 0.15887016 + outSlope: 0.15887016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.023743281 + inSlope: 0.15584144 + outSlope: 0.15584144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.033951078 + inSlope: 0.14555675 + outSlope: 0.14555675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.043208595 + inSlope: 0.12790947 + outSlope: 0.12790947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05101452 + inSlope: 0.1021128 + outSlope: 0.1021128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05689836 + inSlope: 0.07011259 + outSlope: 0.07011259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06040937 + inSlope: 0.031593602 + outSlope: 0.031593602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06109328 + inSlope: -0.010168599 + outSlope: -0.010168599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.05907333 + inSlope: -0.046300337 + outSlope: -0.046300337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.05498382 + inSlope: -0.0751326 + outSlope: -0.0751326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.04910979 + inSlope: -0.09987902 + outSlope: -0.09987902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.04173913 + inSlope: -0.119761325 + outSlope: -0.119761325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.033174142 + inSlope: -0.13533837 + outSlope: -0.13533837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.023736931 + inSlope: -0.14531049 + outSlope: -0.14531049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.013801382 + inSlope: -0.15139681 + outSlope: -0.15139681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0036304179 + inSlope: -0.15100932 + outSlope: -0.15100932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.006285688 + inSlope: -0.14492433 + outSlope: -0.14492433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.015706576 + inSlope: -0.13365829 + outSlope: -0.13365829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0241633 + inSlope: -0.11771405 + outSlope: -0.11771405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.03142286 + inSlope: -0.096591465 + outSlope: -0.096591465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.03707459 + inSlope: -0.029031252 + outSlope: -0.029031252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.035294864 + inSlope: 0.026837036 + outSlope: 0.026837036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40112814 + inSlope: -0.00022932909 + outSlope: -0.00022932909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.40112814 + inSlope: -0.005035852 + outSlope: -0.005035852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.40061048 + inSlope: -0.004400168 + outSlope: -0.004400168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.40049303 + inSlope: 0.0036317015 + outSlope: 0.0036317015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.40092802 + inSlope: 0.012209428 + outSlope: 0.012209428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.40196368 + inSlope: 0.021223 + outSlope: 0.021223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.4035316 + inSlope: 0.027570453 + outSlope: 0.027570453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.40545115 + inSlope: 0.031141818 + outSlope: 0.031141818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.4074487 + inSlope: 0.029828874 + outSlope: 0.029828874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4091908 + inSlope: 0.022845656 + outSlope: 0.022845656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.41032988 + inSlope: 0.010039518 + outSlope: 0.010039518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.41056052 + inSlope: -0.0037725305 + outSlope: -0.0037725305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.40988758 + inSlope: -0.015375778 + outSlope: -0.015375778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.4086013 + inSlope: -0.02203839 + outSlope: -0.02203839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.40692863 + inSlope: -0.026418444 + outSlope: -0.026418444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.40511426 + inSlope: -0.025796078 + outSlope: -0.025796078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.40339223 + inSlope: -0.022462182 + outSlope: -0.022462182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.4019628 + inSlope: -0.017188953 + outSlope: -0.017188953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.40097654 + inSlope: -0.009886632 + outSlope: -0.009886632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.4005094 + inSlope: -0.0012244296 + outSlope: -0.0012244296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.40057862 + inSlope: 0.005959874 + outSlope: 0.005959874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.40112466 + inSlope: 0.012287212 + outSlope: 0.012287212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.4020166 + inSlope: 0.016094552 + outSlope: 0.016094552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.40308976 + inSlope: 0.016554609 + outSlope: 0.016554609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.40412515 + inSlope: 0.0056675132 + outSlope: 0.0056675132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.40378007 + inSlope: -0.004896377 + outSlope: -0.004896377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.503965 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.503966 + inSlope: 19.401144 + outSlope: 19.401144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.9170465 + inSlope: 41.56308 + outSlope: 41.56308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -3.9615624 + inSlope: 45.905533 + outSlope: 45.905533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.79547065 + inSlope: 47.879128 + outSlope: 47.879128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.4232726 + inSlope: 47.48392 + outSlope: 47.48392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.5367126 + inSlope: 44.720577 + outSlope: 44.720577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 8.386895 + inSlope: 39.588886 + outSlope: 39.588886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 10.81586 + inSlope: 32.087532 + outSlope: 32.087532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 12.665655 + inSlope: 22.216785 + outSlope: 22.216785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 13.778324 + inSlope: 9.976797 + outSlope: 9.976797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 13.995911 + inSlope: -3.1812317 + outSlope: -3.1812317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 13.354167 + inSlope: -14.504499 + outSlope: -14.504499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 12.061937 + inSlope: -23.499178 + outSlope: -23.499178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 10.220901 + inSlope: -30.967012 + outSlope: -30.967012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 7.9327416 + inSlope: -36.909954 + outSlope: -36.909954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 5.2991376 + inSlope: -41.328053 + outSlope: -41.328053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 2.4217737 + inSlope: -44.14885 + outSlope: -44.14885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.5881214 + inSlope: -45.588413 + outSlope: -45.588413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.657518 + inSlope: -45.434624 + outSlope: -45.434624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.6469145 + inSlope: -43.750217 + outSlope: -43.750217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -9.491691 + inSlope: -40.556454 + outSlope: -40.556454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -12.055137 + inSlope: -35.812977 + outSlope: -35.812977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.267293 + inSlope: -29.579128 + outSlope: -29.579128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -15.999338 + inSlope: -8.892325 + outSlope: -8.892325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -15.453005 + inSlope: 8.195208 + outSlope: 8.195208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone09/Bone10/Bone17 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000046690744 + inSlope: 0.0000021010856 + outSlope: 0.0000021010856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000050025797 + inSlope: 0.000002251163 + outSlope: 0.000002251163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000026680425 + inSlope: 0.0000012006203 + outSlope: 0.0000012006203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00000006670106 + inSlope: 0.0000030015399 + outSlope: 0.0000030015399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000026680425 + inSlope: 0.0000012006203 + outSlope: 0.0000012006203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000005336085 + inSlope: 0.000002401232 + outSlope: 0.000002401232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.000000080041275 + inSlope: 0.0000036018607 + outSlope: 0.0000036018607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.000000080041275 + inSlope: 0.0000036018607 + outSlope: 0.0000036018607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000090046434 + inSlope: 0.000004052079 + outSlope: 0.000004052079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000090046434 + inSlope: 0.0000040520936 + outSlope: 0.0000040520936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.00000016008255 + inSlope: 0.0000072037215 + outSlope: 0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000013340212 + inSlope: 0.000006003101 + outSlope: 0.000006003101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000016008255 + inSlope: 0.0000072037215 + outSlope: 0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000080041275 + inSlope: 0.000003601848 + outSlope: 0.000003601848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.0000001067217 + inSlope: 0.0000048024813 + outSlope: 0.0000048024813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.00000016008255 + inSlope: 0.0000072037215 + outSlope: 0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -3.6180325 + inSlope: 0.0002574914 + outSlope: 0.0002574914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -3.6180322 + inSlope: 0.0002467626 + outSlope: 0.0002467626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.6180317 + inSlope: 0.00022530496 + outSlope: 0.00022530496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.6180317 + inSlope: 0.00022530578 + outSlope: 0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.6180308 + inSlope: 0.00018239039 + outSlope: 0.00018239039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.6180322 + inSlope: 0.0002467626 + outSlope: 0.0002467626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -3.6180313 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -3.6180322 + inSlope: 0.00024676346 + outSlope: 0.00024676346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.5000001 + inSlope: 0.000005364423 + outSlope: 0.000005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.5000001 + inSlope: -19.259733 + outSlope: -19.259733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.068075 + inSlope: -42.054073 + outSlope: -42.054073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.107871 + inSlope: -46.47449 + outSlope: -46.47449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.265596 + inSlope: -45.589787 + outSlope: -45.589787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -13.187462 + inSlope: -39.4001 + outSlope: -39.4001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -15.519678 + inSlope: -27.905558 + outSlope: -27.905558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -16.90845 + inSlope: -11.102296 + outSlope: -11.102296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -16.999998 + inSlope: 6.8553896 + outSlope: 6.8553896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -15.994381 + inSlope: 19.515615 + outSlope: 19.515615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -14.397848 + inSlope: 27.58764 + outSlope: 27.58764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -12.315869 + inSlope: 34.076748 + outSlope: 34.076748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -9.853914 + inSlope: 38.98442 + outSlope: 38.98442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -7.1174536 + inSlope: 42.310062 + outSlope: 42.310062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -4.2119575 + inSlope: 44.05305 + outSlope: 44.05305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.2428943 + inSlope: 44.215958 + outSlope: 44.215958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.6842623 + inSlope: 42.796722 + outSlope: 42.796722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 4.4640427 + inSlope: 39.740677 + outSlope: 39.740677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 6.983584 + inSlope: 35.21317 + outSlope: 35.21317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 9.1595955 + inSlope: 29.070368 + outSlope: 29.070368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.85993 + inSlope: 21.302254 + outSlope: 21.302254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 12.000002 + inSlope: 7.665632 + outSlope: 7.665632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 11.882054 + inSlope: -13.311489 + outSlope: -13.311489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 10.225146 + inSlope: -32.422874 + outSlope: -32.422874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 7.558766 + inSlope: -43.96409 + outSlope: -43.96409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 4.3625736 + inSlope: -47.929016 + outSlope: -47.929016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone11 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.630448 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 12.630447 + inSlope: -2.6030755 + outSlope: -2.6030755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 12.282984 + inSlope: -10.849439 + outSlope: -10.849439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 11.181244 + inSlope: -23.321854 + outSlope: -23.321854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 9.170399 + inSlope: -35.6529 + outSlope: -35.6529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.430548 + inSlope: -42.41716 + outSlope: -42.41716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.5236228 + inSlope: -43.977036 + outSlope: -43.977036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.571734 + inSlope: -43.722305 + outSlope: -43.722305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.307041 + inSlope: -41.717712 + outSlope: -41.717712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -4.997966 + inSlope: -38.06019 + outSlope: -38.06019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -7.394275 + inSlope: -32.897755 + outSlope: -32.897755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -9.399968 + inSlope: -26.399271 + outSlope: -26.399271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -10.929749 + inSlope: -18.70012 + outSlope: -18.70012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -11.905506 + inSlope: -9.848394 + outSlope: -9.848394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -12.249275 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -11.905506 + inSlope: 9.874108 + outSlope: 9.874108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -10.929749 + inSlope: 18.783205 + outSlope: 18.783205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.399967 + inSlope: 26.488234 + outSlope: 26.488234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -7.401197 + inSlope: 33.068085 + outSlope: 33.068085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -4.9979644 + inSlope: 38.21295 + outSlope: 38.21295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -2.3158002 + inSlope: 41.838917 + outSlope: 41.838917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.57173645 + inSlope: 43.76798 + outSlope: 43.76798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 3.5144072 + inSlope: 43.941635 + outSlope: 43.941635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 6.4305496 + inSlope: 42.31217 + outSlope: 42.31217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 9.162496 + inSlope: 35.513126 + outSlope: 35.513126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 11.181246 + inSlope: 30.022831 + outSlope: 30.022831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.2700963 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.270095 + inSlope: -0.74634147 + outSlope: -0.74634147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 7.172089 + inSlope: -2.9594665 + outSlope: -2.9594665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.886192 + inSlope: -5.477679 + outSlope: -5.477679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 6.4580197 + inSlope: -6.154946 + outSlope: -6.154946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.058658 + inSlope: -4.067842 + outSlope: -4.067842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.854945 + inSlope: -0.85809314 + outSlope: -0.85809314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 5.8723826 + inSlope: 2.4674845 + outSlope: 2.4674845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 6.1062517 + inSlope: 5.4737287 + outSlope: 5.4737287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 6.5234113 + inSlope: 7.749954 + outSlope: 7.749954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 7.0645714 + inSlope: 8.936872 + outSlope: 8.936872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.648757 + inSlope: 8.767141 + outSlope: 8.767141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.180668 + inSlope: 7.116229 + outSlope: 7.116229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 8.561583 + inSlope: 4.0540447 + outSlope: 4.0540447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 8.703871 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 8.561583 + inSlope: -3.9865675 + outSlope: -3.9865675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 8.180668 + inSlope: -6.878993 + outSlope: -6.878993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 7.648758 + inSlope: -8.297432 + outSlope: -8.297432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 7.0663776 + inSlope: -8.267305 + outSlope: -8.267305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 6.523411 + inSlope: -6.8796797 + outSlope: -6.8796797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 6.1072946 + inSlope: -4.4718904 + outSlope: -4.4718904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 5.872382 + inSlope: -1.3735927 + outSlope: -1.3735927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 5.8546505 + inSlope: 1.9580504 + outSlope: 1.9580504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 6.058659 + inSlope: 5.1235604 + outSlope: 5.1235604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 6.4565682 + inSlope: 6.920943 + outSlope: 6.920943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.8861933 + inSlope: 7.5898004 + outSlope: 7.5898004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 21.032192 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 21.032187 + inSlope: -4.146227 + outSlope: -4.146227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 20.479988 + inSlope: -17.169245 + outSlope: -17.169245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 18.746735 + inSlope: -36.3056 + outSlope: -36.3056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.643036 + inSlope: -54.23475 + outSlope: -54.23475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.508097 + inSlope: -63.210327 + outSlope: -63.210327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 7.1946826 + inSlope: -64.86178 + outSlope: -64.86178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 2.8435857 + inSlope: -64.52773 + outSlope: -64.52773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -1.4177064 + inSlope: -62.26521 + outSlope: -62.26521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -5.4581275 + inSlope: -57.956955 + outSlope: -57.956955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -9.136572 + inSlope: -51.40894 + outSlope: -51.40894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -12.298237 + inSlope: -42.407784 + outSlope: -42.407784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -14.77495 + inSlope: -30.787067 + outSlope: -30.787067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -16.389898 + inSlope: -16.48749 + outSlope: -16.48749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -16.966137 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -16.389898 + inSlope: 16.459793 + outSlope: 16.459793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -14.77495 + inSlope: 30.694542 + outSlope: 30.694542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -12.298236 + inSlope: 42.16913 + outSlope: 42.16913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -9.147342 + inSlope: 51.21844 + outSlope: 51.21844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -5.4581265 + inSlope: 57.75778 + outSlope: 57.75778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.4307436 + inSlope: 62.1478 + outSlope: 62.1478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 2.8435912 + inSlope: 64.50245 + outSlope: 64.50245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.181078 + inSlope: 64.952286 + outSlope: 64.952286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 11.508103 + inSlope: 63.41448 + outSlope: 63.41448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 15.630971 + inSlope: 54.43778 + outSlope: 54.43778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 18.746738 + inSlope: 47.091396 + outSlope: 47.091396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone11/Bone12 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000003877802 + inSlope: -0.00017450127 + outSlope: -0.00017450127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000027512317 + inSlope: 26.893198 + outSlope: 26.893198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.5440333 + inSlope: 56.87918 + outSlope: 56.87918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 7.6020274 + inSlope: 60.04873 + outSlope: 60.04873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 11.605304 + inSlope: 55.26184 + outSlope: 55.26184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 15.063581 + inSlope: 44.13633 + outSlope: 44.13633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 17.606316 + inSlope: 28.585423 + outSlope: 28.585423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 18.978983 + inSlope: 9.793892 + outSlope: 9.793892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 18.960844 + inSlope: -8.887176 + outSlope: -8.887176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 17.782438 + inSlope: -22.861717 + outSlope: -22.861717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.905671 + inSlope: -33.01262 + outSlope: -33.01262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 13.386767 + inSlope: -42.262512 + outSlope: -42.262512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 10.292654 + inSlope: -50.31082 + outSlope: -50.31082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.714186 + inSlope: -56.743 + outSlope: -56.743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 2.7706447 + inSlope: -61.14376 + outSlope: -61.14376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.3923022 + inSlope: -63.16716 + outSlope: -63.16716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -5.608282 + inSlope: -62.566254 + outSlope: -62.566254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.697189 + inSlope: -59.116116 + outSlope: -59.116116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.460791 + inSlope: -53.009514 + outSlope: -53.009514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -16.744076 + inSlope: -44.062256 + outSlope: -44.062256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -19.321869 + inSlope: -32.327988 + outSlope: -32.327988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -21.0472 + inSlope: -11.155768 + outSlope: -11.155768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -20.80654 + inSlope: 21.755877 + outSlope: 21.755877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -18.15244 + inSlope: 51.49314 + outSlope: 51.49314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -13.944873 + inSlope: 68.846016 + outSlope: 68.846016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -8.965473 + inSlope: 73.98218 + outSlope: 73.98218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.8084545 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 2.8084538 + inSlope: 9.299367 + outSlope: 9.299367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.163907 + inSlope: 25.419083 + outSlope: 25.419083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.1446137 + inSlope: 34.309246 + outSlope: 34.309246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 8.62374 + inSlope: 39.88766 + outSlope: 39.88766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.303883 + inSlope: 39.405766 + outSlope: 39.405766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 13.709719 + inSlope: 30.531635 + outSlope: 30.531635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 15.243725 + inSlope: 12.408554 + outSlope: 12.408554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 15.310241 + inSlope: -8.685345 + outSlope: -8.685345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 14.101981 + inSlope: -22.80923 + outSlope: -22.80923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 12.277552 + inSlope: -30.307617 + outSlope: -30.307617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 10.051935 + inSlope: -34.59229 + outSlope: -34.59229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 7.63224 + inSlope: -35.96616 + outSlope: -35.96616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.1995034 + inSlope: -34.92877 + outSlope: -34.92877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 2.8985286 + inSlope: -32.063606 + outSlope: -32.063606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.83515996 + inSlope: -27.938189 + outSlope: -27.938189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.9213454 + inSlope: -23.058752 + outSlope: -23.058752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -2.3338091 + inSlope: -17.840773 + outSlope: -17.840773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.3898842 + inSlope: -12.741095 + outSlope: -12.741095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -4.1121454 + inSlope: -8.000415 + outSlope: -8.000415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -4.525356 + inSlope: -3.8886704 + outSlope: -3.8886704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -4.681186 + inSlope: 1.2663257 + outSlope: 1.2663257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -4.390664 + inSlope: 8.355467 + outSlope: 8.355467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -3.553539 + inSlope: 15.658783 + outSlope: 15.658783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -2.2827377 + inSlope: 21.802046 + outSlope: 21.802046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.65721697 + inSlope: 26.057102 + outSlope: 26.057102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000006983028 + inSlope: -0.00031423656 + outSlope: -0.00031423656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000011448486 + inSlope: 32.966576 + outSlope: 32.966576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.433602 + inSlope: 72.937935 + outSlope: 72.937935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 9.721598 + inSlope: 82.59663 + outSlope: 82.59663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.407331 + inSlope: 84.791275 + outSlope: 84.791275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 20.946276 + inSlope: 77.70972 + outSlope: 77.70972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 25.664175 + inSlope: 59.41798 + outSlope: 59.41798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 28.778515 + inSlope: 28.998611 + outSlope: 28.998611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 29.49365 + inSlope: -4.268107 + outSlope: -4.268107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 28.224543 + inSlope: -26.075037 + outSlope: -26.075037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 26.022821 + inSlope: -38.147057 + outSlope: -38.147057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 23.127674 + inSlope: -46.687305 + outSlope: -46.687305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 19.766382 + inSlope: -52.046837 + outSlope: -52.046837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.137604 + inSlope: -54.751106 + outSlope: -54.751106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 12.403377 + inSlope: -55.359947 + outSlope: -55.359947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 8.689813 + inSlope: -54.357162 + outSlope: -54.357162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 5.094535 + inSlope: -52.069366 + outSlope: -52.069366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.6980815 + inSlope: -48.565434 + outSlope: -48.565434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.4140371 + inSlope: -44.00349 + outSlope: -44.00349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -4.185615 + inSlope: -37.990437 + outSlope: -37.990437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.4820504 + inSlope: -30.233953 + outSlope: -30.233953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -8.210961 + inSlope: -17.53587 + outSlope: -17.53587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -8.809514 + inSlope: 0.8708788 + outSlope: 0.8708788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -8.086274 + inSlope: 17.753279 + outSlope: 17.753279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -6.440918 + inSlope: 28.840511 + outSlope: 28.840511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -4.248561 + inSlope: 33.981903 + outSlope: 33.981903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone11/Bone12/Bone13 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000022078052 + inSlope: -0.00009935133 + outSlope: -0.00009935133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.000002067733 + inSlope: -0.000093048075 + outSlope: -0.000093048075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000023612176 + inSlope: -0.0001062549 + outSlope: -0.0001062549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.000002694723 + inSlope: -0.00012126222 + outSlope: -0.00012126222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000029882076 + inSlope: -0.00013446948 + outSlope: -0.00013446948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000033617334 + inSlope: -0.00015127815 + outSlope: -0.00015127815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000035751768 + inSlope: -0.00016088312 + outSlope: -0.00016088312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.000003841981 + inSlope: -0.00017288933 + outSlope: -0.00017288933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000037886202 + inSlope: -0.00017048807 + outSlope: -0.00017048807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000036818988 + inSlope: -0.00016568502 + outSlope: -0.00016568502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000033083727 + inSlope: -0.00014887692 + outSlope: -0.00014887692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000029882076 + inSlope: -0.00013446948 + outSlope: -0.00013446948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000027214032 + inSlope: -0.00012246327 + outSlope: -0.00012246327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.000002321197 + inSlope: -0.00010445396 + outSlope: -0.00010445396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000019343308 + inSlope: -0.00008704497 + outSlope: -0.00008704497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000015274543 + inSlope: -0.00006873526 + outSlope: -0.00006873526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000011072376 + inSlope: -0.000049825743 + outSlope: -0.000049825743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.00000080041275 + inSlope: -0.00003601861 + outSlope: -0.00003601861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000005336085 + inSlope: -0.000024012405 + outSlope: -0.000024012405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0000003201651 + inSlope: -0.000014407443 + outSlope: -0.000014407443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000016008255 + inSlope: -0.0000072037215 + outSlope: -0.0000072037215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.00000005336085 + inSlope: 0.0000024012406 + outSlope: 0.0000024012406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000016008255 + inSlope: -0.000007203696 + outSlope: -0.000007203696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0000002134434 + inSlope: -0.0000096049625 + outSlope: -0.0000096049625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000007470519 + inSlope: -0.00003361737 + outSlope: -0.00003361737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0000013073409 + inSlope: -0.000058830396 + outSlope: -0.000058830396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.829681 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.829682 + inSlope: -0.000021457616 + outSlope: -0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 5.829683 + inSlope: -0.000064373075 + outSlope: -0.000064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.8296814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.829682 + inSlope: -0.000021457616 + outSlope: -0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.8296814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 5.829682 + inSlope: -0.000021457616 + outSlope: -0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 5.8296824 + inSlope: -0.000042915384 + outSlope: -0.000042915384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 5.829681 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 5.829681 + inSlope: 0.000021457616 + outSlope: 0.000021457616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 5.829682 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.829681 + inSlope: 0.000021457692 + outSlope: 0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 5.8296814 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.9999715 + inSlope: 0.000091195194 + outSlope: 0.000091195194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.9999719 + inSlope: -17.593828 + outSlope: -17.593828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.345891 + inSlope: -38.64423 + outSlope: -38.64423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.153033 + inSlope: -42.96662 + outSlope: -42.96662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.075482 + inSlope: -42.101837 + outSlope: -42.101837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -12.76732 + inSlope: -36.04957 + outSlope: -36.04957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -14.882625 + inSlope: -24.810114 + outSlope: -24.810114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -16.075483 + inSlope: -8.379915 + outSlope: -8.379915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -15.999973 + inSlope: 9.298734 + outSlope: 9.298734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.835682 + inSlope: 21.99749 + outSlope: 21.99749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.066894 + inSlope: 30.230242 + outSlope: 30.230242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -10.804753 + inSlope: 36.796207 + outSlope: 36.796207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -8.160405 + inSlope: 41.694057 + outSlope: 41.694057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -5.244984 + inSlope: 44.924706 + outSlope: 44.924706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -2.1696343 + inSlope: 46.489487 + outSlope: 46.489487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.954506 + inSlope: 46.38793 + outSlope: 46.38793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 4.0162935 + inSlope: 44.619083 + outSlope: 44.619083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 6.9045877 + inSlope: 41.127316 + outSlope: 41.127316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 9.500673 + inSlope: 36.082485 + outSlope: 36.082485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 11.716135 + inSlope: 29.338589 + outSlope: 29.338589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 13.412698 + inSlope: 20.878464 + outSlope: 20.878464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 14.500027 + inSlope: 5.7206206 + outSlope: 5.7206206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.175489 + inSlope: -18.003712 + outSlope: -18.003712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 12.099442 + inSlope: -39.739647 + outSlope: -39.739647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 8.876472 + inSlope: -52.863857 + outSlope: -52.863857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 5.049735 + inSlope: -57.377827 + outSlope: -57.377827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone14 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.962196 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -14.962194 + inSlope: 3.0640726 + outSlope: 3.0640726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -14.553241 + inSlope: 12.768314 + outSlope: 12.768314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -13.256918 + inSlope: 27.4303 + outSlope: 27.4303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.892917 + inSlope: 41.872498 + outSlope: 41.872498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.6775427 + inSlope: 49.690823 + outSlope: 49.690823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -4.2754693 + inSlope: 51.346134 + outSlope: 51.346134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.8332124 + inSlope: 50.83613 + outSlope: 50.83613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 2.5089579 + inSlope: 48.26569 + outSlope: 48.26569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.616912 + inSlope: 43.786625 + outSlope: 43.786625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 8.36869 + inSlope: 37.61967 + outSlope: 37.61967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 10.65806 + inSlope: 30.009441 + outSlope: 30.009441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 12.394219 + inSlope: 21.146942 + outSlope: 21.146942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 13.496451 + inSlope: 11.097275 + outSlope: 11.097275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 13.883731 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 13.496452 + inSlope: -11.137017 + outSlope: -11.137017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 12.394219 + inSlope: -21.274057 + outSlope: -21.274057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 10.65806 + inSlope: -30.168228 + outSlope: -30.168228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 8.376614 + inSlope: -37.89102 + outSlope: -37.89102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 5.6169114 + inSlope: -44.048286 + outSlope: -44.048286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 2.5191007 + inSlope: -48.488056 + outSlope: -48.488056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.8332158 + inSlope: -50.964508 + outSlope: -50.964508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -4.264704 + inSlope: -51.365993 + outSlope: -51.365993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.6775446 + inSlope: -49.61323 + outSlope: -49.61323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -10.883632 + inSlope: -41.731136 + outSlope: -41.731136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -13.256918 + inSlope: -35.318073 + outSlope: -35.318073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.567997 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -7.5679994 + inSlope: 0.7878621 + outSlope: 0.7878621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -7.464947 + inSlope: 3.0897574 + outSlope: 3.0897574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.169756 + inSlope: 5.521388 + outSlope: 5.521388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -6.7493196 + inSlope: 5.647257 + outSlope: 5.647257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -6.4076076 + inSlope: 2.6456263 + outSlope: 2.6456263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -6.319826 + inSlope: -1.4418712 + outSlope: -1.4418712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -6.5100923 + inSlope: -5.571168 + outSlope: -5.571168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -6.9661584 + inSlope: -9.217431 + outSlope: -9.217431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.641301 + inSlope: -11.878035 + outSlope: -11.878035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -8.456609 + inSlope: -13.105114 + outSlope: -13.105114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -9.305789 + inSlope: -12.553823 + outSlope: -12.553823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -10.063885 + inSlope: -10.055418 + outSlope: -10.055418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -10.600919 + inSlope: -5.6896787 + outSlope: -5.6896787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -10.80054 + inSlope: 0.00012874615 + outSlope: 0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -10.60092 + inSlope: 5.6043 + outSlope: 5.6043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -10.063885 + inSlope: 9.754324 + outSlope: 9.754324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.305789 + inSlope: 11.957385 + outSlope: 11.957385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -8.459272 + inSlope: 12.263414 + outSlope: 12.263414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -7.6412992 + inSlope: 10.788713 + outSlope: 10.788713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.96796 + inSlope: 7.968679 + outSlope: 7.968679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -6.510092 + inSlope: 4.210085 + outSlope: 4.210085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -6.3199844 + inSlope: 0.07038098 + outSlope: 0.07038098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -6.407607 + inSlope: -3.970231 + outSlope: -3.970231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -6.7479563 + inSlope: -6.617166 + outSlope: -6.617166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -7.169755 + inSlope: -7.787898 + outSlope: -7.787898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 21.253641 + inSlope: 0.0002574923 + outSlope: 0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 21.253641 + inSlope: -4.468436 + outSlope: -4.468436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 20.658638 + inSlope: -18.488977 + outSlope: -18.488977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 18.793674 + inSlope: -39.0084 + outSlope: -39.0084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.462622 + inSlope: -58.098076 + outSlope: -58.098076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.036817 + inSlope: -67.56723 + outSlope: -67.56723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 6.426696 + inSlope: -69.31757 + outSlope: -69.31757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.7742345 + inSlope: -69.079506 + outSlope: -69.079506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.7927227 + inSlope: -66.885605 + outSlope: -66.885605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.1395845 + inSlope: -62.544445 + outSlope: -62.544445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -11.116035 + inSlope: -55.763565 + outSlope: -55.763565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -14.551224 + inSlope: -46.228455 + outSlope: -46.228455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -17.254732 + inSlope: -33.69776 + outSlope: -33.69776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -19.023869 + inSlope: -18.093641 + outSlope: -18.093641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -19.656366 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -19.02387 + inSlope: 18.051434 + outSlope: 18.051434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -17.25473 + inSlope: 33.556396 + outSlope: 33.556396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -14.551222 + inSlope: 45.896717 + outSlope: 45.896717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -11.127706 + inSlope: 55.464058 + outSlope: 55.464058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -7.139581 + inSlope: 62.229774 + outSlope: 62.229774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -2.8067217 + inSlope: 66.67424 + outSlope: 66.67424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.7742386 + inSlope: 68.997986 + outSlope: 68.997986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 6.4121594 + inSlope: 69.403694 + outSlope: 69.403694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 11.036819 + inSlope: 67.818665 + outSlope: 67.818665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 15.449689 + inSlope: 58.368484 + outSlope: 58.368484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 18.793674 + inSlope: 50.645477 + outSlope: 50.645477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone14/Bone15 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000048291568 + inSlope: -0.00021731226 + outSlope: -0.00021731226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000020010319 + inSlope: -21.191952 + outSlope: -21.191952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -2.8000195 + inSlope: -45.06316 + outSlope: -45.06316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -6.0196495 + inSlope: -48.07965 + outSlope: -48.07965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -9.242323 + inSlope: -45.202003 + outSlope: -45.202003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -12.09832 + inSlope: -37.341534 + outSlope: -37.341534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -14.282874 + inSlope: -25.481825 + outSlope: -25.481825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -15.548732 + inSlope: -10.152278 + outSlope: -10.152278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -15.658481 + inSlope: 5.5413632 + outSlope: 5.5413632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.801258 + inSlope: 17.008337 + outSlope: 17.008337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.387346 + inSlope: 25.039326 + outSlope: 25.039326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -11.468073 + inSlope: 32.245335 + outSlope: 32.245335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -9.103549 + inSlope: 38.4118 + outSlope: 38.4118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -6.3706803 + inSlope: 43.249718 + outSlope: 43.249718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -3.3658304 + inSlope: 46.478436 + outSlope: 46.478436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.2031886 + inSlope: 47.86605 + outSlope: 47.86605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 2.9895513 + inSlope: 47.260323 + outSlope: 47.260323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 6.076721 + inSlope: 44.53175 + outSlope: 44.53175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 8.911719 + inSlope: 39.868435 + outSlope: 39.868435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 11.383236 + inSlope: 33.166553 + outSlope: 33.166553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 13.329126 + inSlope: 24.48812 + outSlope: 24.48812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 14.646443 + inSlope: 9.214577 + outSlope: 9.214577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.556739 + inSlope: -14.232365 + outSlope: -14.232365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 12.747941 + inSlope: -35.602646 + outSlope: -35.602646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 9.812214 + inSlope: -48.33182 + outSlope: -48.33182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.30436 + inSlope: -52.199207 + outSlope: -52.199207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.1629066 + inSlope: 0.00017166154 + outSlope: 0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -5.162909 + inSlope: -7.9208713 + outSlope: -7.9208713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.285508 + inSlope: -20.099464 + outSlope: -20.099464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.8134627 + inSlope: -25.694143 + outSlope: -25.694143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -9.643841 + inSlope: -28.872955 + outSlope: -28.872955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.569108 + inSlope: -27.9801 + outSlope: -27.9801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -13.275704 + inSlope: -21.643387 + outSlope: -21.643387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -14.378157 + inSlope: -9.35152 + outSlope: -9.35152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -14.492242 + inSlope: 4.687433 + outSlope: 4.687433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -13.765097 + inSlope: 13.869087 + outSlope: 13.869087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -12.648406 + inSlope: 18.542837 + outSlope: 18.542837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -11.285529 + inSlope: 21.052872 + outSlope: 21.052872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -9.816859 + inSlope: 21.568027 + outSlope: 21.568027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -8.366911 + inSlope: 20.41665 + outSlope: 20.41665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -7.035547 + inSlope: 18.017317 + outSlope: 18.017317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -5.8933477 + inSlope: 14.827684 + outSlope: 14.827684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -4.980393 + inSlope: 11.296038 + outSlope: 11.296038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -4.3073077 + inSlope: 7.8330665 + outSlope: 7.8330665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.858987 + inSlope: 4.848119 + outSlope: 4.848119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -3.5933144 + inSlope: 2.577294 + outSlope: 2.577294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.458962 + inSlope: 1.2095487 + outSlope: 1.2095487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -3.3933234 + inSlope: 0.9069523 + outSlope: 0.9069523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.3192549 + inSlope: 1.3044084 + outSlope: 1.3044084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -3.251519 + inSlope: -0.11978757 + outSlope: -0.11978757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -3.3509014 + inSlope: -3.9662936 + outSlope: -3.9662936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -3.741898 + inSlope: -8.620134 + outSlope: -8.620134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.0000005 + inSlope: -0.000021457692 + outSlope: -0.000021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 3.0000002 + inSlope: 24.066936 + outSlope: 24.066936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6.2331414 + inSlope: 53.79244 + outSlope: 53.79244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 10.16695 + inSlope: 61.279346 + outSlope: 61.279346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 14.37905 + inSlope: 62.086933 + outSlope: 62.086933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 18.399067 + inSlope: 55.256306 + outSlope: 55.256306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 21.688402 + inSlope: 39.76771 + outSlope: 39.76771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 23.650764 + inSlope: 15.112739 + outSlope: 15.112739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 23.681618 + inSlope: -11.996052 + outSlope: -11.996052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 22.058966 + inSlope: -30.8594 + outSlope: -30.8594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 19.570139 + inSlope: -42.268307 + outSlope: -42.268307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 16.417444 + inSlope: -50.67835 + outSlope: -50.67835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 12.795955 + inSlope: -56.29447 + outSlope: -56.29447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 8.884202 + inSlope: -59.419655 + outSlope: -59.419655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 4.8398404 + inSlope: -60.36978 + outSlope: -60.36978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8004541 + inSlope: -59.40811 + outSlope: -59.40811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.1113257 + inSlope: -56.6903 + outSlope: -56.6903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -6.7801175 + inSlope: -52.174957 + outSlope: -52.174957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -10.079833 + inSlope: -45.992977 + outSlope: -45.992977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -12.9151125 + inSlope: -37.796566 + outSlope: -37.796566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -15.115462 + inSlope: -27.394478 + outSlope: -27.394478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -16.561779 + inSlope: -8.563336 + outSlope: -8.563336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -16.253592 + inSlope: 20.853626 + outSlope: 20.853626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -13.789541 + inSlope: 47.285458 + outSlope: 47.285458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -9.946794 + inSlope: 62.828167 + outSlope: 62.828167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -5.396199 + inSlope: 68.1368 + outSlope: 68.1368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone14/Bone15/Bone16 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.800188 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -8.80018 + inSlope: 3.3739216 + outSlope: 3.3739216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -8.349689 + inSlope: 14.0715685 + outSlope: 14.0715685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -6.9200587 + inSlope: 30.287832 + outSlope: 30.287832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -4.3068314 + inSlope: 46.3778 + outSlope: 46.3778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.7406351 + inSlope: 55.24224 + outSlope: 55.24224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.0463345 + inSlope: 57.28512 + outSlope: 57.28512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 6.8911486 + inSlope: 56.89666 + outSlope: 56.89666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 10.635491 + inSlope: 54.16501 + outSlope: 54.16501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 14.125975 + inSlope: 49.235874 + outSlope: 49.235874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 17.221695 + inSlope: 42.350277 + outSlope: 42.350277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 19.799435 + inSlope: 33.79346 + outSlope: 33.79346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 21.754478 + inSlope: 23.806366 + outSlope: 23.806366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 22.995237 + inSlope: 12.488806 + outSlope: 12.488806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 23.431032 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 22.995241 + inSlope: -12.5340805 + outSlope: -12.5340805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 21.754477 + inSlope: -23.954596 + outSlope: -23.954596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 19.799429 + inSlope: -33.972763 + outSlope: -33.972763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 17.230614 + inSlope: -42.644505 + outSlope: -42.644505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 14.12597 + inSlope: -49.502083 + outSlope: -49.502083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.646871 + inSlope: -54.371605 + outSlope: -54.371605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.8911443 + inSlope: -56.982727 + outSlope: -56.982727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 3.0583389 + inSlope: -57.242256 + outSlope: -57.242256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.7406394 + inSlope: -55.089245 + outSlope: -55.089245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -4.296555 + inSlope: -46.16938 + outSlope: -46.16938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -6.9200573 + inSlope: -38.96176 + outSlope: -38.96176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 83.50871 + inSlope: 0.00068664615 + outSlope: 0.00068664615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 83.50871 + inSlope: -1.0182962 + outSlope: -1.0182962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 83.37503 + inSlope: -4.034733 + outSlope: -4.034733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 82.985695 + inSlope: -7.443561 + outSlope: -7.443561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 82.40516 + inSlope: -8.296402 + outSlope: -8.296402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 81.8703 + inSlope: -5.322881 + outSlope: -5.322881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 81.61132 + inSlope: -0.7659538 + outSlope: -0.7659538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 81.667786 + inSlope: 4.0374794 + outSlope: 4.0374794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 82.03909 + inSlope: 8.491066 + outSlope: 8.491066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 82.684555 + inSlope: 11.981246 + outSlope: 11.981246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 83.52293 + inSlope: 13.911108 + outSlope: 13.911108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 84.43517 + inSlope: 13.775839 + outSlope: 13.775839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 85.27337 + inSlope: 11.276446 + outSlope: 11.276446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 85.87815 + inSlope: 6.460997 + outSlope: 6.460997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 86.10502 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 85.87815 + inSlope: -6.344931 + outSlope: -6.344931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 85.27335 + inSlope: -10.874072 + outSlope: -10.874072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 84.435165 + inSlope: -12.997525 + outSlope: -12.997525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 83.52573 + inSlope: -12.833417 + outSlope: -12.833417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 82.68456 + inSlope: -10.627566 + outSlope: -10.627566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 82.04072 + inSlope: -6.9862814 + outSlope: -6.9862814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 81.667786 + inSlope: -2.443087 + outSlope: -2.443087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 81.61099 + inSlope: 2.3304687 + outSlope: 2.3304687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 81.8703 + inSlope: 6.8032904 + outSlope: 6.8032904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 82.4032 + inSlope: 9.36036 + outSlope: 9.36036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 82.985695 + inSlope: 10.328188 + outSlope: 10.328188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -18.830765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -18.830763 + inSlope: 4.5304055 + outSlope: 4.5304055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -18.22744 + inSlope: 18.75059 + outSlope: 18.75059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -16.335497 + inSlope: 39.595394 + outSlope: 39.595394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -12.952039 + inSlope: 59.091267 + outSlope: 59.091267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -8.445062 + inSlope: 68.97811 + outSlope: 68.97811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.7305555 + inSlope: 71.14388 + outSlope: 71.14388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.0555811 + inSlope: 71.40875 + outSlope: 71.40875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.7901535 + inSlope: 69.755356 + outSlope: 69.755356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 10.338525 + inSlope: 65.89063 + outSlope: 65.89063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 14.542249 + inSlope: 59.371677 + outSlope: 59.371677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 18.21167 + inSlope: 49.71318 + outSlope: 49.71318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 21.126791 + inSlope: 36.53756 + outSlope: 36.53756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 23.048296 + inSlope: 19.723139 + outSlope: 19.723139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 23.738035 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 23.048292 + inSlope: -19.650284 + outSlope: -19.650284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 21.12679 + inSlope: -36.2956 + outSlope: -36.2956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 18.211666 + inSlope: -49.201458 + outSlope: -49.201458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 14.554654 + inSlope: -58.84888 + outSlope: -58.84888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 10.338524 + inSlope: -65.33541 + outSlope: -65.33541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 5.8047314 + inSlope: -69.322334 + outSlope: -69.322334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 1.0555769 + inSlope: -71.14292 + outSlope: -71.14292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.71565 + inSlope: -71.09383 + outSlope: -71.09383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -8.4450655 + inSlope: -69.138535 + outSlope: -69.138535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -12.938893 + inSlope: -59.31709 + outSlope: -59.31709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -16.335499 + inSlope: -51.382935 + outSlope: -51.382935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone25 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.655157 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 9.655158 + inSlope: 2.839668 + outSlope: 2.839668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 10.032869 + inSlope: 13.357928 + outSlope: 13.357928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 11.427602 + inSlope: 24.613216 + outSlope: 24.613216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 13.315917 + inSlope: 27.386238 + outSlope: 27.386238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 15.098652 + inSlope: 22.859652 + outSlope: 22.859652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 16.394327 + inSlope: 13.012202 + outSlope: 13.012202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 16.864294 + inSlope: -1.6488949 + outSlope: -1.6488949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 16.189348 + inSlope: -16.339518 + outSlope: -16.339518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 14.682876 + inSlope: -26.727564 + outSlope: -26.727564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 12.624744 + inSlope: -34.232918 + outSlope: -34.232918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 10.120102 + inSlope: -40.10975 + outSlope: -40.10975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 7.280025 + inSlope: -44.24591 + outSlope: -44.24591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 4.2233176 + inSlope: -46.53425 + outSlope: -46.53425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.0751679 + inSlope: -46.909058 + outSlope: -46.909058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.0366123 + inSlope: -45.375874 + outSlope: -45.375874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -4.9866776 + inSlope: -42.02418 + outSlope: -42.02418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -7.6575336 + inSlope: -36.96551 + outSlope: -36.96551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -9.937444 + inSlope: -30.556913 + outSlope: -30.556913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -11.754694 + inSlope: -22.877247 + outSlope: -22.877247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -13.0084715 + inSlope: -14.051398 + outSlope: -14.051398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -13.642294 + inSlope: 1.9633789 + outSlope: 1.9633789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -12.748873 + inSlope: 28.308346 + outSlope: 28.308346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -9.841801 + inSlope: 54.301525 + outSlope: 54.301525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -5.505902 + inSlope: 71.759865 + outSlope: 71.759865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.30413595 + inSlope: 79.21964 + outSlope: 79.21964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.8378866 + inSlope: 0.00018239039 + outSlope: 0.00018239039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 3.8378866 + inSlope: -0.9425828 + outSlope: -0.9425828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.7092686 + inSlope: -4.21163 + outSlope: -4.21163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 3.2472603 + inSlope: -8.90402 + outSlope: -8.90402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 2.526065 + inSlope: -12.364577 + outSlope: -12.364577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.6546695 + inSlope: -13.526532 + outSlope: -13.526532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7931546 + inSlope: -11.454755 + outSlope: -11.454755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.18250504 + inSlope: -5.5931797 + outSlope: -5.5931797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.058194418 + inSlope: 0.8494985 + outSlope: 0.8494985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2771466 + inSlope: 3.8650625 + outSlope: 3.8650625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5719875 + inSlope: 4.1790843 + outSlope: 4.1790843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8484145 + inSlope: 3.1354382 + outSlope: 3.1354382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.0222906 + inSlope: 0.98750985 + outSlope: 0.98750985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.0296571 + inSlope: -1.9031149 + outSlope: -1.9031149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.83266354 + inSlope: -5.112381 + outSlope: -5.112381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.42273846 + inSlope: -8.185197 + outSlope: -8.185197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.17807826 + inSlope: -10.6625595 + outSlope: -10.6625595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.91737676 + inSlope: -12.084833 + outSlope: -12.084833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.7122958 + inSlope: -12.1186075 + outSlope: -12.1186075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.4674664 + inSlope: -10.482426 + outSlope: -10.482426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.0583453 + inSlope: -7.061662 + outSlope: -7.061662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -3.3773656 + inSlope: 1.3314284 + outSlope: 1.3314284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -2.8763723 + inSlope: 15.112298 + outSlope: 15.112298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.4200873 + inSlope: 24.430763 + outSlope: 24.430763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.3698175 + inSlope: 25.069891 + outSlope: 25.069891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.0011103 + inSlope: 19.809902 + outSlope: 19.809902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.512966 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.512966 + inSlope: -7.6617694 + outSlope: -7.6617694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -10.53534 + inSlope: -34.035633 + outSlope: -34.035633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -14.060365 + inSlope: -61.573357 + outSlope: -61.573357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -18.74744 + inSlope: -70.31651 + outSlope: -70.31651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -23.420328 + inSlope: -64.694 + outSlope: -64.694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -27.346987 + inSlope: -47.679935 + outSlope: -47.679935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -29.753153 + inSlope: -18.889893 + outSlope: -18.889893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -29.85988 + inSlope: 11.34142 + outSlope: 11.34142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -28.249147 + inSlope: 30.384756 + outSlope: 30.384756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -25.80804 + inSlope: 41.485615 + outSlope: 41.485615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -22.710155 + inSlope: 50.085175 + outSlope: 50.085175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -19.116636 + inSlope: 56.407898 + outSlope: 56.407898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -15.173647 + inSlope: 60.665962 + outSlope: 60.665962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -11.014862 + inSlope: 62.995667 + outSlope: 62.995667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -6.76783 + inSlope: 63.416008 + outSlope: 63.416008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -2.5621297 + inSlope: 61.81857 + outSlope: 61.81857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.4626471 + inSlope: 57.91377 + outSlope: 57.91377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 5.1403475 + inSlope: 51.67506 + outSlope: 51.67506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 8.330698 + inSlope: 42.660896 + outSlope: 42.660896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.80792 + inSlope: 30.695915 + outSlope: 30.695915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 12.409827 + inSlope: 8.544325 + outSlope: 8.544325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 11.948261 + inSlope: -25.811796 + outSlope: -25.811796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 9.001399 + inSlope: -55.202705 + outSlope: -55.202705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 4.5813723 + inSlope: -70.685974 + outSlope: -70.685974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.48223785 + inSlope: -74.34872 + outSlope: -74.34872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone25/Bone26 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.937685 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.937685 + inSlope: -3.1916173 + outSlope: -3.1916173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 7.511624 + inSlope: -13.304306 + outSlope: -13.304306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.1603765 + inSlope: -28.61137 + outSlope: -28.61137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 3.692854 + inSlope: -43.772232 + outSlope: -43.772232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.32741416 + inSlope: -52.14763 + outSlope: -52.14763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.2486274 + inSlope: -54.163303 + outSlope: -54.163303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -6.8869977 + inSlope: -53.966763 + outSlope: -53.966763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.443298 + inSlope: -51.61794 + outSlope: -51.61794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -13.775596 + inSlope: -47.20577 + outSlope: -47.20577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -16.750021 + inSlope: -40.89227 + outSlope: -40.89227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -19.24463 + inSlope: -32.87104 + outSlope: -32.87104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -21.150229 + inSlope: -23.310694 + outSlope: -23.310694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -22.366875 + inSlope: -12.284443 + outSlope: -12.284443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -22.79571 + inSlope: -0.0002574923 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -22.366879 + inSlope: 12.314783 + outSlope: 12.314783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -21.15023 + inSlope: 23.407425 + outSlope: 23.407425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -19.244629 + inSlope: 32.965195 + outSlope: 32.965195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -16.758625 + inSlope: 41.077404 + outSlope: 41.077404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -13.775598 + inSlope: 47.35906 + outSlope: 47.35906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -10.454131 + inSlope: 51.7257 + outSlope: 51.7257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -6.886995 + inSlope: 53.98281 + outSlope: 53.98281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.259974 + inSlope: 54.08463 + outSlope: 54.08463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.32741585 + inSlope: 51.993176 + outSlope: 51.993176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 3.683155 + inSlope: 43.586754 + outSlope: 43.586754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.160377 + inSlope: 36.821766 + outSlope: 36.821766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -87.26685 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -87.26685 + inSlope: 0.96679777 + outSlope: 0.96679777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -87.13964 + inSlope: 3.8548315 + outSlope: 3.8548315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -86.76533 + inSlope: 7.253704 + outSlope: 7.253704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -86.19131 + inSlope: 8.50274 + outSlope: 8.50274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -85.62388 + inSlope: 6.308905 + outSlope: 6.308905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -85.27981 + inSlope: 2.5762963 + outSlope: 2.5762963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -85.196526 + inSlope: -1.4254774 + outSlope: -1.4254774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -85.377594 + inSlope: -5.194478 + outSlope: -5.194478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -85.79318 + inSlope: -8.225991 + outSlope: -8.225991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -86.3801 + inSlope: -10.030527 + outSlope: -10.030527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -87.04416 + inSlope: -10.192575 + outSlope: -10.192575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -87.66753 + inSlope: -8.46772 + outSlope: -8.46772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -88.12278 + inSlope: -4.888234 + outSlope: -4.888234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -88.29451 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -88.12277 + inSlope: 4.7914 + outSlope: 4.7914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -87.667534 + inSlope: 8.13195 + outSlope: 8.13195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -87.04416 + inSlope: 9.549875 + outSlope: 9.549875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -86.3821 + inSlope: 9.13926 + outSlope: 9.13926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -85.79319 + inSlope: 7.1067877 + outSlope: 7.1067877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -85.37855 + inSlope: 3.9468422 + outSlope: 3.9468422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -85.196526 + inSlope: 0.10025034 + outSlope: 0.10025034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -85.27914 + inSlope: -3.8795369 + outSlope: -3.8795369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -85.62388 + inSlope: -7.5434947 + outSlope: -7.5434947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -86.18931 + inSlope: -9.389886 + outSlope: -9.389886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -86.76533 + inSlope: -9.965982 + outSlope: -9.965982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -16.82643 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -16.826437 + inSlope: 3.998598 + outSlope: 3.998598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -16.293938 + inSlope: 16.551949 + outSlope: 16.551949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -14.623622 + inSlope: 34.965744 + outSlope: 34.965744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -11.635385 + inSlope: 52.19854 + outSlope: 52.19854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.6546636 + inSlope: 60.90691 + outSlope: 60.90691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -3.4938874 + inSlope: 62.730213 + outSlope: 62.730213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.7226517 + inSlope: 62.811844 + outSlope: 62.811844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 4.882618 + inSlope: 61.162834 + outSlope: 61.162834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 8.865718 + inSlope: 57.567738 + outSlope: 57.567738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 12.533845 + inSlope: 51.68725 + outSlope: 51.68725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 15.724882 + inSlope: 43.145496 + outSlope: 43.145496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 18.252796 + inSlope: 31.635677 + outSlope: 31.635677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 19.915737 + inSlope: 17.053717 + outSlope: 17.053717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 20.51204 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 19.915735 + inSlope: -16.995548 + outSlope: -16.995548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 18.252796 + inSlope: -31.447193 + outSlope: -31.447193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 15.724884 + inSlope: -42.74098 + outSlope: -42.74098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 12.544653 + inSlope: -51.289978 + outSlope: -51.289978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 8.865719 + inSlope: -57.149387 + outSlope: -57.149387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 4.895408 + inSlope: -60.85022 + outSlope: -60.85022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.7226551 + inSlope: -62.63306 + outSlope: -62.63306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.4807343 + inSlope: -62.721878 + outSlope: -62.721878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.6546574 + inSlope: -61.06439 + outSlope: -61.06439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -11.623763 + inSlope: -52.39801 + outSlope: -52.39801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -14.623615 + inSlope: -45.37066 + outSlope: -45.37066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone23 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.718043 + inSlope: -0.00021457692 + outSlope: -0.00021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.718044 + inSlope: -0.335255 + outSlope: -0.335255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -9.762679 + inSlope: -2.7548673 + outSlope: -2.7548673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -10.085174 + inSlope: -6.671473 + outSlope: -6.671473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.652155 + inSlope: -8.27297 + outSlope: -8.27297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.189135 + inSlope: -5.9689293 + outSlope: -5.9689293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -11.45011 + inSlope: -0.018925685 + outSlope: -0.018925685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -11.193752 + inSlope: 9.522238 + outSlope: 9.522238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.180508 + inSlope: 19.229355 + outSlope: 19.229355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -8.629027 + inSlope: 26.614267 + outSlope: 26.614267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.6322894 + inSlope: 32.52967 + outSlope: 32.52967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -4.2924356 + inSlope: 36.875 + outSlope: 36.875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.7155113 + inSlope: 39.59116 + outSlope: 39.59116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.9889455 + inSlope: 40.64291 + outSlope: 40.64291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 3.7099707 + inSlope: 40.03584 + outSlope: 40.03584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 6.338431 + inSlope: 37.832417 + outSlope: 37.832417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 8.770861 + inSlope: 34.155067 + outSlope: 34.155067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 10.913112 + inSlope: 29.131865 + outSlope: 29.131865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 12.67796 + inSlope: 23.061827 + outSlope: 23.061827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 14.009815 + inSlope: 16.013103 + outSlope: 16.013103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 14.831571 + inSlope: 8.059295 + outSlope: 8.059295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 15.096003 + inSlope: -7.041299 + outSlope: -7.041299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 13.89251 + inSlope: -32.7478 + outSlope: -32.7478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 10.704609 + inSlope: -58.32939 + outSlope: -58.32939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 6.114675 + inSlope: -75.409775 + outSlope: -75.409775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.6794901 + inSlope: -82.57268 + outSlope: -82.57268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.5138814 + inSlope: 0.00018239039 + outSlope: 0.00018239039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.5138817 + inSlope: 0.04549031 + outSlope: 0.04549031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 1.5201342 + inSlope: 0.16512768 + outSlope: 0.16512768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 1.5406917 + inSlope: 0.49934554 + outSlope: 0.49934554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 1.5886052 + inSlope: 1.0294006 + outSlope: 1.0294006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.6665349 + inSlope: 1.2840068 + outSlope: 1.2840068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.7440332 + inSlope: 0.83842176 + outSlope: 0.83842176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.7691578 + inSlope: -0.3375027 + outSlope: -0.3375027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.7068546 + inSlope: -1.2225199 + outSlope: -1.2225199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 1.617757 + inSlope: -1.0301855 + outSlope: -1.0301855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.5677626 + inSlope: 0.060499962 + outSlope: 0.060499962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.6121423 + inSlope: 1.9223624 + outSlope: 1.9223624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.7972358 + inSlope: 4.3590713 + outSlope: 4.3590713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 2.1539273 + inSlope: 7.0945783 + outSlope: 7.0945783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 2.6932802 + inSlope: 9.8047495 + outSlope: 9.8047495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.403784 + inSlope: 12.135472 + outSlope: 12.135472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 4.2499876 + inSlope: 13.725928 + outSlope: 13.725928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 5.1728287 + inSlope: 14.218725 + outSlope: 14.218725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 6.0894647 + inSlope: 13.395673 + outSlope: 13.395673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 6.9127164 + inSlope: 11.06408 + outSlope: 11.06408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 7.530663 + inSlope: 7.195687 + outSlope: 7.195687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 7.8537984 + inSlope: -1.2576139 + outSlope: -1.2576139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.370326 + inSlope: -14.459815 + outSlope: -14.459815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 5.9868274 + inSlope: -22.817059 + outSlope: -22.817059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 4.330886 + inSlope: -22.576883 + outSlope: -22.576883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 2.8863409 + inSlope: -16.647211 + outSlope: -16.647211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.325771 + inSlope: -0.00017166154 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -9.325773 + inSlope: -5.064788 + outSlope: -5.064788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -10.001129 + inSlope: -22.878363 + outSlope: -22.878363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -12.377156 + inSlope: -41.671505 + outSlope: -41.671505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -15.558353 + inSlope: -47.34614 + outSlope: -47.34614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -18.688831 + inSlope: -42.546486 + outSlope: -42.546486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -21.228676 + inSlope: -29.589987 + outSlope: -29.589987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -22.632595 + inSlope: -8.463085 + outSlope: -8.463085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -22.359114 + inSlope: 13.401187 + outSlope: 13.401187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -20.847685 + inSlope: 27.64007 + outSlope: 27.64007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -18.671871 + inSlope: 36.613174 + outSlope: 36.613174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -15.961354 + inSlope: 43.712795 + outSlope: 43.712795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -12.838101 + inSlope: 49.053875 + outSlope: 49.053875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -9.417064 + inSlope: 52.71842 + outSlope: 52.71842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -5.8096023 + inSlope: 54.714092 + outSlope: 54.714092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.1286666 + inSlope: 54.966034 + outSlope: 54.966034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 1.5056198 + inSlope: 53.31787 + outSlope: 53.31787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 4.9612923 + inSlope: 49.496716 + outSlope: 49.496716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 8.083134 + inSlope: 43.491997 + outSlope: 43.491997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 10.739311 + inSlope: 34.9781 + outSlope: 34.9781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 12.729902 + inSlope: 23.86104 + outSlope: 23.86104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 13.911289 + inSlope: 2.874129 + outSlope: 2.874129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 13.119007 + inSlope: -30.17267 + outSlope: -30.17267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 9.922192 + inSlope: -58.441658 + outSlope: -58.441658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.314981 + inSlope: -73.26281 + outSlope: -73.26281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.090009384 + inSlope: -76.839035 + outSlope: -76.839035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone08/Bone23/Bone24 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000051609945 + inSlope: 0.00023224497 + outSlope: 0.00023224497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000026847178 + inSlope: 0.000012081241 + outSlope: 0.000012081241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000041834073 + inSlope: -0.00001882535 + outSlope: -0.00001882535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0000011789413 + inSlope: -0.00005305222 + outSlope: -0.00005305222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000019676813 + inSlope: -0.00008854574 + outSlope: -0.00008854574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000027414137 + inSlope: -0.00012336374 + outSlope: -0.00012336374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0000034417749 + inSlope: -0.00015488 + outSlope: -0.00015488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0000040420846 + inSlope: -0.00018189398 + outSlope: -0.00018189398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000044956514 + inSlope: -0.00020230451 + outSlope: -0.00020230451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000047291055 + inSlope: -0.0002128092 + outSlope: -0.0002128092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000048691777 + inSlope: -0.0002191132 + outSlope: -0.0002191132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000049492187 + inSlope: -0.00022271504 + outSlope: -0.00022271504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.0000049959094 + inSlope: -0.00022481615 + outSlope: -0.00022481615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0000050159197 + inSlope: -0.0002257166 + outSlope: -0.0002257166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.0000049859045 + inSlope: -0.00022436591 + outSlope: -0.00022436591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000004902528 + inSlope: -0.00022061319 + outSlope: -0.00022061319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000004772461 + inSlope: -0.00021476096 + outSlope: -0.00021476096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0000045881993 + inSlope: -0.00020646918 + outSlope: -0.00020646918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000043439068 + inSlope: -0.000195476 + outSlope: -0.000195476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.000004037082 + inSlope: -0.00018166886 + outSlope: -0.00018166886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000036585532 + inSlope: -0.00016463504 + outSlope: -0.00016463504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0000032183264 + inSlope: -0.00014482482 + outSlope: -0.00014482482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000026980579 + inSlope: -0.00012141228 + outSlope: -0.00012141228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0000017775833 + inSlope: -0.000079991325 + outSlope: -0.000079991325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0000002768094 + inSlope: -0.000012456436 + outSlope: -0.000012456436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.0000015407945 + inSlope: 0.00006933582 + outSlope: 0.00006933582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 179.18155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.999996 + inSlope: -14.999603 + outSlope: -14.999603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.999999 + inSlope: -24.35461 + outSlope: -24.35461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.24739689 + inSlope: -36.358326 + outSlope: -36.358326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -2.8482153 + inSlope: -40.068653 + outSlope: -40.068653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -5.5904026 + inSlope: -40.598213 + outSlope: -40.598213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -8.261907 + inSlope: -37.94797 + outSlope: -37.94797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -10.650672 + inSlope: -32.117573 + outSlope: -32.117573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -12.544645 + inSlope: -23.107103 + outSlope: -23.107103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -13.7317705 + inSlope: -10.914713 + outSlope: -10.914713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.000003 + inSlope: 1.8746661 + outSlope: 1.8746661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.481816 + inSlope: 11.244045 + outSlope: 11.244045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -12.500806 + inSlope: 17.626078 + outSlope: 17.626078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -11.1315775 + inSlope: 22.89008 + outSlope: 22.89008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -9.4487295 + inSlope: 27.033903 + outSlope: 27.033903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -7.52687 + inSlope: 30.059267 + outSlope: 30.059267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -5.4406033 + inSlope: 31.965582 + outSlope: 31.965582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.2645288 + inSlope: 32.753128 + outSlope: 32.753128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.0732547 + inSlope: 32.372498 + outSlope: 32.372498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 1.0521245 + inSlope: 30.971153 + outSlope: 30.971153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 3.0564816 + inSlope: 28.411648 + outSlope: 28.411648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 4.8405466 + inSlope: 24.713726 + outSlope: 24.713726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.3517756 + inSlope: 19.92306 + outSlope: 19.92306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.497042 + inSlope: 10.714281 + outSlope: 10.714281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 7.7804403 + inSlope: -3.4915528 + outSlope: -3.4915528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 7.031497 + inSlope: -15.71334 + outSlope: -15.71334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 5.685329 + inSlope: -20.191324 + outSlope: -20.191324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone18 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.531375 + inSlope: -0.00013273665 + outSlope: -0.00013273665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.531375 + inSlope: -0.13328114 + outSlope: -0.13328114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5137515 + inSlope: -0.56395197 + outSlope: -0.56395197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.45665762 + inSlope: -1.2181094 + outSlope: -1.2181094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3525979 + inSlope: -1.730829 + outSlope: -1.730829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22866723 + inSlope: -1.9208984 + outSlope: -1.9208984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.09966916 + inSlope: -1.9416907 + outSlope: -1.9416907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.027260832 + inSlope: -1.8539765 + outSlope: -1.8539765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14495577 + inSlope: -1.6596246 + outSlope: -1.6596246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.2466342 + inSlope: -1.3686415 + outSlope: -1.3686415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3261168 + inSlope: -0.9893269 + outSlope: -0.9893269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.37778774 + inSlope: -0.52933615 + outSlope: -0.52933615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.3962446 + inSlope: -0.062909044 + outSlope: -0.062909044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.38618353 + inSlope: 0.29328975 + outSlope: 0.29328975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.35747945 + inSlope: 0.5594823 + outSlope: 0.5594823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3122718 + inSlope: 0.7940672 + outSlope: 0.7940672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.25268835 + inSlope: 0.99596643 + outSlope: 0.99596643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.09970053 + inSlope: 1.2905507 + outSlope: 1.2905507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.010716806 + inSlope: 1.3781807 + outSlope: 1.3781807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.08217147 + inSlope: 1.4235857 + outSlope: 1.4235857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.17728145 + inSlope: 1.4255774 + outSlope: 1.4255774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.27059603 + inSlope: 1.3857273 + outSlope: 1.3857273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.36051127 + inSlope: 1.2749883 + outSlope: 1.2749883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.43942535 + inSlope: 0.99502105 + outSlope: 0.99502105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.4925609 + inSlope: 0.7978705 + outSlope: 0.7978705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -91.38444 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -91.38444 + inSlope: -0.051317614 + outSlope: -0.051317614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -91.391075 + inSlope: -0.20596394 + outSlope: -0.20596394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -91.41085 + inSlope: -0.3814147 + outSlope: -0.3814147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -91.44038 + inSlope: -0.39875174 + outSlope: -0.39875174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -91.46516 + inSlope: -0.27115119 + outSlope: -0.27115119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -91.47954 + inSlope: -0.10263523 + outSlope: -0.10263523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -91.48264 + inSlope: 0.05963939 + outSlope: 0.05963939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -91.47579 + inSlope: 0.18307906 + outSlope: 0.18307906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -91.46224 + inSlope: 0.24549237 + outSlope: 0.24549237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -91.446594 + inSlope: 0.23092927 + outSlope: 0.23092927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -91.433975 + inSlope: 0.14147018 + outSlope: 0.14147018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -91.428986 + inSlope: 0.018030513 + outSlope: 0.018030513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -91.43173 + inSlope: -0.07836338 + outSlope: -0.07836338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -91.43916 + inSlope: -0.1373093 + outSlope: -0.1373093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -91.449646 + inSlope: -0.16643551 + outSlope: -0.16643551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -91.46121 + inSlope: -0.16435507 + outSlope: -0.16435507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -91.47954 + inSlope: -0.07420249 + outSlope: -0.07420249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -91.48285 + inSlope: 0.0041608876 + outSlope: 0.0041608876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -91.48061 + inSlope: 0.09431345 + outSlope: 0.09431345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -91.47225 + inSlope: 0.18723994 + outSlope: 0.18723994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -91.458 + inSlope: 0.27184466 + outSlope: 0.27184466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -91.43841 + inSlope: 0.33287102 + outSlope: 0.33287102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -91.416306 + inSlope: 0.31761444 + outSlope: 0.31761444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -91.39871 + inSlope: 0.28640777 + outSlope: 0.28640777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 20.99358 + inSlope: -0.00017337032 + outSlope: -0.00017337032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 20.993578 + inSlope: -5.5118756 + outSlope: -5.5118756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 20.265919 + inSlope: -23.192268 + outSlope: -23.192268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 17.931744 + inSlope: -49.3327 + outSlope: -49.3327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 13.752242 + inSlope: -68.63103 + outSlope: -68.63103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 8.868516 + inSlope: -74.95566 + outSlope: -74.95566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.852928 + inSlope: -75.124466 + outSlope: -75.124466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -1.0532033 + inSlope: -71.64097 + outSlope: -71.64097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -5.608557 + inSlope: -64.50457 + outSlope: -64.50457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -9.571804 + inSlope: -53.71446 + outSlope: -53.71446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -12.70157 + inSlope: -39.266254 + outSlope: -39.266254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -14.756461 + inSlope: -21.15781 + outSlope: -21.15781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -15.495069 + inSlope: -2.5424323 + outSlope: -2.5424323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -15.09209 + inSlope: 11.728979 + outSlope: 11.728979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -13.946627 + inSlope: 22.255287 + outSlope: 22.255287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -12.153879 + inSlope: 31.338852 + outSlope: 31.338852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -9.809053 + inSlope: 38.979977 + outSlope: 38.979977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -3.854302 + inSlope: 49.933796 + outSlope: 49.933796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.414049 + inSlope: 53.24072 + outSlope: 53.24072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 3.1757648 + inSlope: 55.12211 + outSlope: 55.12211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 6.864595 + inSlope: 55.555412 + outSlope: 55.555412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 10.511695 + inSlope: 54.54616 + outSlope: 54.54616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.067234 + inSlope: 50.90482 + outSlope: 50.90482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 17.233435 + inSlope: 40.35619 + outSlope: 40.35619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 19.395855 + inSlope: 32.755375 + outSlope: 32.755375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone02 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000006525508 + inSlope: -0.0000029657122 + outSlope: -0.0000029657122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000009513336 + inSlope: -0.7337075 + outSlope: -0.7337075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.096830055 + inSlope: -1.5951078 + outSlope: -1.5951078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.21053903 + inSlope: -1.749039 + outSlope: -1.749039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.32787064 + inSlope: -1.7036546 + outSlope: -1.7036546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.43577614 + inSlope: -1.4646149 + outSlope: -1.4646149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.52174217 + inSlope: -1.0423754 + outSlope: -1.0423754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.5738419 + inSlope: -0.44222975 + outSlope: -0.44222975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5803433 + inSlope: 0.19027664 + outSlope: 0.19027664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.54871905 + inSlope: 0.63373893 + outSlope: 0.63373893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4966327 + inSlope: 0.9197783 + outSlope: 0.9197783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.42732278 + inSlope: 1.1560509 + outSlope: 1.1560509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.3441145 + inSlope: 1.3404222 + outSlope: 1.3404222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.25049222 + inSlope: 1.4710525 + outSlope: 1.4710525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.1501207 + inSlope: 1.5439047 + outSlope: 1.5439047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.046815597 + inSlope: 1.5583266 + outSlope: 1.5583266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.05552225 + inSlope: 1.5133799 + outSlope: 1.5133799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.24150707 + inSlope: 1.2493708 + outSlope: 1.2493708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.31816155 + inSlope: 1.0360366 + outSlope: 1.0360366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.37847367 + inSlope: 0.7686197 + outSlope: 0.7686197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.41975978 + inSlope: 0.31249866 + outSlope: 0.31249866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.41981506 + inSlope: -0.37656033 + outSlope: -0.37656033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.3699095 + inSlope: -1.0078979 + outSlope: -1.0078979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.2867323 + inSlope: -1.3968704 + outSlope: -1.3968704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.18567722 + inSlope: -1.5350499 + outSlope: -1.5350499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.5888002 + inSlope: 0.00027089112 + outSlope: 0.00027089112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 3.5887997 + inSlope: -0.0024813628 + outSlope: -0.0024813628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.586574 + inSlope: -0.08649012 + outSlope: -0.08649012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 3.5782547 + inSlope: -0.19174758 + outSlope: -0.19174758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 3.5631316 + inSlope: -0.2845982 + outSlope: -0.2845982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 3.5432396 + inSlope: -0.32160193 + outSlope: -0.32160193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.5231748 + inSlope: -0.27238643 + outSlope: -0.27238643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 3.509143 + inSlope: -0.12635446 + outSlope: -0.12635446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 3.5072916 + inSlope: 0.05418906 + outSlope: 0.05418906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 3.5160878 + inSlope: 0.1682884 + outSlope: 0.1682884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 3.5294282 + inSlope: 0.21871749 + outSlope: 0.21871749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 3.5450082 + inSlope: 0.23255461 + outSlope: 0.23255461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 3.5605078 + inSlope: 0.21190187 + outSlope: 0.21190187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 3.5738564 + inSlope: 0.1641817 + outSlope: 0.1641817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 3.5834448 + inSlope: 0.09803008 + outSlope: 0.09803008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.5882797 + inSlope: 0.022538142 + outSlope: 0.022538142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 3.5880673 + inSlope: -0.051718533 + outSlope: -0.051718533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 3.5749116 + inSlope: -0.1528476 + outSlope: -0.1528476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 3.5646372 + inSlope: -0.1643984 + outSlope: -0.1643984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 3.5545256 + inSlope: -0.14382152 + outSlope: -0.14382152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 3.546559 + inSlope: -0.06400616 + outSlope: -0.06400616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 3.546548 + inSlope: 0.07589286 + outSlope: 0.07589286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 3.5560708 + inSlope: 0.17430219 + outSlope: 0.17430219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 3.5691967 + inSlope: 0.18177877 + outSlope: 0.18177877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 3.580602 + inSlope: 0.12321212 + outSlope: 0.12321212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000021053218 + inSlope: 0.00009568263 + outSlope: 0.00009568263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000013349523 + inSlope: 19.952211 + outSlope: 19.952211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 2.6342278 + inSlope: 43.43776 + outSlope: 43.43776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.7352166 + inSlope: 47.854954 + outSlope: 47.854954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 8.952938 + inSlope: 46.97174 + outSlope: 46.97174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.937353 + inSlope: 40.787533 + outSlope: 40.787533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 14.338378 + inSlope: 29.300322 + outSlope: 29.300322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 15.80589 + inSlope: 12.508451 + outSlope: 12.508451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 15.989745 + inSlope: -5.369582 + outSlope: -5.369582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 15.096983 + inSlope: -17.839025 + outSlope: -17.839025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 13.634613 + inSlope: -25.71082 + outSlope: -25.71082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 11.702489 + inSlope: -32.07026 + outSlope: -32.07026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.400462 + inSlope: -36.916565 + outSlope: -36.916565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.828371 + inSlope: -40.250435 + outSlope: -40.250435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 4.086046 + inSlope: -42.072903 + outSlope: -42.072903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.2732989 + inSlope: -42.38344 + outSlope: -42.38344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.5100588 + inSlope: -41.18224 + outSlope: -41.18224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -6.582248 + inSlope: -34.245342 + outSlope: -34.245342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -8.685677 + inSlope: -28.529472 + outSlope: -28.529472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -10.348876 + inSlope: -21.259405 + outSlope: -21.259405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -11.492438 + inSlope: -8.673067 + outSlope: -8.673067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -11.493976 + inSlope: 10.455053 + outSlope: 10.455053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -10.112214 + inSlope: 27.812803 + outSlope: 27.812803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.8219995 + inSlope: 38.29512 + outSlope: 38.29512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -5.056054 + inSlope: 41.89221 + outSlope: 41.89221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone02/Bone04 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6001942 + inSlope: -0.00022530578 + outSlope: -0.00022530578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.60019505 + inSlope: -0.16093805 + outSlope: -0.16093805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5787189 + inSlope: -0.68109936 + outSlope: -0.68109936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.5089599 + inSlope: -1.478478 + outSlope: -1.478478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.38116363 + inSlope: -2.112082 + outSlope: -2.112082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22824845 + inSlope: -2.351413 + outSlope: -2.351413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.068770625 + inSlope: -2.3757627 + outSlope: -2.3757627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.08796443 + inSlope: -2.2605512 + outSlope: -2.2605512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.23270859 + inSlope: -2.0127041 + outSlope: -2.0127041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.35698512 + inSlope: -1.6476861 + outSlope: -1.6476861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4534516 + inSlope: -1.1835004 + outSlope: -1.1835004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.51576734 + inSlope: -0.6294292 + outSlope: -0.6294292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.53794074 + inSlope: -0.07519849 + outSlope: -0.07519849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.525861 + inSlope: 0.34869823 + outSlope: 0.34869823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.49131688 + inSlope: 0.6680678 + outSlope: 0.6680678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.43669832 + inSlope: 0.95337796 + outSlope: 0.95337796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.3643559 + inSlope: 1.2012378 + outSlope: 1.2012378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.27679446 + inSlope: 1.4062527 + outSlope: 1.4062527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.17714465 + inSlope: 1.5719745 + outSlope: 1.5719745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.067562744 + inSlope: 1.6835135 + outSlope: 1.6835135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.047143143 + inSlope: 1.7430012 + outSlope: 1.7430012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.16473243 + inSlope: 1.7455202 + outSlope: 1.7455202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.28004056 + inSlope: 1.6934431 + outSlope: 1.6934431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.3909054 + inSlope: 1.5522481 + outSlope: 1.5522481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.48784953 + inSlope: 1.2073251 + outSlope: 1.2073251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.5528671 + inSlope: 0.9642577 + outSlope: 0.9642577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 88.58583 + inSlope: -0.00068664615 + outSlope: -0.00068664615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 88.58583 + inSlope: -0.06660468 + outSlope: -0.06660468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 88.57692 + inSlope: -0.27259853 + outSlope: -0.27259853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 88.55051 + inSlope: -0.5012499 + outSlope: -0.5012499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 88.51178 + inSlope: -0.5053716 + outSlope: -0.5053716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 88.48081 + inSlope: -0.31208068 + outSlope: -0.31208068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 88.46531 + inSlope: -0.06626135 + outSlope: -0.06626135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 88.466286 + inSlope: 0.16719835 + outSlope: 0.16719835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 88.48149 + inSlope: 0.33851656 + outSlope: 0.33851656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 88.505806 + inSlope: 0.4143895 + outSlope: 0.4143895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 88.5322 + inSlope: 0.37731206 + outSlope: 0.37731206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 88.55291 + inSlope: 0.22830985 + outSlope: 0.22830985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 88.561005 + inSlope: 0.02883914 + outSlope: 0.02883914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 88.55656 + inSlope: -0.12668622 + outSlope: -0.12668622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 88.544426 + inSlope: -0.22213003 + outSlope: -0.22213003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 88.52712 + inSlope: -0.27431417 + outSlope: -0.27431417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 88.50759 + inSlope: -0.2811816 + outSlope: -0.2811816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 88.4889 + inSlope: -0.24341607 + outSlope: -0.24341607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 88.47401 + inSlope: -0.1637651 + outSlope: -0.1637651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 88.46525 + inSlope: -0.053901725 + outSlope: -0.053901725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 88.464485 + inSlope: 0.07518776 + outSlope: 0.07518776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 88.47262 + inSlope: 0.21045704 + outSlope: 0.21045704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 88.489494 + inSlope: 0.33542544 + outSlope: 0.33542544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 88.51431 + inSlope: 0.4284672 + outSlope: 0.4284672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 88.54327 + inSlope: 0.4164509 + outSlope: 0.4164509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 88.566666 + inSlope: 0.3810886 + outSlope: 0.3810886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 22.992592 + inSlope: -0.00034332307 + outSlope: -0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 22.992598 + inSlope: -6.5038266 + outSlope: -6.5038266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 22.125391 + inSlope: -27.366026 + outSlope: -27.366026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 19.343582 + inSlope: -58.210907 + outSlope: -58.210907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 14.362606 + inSlope: -80.97601 + outSlope: -80.97601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 8.542401 + inSlope: -88.4344 + outSlope: -88.4344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 2.5650733 + inSlope: -88.63204 + outSlope: -88.63204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -3.2818136 + inSlope: -84.524124 + outSlope: -84.524124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -8.710696 + inSlope: -76.10705 + outSlope: -76.10705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -13.433969 + inSlope: -63.378887 + outSlope: -63.378887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -17.163967 + inSlope: -46.332996 + outSlope: -46.332996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -19.612967 + inSlope: -24.966883 + outSlope: -24.966883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -20.493237 + inSlope: -3.0001287 + outSlope: -3.0001287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -20.01297 + inSlope: 13.840727 + outSlope: 13.840727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -18.647814 + inSlope: 26.262241 + outSlope: 26.262241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -16.511236 + inSlope: 36.98014 + outSlope: 36.98014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -13.716718 + inSlope: 45.995552 + outSlope: 45.995552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -10.377724 + inSlope: 53.21542 + outSlope: 53.21542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -6.6200433 + inSlope: 58.919155 + outSlope: 58.919155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.5201018 + inSlope: 62.81947 + outSlope: 62.81947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 1.7580632 + inSlope: 65.03883 + outSlope: 65.03883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.154224 + inSlope: 65.54984 + outSlope: 65.54984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 10.500658 + inSlope: 64.35972 + outSlope: 64.35972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 14.737992 + inSlope: 60.06433 + outSlope: 60.06433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 18.51135 + inSlope: 47.618996 + outSlope: 47.618996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 21.088465 + inSlope: 38.650196 + outSlope: 38.650196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone05 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000016284295 + inSlope: -0.0000007400884 + outSlope: -0.0000007400884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000017884418 + inSlope: 1.0721229 + outSlope: 1.0721229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14144458 + inSlope: 2.3365383 + outSlope: 2.3365383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.30844077 + inSlope: 2.5672853 + outSlope: 2.5672853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.48062202 + inSlope: 2.491647 + outSlope: 2.491647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.63805515 + inSlope: 2.1237295 + outSlope: 2.1237295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.7619159 + inSlope: 1.4813302 + outSlope: 1.4813302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.83457464 + inSlope: 0.57927626 + outSlope: 0.57927626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.8387343 + inSlope: -0.37398958 + outSlope: -0.37398958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.78502554 + inSlope: -1.0557792 + outSlope: -1.0557792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6993517 + inSlope: -1.5032697 + outSlope: -1.5032697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5866264 + inSlope: -1.8759698 + outSlope: -1.8759698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.45201015 + inSlope: -2.1656988 + outSlope: -2.1656988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.30107012 + inSlope: -2.3674977 + outSlope: -2.3674977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.13980658 + inSlope: -2.4759808 + outSlope: -2.4759808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.025444062 + inSlope: -2.4857824 + outSlope: -2.4857824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.18819258 + inSlope: -2.3964016 + outSlope: -2.3964016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.4803568 + inSlope: -1.9405936 + outSlope: -1.9405936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.59865826 + inSlope: -1.5848349 + outSlope: -1.5848349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.69010377 + inSlope: -1.1486542 + outSlope: -1.1486542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.7507341 + inSlope: -0.40353024 + outSlope: -0.40353024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.74363697 + inSlope: 0.7350847 + outSlope: 0.7350847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.65332913 + inSlope: 1.79305 + outSlope: 1.79305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.50681233 + inSlope: 2.4587054 + outSlope: 2.4587054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.32922292 + inSlope: 2.706625 + outSlope: 2.706625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.1079208 + inSlope: -0.00021129508 + outSlope: -0.00021129508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.1079209 + inSlope: 0.0046484917 + outSlope: 0.0046484917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.1041374 + inSlope: 0.14753814 + outSlope: 0.14753814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -1.0898817 + inSlope: 0.3297395 + outSlope: 0.3297395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.0639033 + inSlope: 0.48749566 + outSlope: 0.48749566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.0298351 + inSlope: 0.5487333 + outSlope: 0.5487333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.995843 + inSlope: 0.45600998 + outSlope: 0.45600998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.9728458 + inSlope: 0.19446732 + outSlope: 0.19446732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.97145903 + inSlope: -0.1244528 + outSlope: -0.1244528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.9887778 + inSlope: -0.32278574 + outSlope: -0.32278574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.0138214 + inSlope: -0.40166652 + outSlope: -0.40166652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.0420703 + inSlope: -0.41045964 + outSlope: -0.41045964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.0690261 + inSlope: -0.3552737 + outSlope: -0.3552737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.0907366 + inSlope: -0.24790873 + outSlope: -0.24790873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -1.1042248 + inSlope: -0.10507867 + outSlope: -0.10507867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.1077985 + inSlope: 0.04901504 + outSlope: 0.04901504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.1012198 + inSlope: 0.19454859 + outSlope: 0.19454859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.0639528 + inSlope: 0.37462616 + outSlope: 0.37462616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.039306 + inSlope: 0.37930718 + outSlope: 0.37930718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -1.016339 + inSlope: 0.31608117 + outSlope: 0.31608117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.99917966 + inSlope: 0.120137505 + outSlope: 0.120137505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -1.0012693 + inSlope: -0.21276872 + outSlope: -0.21276872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -1.0259919 + inSlope: -0.44215932 + outSlope: -0.44215932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -1.0589294 + inSlope: -0.45353675 + outSlope: -0.45353675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.0873597 + inSlope: -0.3084583 + outSlope: -0.3084583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000021865217 + inSlope: -0.000099373014 + outSlope: -0.000099373014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000074215575 + inSlope: 23.208706 + outSlope: 23.208706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.0642333 + inSlope: 50.697926 + outSlope: 50.697926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.694099 + inSlope: 56.0503 + outSlope: 56.0503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 10.465478 + inSlope: 54.98158 + outSlope: 54.98158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 13.954226 + inSlope: 47.48951 + outSlope: 47.48951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 16.736074 + inSlope: 33.571167 + outSlope: 33.571167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 18.386679 + inSlope: 13.221654 + outSlope: 13.221654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 18.481646 + inSlope: -8.538228 + outSlope: -8.538228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 17.259438 + inSlope: -23.900486 + outSlope: -23.900486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.326264 + inSlope: -33.705315 + outSlope: -33.705315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 12.809383 + inSlope: -41.58235 + outSlope: -41.58235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.836028 + inSlope: -47.531162 + outSlope: -47.531162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.5334177 + inSlope: -51.554134 + outSlope: -51.554134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 3.0287073 + inSlope: -53.65143 + outSlope: -53.65143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.5509702 + inSlope: -53.82359 + outSlope: -53.82359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -4.078491 + inSlope: -52.07143 + outSlope: -52.07143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -10.45965 + inSlope: -42.791523 + outSlope: -42.791523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.076747 + inSlope: -35.28801 + outSlope: -35.28801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -15.118713 + inSlope: -25.803051 + outSlope: -25.803051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.48338 + inSlope: -9.123613 + outSlope: -9.123613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -16.323153 + inSlope: 16.573595 + outSlope: 16.573595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -14.295324 + inSlope: 39.99402 + outSlope: 39.99402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -11.042779 + inSlope: 54.132847 + outSlope: 54.132847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -7.147428 + inSlope: 58.984634 + outSlope: 58.984634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone05/Bone03 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.92765385 + inSlope: -0.00019043701 + outSlope: -0.00019043701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.9276493 + inSlope: -1.9971613 + outSlope: -1.9971613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.1934048 + inSlope: -4.435064 + outSlope: -4.435064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -1.5190967 + inSlope: -4.968881 + outSlope: -4.968881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.8567412 + inSlope: -4.794582 + outSlope: -4.794582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.1600013 + inSlope: -3.9476361 + outSlope: -3.9476361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -2.3849564 + inSlope: -2.4605966 + outSlope: -2.4605966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -2.4895573 + inSlope: -0.34632716 + outSlope: -0.34632716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.4313521 + inSlope: 1.9611259 + outSlope: 1.9611259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -2.227398 + inSlope: 3.7303636 + outSlope: 3.7303636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.9340297 + inSlope: 4.96759 + outSlope: 4.96759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.5657275 + inSlope: 5.9776087 + outSlope: 5.9776087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -1.1382097 + inSlope: 6.73786 + outSlope: 6.73786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.66879976 + inSlope: 7.2245207 + outSlope: 7.2245207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.17630666 + inSlope: 7.418136 + outSlope: 7.418136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3195008 + inSlope: 7.3115163 + outSlope: 7.3115163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7986636 + inSlope: 6.910257 + outSlope: 6.910257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 1.2418396 + inSlope: 6.220875 + outSlope: 6.220875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 1.6298285 + inSlope: 5.291682 + outSlope: 5.291682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 1.9494127 + inSlope: 4.1235085 + outSlope: 4.1235085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 2.181472 + inSlope: 2.7267041 + outSlope: 2.7267041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 2.3143232 + inSlope: 0.21321437 + outSlope: 0.21321437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 2.210121 + inSlope: -3.8324912 + outSlope: -3.8324912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 1.8009464 + inSlope: -7.7116 + outSlope: -7.7116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 1.1820259 + inSlope: -10.195494 + outSlope: -10.195494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.44482777 + inSlope: -11.112154 + outSlope: -11.112154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -82.93532 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -82.935326 + inSlope: -0.26779202 + outSlope: -0.26779202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -82.97514 + inSlope: -0.78140336 + outSlope: -0.78140336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -83.038 + inSlope: -1.1206025 + outSlope: -1.1206025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -83.11997 + inSlope: -1.3279737 + outSlope: -1.3279737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -83.20869 + inSlope: -1.2778485 + outSlope: -1.2778485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -83.28406 + inSlope: -0.88165367 + outSlope: -0.88165367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -83.321976 + inSlope: -0.12908947 + outSlope: -0.12908947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -83.30065 + inSlope: 0.70175236 + outSlope: 0.70175236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -83.23039 + inSlope: 1.1975067 + outSlope: 1.1975067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -83.1412 + inSlope: 1.3520063 + outSlope: 1.3520063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -83.048294 + inSlope: 1.2812817 + outSlope: 1.2812817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -82.96603 + inSlope: 1.0121164 + outSlope: 1.0121164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -82.90629 + inSlope: 0.5960089 + outSlope: 0.5960089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -82.87716 + inSlope: 0.096817106 + outSlope: 0.096817106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -82.88212 + inSlope: -0.4099263 + outSlope: -0.4099263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -82.91967 + inSlope: -0.85144126 + outSlope: -0.85144126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -82.9835 + inSlope: -1.1590587 + outSlope: -1.1590587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -83.06297 + inSlope: -1.2847149 + outSlope: -1.2847149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -83.14553 + inSlope: -1.197511 + outSlope: -1.197511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -83.21551 + inSlope: -0.88714683 + outSlope: -0.88714683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -83.2595 + inSlope: -0.07278449 + outSlope: -0.07278449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -83.22476 + inSlope: 1.2181059 + outSlope: 1.2181059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -83.10522 + inSlope: 1.9047564 + outSlope: 1.9047564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -82.97322 + inSlope: 1.5394607 + outSlope: 1.5394607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -82.88882 + inSlope: 0.4998784 + outSlope: 0.4998784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.442732 + inSlope: 0.00008583077 + outSlope: 0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.442734 + inSlope: 16.127945 + outSlope: 16.127945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 9.593363 + inSlope: 36.042316 + outSlope: 36.042316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 12.248694 + inSlope: 40.778095 + outSlope: 40.778095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.030942 + inSlope: 39.84758 + outSlope: 39.84758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 17.561907 + inSlope: 33.239082 + outSlope: 33.239082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 19.462814 + inSlope: 20.945454 + outSlope: 20.945454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 20.354437 + inSlope: 2.9612474 + outSlope: 2.9612474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 19.857672 + inSlope: -16.690565 + outSlope: -16.690565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 18.12916 + inSlope: -31.384167 + outSlope: -31.384167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.6728325 + inSlope: -41.230183 + outSlope: -41.230183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 12.630991 + inSlope: -48.943882 + outSlope: -48.943882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 9.145648 + inSlope: -54.53082 + outSlope: -54.53082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.358423 + inSlope: -57.996624 + outSlope: -57.996624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.4105654 + inSlope: -59.34876 + outSlope: -59.34876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.5569248 + inSlope: -58.58813 + outSlope: -58.58813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -6.4030924 + inSlope: -55.713055 + outSlope: -55.713055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.986831 + inSlope: -50.651184 + outSlope: -50.651184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -13.157552 + inSlope: -43.601818 + outSlope: -43.601818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -15.800928 + inSlope: -34.38681 + outSlope: -34.38681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -17.742485 + inSlope: -22.971403 + outSlope: -22.971403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -18.863688 + inSlope: -1.8095701 + outSlope: -1.8095701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -17.983671 + inSlope: 32.213116 + outSlope: 32.213116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.568885 + inSlope: 63.605022 + outSlope: 63.605022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -9.501106 + inSlope: 82.51736 + outSlope: 82.51736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -3.561053 + inSlope: 88.99495 + outSlope: 88.99495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone06 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11568816 + inSlope: -0.00017903763 + outSlope: -0.00017903763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11568816 + inSlope: 0.20032164 + outSlope: 0.20032164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08882445 + inSlope: 0.43272388 + outSlope: 0.43272388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.05806451 + inSlope: 0.481554 + outSlope: 0.481554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.024787063 + inSlope: 0.50773704 + outSlope: 0.50773704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.009522857 + inSlope: 0.5108029 + outSlope: 0.5108029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.043330535 + inSlope: 0.4918378 + outSlope: 0.4918378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.07512468 + inSlope: 0.45018506 + outSlope: 0.45018506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10348019 + inSlope: 0.388863 + outSlope: 0.388863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12709701 + inSlope: 0.30869463 + outSlope: 0.30869463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14479877 + inSlope: 0.21249487 + outSlope: 0.21249487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15548623 + inSlope: 0.0989146 + outSlope: 0.0989146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.15804832 + inSlope: -0.022559412 + outSlope: -0.022559412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.15249033 + inSlope: -0.13362578 + outSlope: -0.13362578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.1401887 + inSlope: -0.22893213 + outSlope: -0.22893213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.12198668 + inSlope: -0.31071934 + outSlope: -0.31071934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.09873886 + inSlope: -0.38036743 + outSlope: -0.38036743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.07136855 + inSlope: -0.4341042 + outSlope: -0.4341042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.04099776 + inSlope: -0.47229522 + outSlope: -0.47229522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.008450291 + inSlope: -0.49287343 + outSlope: -0.49287343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.024680087 + inSlope: -0.49477372 + outSlope: -0.49477372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.057583246 + inSlope: -0.4794331 + outSlope: -0.4794331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.08865914 + inSlope: -0.445381 + outSlope: -0.445381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.11717208 + inSlope: -0.39688885 + outSlope: -0.39688885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -0.1417558 + inSlope: -0.3336356 + outSlope: -0.3336356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.16181134 + inSlope: -0.2969966 + outSlope: -0.2969966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.572368 + inSlope: -0.00019311924 + outSlope: -0.00019311924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -7.572369 + inSlope: -0.05096202 + outSlope: -0.05096202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -7.5784674 + inSlope: -0.08003719 + outSlope: -0.08003719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.5834246 + inSlope: -0.055403564 + outSlope: -0.055403564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -7.5864215 + inSlope: -0.02147915 + outSlope: -0.02147915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.5869875 + inSlope: 0.016350761 + outSlope: 0.016350761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -7.58505 + inSlope: 0.05207782 + outSlope: 0.05207782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -7.5809393 + inSlope: 0.079264715 + outSlope: 0.079264715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -7.575352 + inSlope: 0.093577 + outSlope: 0.093577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.5692654 + inSlope: 0.09089446 + outSlope: 0.09089446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -7.563814 + inSlope: 0.07149703 + outSlope: 0.07149703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -7.560143 + inSlope: 0.035383735 + outSlope: 0.035383735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -7.5592184 + inSlope: -0.008282669 + outSlope: -0.008282669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -7.5612025 + inSlope: -0.04602675 + outSlope: -0.04602675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -7.565309 + inSlope: -0.07134683 + outSlope: -0.07134683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -7.570696 + inSlope: -0.082311414 + outSlope: -0.082311414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -7.576417 + inSlope: -0.07960804 + outSlope: -0.07960804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -7.581541 + inSlope: -0.06325728 + outSlope: -0.06325728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -7.5852647 + inSlope: -0.03645662 + outSlope: -0.03645662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -7.587009 + inSlope: -0.0032830269 + outSlope: -0.0032830269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -7.586427 + inSlope: 0.03233674 + outSlope: 0.03233674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -7.5834837 + inSlope: 0.066046774 + outSlope: 0.066046774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -7.5785 + inSlope: 0.09170985 + outSlope: 0.09170985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -7.5719814 + inSlope: 0.10874759 + outSlope: 0.10874759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -7.5648036 + inSlope: 0.11052857 + outSlope: 0.11052857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -7.557826 + inSlope: 0.11376869 + outSlope: 0.11376869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.499555 + inSlope: -0.00012874615 + outSlope: -0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -14.499555 + inSlope: 25.618639 + outSlope: 25.618639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -11.083426 + inSlope: 54.590042 + outSlope: 54.590042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -7.2195325 + inSlope: 60.043064 + outSlope: 60.043064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.0757897 + inSlope: 62.979156 + outSlope: 62.979156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.1798946 + inSlope: 63.398335 + outSlope: 63.398335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.3796096 + inSlope: 61.30027 + outSlope: 61.30027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 9.355441 + inSlope: 56.685257 + outSlope: 56.685257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 12.939479 + inSlope: 49.55341 + outSlope: 49.55341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 15.963813 + inSlope: 39.90194 + outSlope: 39.90194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 18.26052 + inSlope: 27.731236 + outSlope: 27.731236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 19.661686 + inSlope: 13.040612 + outSlope: 13.040612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 19.999393 + inSlope: -2.9554968 + outSlope: -2.9554968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 19.26764 + inSlope: -17.549303 + outSlope: -17.549303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 17.659487 + inSlope: -29.714012 + outSlope: -29.714012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 15.305616 + inSlope: -39.91726 + outSlope: -39.91726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 12.336699 + inSlope: -48.159904 + outSlope: -48.159904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 8.8834095 + inSlope: -54.349503 + outSlope: -54.349503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 5.0887427 + inSlope: -58.76376 + outSlope: -58.76376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 1.0464272 + inSlope: -61.122257 + outSlope: -61.122257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.0630338 + inSlope: -61.53175 + outSlope: -61.53175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -7.1599536 + inSlope: -59.985603 + outSlope: -59.985603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -11.063153 + inSlope: -56.4649 + outSlope: -56.4649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.69036 + inSlope: -51.012703 + outSlope: -51.012703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -17.866241 + inSlope: -43.56152 + outSlope: -43.56152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -20.4994 + inSlope: -39.489964 + outSlope: -39.489964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone06/Bone07 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.335208 + inSlope: 0.00012874615 + outSlope: 0.00012874615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -4.3352056 + inSlope: -4.3279095 + outSlope: -4.3279095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.910505 + inSlope: -12.500501 + outSlope: -12.500501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -5.9996743 + inSlope: -4.687266 + outSlope: -4.687266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -5.5446916 + inSlope: 17.580824 + outSlope: 17.580824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -3.650057 + inSlope: 31.3606 + outSlope: 31.3606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -1.3657297 + inSlope: 36.473587 + outSlope: 36.473587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 1.2106947 + inSlope: 40.041027 + outSlope: 40.041027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 3.973511 + inSlope: 41.962997 + outSlope: 41.962997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 6.811616 + inSlope: 42.19902 + outSlope: 42.19902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 9.613216 + inSlope: 40.790386 + outSlope: 40.790386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 12.271651 + inSlope: 37.869267 + outSlope: 37.869267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 14.691246 + inSlope: 33.64875 + outSlope: 33.64875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.791975 + inSlope: 28.387411 + outSlope: 28.387411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 18.511438 + inSlope: 22.34441 + outSlope: 22.34441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 19.802881 + inSlope: 15.700366 + outSlope: 15.700366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 20.628422 + inSlope: 8.493641 + outSlope: 8.493641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 20.947666 + inSlope: -0.25148416 + outSlope: -0.25148416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 20.594124 + inSlope: -10.891925 + outSlope: -10.891925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 19.483711 + inSlope: -21.703856 + outSlope: -21.703856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 17.696396 + inSlope: -31.628983 + outSlope: -31.628983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 15.278751 + inSlope: -40.26579 + outSlope: -40.26579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 12.357763 + inSlope: -47.11981 + outSlope: -47.11981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 9.033973 + inSlope: -51.568115 + outSlope: -51.568115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.5208592 + inSlope: -53.185574 + outSlope: -53.185574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 1.9717581 + inSlope: -53.55781 + outSlope: -53.55781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.634371 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 4.6343703 + inSlope: 1.7110579 + outSlope: 1.7110579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.8670807 + inSlope: 4.9397326 + outSlope: 4.9397326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.2995353 + inSlope: 4.0248694 + outSlope: 4.0248694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 5.3854485 + inSlope: -1.0909091 + outSlope: -1.0909091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 5.190381 + inSlope: -2.1531937 + outSlope: -2.1531937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 5.079392 + inSlope: -0.24240756 + outSlope: -0.24240756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 5.122217 + inSlope: 2.579987 + outSlope: 2.579987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.3711066 + inSlope: 5.995215 + outSlope: 5.995215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.855114 + inSlope: 9.6179905 + outSlope: 9.6179905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 6.576231 + inSlope: 13.018897 + outSlope: 13.018897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.507041 + inSlope: 15.745183 + outSlope: 15.745183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.59013 + inSlope: 17.3579 + outSlope: 17.3579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 9.739911 + inSlope: 17.471153 + outSlope: 17.471153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 10.8477 + inSlope: 15.806681 + outSlope: 15.806681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 11.790353 + inSlope: 12.2507105 + outSlope: 12.2507105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 12.442288 + inSlope: 6.8919964 + outSlope: 6.8919964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 12.690076 + inSlope: -0.7016236 + outSlope: -0.7016236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 12.3494 + inSlope: -9.762907 + outSlope: -9.762907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 11.406214 + inSlope: -17.05466 + outSlope: -17.05466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.084076 + inSlope: -20.934467 + outSlope: -20.934467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 8.598541 + inSlope: -21.371176 + outSlope: -21.371176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.1803837 + inSlope: -18.99986 + outSlope: -18.99986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 5.9805245 + inSlope: -14.5800085 + outSlope: -14.5800085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 5.120642 + inSlope: -9.167006 + outSlope: -9.167006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 4.631307 + inSlope: -3.7500107 + outSlope: -3.7500107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.040922 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -20.040922 + inSlope: -7.929476 + outSlope: -7.929476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -21.099514 + inSlope: -22.942392 + outSlope: -22.942392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -23.101936 + inSlope: -10.329525 + outSlope: -10.329525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -22.470173 + inSlope: 27.97963 + outSlope: 27.97963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -19.377361 + inSlope: 50.953094 + outSlope: 50.953094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -15.670274 + inSlope: 59.075645 + outSlope: 59.075645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -11.492939 + inSlope: 65.13886 + outSlope: 65.13886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -6.9791102 + inSlope: 69.272964 + outSlope: 69.272964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -2.255945 + inSlope: 71.52466 + outSlope: 71.52466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.549717 + inSlope: 71.82988 + outSlope: 71.82988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.3038554 + inSlope: 70.014244 + outSlope: 70.014244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 11.858391 + inSlope: 65.81675 + outSlope: 65.81675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.046734 + inSlope: 58.943253 + outSlope: 58.943253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 19.683237 + inSlope: 49.13391 + outSlope: 49.13391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 22.567158 + inSlope: 36.226463 + outSlope: 36.226463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 24.490852 + inSlope: 20.215893 + outSlope: 20.215893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 25.250883 + inSlope: -0.68106717 + outSlope: -0.68106717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 24.40057 + inSlope: -25.743567 + outSlope: -25.743567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 21.829468 + inSlope: -48.51979 + outSlope: -48.51979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 17.934656 + inSlope: -65.82713 + outSlope: -65.82713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 13.038016 + inSlope: -77.653114 + outSlope: -77.653114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.543508 + inSlope: -84.74855 + outSlope: -84.74855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 1.6870676 + inSlope: -87.63505 + outSlope: -87.63505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -4.1980205 + inSlope: -86.94831 + outSlope: -86.94831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -9.953589 + inSlope: -85.808495 + outSlope: -85.808495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone06/Bone07/Bone19 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.4465699 + inSlope: -0.0009655962 + outSlope: -0.0009655962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.4465226 + inSlope: 2.3337011 + outSlope: 2.3337011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 1.757122 + inSlope: 5.217309 + outSlope: 5.217309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 2.1422536 + inSlope: 5.886779 + outSlope: 5.886779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 2.5429008 + inSlope: 5.685055 + outSlope: 5.685055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.9018447 + inSlope: 4.646331 + outSlope: 4.646331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.164335 + inSlope: 2.8064194 + outSlope: 2.8064194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 3.2774105 + inSlope: 0.17277734 + outSlope: 0.17277734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 3.187449 + inSlope: -2.720256 + outSlope: -2.720256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 2.9139247 + inSlope: -4.959606 + outSlope: -4.959606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.5262716 + inSlope: -6.533256 + outSlope: -6.533256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 2.0436718 + inSlope: -7.8072205 + outSlope: -7.8072205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.4867609 + inSlope: -8.755672 + outSlope: -8.755672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.8779928 + inSlope: -9.3508415 + outSlope: -9.3508415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.24148034 + inSlope: -9.572984 + outSlope: -9.572984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3976155 + inSlope: -9.414483 + outSlope: -9.414483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.0139513 + inSlope: -8.881554 + outSlope: -8.881554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -1.582897 + inSlope: -7.980384 + outSlope: -7.980384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -2.0798037 + inSlope: -6.767574 + outSlope: -6.767574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.487416 + inSlope: -5.2409663 + outSlope: -5.2409663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -2.780677 + inSlope: -3.4123204 + outSlope: -3.4123204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -2.9438214 + inSlope: -0.07877119 + outSlope: -0.07877119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -2.7912502 + inSlope: 5.3238063 + outSlope: 5.3238063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -2.231132 + inSlope: 10.491589 + outSlope: 10.491589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.392724 + inSlope: 13.767642 + outSlope: 13.767642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.39919767 + inSlope: 14.950909 + outSlope: 14.950909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 80.272446 + inSlope: -0.0020599384 + outSlope: -0.0020599384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 80.27234 + inSlope: 0.34881625 + outSlope: 0.34881625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 80.32315 + inSlope: 0.9709177 + outSlope: 0.9709177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 80.40035 + inSlope: 1.3434184 + outSlope: 1.3434184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 80.497765 + inSlope: 1.549417 + outSlope: 1.549417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 80.60029 + inSlope: 1.4512267 + outSlope: 1.4512267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 80.6847 + inSlope: 0.9554681 + outSlope: 0.9554681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 80.72357 + inSlope: 0.06042486 + outSlope: 0.06042486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 80.69251 + inSlope: -0.91495603 + outSlope: -0.91495603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 80.604004 + inSlope: -1.4941367 + outSlope: -1.4941367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 80.493355 + inSlope: -1.6688935 + outSlope: -1.6688935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 80.379074 + inSlope: -1.5703598 + outSlope: -1.5703598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 80.27835 + inSlope: -1.2373364 + outSlope: -1.2373364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 80.20529 + inSlope: -0.7319648 + outSlope: -0.7319648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 80.169334 + inSlope: -0.13011944 + outSlope: -0.13011944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 80.17436 + inSlope: 0.4758441 + outSlope: 0.4758441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 80.21831 + inSlope: 1.0004435 + outSlope: 1.0004435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 80.293396 + inSlope: 1.3636793 + outSlope: 1.3636793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 80.38675 + inSlope: 1.5065017 + outSlope: 1.5065017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 80.4832 + inSlope: 1.393205 + outSlope: 1.393205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 80.56403 + inSlope: 1.0117731 + outSlope: 1.0117731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 80.61325 + inSlope: 0.024719262 + outSlope: 0.024719262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 80.56715 + inSlope: -1.5260656 + outSlope: -1.5260656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 80.42046 + inSlope: -2.288935 + outSlope: -2.288935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 80.26462 + inSlope: -1.7330949 + outSlope: -1.7330949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 80.17449 + inSlope: -0.3512195 + outSlope: -0.3512195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.376915 + inSlope: 0.00034332307 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 8.3769245 + inSlope: 13.627094 + outSlope: 13.627094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 10.194129 + inSlope: 30.643345 + outSlope: 30.643345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 12.462975 + inSlope: 34.885963 + outSlope: 34.885963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 14.845779 + inSlope: 34.0604 + outSlope: 34.0604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 17.004261 + inSlope: 28.153694 + outSlope: 28.153694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 18.599297 + inSlope: 17.154139 + outSlope: 17.154139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 19.291193 + inSlope: 1.0597525 + outSlope: 1.0597525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 18.74049 + inSlope: -16.604992 + outSlope: -16.604992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 17.077349 + inSlope: -29.954231 + outSlope: -29.954231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 14.746364 + inSlope: -38.971073 + outSlope: -38.971073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 11.880395 + inSlope: -45.998814 + outSlope: -45.998814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.611823 + inSlope: -51.046265 + outSlope: -51.046265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 5.0724196 + inSlope: -54.122887 + outSlope: -54.122887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.3933736 + inSlope: -55.237343 + outSlope: -55.237343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.294497 + inSlope: -54.391 + outSlope: -54.391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -5.8604383 + inSlope: -51.584507 + outSlope: -51.584507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -9.173449 + inSlope: -46.74541 + outSlope: -46.74541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -12.093618 + inSlope: -40.05456 + outSlope: -40.05456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -14.5141115 + inSlope: -31.345526 + outSlope: -31.345526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.272753 + inSlope: -20.583506 + outSlope: -20.583506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -17.258245 + inSlope: -0.47833487 + outSlope: -0.47833487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -16.336512 + inSlope: 32.020683 + outSlope: 32.020683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -12.989417 + inSlope: 62.035347 + outSlope: 62.035347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -8.063196 + inSlope: 80.0977 + outSlope: 80.0977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -2.303876 + inSlope: 86.2852 + outSlope: 86.2852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone20 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0107125 + inSlope: 0.0014108433 + outSlope: 0.0014108433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.0106322 + inSlope: 1.5592285 + outSlope: 1.5592285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.80154544 + inSlope: 3.3666825 + outSlope: 3.3666825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.5625468 + inSlope: 3.738134 + outSlope: 3.738134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.30401605 + inSlope: 3.9454663 + outSlope: 3.9454663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.037141915 + inSlope: 3.9812655 + outSlope: 3.9812655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.22646703 + inSlope: 3.8419614 + outSlope: 3.8419614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.4752693 + inSlope: 3.533311 + outSlope: 3.533311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.69824326 + inSlope: 3.0672002 + outSlope: 3.0672002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.8851755 + inSlope: 2.4562185 + outSlope: 2.4562185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.026682 + inSlope: 1.7100011 + outSlope: 1.7100011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.113927 + inSlope: 0.8319952 + outSlope: 0.8319952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 1.1380702 + inSlope: -0.106135115 + outSlope: -0.106135115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 1.0996588 + inSlope: -0.9600976 + outSlope: -0.9600976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 1.0099448 + inSlope: -1.6807327 + outSlope: -1.6807327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.875501 + inSlope: -2.3035743 + outSlope: -2.3035743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.70295876 + inSlope: -2.824248 + outSlope: -2.824248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.4993528 + inSlope: -3.2283258 + outSlope: -3.2283258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.27304697 + inSlope: -3.5234604 + outSlope: -3.5234604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.030053958 + inSlope: -3.6842797 + outSlope: -3.6842797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.21796583 + inSlope: -3.714338 + outSlope: -3.714338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.46524504 + inSlope: -3.6115537 + outSlope: -3.6115537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.7000519 + inSlope: -3.3826804 + outSlope: -3.3826804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -0.9170649 + inSlope: -3.0365102 + outSlope: -3.0365102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.1060458 + inSlope: -2.581913 + outSlope: -2.581913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -1.262492 + inSlope: -2.3231492 + outSlope: -2.3231492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.1850243 + inSlope: -0.0005149846 + outSlope: -0.0005149846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 6.184962 + inSlope: -0.42342466 + outSlope: -0.42342466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6.133468 + inSlope: -0.6928045 + outSlope: -0.6928045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 6.08973 + inSlope: -0.5180941 + outSlope: -0.5180941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 6.0599704 + inSlope: -0.27137545 + outSlope: -0.27137545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 6.0479436 + inSlope: 0.00753165 + outSlope: 0.00753165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 6.05453 + inSlope: 0.27349976 + outSlope: 0.27349976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 6.0776677 + inSlope: 0.48406407 + outSlope: 0.48406407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 6.112615 + inSlope: 0.6040126 + outSlope: 0.6040126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 6.1525493 + inSlope: 0.6087311 + outSlope: 0.6087311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 6.189434 + inSlope: 0.49112368 + outSlope: 0.49112368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 6.215116 + inSlope: 0.25828624 + outSlope: 0.25828624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 6.222626 + inSlope: -0.03366712 + outSlope: -0.03366712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 6.210756 + inSlope: -0.2877691 + outSlope: -0.2877691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 6.184757 + inSlope: -0.45541808 + outSlope: -0.45541808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 6.1502266 + inSlope: -0.5302606 + outSlope: -0.5302606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 6.1134834 + inSlope: -0.5082898 + outSlope: -0.5082898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 6.0807676 + inSlope: -0.39769688 + outSlope: -0.39769688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 6.057579 + inSlope: -0.21801016 + outSlope: -0.21801016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 6.0478506 + inSlope: 0.010342608 + outSlope: 0.010342608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 6.0539994 + inSlope: 0.2548101 + outSlope: 0.2548101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 6.0763836 + inSlope: 0.48623133 + outSlope: 0.48623133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 6.1129227 + inSlope: 0.6711942 + outSlope: 0.6711942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 6.160325 + inSlope: 0.7868536 + outSlope: 0.7868536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 6.2126775 + inSlope: 0.810221 + outSlope: 0.810221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 6.264155 + inSlope: 0.84000427 + outSlope: 0.84000427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.467784 + inSlope: -0.00021457692 + outSlope: -0.00021457692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -15.467794 + inSlope: 24.415335 + outSlope: 24.415335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -12.212382 + inSlope: 51.95281 + outSlope: 51.95281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -8.539448 + inSlope: 57.037605 + outSlope: 57.037605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -4.60567 + inSlope: 59.773365 + outSlope: 59.773365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.56762576 + inSlope: 60.163193 + outSlope: 60.163193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 3.4181666 + inSlope: 58.207016 + outSlope: 58.207016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 7.1951785 + inSlope: 53.903633 + outSlope: 53.903633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 10.6068125 + inSlope: 47.251514 + outSlope: 47.251514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 13.496366 + inSlope: 38.247555 + outSlope: 38.247555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.707025 + inSlope: 26.890738 + outSlope: 26.890738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 17.081911 + inSlope: 13.178027 + outSlope: 13.178027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 17.464144 + inSlope: -1.691982 + outSlope: -1.691982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 16.856318 + inSlope: -15.149217 + outSlope: -15.149217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 15.444209 + inSlope: -26.32786 + outSlope: -26.32786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 13.345786 + inSlope: -35.73667 + outSlope: -35.73667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 10.6790085 + inSlope: -43.375095 + outSlope: -43.375095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 7.5617957 + inSlope: -49.16101 + outSlope: -49.16101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 4.123156 + inSlope: -53.348392 + outSlope: -53.348392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.4473171 + inSlope: -55.682453 + outSlope: -55.682453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -3.302707 + inSlope: -56.260902 + outSlope: -56.260902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -7.055773 + inSlope: -55.077175 + outSlope: -55.077175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -10.64791 + inSlope: -52.115955 + outSlope: -52.115955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -14.00591 + inSlope: -47.412704 + outSlope: -47.412704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -16.970575 + inSlope: -40.906517 + outSlope: -40.906517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -19.460638 + inSlope: -37.347115 + outSlope: -37.347115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone20/Bone21 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.09759 + inSlope: 0.00023603461 + outSlope: 0.00023603461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 6.0975904 + inSlope: -1.4067234 + outSlope: -1.4067234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 5.908605 + inSlope: -3.035212 + outSlope: -3.035212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 5.6914053 + inSlope: -8.219082 + outSlope: -8.219082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 4.8181667 + inSlope: -17.44725 + outSlope: -17.44725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 3.3585246 + inSlope: -23.90371 + outSlope: -23.90371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 1.6344289 + inSlope: -27.38546 + outSlope: -27.38546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.28827265 + inSlope: -29.811956 + outSlope: -29.811956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.336687 + inSlope: -31.087133 + outSlope: -31.087133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -4.4324894 + inSlope: -31.158775 + outSlope: -31.158775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.4953065 + inSlope: -30.034998 + outSlope: -30.034998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -8.447084 + inSlope: -27.793291 + outSlope: -27.793291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -10.2165165 + inSlope: -24.570517 + outSlope: -24.570517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -11.742511 + inSlope: -20.537458 + outSlope: -20.537458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -12.97575 + inSlope: -15.868565 + outSlope: -15.868565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -13.877533 + inSlope: -10.690356 + outSlope: -10.690356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -14.415653 + inSlope: -5.0411844 + outSlope: -5.0411844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -14.557477 + inSlope: 1.9822187 + outSlope: 1.9822187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -14.1513815 + inSlope: 10.732237 + outSlope: 10.732237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -13.120118 + inSlope: 19.48294 + outSlope: 19.48294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -11.551281 + inSlope: 27.185524 + outSlope: 27.185524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -9.501668 + inSlope: 33.58408 + outSlope: 33.58408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -7.089179 + inSlope: 38.4084 + outSlope: 38.4084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: -4.3996887 + inSlope: 41.285286 + outSlope: 41.285286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -1.6023315 + inSlope: 41.994865 + outSlope: 41.994865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 1.1891338 + inSlope: 41.8064 + outSlope: 41.8064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.29626712 + inSlope: -0.00011131178 + outSlope: -0.00011131178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2962669 + inSlope: -0.7327534 + outSlope: -0.7327534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.2013055 + inSlope: -1.984927 + outSlope: -1.984927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.031670295 + inSlope: -0.3691015 + outSlope: -0.3691015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14056492 + inSlope: 3.2883055 + outSlope: 3.2883055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.44003117 + inSlope: 4.060906 + outSlope: 4.060906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.6962142 + inSlope: 2.8838496 + outSlope: 2.8838496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.851454 + inSlope: 0.9462735 + outSlope: 0.9462735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.86154526 + inSlope: -1.5059733 + outSlope: -1.5059733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7003842 + inSlope: -4.1702476 + outSlope: -4.1702476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.36296272 + inSlope: -6.714112 + outSlope: -6.714112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13333431 + inSlope: -8.801981 + outSlope: -8.801981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.74927765 + inSlope: -10.126891 + outSlope: -10.126891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -1.426363 + inSlope: -10.4348755 + outSlope: -10.4348755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -2.0915227 + inSlope: -9.56496 + outSlope: -9.56496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.6638021 + inSlope: -7.4707265 + outSlope: -7.4707265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -3.0626314 + inSlope: -4.238935 + outSlope: -4.238935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -3.2172637 + inSlope: 0.34785065 + outSlope: 0.34785065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -3.017656 + inSlope: 5.761723 + outSlope: 5.761723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -2.4616437 + inSlope: 9.971668 + outSlope: 9.971668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.6939036 + inSlope: 11.953592 + outSlope: 11.953592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: -0.85624033 + inSlope: 11.685733 + outSlope: 11.685733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09791563 + inSlope: 9.5779915 + outSlope: 9.5779915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.480369 + inSlope: 6.1410456 + outSlope: 6.1410456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.8036619 + inSlope: 2.1205108 + outSlope: 2.1205108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.8556092 + inSlope: -1.8904763 + outSlope: -1.8904763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + - serializedVersion: 2 + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.082533 + inSlope: -0.00008583077 + outSlope: -0.00008583077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -20.082537 + inSlope: -14.915242 + outSlope: -14.915242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -22.070848 + inSlope: -41.44519 + outSlope: -41.44519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -25.609037 + inSlope: -27.93756 + outSlope: -27.93756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -25.799082 + inSlope: 20.943136 + outSlope: 20.943136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -22.820196 + inSlope: 49.636536 + outSlope: 49.636536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -19.175999 + inSlope: 58.45024 + outSlope: 58.45024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -15.020213 + inSlope: 65.01694 + outSlope: 65.01694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.500405 + inSlope: 69.419624 + outSlope: 69.419624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -5.7598553 + inSlope: 71.693756 + outSlope: 71.693756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.94096285 + inSlope: 71.81559 + outSlope: 71.81559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 3.810646 + inSlope: 69.698364 + outSlope: 69.698364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 8.342363 + inSlope: 65.212074 + outSlope: 65.212074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 12.492238 + inSlope: 58.208153 + outSlope: 58.208153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 16.088787 + inSlope: 48.55704 + outSlope: 48.55704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 18.953125 + inSlope: 36.181316 + outSlope: 36.181316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 20.903145 + inSlope: 21.081068 + outSlope: 21.081068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 21.759031 + inSlope: 1.7235677 + outSlope: 1.7235677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 21.13373 + inSlope: -21.20784 + outSlope: -21.20784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 18.936914 + inSlope: -42.24084 + outSlope: -42.24084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 15.502476 + inSlope: -58.746872 + outSlope: -58.746872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 11.095445 + inSlope: -70.65593 + outSlope: -70.65593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 6.061808 + inSlope: -78.44331 + outSlope: -78.44331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.61049753 + inSlope: -82.320335 + outSlope: -82.320335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: -4.9409924 + inSlope: -82.60225 + outSlope: -82.60225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -10.4232025 + inSlope: -82.18262 + outSlope: -82.18262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Box01/Bone01/Bone20/Bone21/Bone22 + classID: 4 + script: {fileID: 0} + flags: 0 + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim.meta b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim.meta new file mode 100644 index 0000000000..ae96f8d99f --- /dev/null +++ b/Assets/ModelRenderer/Art/Animations/models/players/通用装备/飞剑/飞鳐3/tcks_飞鳐/飞行悬停.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b30047f09abc14042a912a151102472d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙.meta new file mode 100644 index 0000000000..5fd4de2a9d --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ef770f0cfe5b9c48acc90ddcb7350a2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.meta new file mode 100644 index 0000000000..bb6d45d928 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff9fda39481cbe342b64045a6bcd688e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab new file mode 100644 index 0000000000..f16f45fe50 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab @@ -0,0 +1,4722 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &195796468689245557 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5669833342357660148} + m_Layer: 0 + m_Name: Bip01 R UpperArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5669833342357660148 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 195796468689245557} + serializedVersion: 2 + m_LocalRotation: {x: 0.7507767, y: -0.6469375, z: -0.07918327, w: -0.107407294} + m_LocalPosition: {x: 0.40767366, y: 1.1187027, z: 0.69072986} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2310214996098885368} + m_Father: {fileID: 8016053939501796599} + m_LocalEulerAnglesHint: {x: -69.346634, y: 79.14575, z: -76.04045} +--- !u!1 &409871051812628336 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3521571323787122578} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3521571323787122578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409871051812628336} + serializedVersion: 2 + m_LocalRotation: {x: 0.095541745, y: -0.9574312, z: -0.08500895, w: 0.25878733} + m_LocalPosition: {x: 1.8623091, y: -0.032427527, z: 0.08036817} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2343076254318518251} + m_LocalEulerAnglesHint: {x: 8.972212, y: -139.5385, z: 5.692443} +--- !u!1 &512843913088704196 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6157935191161194678} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u81801" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6157935191161194678 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 512843913088704196} + serializedVersion: 2 + m_LocalRotation: {x: -0.000026553522, y: 0.102981545, z: 0.011372378, w: 0.9946183} + m_LocalPosition: {x: 0.83834505, y: -0.0064527183, z: -0.1529487} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6962469275520455976} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &559753032472255844 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5749314542597483282} + m_Layer: 0 + m_Name: Bone01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5749314542597483282 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559753032472255844} + serializedVersion: 2 + m_LocalRotation: {x: -0.5997946, y: 0.28945473, z: 0.090998404, w: 0.74039304} + m_LocalPosition: {x: 0.6608181, y: -0.1429606, z: 0.010631073} + m_LocalScale: {x: 0.6135993, y: 0.99999976, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6141527695113186664} + m_Father: {fileID: 8010882512096648540} + m_LocalEulerAnglesHint: {x: -79.94146, y: 124.76907, z: -90.17886} +--- !u!1 &688520316917542714 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 278158173827755249} + m_Layer: 0 + m_Name: Bip01 R Finger31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &278158173827755249 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 688520316917542714} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000011175866, y: -0.24615987, z: 0.0000000037252885, w: 0.9692292} + m_LocalPosition: {x: 0.2411718, y: 0.00000011175872, z: 0.0000002533198} + m_LocalScale: {x: 0.9999997, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3532944794370852229} + m_LocalEulerAnglesHint: {x: -0.0000027068731, y: -93.643555, z: -0.0000026624234} +--- !u!1 &841912626158152912 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8991539771313736419} + m_Layer: 0 + m_Name: Bip01 L Toe11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8991539771313736419 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 841912626158152912} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 0.0000000037252894, w: 1} + m_LocalPosition: {x: 0.092286356, y: -0.00000006705523, z: -0.00000017881396} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1362652522027414281} + m_LocalEulerAnglesHint: {x: -0.000000027489932, y: 58.282356, z: -0.00000029983607} +--- !u!1 &869516647957565009 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 778687151851423932} + m_Layer: 0 + m_Name: Bone28 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &778687151851423932 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 869516647957565009} + serializedVersion: 2 + m_LocalRotation: {x: 0.010830887, y: -0.30564463, z: -0.1395672, w: 0.9417988} + m_LocalPosition: {x: 1.4704592, y: -0.00000043213367, z: -0.0000009536743} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1087984198792294491} + m_LocalEulerAnglesHint: {x: -1.6787949, y: -40.007214, z: 5.5371695} +--- !u!1 &889266183300094333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1929402317240991996} + m_Layer: 0 + m_Name: Bip01 L Finger0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1929402317240991996 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889266183300094333} + serializedVersion: 2 + m_LocalRotation: {x: 0.053214896, y: -0.56614184, z: 0.22304878, w: -0.79177076} + m_LocalPosition: {x: 0.2584332, y: -0.11104727, z: -0.036380965} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6473714135551724435} + m_Father: {fileID: 9099050613731110605} + m_LocalEulerAnglesHint: {x: -19.847233, y: -9.252522, z: -42.272648} +--- !u!1 &964765354758962452 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 740857088495910438} + m_Layer: 0 + m_Name: Dummy01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &740857088495910438 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 964765354758962452} + serializedVersion: 2 + m_LocalRotation: {x: -0.04793388, y: 0.33799514, z: -0.70958424, w: 0.61640245} + m_LocalPosition: {x: -2.7459092, y: 0.413235, z: -0.5322696} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1081099291102267419} + - {fileID: 6116273774054567515} + m_Father: {fileID: 1998071657227866708} + m_LocalEulerAnglesHint: {x: 3.7338362, y: -4.8147244, z: -92.151924} +--- !u!1 &1063930668743687900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2843308940036031906} + m_Layer: 0 + m_Name: Bip01 Ponytail1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2843308940036031906 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063930668743687900} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000067055204, y: 0.67926365, z: -0.0000018682324, w: -0.73389435} + m_LocalPosition: {x: -0.025040857, y: 0.0000014528634, z: 0.15058039} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1998071657227866708} + m_LocalEulerAnglesHint: {x: 0.000117696065, y: -73.98975, z: 0.0001524792} +--- !u!1 &1067168364707082818 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7357794742894380175} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7357794742894380175 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1067168364707082818} + serializedVersion: 2 + m_LocalRotation: {x: -0.03335813, y: 0.28135636, z: -0.10276586, w: 0.95350146} + m_LocalPosition: {x: 1.4621298, y: -0.00000013411045, z: -0.0000028908248} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 223798292052130080} + m_LocalEulerAnglesHint: {x: -7.044113, y: 24.904812, z: -4.8959446} +--- !u!1 &1075167624544753528 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3375497377032857018} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u81801" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3375497377032857018 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1075167624544753528} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000068166095, y: -0.059294134, z: 0.006401123, w: 0.99822} + m_LocalPosition: {x: 0.85924447, y: -0.0075646807, z: 0.08232625} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2966800108455367313} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1109412867061169136 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6990316388597517485} + m_Layer: 0 + m_Name: "HH_\u5DE6\u5934\u5634" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6990316388597517485 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1109412867061169136} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000025602905, y: -0.000000110452206, z: 0.000000027908758, w: 1} + m_LocalPosition: {x: 0.088246785, y: -0.0015870597, z: 0.5087379} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1998071657227866708} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1177673520112188007 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1622703188636724176} + m_Layer: 0 + m_Name: Bip01 Tail + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1622703188636724176 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1177673520112188007} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000006699383, y: 0.9974361, z: -0.0000027187689, w: -0.07156353} + m_LocalPosition: {x: -0.7288321, y: 0.0000001561233, z: -0.046912875} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3373008129636032615} + m_Father: {fileID: 7006165658755993562} + m_LocalEulerAnglesHint: {x: -8.922164, y: 174.74582, z: 8.73238} +--- !u!1 &1318373552826241008 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8869062835673296403} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u81803" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8869062835673296403 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1318373552826241008} + serializedVersion: 2 + m_LocalRotation: {x: -0.0071055274, y: 0.053851184, z: -0.009948495, w: 0.9984741} + m_LocalPosition: {x: 0.40641737, y: -0.057490885, z: 0.08215171} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5560533684588762149} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1363958166224504417 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6116273774054567515} + m_Layer: 0 + m_Name: Bone18 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6116273774054567515 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1363958166224504417} + serializedVersion: 2 + m_LocalRotation: {x: 0.19581717, y: -0.801797, z: -0.13395223, w: 0.54848355} + m_LocalPosition: {x: -0.5834751, y: 1.9032222, z: 2.1818419} + m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 740857088495910438} + m_LocalEulerAnglesHint: {x: -1.0230529, y: -88.479935, z: 6.4857516} +--- !u!1 &1451648455984634672 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6962469275520455976} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6962469275520455976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1451648455984634672} + serializedVersion: 2 + m_LocalRotation: {x: -0.3968119, y: 0.40768465, z: -0.52497953, w: 0.6330324} + m_LocalPosition: {x: 0.3440022, y: -0.29446644, z: -0.21442449} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 209097984926815843} + - {fileID: 8771187836827978332} + - {fileID: 6157935191161194678} + m_Father: {fileID: 8010882512096648540} + m_LocalEulerAnglesHint: {x: 5.7880583, y: 77.79483, z: -139.17407} +--- !u!1 &1494409147959004160 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8476040891116452136} + m_Layer: 0 + m_Name: Bip01 R Finger01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8476040891116452136 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1494409147959004160} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000001005828, y: 0.30917096, z: 0.0000000502914, w: -0.95100653} + m_LocalPosition: {x: 0.13481414, y: -0.00000006705525, z: 0.00000023096806} + m_LocalScale: {x: 0.99999976, y: 0.99999964, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2635599058812301034} + m_LocalEulerAnglesHint: {x: 0.000003542726, y: -101.16132, z: 0.00000049460095} +--- !u!1 &1672932147288094966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1902796875974996689} + m_Layer: 0 + m_Name: Bip01 L Toe2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1902796875974996689 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1672932147288094966} + serializedVersion: 2 + m_LocalRotation: {x: 0.058201395, y: 0.70470756, z: -0.058201328, w: -0.7047073} + m_LocalPosition: {x: 0.22183897, y: 0.040713105, z: 0.29652423} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3686017312446747000} + m_Father: {fileID: 225146292983450730} + m_LocalEulerAnglesHint: {x: -9.347322, y: 8.219675, z: -1.3440127} +--- !u!1 &1860494145937192594 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 200600037681364092} + - component: {fileID: 8414862472758576121} + - component: {fileID: 999803478906146987} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &200600037681364092 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1860494145937192594} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 214926064423410765} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8414862472758576121 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1860494145937192594} + m_Mesh: {fileID: 0} +--- !u!137 &999803478906146987 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1860494145937192594} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &1899041625777403529 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1362652522027414281} + m_Layer: 0 + m_Name: Bip01 L Toe1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1362652522027414281 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899041625777403529} + serializedVersion: 2 + m_LocalRotation: {x: -0.038922366, y: 0.70603484, z: 0.03892237, w: -0.7060346} + m_LocalPosition: {x: 0.22320175, y: -0.06496911, z: 0.32092997} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8991539771313736419} + m_Father: {fileID: 225146292983450730} + m_LocalEulerAnglesHint: {x: 6.247452, y: 8.158567, z: 0.8938142} +--- !u!1 &1914904116452467881 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7293129320379916184} + m_Layer: 0 + m_Name: Bip01 R Calf + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7293129320379916184 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914904116452467881} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000041909505, y: 0.7484129, z: -0.0000000875443, w: 0.66323316} + m_LocalPosition: {x: 0.5061231, y: -0.000000117346644, z: -0.00000011920932} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8016837210830832472} + m_Father: {fileID: 172240359772612384} + m_LocalEulerAnglesHint: {x: -0.0000012072594, y: 77.837975, z: -0.00000079443953} +--- !u!1 &2025578374713884775 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3532944794370852229} + m_Layer: 0 + m_Name: Bip01 R Finger3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3532944794370852229 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2025578374713884775} + serializedVersion: 2 + m_LocalRotation: {x: -0.124052405, y: 0.5086095, z: -0.12850793, w: 0.8422666} + m_LocalPosition: {x: 0.27042732, y: -0.11730159, z: -0.027513342} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 278158173827755249} + m_Father: {fileID: 1627359146790557769} + m_LocalEulerAnglesHint: {x: -8.727368, y: -3.3045201, z: -14.197955} +--- !u!1 &2056338867400605756 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8010882512096648540} + m_Layer: 0 + m_Name: Bip01 Spine2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8010882512096648540 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2056338867400605756} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000005238351, y: 0.13365693, z: -0.0000003191037, w: 0.9910277} + m_LocalPosition: {x: 0.4041092, y: 0.000000020564778, z: -0.0005296801} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4223771968091972107} + - {fileID: 5749314542597483282} + - {fileID: 6962469275520455976} + - {fileID: 2966800108455367313} + m_Father: {fileID: 6459561651564503592} + m_LocalEulerAnglesHint: {x: 0.42253864, y: -0.92426157, z: -1.2770189} +--- !u!1 &2177450522575685107 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5543138599717997129} + m_Layer: 0 + m_Name: Dummy04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5543138599717997129 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2177450522575685107} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000007450579, y: -0, z: 0.000000014901158, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6480210611863174273} + m_Father: {fileID: 5004989827442080304} + m_LocalEulerAnglesHint: {x: -11.502691, y: -15.5417595, z: -1.3989499} +--- !u!1 &2245981867353807529 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5560533684588762149} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5560533684588762149 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2245981867353807529} + serializedVersion: 2 + m_LocalRotation: {x: 0.031084353, y: -0.14608154, z: -0.058079027, w: 0.9870769} + m_LocalPosition: {x: 1.7744427, y: -0.07678167, z: -0.0069298223} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8869062835673296403} + m_Father: {fileID: 2343076254318518251} + m_LocalEulerAnglesHint: {x: 2.0070884, y: -25.937761, z: -10.493163} +--- !u!1 &2280687577265746745 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 214926064423410765} + - component: {fileID: 4677037507570095114} + m_Layer: 0 + m_Name: "\u53CC\u5934\u9F99" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &214926064423410765 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2280687577265746745} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 200600037681364092} + - {fileID: 6399888702482602148} + - {fileID: 5980680070884378417} + - {fileID: 8910178506499315122} + - {fileID: 3737205718497850802} + m_Father: {fileID: 8362074243887956972} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &4677037507570095114 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2280687577265746745} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: c046ac6e2f0266945bd6fdd333888e17, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &2369011972646010572 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8173712867545469037} + m_Layer: 0 + m_Name: Bip01 L HorseLink + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8173712867545469037 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2369011972646010572} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000048407614, y: 0.49227127, z: 0.000000050695967, w: -0.8704419} + m_LocalPosition: {x: 0.46279562, y: -0.000000022029349, z: 0.0000002384186} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 225146292983450730} + m_Father: {fileID: 2008610304230855982} + m_LocalEulerAnglesHint: {x: 0.00000040862733, y: -84.61214, z: -0.000000110426754} +--- !u!1 &2491501859486800388 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8554538279758265649} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8554538279758265649 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2491501859486800388} + serializedVersion: 2 + m_LocalRotation: {x: -0.06905048, y: 0.79972106, z: -0.07572817, w: 0.5915603} + m_LocalPosition: {x: 1.8746712, y: 0.008395679, z: -0.0281419} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 209097984926815843} + m_LocalEulerAnglesHint: {x: -8.799187, y: 109.58468, z: 27.490412} +--- !u!1 &2517328995243744272 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3430360966011405539} + m_Layer: 0 + m_Name: Bip01 L Thigh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3430360966011405539 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2517328995243744272} + serializedVersion: 2 + m_LocalRotation: {x: -0.77829313, y: -0.004190866, z: -0.62715596, w: -0.030292736} + m_LocalPosition: {x: -0.29247805, y: 0.4287736, z: 0.026361037} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2008610304230855982} + m_Father: {fileID: 7006165658755993562} + m_LocalEulerAnglesHint: {x: 4.3920317, y: 69.05718, z: -178.47366} +--- !u!1 &2655371150562916441 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5948956878670039621} + m_Layer: 0 + m_Name: Bip01 R Finger11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5948956878670039621 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2655371150562916441} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000010617071, y: -0.38652128, z: 0.000000025145695, w: 0.9222805} + m_LocalPosition: {x: 0.27186692, y: -0.00000008661301, z: -0.00000010430814} + m_LocalScale: {x: 0.99999964, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1449279430837441380} + m_LocalEulerAnglesHint: {x: -0.000008156639, y: -110.61922, z: -0.0000086483315} +--- !u!1 &2731610096639697838 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8151304711960954646} + m_Layer: 0 + m_Name: Bip01 Tail4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8151304711960954646 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2731610096639697838} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000110094604, y: -0.04007045, z: 0.00000015720114, w: 0.9991969} + m_LocalPosition: {x: 0.6845518, y: 0.000000044342794, z: -0.0006039751} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9175895751824847450} + m_Father: {fileID: 2678228239227418018} + m_LocalEulerAnglesHint: {x: -5.1383066, y: -2.9564857, z: 10.327055} +--- !u!1 &2826281685297219624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 409186995373660248} + m_Layer: 0 + m_Name: Bip01 L UpperArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &409186995373660248 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2826281685297219624} + serializedVersion: 2 + m_LocalRotation: {x: -0.6469375, y: 0.7507767, z: 0.10740651, w: 0.079184435} + m_LocalPosition: {x: -0.4149874, y: 1.1187025, z: 0.69072884} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5526623167925429675} + m_Father: {fileID: 5738895288005303462} + m_LocalEulerAnglesHint: {x: 74.11644, y: 89.9726, z: 79.11374} +--- !u!1 &2848816662969591409 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1627359146790557769} + m_Layer: 0 + m_Name: Bip01 R Hand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1627359146790557769 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2848816662969591409} + serializedVersion: 2 + m_LocalRotation: {x: -0.02531934, y: -0.26260266, z: 0.011542503, w: 0.9645028} + m_LocalPosition: {x: 0.40960342, y: -0.00000014685668, z: 0.00000023841864} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2635599058812301034} + - {fileID: 1449279430837441380} + - {fileID: 3857855397724423005} + - {fileID: 3532944794370852229} + - {fileID: 2316873857359046894} + m_Father: {fileID: 2310214996098885368} + m_LocalEulerAnglesHint: {x: -6.5782256, y: 8.644576, z: -10.673046} +--- !u!1 &2866444664958406237 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6141527695113186664} + m_Layer: 0 + m_Name: Bone03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6141527695113186664 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2866444664958406237} + serializedVersion: 2 + m_LocalRotation: {x: 0.00063171977, y: 0.0011886506, z: -0.02232824, w: 0.9997498} + m_LocalPosition: {x: 0.36891764, y: -0.00000014901164, z: -0.000000044703498} + m_LocalScale: {x: 1.287832, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4839116839851606145} + m_Father: {fileID: 5749314542597483282} + m_LocalEulerAnglesHint: {x: 0.07548427, y: 0.13726206, z: -0.49528173} +--- !u!1 &2913882180634161993 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2417212912895607380} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u81802" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2417212912895607380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2913882180634161993} + serializedVersion: 2 + m_LocalRotation: {x: 0.0005825947, y: 0.07662846, z: 0.01605582, w: 0.9969303} + m_LocalPosition: {x: 0.97289044, y: 0.06561028, z: -0.14969061} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 209097984926815843} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2928221128203372162 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7727436945287390409} + m_Layer: 0 + m_Name: Bip01 R Toe3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7727436945287390409 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2928221128203372162} + serializedVersion: 2 + m_LocalRotation: {x: -0.23029526, y: 0.6685536, z: 0.23029527, w: -0.6685538} + m_LocalPosition: {x: 0.21534842, y: -0.1583549, z: 0.18754783} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2809610513655752218} + m_Father: {fileID: 7283908189651878481} + m_LocalEulerAnglesHint: {x: 34.703735, y: -27.632284, z: -16.596626} +--- !u!1 &2934106749296144691 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6480210611863174273} + m_Layer: 0 + m_Name: Bone26 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6480210611863174273 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2934106749296144691} + serializedVersion: 2 + m_LocalRotation: {x: 0.121197104, y: -0.567296, z: -0.17017971, w: 0.7965711} + m_LocalPosition: {x: 0.90254056, y: 2.923914, z: 3.0720391} + m_LocalScale: {x: 0.99999976, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5543138599717997129} + m_LocalEulerAnglesHint: {x: -3.824, y: -89.6635, z: 7.198593} +--- !u!1 &3266960120571443355 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 102323858484860313} + m_Layer: 0 + m_Name: "HH_\u53F3\u5934\u53F3\u773C" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &102323858484860313 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3266960120571443355} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000010046421, y: 0.000000004104213, z: 0.00000004922071, w: 1} + m_LocalPosition: {x: 0.3796276, y: 0.029809263, z: -0.12692665} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5900419027130761357} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3276193653619914390 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8456008136956450565} + m_Layer: 0 + m_Name: Bip01 R Toe1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8456008136956450565 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3276193653619914390} + serializedVersion: 2 + m_LocalRotation: {x: -0.03892234, y: -0.70603466, z: 0.038922317, w: 0.7060348} + m_LocalPosition: {x: 0.22320177, y: 0.064969376, z: 0.3209299} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5249038767782609107} + m_Father: {fileID: 7283908189651878481} + m_LocalEulerAnglesHint: {x: -5.832349, y: -22.536604, z: 2.4145908} +--- !u!1 &3298828055226373079 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1449279430837441380} + m_Layer: 0 + m_Name: Bip01 R Finger1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1449279430837441380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3298828055226373079} + serializedVersion: 2 + m_LocalRotation: {x: -0.026576782, y: 0.5413024, z: 0.0109828785, w: 0.8403362} + m_LocalPosition: {x: 0.28392744, y: 0.03175265, z: -0.06559071} + m_LocalScale: {x: 0.99999976, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5948956878670039621} + m_Father: {fileID: 1627359146790557769} + m_LocalEulerAnglesHint: {x: -0.973789, y: -17.59139, z: 16.308746} +--- !u!1 &3344492358501727217 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7283908189651878481} + m_Layer: 0 + m_Name: Bip01 R Foot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7283908189651878481 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3344492358501727217} + serializedVersion: 2 + m_LocalRotation: {x: -0.06634513, y: -0.292621, z: -0.045078684, w: 0.95285845} + m_LocalPosition: {x: 0.41769135, y: -0.00000012279217, z: -0.000000014901163} + m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3132931706066331453} + - {fileID: 8456008136956450565} + - {fileID: 8045836625720254902} + - {fileID: 7727436945287390409} + - {fileID: 4414399791444799292} + m_Father: {fileID: 8016837210830832472} + m_LocalEulerAnglesHint: {x: -0.21043962, y: 81.62065, z: 5.445419} +--- !u!1 &3493497859684150982 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2376914461871635167} + m_Layer: 0 + m_Name: "HH_\u5DE6\u540E\u722A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2376914461871635167 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3493497859684150982} + serializedVersion: 2 + m_LocalRotation: {x: -0.018586107, y: 0.062324762, z: 0.70435476, w: 0.7068625} + m_LocalPosition: {x: 0.2017932, y: 0.03611516, z: 0.10317653} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 225146292983450730} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3645373972411540388 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5908211861445869069} + m_Layer: 0 + m_Name: Bone21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5908211861445869069 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3645373972411540388} + serializedVersion: 2 + m_LocalRotation: {x: 0.06273547, y: -0.79277766, z: -0.11134665, w: 0.59596115} + m_LocalPosition: {x: 1.3386716, y: 0.011323097, z: -0.009935767} + m_LocalScale: {x: 1, y: 0.99999964, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2966800108455367313} + m_LocalEulerAnglesHint: {x: 6.7100554, y: -116.00233, z: 19.729994} +--- !u!1 &3746717475989619197 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5957993227891617708} + m_Layer: 0 + m_Name: Bip01 Tail2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5957993227891617708 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3746717475989619197} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000008915813, y: 0.028876645, z: -0.000000021384027, w: 0.99958307} + m_LocalPosition: {x: 0.5030232, y: 0.000000008513191, z: -0.00047762383} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2678228239227418018} + m_Father: {fileID: 3373008129636032615} + m_LocalEulerAnglesHint: {x: -14.611161, y: 7.0297937, z: 15.779091} +--- !u!1 &3868467850151339826 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 645080477819181907} + m_Layer: 0 + m_Name: Bone22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &645080477819181907 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3868467850151339826} + serializedVersion: 2 + m_LocalRotation: {x: 0.19846816, y: -0.81265175, z: -0.12999232, w: 0.5322682} + m_LocalPosition: {x: -0.6126523, y: 1.8418353, z: 2.269628} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1081099291102267419} + m_LocalEulerAnglesHint: {x: 0.25566804, y: -90.393875, z: 5.5376177} +--- !u!1 &4073016697739008459 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1998071657227866708} + m_Layer: 0 + m_Name: Bip01 Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1998071657227866708 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4073016697739008459} + serializedVersion: 2 + m_LocalRotation: {x: -0.08708217, y: 0.41301182, z: 0.0026522994, w: 0.90654886} + m_LocalPosition: {x: 0.13857433, y: -0.00000021653256, z: 0.00000051723345} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2843308940036031906} + - {fileID: 740857088495910438} + - {fileID: 224910448196735314} + - {fileID: 6434049373267758954} + - {fileID: 6990316388597517485} + m_Father: {fileID: 6265263047719389205} + m_LocalEulerAnglesHint: {x: -4.659354, y: 39.3742, z: 4.567911} +--- !u!1 &4154225373241583230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8309253366376737333} + m_Layer: 0 + m_Name: Bip01 R Finger21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8309253366376737333 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4154225373241583230} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000044703473, y: -0.40684107, z: -0.000000057741985, w: 0.913499} + m_LocalPosition: {x: 0.2374898, y: -0.000000048428785, z: 0.0000003129244} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3857855397724423005} + m_LocalEulerAnglesHint: {x: -0.0000109662615, y: -113.15585, z: -0.0000024631836} +--- !u!1 &4159422574198235930 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6105694142304882959} + m_Layer: 0 + m_Name: Bone06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6105694142304882959 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4159422574198235930} + serializedVersion: 2 + m_LocalRotation: {x: 0.000025856532, y: -0.0017366635, z: 0.0866015, w: 0.9962415} + m_LocalPosition: {x: 0.34932566, y: 0.045812525, z: 0.00049343996} + m_LocalScale: {x: 1.0000006, y: 0.99999976, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5900419027130761357} + - {fileID: 1503481444332418172} + m_Father: {fileID: 4605158383453496082} + m_LocalEulerAnglesHint: {x: 0.020211102, y: -0.19799195, z: 9.936231} +--- !u!1 &4374063012484429308 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2310214996098885368} + m_Layer: 0 + m_Name: Bip01 R ForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2310214996098885368 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4374063012484429308} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000059604638, y: 0.615727, z: 0.00000008940696, w: 0.7879596} + m_LocalPosition: {x: 0.66164523, y: 0.0000002384186, z: 0.00000008940698} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1627359146790557769} + m_Father: {fileID: 5669833342357660148} + m_LocalEulerAnglesHint: {x: 0.00000058820524, y: 83.94409, z: -0.00000010133408} +--- !u!1 &4421363962548734329 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5738895288005303462} + m_Layer: 0 + m_Name: Bip01 L Clavicle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5738895288005303462 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4421363962548734329} + serializedVersion: 2 + m_LocalRotation: {x: -0.16041781, y: 0.28711444, z: -0.7258709, w: 0.6041051} + m_LocalPosition: {x: -1.697715, y: 0.23921145, z: -0.015477512} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 409186995373660248} + m_Father: {fileID: 4223771968091972107} + m_LocalEulerAnglesHint: {x: -78.4169, y: 129.29453, z: 92.3238} +--- !u!1 &4436417057535892151 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1503481444332418172} + m_Layer: 0 + m_Name: Bone02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1503481444332418172 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4436417057535892151} + serializedVersion: 2 + m_LocalRotation: {x: 0.18448213, y: 0.544284, z: -0.2575511, w: 0.77678096} + m_LocalPosition: {x: -3.8701794, y: -0.91784286, z: -0.2238935} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7110048581366931326} + m_Father: {fileID: 6105694142304882959} + m_LocalEulerAnglesHint: {x: 34.279907, y: 92.12572, z: -89.40438} +--- !u!1 &4571534837764781712 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4605158383453496082} + m_Layer: 0 + m_Name: Bone05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4605158383453496082 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4571534837764781712} + serializedVersion: 2 + m_LocalRotation: {x: 0.0012551732, y: 0.0010250858, z: -0.17979296, w: 0.98370314} + m_LocalPosition: {x: 0.42389125, y: 0.010558687, z: 0.00044105534} + m_LocalScale: {x: 0.99823403, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6105694142304882959} + m_Father: {fileID: 4839116839851606145} + m_LocalEulerAnglesHint: {x: 0.16681547, y: 0.102351785, z: -16.318502} +--- !u!1 &4634177047340510087 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2000809661938741309} + m_Layer: 0 + m_Name: Bip01 L Finger31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2000809661938741309 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4634177047340510087} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000059604623, y: 0.24615982, z: 0.000000052154046, w: -0.9692293} + m_LocalPosition: {x: 0.2411719, y: -0.000000089406996, z: -0.00000009685757} + m_LocalScale: {x: 0.9999998, y: 0.99999964, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2123250944813422033} + m_LocalEulerAnglesHint: {x: 0.000003938739, y: -104.14144, z: 0.000003955878} +--- !u!1 &4661684162954147514 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8480142216990174451} + m_Layer: 0 + m_Name: Bip01 Neck3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8480142216990174451 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4661684162954147514} + serializedVersion: 2 + m_LocalRotation: {x: 0.00024722208, y: -0.11805668, z: 0.018972365, w: 0.9928256} + m_LocalPosition: {x: 0.3251735, y: 0.00000091560673, z: -0.00017749939} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6265263047719389205} + m_Father: {fileID: 4981935676067453574} + m_LocalEulerAnglesHint: {x: -1.5892645, y: 6.7359505, z: 2.038822} +--- !u!1 &4676587601035433235 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8397060781757249974} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8397060781757249974 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4676587601035433235} + serializedVersion: 2 + m_LocalRotation: {x: -0.026967837, y: 0.12321232, z: -0.05561477, w: 0.99045366} + m_LocalPosition: {x: 1.8111258, y: 0.00000010803342, z: -0.0000010654333} + m_LocalScale: {x: 0.9999997, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2884757507460556693} + m_Father: {fileID: 209097984926815843} + m_LocalEulerAnglesHint: {x: -8.3584175, y: 27.611015, z: 0.9576988} +--- !u!1 &4679666318069478385 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1318918729803796805} + m_Layer: 0 + m_Name: Bone25 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1318918729803796805 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4679666318069478385} + serializedVersion: 2 + m_LocalRotation: {x: 0.077749796, y: -0.8230865, z: -0.112090036, w: 0.5512889} + m_LocalPosition: {x: 1.9164579, y: -0.07491606, z: 0.112028964} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2343076254318518251} + m_LocalEulerAnglesHint: {x: 1.8817136, y: -115.03533, z: 12.57176} +--- !u!1 &5175424545220636924 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2631489423020327185} + m_Layer: 0 + m_Name: Bip01 L Finger2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2631489423020327185 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5175424545220636924} + serializedVersion: 2 + m_LocalRotation: {x: -0.09092298, y: -0.57177997, z: -0.080899976, w: -0.8113297} + m_LocalPosition: {x: 0.3006754, y: 0.038219303, z: -0.09682953} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5610396354854447841} + m_Father: {fileID: 9099050613731110605} + m_LocalEulerAnglesHint: {x: 8.165175, y: -31.787802, z: 3.110625} +--- !u!1 &5378007997757372606 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2123250944813422033} + m_Layer: 0 + m_Name: Bip01 L Finger3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2123250944813422033 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5378007997757372606} + serializedVersion: 2 + m_LocalRotation: {x: -0.124052376, y: -0.5086096, z: -0.12850797, w: -0.84226656} + m_LocalPosition: {x: 0.27042755, y: 0.11730188, z: -0.027512845} + m_LocalScale: {x: 0.9999999, y: 0.99999964, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2000809661938741309} + m_Father: {fileID: 9099050613731110605} + m_LocalEulerAnglesHint: {x: 15.044488, y: -33.933887, z: 14.704404} +--- !u!1 &5411597672751322480 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2966800108455367313} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2966800108455367313 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5411597672751322480} + serializedVersion: 2 + m_LocalRotation: {x: 0.6220857, y: 0.5405194, z: -0.40216538, w: -0.39888746} + m_LocalPosition: {x: 0.32703397, y: 0.31179383, z: -0.2190369} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2343076254318518251} + - {fileID: 5908211861445869069} + - {fileID: 3375497377032857018} + m_Father: {fileID: 8010882512096648540} + m_LocalEulerAnglesHint: {x: 2.034773, y: -101.56786, z: 35.06595} +--- !u!1 &5431533727213506682 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8016053939501796599} + m_Layer: 0 + m_Name: Bip01 R Clavicle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8016053939501796599 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5431533727213506682} + serializedVersion: 2 + m_LocalRotation: {x: -0.16041781, y: 0.28711444, z: -0.7258709, w: 0.6041051} + m_LocalPosition: {x: -1.697715, y: 0.23921145, z: -0.015477512} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5669833342357660148} + m_Father: {fileID: 4223771968091972107} + m_LocalEulerAnglesHint: {x: 78.923416, y: 175.63353, z: -45.16393} +--- !u!1 &5448265977527776223 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2633106661682839913} + m_Layer: 0 + m_Name: Bip01 L Toe0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2633106661682839913 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5448265977527776223} + serializedVersion: 2 + m_LocalRotation: {x: -0.12429835, y: 0.6960963, z: 0.12429827, w: -0.6960961} + m_LocalPosition: {x: 0.22007751, y: -0.1889751, z: 0.2746563} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5173355356731702160} + m_Father: {fileID: 225146292983450730} + m_LocalEulerAnglesHint: {x: 20.037361, y: 8.636176, z: 2.9789684} +--- !u!1 &5450003889743210804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3857855397724423005} + m_Layer: 0 + m_Name: Bip01 R Finger2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3857855397724423005 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5450003889743210804} + serializedVersion: 2 + m_LocalRotation: {x: -0.09092306, y: 0.57177997, z: -0.08089992, w: 0.8113298} + m_LocalPosition: {x: 0.3006757, y: -0.03821905, z: -0.09683013} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8309253366376737333} + m_Father: {fileID: 1627359146790557769} + m_LocalEulerAnglesHint: {x: -11.024889, y: -15.814553, z: -7.740845} +--- !u!1 &5528955970780723904 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3686017312446747000} + m_Layer: 0 + m_Name: Bip01 L Toe21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3686017312446747000 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5528955970780723904} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.08111287, y: -0.000000045634813, z: -0.00000035762787} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1902796875974996689} + m_LocalEulerAnglesHint: {x: 0.00000067323595, y: 58.282356, z: -0.00000032882053} +--- !u!1 &5535350661526437624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 148453337429410051} + m_Layer: 0 + m_Name: "HH_\u53F3\u5934\u5DE6\u773C" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &148453337429410051 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5535350661526437624} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000010046421, y: 0.000000004104213, z: 0.00000004922071, w: 1} + m_LocalPosition: {x: 0.37962753, y: 0.029809281, z: 0.13040236} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5900419027130761357} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5561859650474915381 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6399888702482602148} + m_Layer: 0 + m_Name: Bip01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6399888702482602148 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5561859650474915381} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5082390430456275110} + m_Father: {fileID: 214926064423410765} + m_LocalEulerAnglesHint: {x: 0.0000022373413, y: -90.000084, z: -93.4136} +--- !u!1 &5577024908356440601 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8777775106935455619} + m_Layer: 0 + m_Name: Bone24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8777775106935455619 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5577024908356440601} + serializedVersion: 2 + m_LocalRotation: {x: 0.12848903, y: -0.55993664, z: -0.18306644, w: 0.7977771} + m_LocalPosition: {x: 0.8569972, y: 2.9969776, z: 2.9393897} + m_LocalScale: {x: 0.9999998, y: 1.0000001, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5004989827442080304} + m_LocalEulerAnglesHint: {x: -4.2491508, y: -89.060555, z: 6.3854237} +--- !u!1 &5606637535825016669 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9057711742527161432} + m_Layer: 0 + m_Name: Bip01 L Toe31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9057711742527161432 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5606637535825016669} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0.000000014901159, w: 1} + m_LocalPosition: {x: 0.08600775, y: 0.000000085681684, z: 0.00000020861629} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6738063362260561396} + m_LocalEulerAnglesHint: {x: 0.0000023969953, y: 58.282356, z: -0.0000010320339} +--- !u!1 &5799244753284008570 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7110048581366931326} + m_Layer: 0 + m_Name: Bone08 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7110048581366931326 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5799244753284008570} + serializedVersion: 2 + m_LocalRotation: {x: -0.518057, y: -0.29598916, z: -0.49060228, w: 0.6350723} + m_LocalPosition: {x: 0.71099627, y: 2.8703089, z: 2.5853453} + m_LocalScale: {x: 0.99999964, y: 0.99999976, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1503481444332418172} + m_LocalEulerAnglesHint: {x: -0.0000011299915, y: -57.391666, z: -0.000026955346} +--- !u!1 &5833984709211460661 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8362074243887956972} + m_Layer: 0 + m_Name: "\u53CC\u5934\u9F99" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8362074243887956972 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5833984709211460661} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 214926064423410765} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6016006645301000468 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5249038767782609107} + m_Layer: 0 + m_Name: Bip01 R Toe11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5249038767782609107 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6016006645301000468} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0.0000000037252894, w: 1} + m_LocalPosition: {x: 0.092286535, y: -0.00000009126963, z: 0.000000022351745} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8456008136956450565} + m_LocalEulerAnglesHint: {x: -0.000000066908, y: 40.0558, z: -0.0000004464066} +--- !u!1 &6030671990846922631 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4981935676067453574} + m_Layer: 0 + m_Name: Bip01 Neck2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4981935676067453574 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6030671990846922631} + serializedVersion: 2 + m_LocalRotation: {x: -0.0029618556, y: -0.11802074, z: 0.03983546, w: 0.99220735} + m_LocalPosition: {x: 0.24996583, y: 0.00000080179433, z: -0.00025137953} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8480142216990174451} + m_Father: {fileID: 4118238377854900585} + m_LocalEulerAnglesHint: {x: 2.5903394, y: 2.2095468, z: -2.254277} +--- !u!1 &6058918337091352555 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1081099291102267419} + m_Layer: 0 + m_Name: Dummy02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1081099291102267419 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6058918337091352555} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000018626445, y: 0.000000014901156, z: -0.000000013038512, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 645080477819181907} + m_Father: {fileID: 740857088495910438} + m_LocalEulerAnglesHint: {x: 6.014656, y: -8.214031, z: 0.13829784} +--- !u!1 &6074350952682099935 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3368615448024969940} + m_Layer: 0 + m_Name: "HH_\u5DE6\u524D\u722A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3368615448024969940 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6074350952682099935} + serializedVersion: 2 + m_LocalRotation: {x: -0.65534663, y: 0.70802665, z: -0.16293544, w: 0.20656994} + m_LocalPosition: {x: 0.33300167, y: -0.060255844, z: -0.0876951} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9099050613731110605} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6118587163174016699 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9175895751824847450} + m_Layer: 0 + m_Name: "HH_\u5C3E\u5DF4" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9175895751824847450 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6118587163174016699} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004741593, y: -0.000000034628616, z: 0.000000011742442, w: 1} + m_LocalPosition: {x: 0.676725, y: 0.000000023096476, z: -7.1686834e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8151304711960954646} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6144198774190450031 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4562737941373678235} + m_Layer: 0 + m_Name: Bip01 L Finger11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4562737941373678235 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6144198774190450031} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000109896014, y: 0.38652143, z: 0.00000008288767, w: -0.9222805} + m_LocalPosition: {x: 0.27186692, y: 0.00000016856943, z: 0.00000031292439} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8940425059362843131} + m_LocalEulerAnglesHint: {x: 0.00000046760488, y: -120.81685, z: 0.0000012383048} +--- !u!1 &6188344072132265109 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6473714135551724435} + m_Layer: 0 + m_Name: Bip01 L Finger01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6473714135551724435 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6188344072132265109} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000011175865, y: -0.309171, z: 0.00000007823105, w: 0.9510065} + m_LocalPosition: {x: 0.13481463, y: -0.000000040978197, z: -0.00000013411045} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1929402317240991996} + m_LocalEulerAnglesHint: {x: -0.0000071636355, y: -111.659195, z: -0.000004683807} +--- !u!1 &6240593984595807781 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4223771968091972107} + m_Layer: 0 + m_Name: Bip01 Neck + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4223771968091972107 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6240593984595807781} + serializedVersion: 2 + m_LocalRotation: {x: -0.024552362, y: 0.2758815, z: 0.121805035, w: 0.95312655} + m_LocalPosition: {x: 0.69589496, y: 0.13748167, z: -0.0034595914} + m_LocalScale: {x: 0.99999994, y: 0.9999997, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4118238377854900585} + - {fileID: 5738895288005303462} + - {fileID: 8016053939501796599} + m_Father: {fileID: 8010882512096648540} + m_LocalEulerAnglesHint: {x: -1.8763102, y: 28.066195, z: 4.105675} +--- !u!1 &6341791129199673438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5004989827442080304} + m_Layer: 0 + m_Name: Dummy03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5004989827442080304 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6341791129199673438} + serializedVersion: 2 + m_LocalRotation: {x: -0.10853133, y: 0.5575027, z: 0.15694457, w: 0.80794805} + m_LocalPosition: {x: -1.3129476, y: -4.0037255, z: -0.24724141} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8777775106935455619} + - {fileID: 5543138599717997129} + m_Father: {fileID: 5900419027130761357} + m_LocalEulerAnglesHint: {x: 2.721644, y: 88.75976, z: 2.0155382} +--- !u!1 &6397055324250497705 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6434049373267758954} + m_Layer: 0 + m_Name: "HH_\u5DE6\u5934\u5DE6\u773C" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6434049373267758954 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6397055324250497705} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000022488361, y: -0.000000034285247, z: 0.000000013326776, w: 1} + m_LocalPosition: {x: 0.16531612, y: 0.1522266, z: 0.25356135} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1998071657227866708} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6454437644096062158 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5082390430456275110} + m_Layer: 0 + m_Name: Bip01 Pelvis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5082390430456275110 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6454437644096062158} + serializedVersion: 2 + m_LocalRotation: {x: 0.49999964, y: -0.5000004, z: 0.4999997, w: 0.5000003} + m_LocalPosition: {x: -0.003654953, y: 1.0941919, z: -0.63925666} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7006165658755993562} + m_Father: {fileID: 6399888702482602148} + m_LocalEulerAnglesHint: {x: 0.000007935346, y: 89.99991, z: 95.27084} +--- !u!1 &6593902279976697030 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8078374907829853108} + m_Layer: 0 + m_Name: "HH_\u53F3\u5934\u5634" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8078374907829853108 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593902279976697030} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000013372295, y: -0.00000001106325, z: 0.00000011561405, w: 1} + m_LocalPosition: {x: 0.65789664, y: -0.12092387, z: -0.004491005} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5900419027130761357} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6634569347839028368 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8940425059362843131} + m_Layer: 0 + m_Name: Bip01 L Finger1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8940425059362843131 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6634569347839028368} + serializedVersion: 2 + m_LocalRotation: {x: -0.026576895, y: -0.5413026, z: 0.01098286, w: -0.840336} + m_LocalPosition: {x: 0.2839272, y: -0.03175241, z: -0.0655904} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4562737941373678235} + m_Father: {fileID: 9099050613731110605} + m_LocalEulerAnglesHint: {x: -15.440875, y: -27.924034, z: -29.282974} +--- !u!1 &6704499347760021457 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 225146292983450730} + m_Layer: 0 + m_Name: Bip01 L Foot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &225146292983450730 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6704499347760021457} + serializedVersion: 2 + m_LocalRotation: {x: 0.06634508, y: -0.29262093, z: 0.04507873, w: 0.9528585} + m_LocalPosition: {x: 0.41769105, y: -0.000000001330137, z: -0.0000002533198} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2633106661682839913} + - {fileID: 1362652522027414281} + - {fileID: 1902796875974996689} + - {fileID: 6738063362260561396} + - {fileID: 2376914461871635167} + m_Father: {fileID: 8173712867545469037} + m_LocalEulerAnglesHint: {x: -1.1809456, y: 104.06226, z: 6.4614882} +--- !u!1 &6761548364957290870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2343076254318518251} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2343076254318518251 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6761548364957290870} + serializedVersion: 2 + m_LocalRotation: {x: -0.009328932, y: 0.24561502, z: -0.0006612241, w: 0.9693224} + m_LocalPosition: {x: 1.2056277, y: 0.00000011920932, z: -0.00000016391279} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5560533684588762149} + - {fileID: 1087984198792294491} + - {fileID: 1318918729803796805} + - {fileID: 3521571323787122578} + - {fileID: 8142297154429545877} + m_Father: {fileID: 2966800108455367313} + m_LocalEulerAnglesHint: {x: -3.458135, y: 27.085194, z: -33.20803} +--- !u!1 &6864654695686895742 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2316873857359046894} + m_Layer: 0 + m_Name: "HH_\u53F3\u524D\u722A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2316873857359046894 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6864654695686895742} + serializedVersion: 2 + m_LocalRotation: {x: 0.70802635, y: -0.6553468, z: 0.20657115, w: -0.16293451} + m_LocalPosition: {x: 0.3372853, y: -0.0071235206, z: -0.083230644} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1627359146790557769} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6912229047907277876 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4839116839851606145} + m_Layer: 0 + m_Name: Bone04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4839116839851606145 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6912229047907277876} + serializedVersion: 2 + m_LocalRotation: {x: -0.0012874731, y: -0.000052932766, z: -0.016368855, w: 0.99986523} + m_LocalPosition: {x: 0.36711955, y: 0.008154501, z: 0.00042892687} + m_LocalScale: {x: 0.85826874, y: 0.99999976, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4605158383453496082} + m_Father: {fileID: 6141527695113186664} + m_LocalEulerAnglesHint: {x: -0.14768322, y: -0.008022054, z: -0.18559688} +--- !u!1 &7020391714724278556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5526623167925429675} + m_Layer: 0 + m_Name: Bip01 L ForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5526623167925429675 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7020391714724278556} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000029802315, y: 0.6157272, z: -0.00000005960463, w: 0.7879595} + m_LocalPosition: {x: 0.6616451, y: 0, z: -0.00000004470349} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9099050613731110605} + m_Father: {fileID: 409186995373660248} + m_LocalEulerAnglesHint: {x: -0.000000009766154, y: 89.68614, z: 0.0000005154502} +--- !u!1 &7047205668033367427 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9099050613731110605} + m_Layer: 0 + m_Name: Bip01 L Hand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9099050613731110605 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7047205668033367427} + serializedVersion: 2 + m_LocalRotation: {x: 0.02531949, y: -0.2626028, z: -0.011542488, w: 0.96450275} + m_LocalPosition: {x: 0.40960395, y: -0.000000006097175, z: 0.000000059604645} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1929402317240991996} + - {fileID: 8940425059362843131} + - {fileID: 2631489423020327185} + - {fileID: 2123250944813422033} + - {fileID: 3368615448024969940} + m_Father: {fileID: 5526623167925429675} + m_LocalEulerAnglesHint: {x: 1.4163734, y: 53.142338, z: 6.9551997} +--- !u!1 &7090563000993090997 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3132931706066331453} + m_Layer: 0 + m_Name: Bip01 R Toe0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3132931706066331453 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7090563000993090997} + serializedVersion: 2 + m_LocalRotation: {x: -0.12429838, y: -0.6960961, z: 0.12429837, w: 0.6960964} + m_LocalPosition: {x: 0.22007759, y: 0.18897521, z: 0.27465633} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3298995579435312139} + m_Father: {fileID: 7283908189651878481} + m_LocalEulerAnglesHint: {x: -18.659786, y: -23.731045, z: 8.006372} +--- !u!1 &7213158156721539172 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4860596083317155883} + m_Layer: 0 + m_Name: Bip01 R Toe21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4860596083317155883 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7213158156721539172} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0.0000000037252894, w: 1} + m_LocalPosition: {x: 0.08111287, y: -0.00000017695133, z: -0.00000014156105} + m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8045836625720254902} + m_LocalEulerAnglesHint: {x: -0.00000016721788, y: 40.0558, z: 0.00000016629326} +--- !u!1 &7316732224927694044 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6265263047719389205} + m_Layer: 0 + m_Name: Bip01 Neck4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6265263047719389205 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7316732224927694044} + serializedVersion: 2 + m_LocalRotation: {x: -0.0019963966, y: -0.11804353, z: 0.01690658, w: 0.99286246} + m_LocalPosition: {x: 0.22903231, y: 0.000000095882584, z: -0.00010724951} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1998071657227866708} + m_Father: {fileID: 8480142216990174451} + m_LocalEulerAnglesHint: {x: 1.4555218, y: -5.2317324, z: -5.3289957} +--- !u!1 &7320485936538237110 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4414399791444799292} + m_Layer: 0 + m_Name: "HH_\u53F3\u540E\u722A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4414399791444799292 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7320485936538237110} + serializedVersion: 2 + m_LocalRotation: {x: 0.06232401, y: -0.018584862, z: 0.70686257, w: 0.7043548} + m_LocalPosition: {x: 0.20179315, y: 0.031089883, z: 0.11090659} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7283908189651878481} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7429225501637294677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8045836625720254902} + m_Layer: 0 + m_Name: Bip01 R Toe2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8045836625720254902 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7429225501637294677} + serializedVersion: 2 + m_LocalRotation: {x: -0.058201335, y: 0.7047074, z: 0.05820137, w: -0.70470756} + m_LocalPosition: {x: 0.22183909, y: -0.040712867, z: 0.29652426} + m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4860596083317155883} + m_Father: {fileID: 7283908189651878481} + m_LocalEulerAnglesHint: {x: 8.72346, y: -22.69044, z: -3.6284654} +--- !u!1 &7443392995422472546 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5980680070884378417} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5980680070884378417 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7443392995422472546} + serializedVersion: 2 + m_LocalRotation: {x: -0.0038633368, y: 0.000566334, z: -0.00036096192, w: 0.9999923} + m_LocalPosition: {x: -0.05562985, y: 0.023885012, z: 1.4400251} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 214926064423410765} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7509845324410908260 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 209097984926815843} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &209097984926815843 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7509845324410908260} + serializedVersion: 2 + m_LocalRotation: {x: 0.017341373, y: -0.21555981, z: -0.040383454, w: 0.9755011} + m_LocalPosition: {x: 1.2095883, y: 0.00000011920929, z: -0.00000018626451} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8397060781757249974} + - {fileID: 8554538279758265649} + - {fileID: 5176389140292753089} + - {fileID: 223798292052130080} + - {fileID: 2417212912895607380} + m_Father: {fileID: 6962469275520455976} + m_LocalEulerAnglesHint: {x: -15.918899, y: -27.369892, z: -42.182217} +--- !u!1 &7526495508589853186 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8016837210830832472} + m_Layer: 0 + m_Name: Bip01 R HorseLink + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8016837210830832472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7526495508589853186} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000051105484, y: -0.49227136, z: 0.00000009394939, w: 0.8704418} + m_LocalPosition: {x: 0.46279597, y: 0.00000006010049, z: 0.00000017881398} + m_LocalScale: {x: 0.99999976, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7283908189651878481} + m_Father: {fileID: 7293129320379916184} + m_LocalEulerAnglesHint: {x: 0.0000012226403, y: -69.34246, z: -0.00000044183753} +--- !u!1 &7559492345757974175 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5176389140292753089} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5176389140292753089 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7559492345757974175} + serializedVersion: 2 + m_LocalRotation: {x: -0.053141292, y: 0.95276785, z: -0.0595446, w: 0.29302555} + m_LocalPosition: {x: 1.845073, y: 0.0045643784, z: -0.09183486} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 209097984926815843} + m_LocalEulerAnglesHint: {x: -12.402692, y: 139.25735, z: 20.787224} +--- !u!1 &7602290316191016423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2678228239227418018} + m_Layer: 0 + m_Name: Bip01 Tail3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2678228239227418018 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7602290316191016423} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000009019582, y: 0.012163582, z: -0.00000010677189, w: 0.9999261} + m_LocalPosition: {x: 0.6006632, y: -0.00000006909438, z: -0.0005447382} + m_LocalScale: {x: 1, y: 0.9999999, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8151304711960954646} + m_Father: {fileID: 5957993227891617708} + m_LocalEulerAnglesHint: {x: -0.95205367, y: 0.50406253, z: 18.061274} +--- !u!1 &7678332149768188967 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2884757507460556693} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u81803" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2884757507460556693 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7678332149768188967} + serializedVersion: 2 + m_LocalRotation: {x: -0.0010508259, y: -0.027001362, z: 0.0061164703, w: 0.99961615} + m_LocalPosition: {x: 0.28022438, y: 0.029038325, z: -0.1368895} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8397060781757249974} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7740326327211826380 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5900419027130761357} + m_Layer: 0 + m_Name: Bone07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5900419027130761357 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7740326327211826380} + serializedVersion: 2 + m_LocalRotation: {x: 0.004349203, y: 0.0076968456, z: -0.49192065, w: 0.87059516} + m_LocalPosition: {x: 0.23900767, y: 0.019809002, z: 0.00009677182} + m_LocalScale: {x: 0.99999976, y: 1.0000001, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5004989827442080304} + - {fileID: 102323858484860313} + - {fileID: 148453337429410051} + - {fileID: 8078374907829853108} + m_Father: {fileID: 6105694142304882959} + m_LocalEulerAnglesHint: {x: 0.86778116, y: 0.5227517, z: -58.932377} +--- !u!1 &7927745267534906798 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1087984198792294491} + m_Layer: 0 + m_Name: Bone27 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1087984198792294491 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7927745267534906798} + serializedVersion: 2 + m_LocalRotation: {x: 0.041811492, y: -0.43619934, z: -0.065915465, w: 0.89645815} + m_LocalPosition: {x: 1.8831209, y: -0.07142446, z: 0.05980607} + m_LocalScale: {x: 1.304956, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 778687151851423932} + m_Father: {fileID: 2343076254318518251} + m_LocalEulerAnglesHint: {x: -4.299154, y: -68.53305, z: 5.8873625} +--- !u!1 &8006164953689289239 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224910448196735314} + m_Layer: 0 + m_Name: "HH_\u5DE6\u5934\u53F3\u773C" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &224910448196735314 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8006164953689289239} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000022488361, y: -0.000000034285247, z: 0.000000013326776, w: 1} + m_LocalPosition: {x: 0.16531606, y: -0.1514097, z: 0.2535613} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1998071657227866708} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8082924976712996047 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6459561651564503592} + m_Layer: 0 + m_Name: Bip01 Spine1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6459561651564503592 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8082924976712996047} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000030291627, y: 0.089357875, z: -0.000000328792, w: 0.9959996} + m_LocalPosition: {x: 0.3437358, y: -0.00000004220175, z: -0.00031663847} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8010882512096648540} + m_Father: {fileID: 7006165658755993562} + m_LocalEulerAnglesHint: {x: 1.2096441, y: -4.407635, z: -2.2499695} +--- !u!1 &8086727025101286601 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5610396354854447841} + m_Layer: 0 + m_Name: Bip01 L Finger21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5610396354854447841 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8086727025101286601} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000011920922, y: 0.4068409, z: 0.000000026077016, w: -0.91349906} + m_LocalPosition: {x: 0.23748988, y: 0.00000019744043, z: 0.00000035762787} + m_LocalScale: {x: 0.9999999, y: 0.9999998, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2631489423020327185} + m_LocalEulerAnglesHint: {x: -0.0000019098388, y: -123.653725, z: -0.00000022687004} +--- !u!1 &8148048181507480161 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3373008129636032615} + m_Layer: 0 + m_Name: Bip01 Tail1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3373008129636032615 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8148048181507480161} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000016287416, y: 0.027350813, z: -0.00000009562301, w: 0.9996259} + m_LocalPosition: {x: 0.8569015, y: -0.000000027532227, z: -0.00039988756} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5957993227891617708} + m_Father: {fileID: 1622703188636724176} + m_LocalEulerAnglesHint: {x: -3.0580692, y: 10.736132, z: 5.6718946} +--- !u!1 &8249383197064582962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8771187836827978332} + m_Layer: 0 + m_Name: Bone13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8771187836827978332 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8249383197064582962} + serializedVersion: 2 + m_LocalRotation: {x: -0.008120828, y: 0.76833194, z: -0.03282177, w: 0.63915783} + m_LocalPosition: {x: 1.2923394, y: -0.06202209, z: -0.040118992} + m_LocalScale: {x: 0.9999999, y: 0.9999998, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6962469275520455976} + m_LocalEulerAnglesHint: {x: -8.226673, y: 100.18397, z: 24.698647} +--- !u!1 &8286231440833406296 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3298995579435312139} + m_Layer: 0 + m_Name: Bip01 R Toe01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3298995579435312139 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8286231440833406296} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.103548974, y: 0.000000052154064, z: -0.00000022351745} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3132931706066331453} + m_LocalEulerAnglesHint: {x: 0.00000022611019, y: 40.05581, z: -0.0000014229445} +--- !u!1 &8317303228749596609 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5173355356731702160} + m_Layer: 0 + m_Name: Bip01 L Toe01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5173355356731702160 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8317303228749596609} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 0.000000007450578, w: 1} + m_LocalPosition: {x: 0.10354893, y: -0.00000019744041, z: -0.00000014156103} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2633106661682839913} + m_LocalEulerAnglesHint: {x: -0.0000010007716, y: 58.282356, z: 0.000000027258466} +--- !u!1 &8400167895580977248 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4118238377854900585} + m_Layer: 0 + m_Name: Bip01 Neck1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4118238377854900585 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8400167895580977248} + serializedVersion: 2 + m_LocalRotation: {x: 0.00023742951, y: -0.014997289, z: -0.01671428, w: 0.9997479} + m_LocalPosition: {x: 0.24109253, y: 0.00000009872023, z: -0.00019912985} + m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4981935676067453574} + m_Father: {fileID: 4223771968091972107} + m_LocalEulerAnglesHint: {x: 1.3451196, y: 0.51993626, z: 0.5059968} +--- !u!1 &8434083357061977365 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2809610513655752218} + m_Layer: 0 + m_Name: Bip01 R Toe31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2809610513655752218 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8434083357061977365} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0.000000014901158, w: 1} + m_LocalPosition: {x: 0.08600748, y: 0.00000011548403, z: 0.00000020861629} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7727436945287390409} + m_LocalEulerAnglesHint: {x: 0.0000005496868, y: 40.0558, z: 0.0000016635927} +--- !u!1 &8445640055198377883 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2635599058812301034} + m_Layer: 0 + m_Name: Bip01 R Finger0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2635599058812301034 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8445640055198377883} + serializedVersion: 2 + m_LocalRotation: {x: 0.053214822, y: 0.5661417, z: 0.22304875, w: 0.7917708} + m_LocalPosition: {x: 0.25843316, y: 0.111047596, z: -0.036381558} + m_LocalScale: {x: 0.99999976, y: 0.99999964, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8476040891116452136} + m_Father: {fileID: 1627359146790557769} + m_LocalEulerAnglesHint: {x: 13.492864, y: -13.575746, z: 50.443615} +--- !u!1 &8523958585301881886 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7006165658755993562} + m_Layer: 0 + m_Name: Bip01 Spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7006165658755993562 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8523958585301881886} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000020265577, y: -0.044466134, z: 0.00000074505795, w: 0.9990109} + m_LocalPosition: {x: 0.2936636, y: 0.00000047776854, z: -0.0002727807} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6459561651564503592} + - {fileID: 3430360966011405539} + - {fileID: 172240359772612384} + - {fileID: 1622703188636724176} + m_Father: {fileID: 5082390430456275110} + m_LocalEulerAnglesHint: {x: -1.1314209, y: 11.088363, z: -1.4539232} +--- !u!1 &8540439008444204315 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2008610304230855982} + m_Layer: 0 + m_Name: Bip01 L Calf + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2008610304230855982 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8540439008444204315} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000008195638, y: -0.74841285, z: -0.00000004656612, w: -0.6632332} + m_LocalPosition: {x: 0.5061229, y: 0.00000004842878, z: 0.000000119209275} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8173712867545469037} + m_Father: {fileID: 3430360966011405539} + m_LocalEulerAnglesHint: {x: -0.00000014006491, y: 74.92388, z: -0.0000003268658} +--- !u!1 &8755072342431502799 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8142297154429545877} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u81802" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8142297154429545877 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8755072342431502799} + serializedVersion: 2 + m_LocalRotation: {x: 0.001665537, y: 0.021877052, z: -0.0036496064, w: 0.99975264} + m_LocalPosition: {x: 1.0075645, y: 0.01735325, z: -0.10692431} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2343076254318518251} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8797010976252975527 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6738063362260561396} + m_Layer: 0 + m_Name: Bip01 L Toe3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6738063362260561396 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8797010976252975527} + serializedVersion: 2 + m_LocalRotation: {x: -0.23029527, y: -0.66855365, z: 0.23029529, w: 0.6685537} + m_LocalPosition: {x: 0.21534857, y: 0.15835503, z: 0.18754797} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9057711742527161432} + m_Father: {fileID: 225146292983450730} + m_LocalEulerAnglesHint: {x: -37.567776, y: 10.25194, z: -6.2927547} +--- !u!1 &8819895259608938518 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 172240359772612384} + m_Layer: 0 + m_Name: Bip01 R Thigh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &172240359772612384 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8819895259608938518} + serializedVersion: 2 + m_LocalRotation: {x: -0.7782933, y: 0.0041893255, z: -0.62715596, w: 0.030290548} + m_LocalPosition: {x: -0.29247823, y: -0.42877355, z: 0.02636306} + m_LocalScale: {x: 1, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7293129320379916184} + m_Father: {fileID: 7006165658755993562} + m_LocalEulerAnglesHint: {x: 7.3474364, y: 65.96287, z: 175.09709} +--- !u!1 &8872886631416782428 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 223798292052130080} + m_Layer: 0 + m_Name: Bone19 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &223798292052130080 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8872886631416782428} + serializedVersion: 2 + m_LocalRotation: {x: -0.045064542, y: 0.4131186, z: -0.07088612, w: 0.9067952} + m_LocalPosition: {x: 1.8725698, y: 0.011406876, z: 0.010465811} + m_LocalScale: {x: 1.3229117, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7357794742894380175} + m_Father: {fileID: 209097984926815843} + m_LocalEulerAnglesHint: {x: -1.4796505, y: 79.16772, z: 25.248508} +--- !u!1001 &4777360395321303524 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 214926064423410765} + m_Modifications: + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 6399888702482602148} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 8010882512096648540} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 4223771968091972107} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 4118238377854900585} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 7006165658755993562} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 6459561651564503592} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 4981935676067453574} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 409186995373660248} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 5082390430456275110} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 3430360966011405539} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 2008610304230855982} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 172240359772612384} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 7293129320379916184} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 1622703188636724176} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 3373008129636032615} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 8151304711960954646} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 2678228239227418018} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 5957993227891617708} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 5749314542597483282} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 8480142216990174451} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 2843308940036031906} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 6265263047719389205} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 1998071657227866708} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 645080477819181907} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 6116273774054567515} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 5526623167925429675} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 9099050613731110605} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 1929402317240991996} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 8173712867545469037} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 225146292983450730} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 2633106661682839913} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 5173355356731702160} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[31]' + value: + objectReference: {fileID: 1362652522027414281} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[32]' + value: + objectReference: {fileID: 1902796875974996689} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[33]' + value: + objectReference: {fileID: 3686017312446747000} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[34]' + value: + objectReference: {fileID: 8991539771313736419} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[35]' + value: + objectReference: {fileID: 6738063362260561396} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[36]' + value: + objectReference: {fileID: 9057711742527161432} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[37]' + value: + objectReference: {fileID: 8940425059362843131} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[38]' + value: + objectReference: {fileID: 4562737941373678235} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[39]' + value: + objectReference: {fileID: 2631489423020327185} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[40]' + value: + objectReference: {fileID: 5610396354854447841} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[41]' + value: + objectReference: {fileID: 2123250944813422033} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[42]' + value: + objectReference: {fileID: 2000809661938741309} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[43]' + value: + objectReference: {fileID: 6473714135551724435} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[44]' + value: + objectReference: {fileID: 5669833342357660148} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[45]' + value: + objectReference: {fileID: 6141527695113186664} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[46]' + value: + objectReference: {fileID: 4839116839851606145} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[47]' + value: + objectReference: {fileID: 7110048581366931326} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[48]' + value: + objectReference: {fileID: 5900419027130761357} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[49]' + value: + objectReference: {fileID: 6480210611863174273} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[50]' + value: + objectReference: {fileID: 8777775106935455619} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[51]' + value: + objectReference: {fileID: 6105694142304882959} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[52]' + value: + objectReference: {fileID: 4605158383453496082} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[53]' + value: + objectReference: {fileID: 2310214996098885368} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[54]' + value: + objectReference: {fileID: 1627359146790557769} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[55]' + value: + objectReference: {fileID: 2635599058812301034} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[56]' + value: + objectReference: {fileID: 8016837210830832472} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[57]' + value: + objectReference: {fileID: 7283908189651878481} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[58]' + value: + objectReference: {fileID: 3132931706066331453} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[59]' + value: + objectReference: {fileID: 3298995579435312139} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[60]' + value: + objectReference: {fileID: 8456008136956450565} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[61]' + value: + objectReference: {fileID: 8045836625720254902} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[62]' + value: + objectReference: {fileID: 4860596083317155883} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[63]' + value: + objectReference: {fileID: 7727436945287390409} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[64]' + value: + objectReference: {fileID: 2809610513655752218} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[65]' + value: + objectReference: {fileID: 5249038767782609107} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[66]' + value: + objectReference: {fileID: 1449279430837441380} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[67]' + value: + objectReference: {fileID: 5948956878670039621} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[68]' + value: + objectReference: {fileID: 3857855397724423005} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[69]' + value: + objectReference: {fileID: 8309253366376737333} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[70]' + value: + objectReference: {fileID: 3532944794370852229} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[71]' + value: + objectReference: {fileID: 278158173827755249} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[72]' + value: + objectReference: {fileID: 8476040891116452136} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[73]' + value: + objectReference: {fileID: 2966800108455367313} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[74]' + value: + objectReference: {fileID: 5560533684588762149} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[75]' + value: + objectReference: {fileID: 3521571323787122578} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[76]' + value: + objectReference: {fileID: 1318918729803796805} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[77]' + value: + objectReference: {fileID: 1087984198792294491} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[78]' + value: + objectReference: {fileID: 2343076254318518251} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[79]' + value: + objectReference: {fileID: 5908211861445869069} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[80]' + value: + objectReference: {fileID: 778687151851423932} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[81]' + value: + objectReference: {fileID: 6962469275520455976} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[82]' + value: + objectReference: {fileID: 8397060781757249974} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[83]' + value: + objectReference: {fileID: 8554538279758265649} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[84]' + value: + objectReference: {fileID: 223798292052130080} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[85]' + value: + objectReference: {fileID: 5176389140292753089} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[86]' + value: + objectReference: {fileID: 8771187836827978332} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[87]' + value: + objectReference: {fileID: 209097984926815843} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[88]' + value: + objectReference: {fileID: 7357794742894380175} + - target: {fileID: 4489810492412735681, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: 'm_Bones.Array.data[89]' + value: + objectReference: {fileID: 6399888702482602148} + - target: {fileID: 4919704491745833379, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + propertyPath: m_Name + value: box03_0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 74926328127229082, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a8207239ebf8f6146992057f2ed90856, type: 3} +--- !u!4 &8910178506499315122 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4173649190654784598, guid: a8207239ebf8f6146992057f2ed90856, type: 3} + m_PrefabInstance: {fileID: 4777360395321303524} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6336458984155133675 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 214926064423410765} + m_Modifications: + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 6399888702482602148} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 8010882512096648540} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 4223771968091972107} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 4118238377854900585} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 7006165658755993562} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 6459561651564503592} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 4981935676067453574} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 409186995373660248} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 5082390430456275110} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 3430360966011405539} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 2008610304230855982} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 172240359772612384} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 7293129320379916184} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 1622703188636724176} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 3373008129636032615} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 8151304711960954646} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 2678228239227418018} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 5957993227891617708} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 5749314542597483282} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 8480142216990174451} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 2843308940036031906} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 6265263047719389205} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 1998071657227866708} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 645080477819181907} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 6116273774054567515} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 5526623167925429675} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 9099050613731110605} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 1929402317240991996} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 8173712867545469037} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 225146292983450730} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 2633106661682839913} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 5173355356731702160} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[31]' + value: + objectReference: {fileID: 1362652522027414281} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[32]' + value: + objectReference: {fileID: 1902796875974996689} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[33]' + value: + objectReference: {fileID: 3686017312446747000} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[34]' + value: + objectReference: {fileID: 8991539771313736419} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[35]' + value: + objectReference: {fileID: 6738063362260561396} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[36]' + value: + objectReference: {fileID: 9057711742527161432} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[37]' + value: + objectReference: {fileID: 8940425059362843131} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[38]' + value: + objectReference: {fileID: 4562737941373678235} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[39]' + value: + objectReference: {fileID: 2631489423020327185} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[40]' + value: + objectReference: {fileID: 5610396354854447841} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[41]' + value: + objectReference: {fileID: 2123250944813422033} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[42]' + value: + objectReference: {fileID: 2000809661938741309} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[43]' + value: + objectReference: {fileID: 6473714135551724435} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[44]' + value: + objectReference: {fileID: 5669833342357660148} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[45]' + value: + objectReference: {fileID: 6141527695113186664} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[46]' + value: + objectReference: {fileID: 4839116839851606145} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[47]' + value: + objectReference: {fileID: 7110048581366931326} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[48]' + value: + objectReference: {fileID: 5900419027130761357} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[49]' + value: + objectReference: {fileID: 6480210611863174273} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[50]' + value: + objectReference: {fileID: 8777775106935455619} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[51]' + value: + objectReference: {fileID: 6105694142304882959} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[52]' + value: + objectReference: {fileID: 4605158383453496082} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[53]' + value: + objectReference: {fileID: 2310214996098885368} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[54]' + value: + objectReference: {fileID: 1627359146790557769} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[55]' + value: + objectReference: {fileID: 2635599058812301034} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[56]' + value: + objectReference: {fileID: 8016837210830832472} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[57]' + value: + objectReference: {fileID: 7283908189651878481} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[58]' + value: + objectReference: {fileID: 3132931706066331453} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[59]' + value: + objectReference: {fileID: 3298995579435312139} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[60]' + value: + objectReference: {fileID: 8456008136956450565} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[61]' + value: + objectReference: {fileID: 8045836625720254902} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[62]' + value: + objectReference: {fileID: 4860596083317155883} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[63]' + value: + objectReference: {fileID: 7727436945287390409} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[64]' + value: + objectReference: {fileID: 2809610513655752218} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[65]' + value: + objectReference: {fileID: 5249038767782609107} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[66]' + value: + objectReference: {fileID: 1449279430837441380} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[67]' + value: + objectReference: {fileID: 5948956878670039621} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[68]' + value: + objectReference: {fileID: 3857855397724423005} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[69]' + value: + objectReference: {fileID: 8309253366376737333} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[70]' + value: + objectReference: {fileID: 3532944794370852229} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[71]' + value: + objectReference: {fileID: 278158173827755249} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[72]' + value: + objectReference: {fileID: 8476040891116452136} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[73]' + value: + objectReference: {fileID: 2966800108455367313} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[74]' + value: + objectReference: {fileID: 5560533684588762149} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[75]' + value: + objectReference: {fileID: 3521571323787122578} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[76]' + value: + objectReference: {fileID: 1318918729803796805} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[77]' + value: + objectReference: {fileID: 1087984198792294491} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[78]' + value: + objectReference: {fileID: 2343076254318518251} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[79]' + value: + objectReference: {fileID: 5908211861445869069} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[80]' + value: + objectReference: {fileID: 778687151851423932} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[81]' + value: + objectReference: {fileID: 6962469275520455976} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[82]' + value: + objectReference: {fileID: 8397060781757249974} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[83]' + value: + objectReference: {fileID: 8554538279758265649} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[84]' + value: + objectReference: {fileID: 223798292052130080} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[85]' + value: + objectReference: {fileID: 5176389140292753089} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[86]' + value: + objectReference: {fileID: 8771187836827978332} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[87]' + value: + objectReference: {fileID: 209097984926815843} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[88]' + value: + objectReference: {fileID: 7357794742894380175} + - target: {fileID: 2442159759821776818, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: 'm_Bones.Array.data[89]' + value: + objectReference: {fileID: 6399888702482602148} + - target: {fileID: 6844168087696745476, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_Name + value: Object01_0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 8672994124121204144, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} +--- !u!4 &3737205718497850802 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7220016853278081881, guid: b913d3f48659333429c1e470ec55b8f7, type: 3} + m_PrefabInstance: {fileID: 6336458984155133675} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab.meta new file mode 100644 index 0000000000..b34bc28e46 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b32a5b206ae625c4f8ca31c0281953f0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat new file mode 100644 index 0000000000..20cd3020c2 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Object01_0 + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a09fa3bea40ef954eacaaaa1d8a67847, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a09fa3bea40ef954eacaaaa1d8a67847, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8318193046945266033 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat.meta new file mode 100644 index 0000000000..bb64b68d05 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 32258081b81adb7478c12060c864b013 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh new file mode 100644 index 0000000000..b1430205e3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh @@ -0,0 +1,1787 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Object01_0 + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 1794 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 330 + localAABB: + m_Center: {x: -0.000081539154, y: 1.386452, z: 0.33178705} + m_Extent: {x: 6.15963, y: 0.6648135, z: 1.7183292} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: -0.0000014885275 + e01: 0.35050398 + e02: 0.9365617 + e03: -0.75984585 + e10: -1.0000006 + e11: -0.0000026921407 + e12: -0.00000054453517 + e13: -0.0036534132 + e20: 0.0000022537788 + e21: -0.9365619 + e22: 0.3505039 + e23: 0.8913011 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.21864673 + e01: 0.7848885 + e02: 0.57978016 + e03: -1.697715 + e10: -0.969122 + e11: -0.10524497 + e12: -0.22299781 + e13: 0.23921148 + e20: -0.11400951 + e21: -0.610635 + e22: 0.78366333 + e23: -0.015477419 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.18944904 + e01: 0.76930875 + e02: 0.6101432 + e03: -1.9453067 + e10: -0.9759975 + e11: -0.07955671 + e12: -0.20273615 + e13: 0.1742814 + e20: -0.10742569 + e21: -0.63390595 + e22: 0.76591444 + e23: 0.042889595 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000016676889 + e01: -0.08884438 + e02: 0.99604577 + e03: 0.44146356 + e10: -1.0000002 + e11: -0.000002671545 + e12: -0.0000018476834 + e13: -0.0036531985 + e20: 0.0000027710637 + e21: -0.9960459 + e22: -0.088844456 + e23: 1.059433 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000014847684 + e01: 0.0898714 + e02: 0.99595374 + e03: -0.092469275 + e10: -1.0000004 + e11: -0.0000027317892 + e12: -0.0000011900681 + e13: -0.0036530902 + e20: 0.000002549062 + e21: -0.99595386 + e22: 0.08987131 + e23: 1.0602214 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.2865391 + e01: 0.5907788 + e02: 0.75423956 + e03: -2.1031573 + e10: -0.9563981 + e11: -0.12989263 + e12: -0.261598 + e13: 0.345067 + e20: -0.056576442 + e21: -0.7963104 + e22: 0.6022382 + e23: 0.5559794 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.15040392 + e01: -0.95440245 + e02: -0.2578706 + e03: 1.1833944 + e10: -0.9884223 + e11: 0.13987154 + e12: 0.05882184 + e13: -0.60728675 + e20: -0.020070862 + e21: 0.26373172 + e22: -0.96438843 + e23: 0.36276424 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000002384186 + e01: -0.00000005960465 + e02: 1.0000001 + e03: 0.6392568 + e10: -1.0000001 + e11: 0.0000013113023 + e12: -0.00000017881396 + e13: -0.0036565026 + e20: -0.000001370907 + e21: -1.0000001 + e22: -0.0000001192093 + e23: 1.0941919 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.04451765 + e01: -0.99106145 + e02: 0.12576278 + e03: 1.1455554 + e10: 0.9981302 + e11: -0.049403805 + e12: -0.036003135 + e13: 0.46266183 + e20: 0.041894395 + e21: 0.123924844 + e22: 0.991407 + e23: 0.516283 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0362373 + e01: -0.003856977 + e02: -0.9993362 + e03: -0.5894246 + e10: 0.9981303 + e11: -0.049403854 + e12: -0.036002956 + e13: 0.462662 + e20: -0.049232237 + e21: -0.9987721 + e22: 0.0056400215 + e23: 0.57271343 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.044517197 + e01: -0.99106145 + e02: 0.1257629 + e03: 1.1458812 + e10: 0.9981301 + e11: 0.04940386 + e12: 0.036005996 + e13: -0.45536384 + e20: -0.041897375 + e21: 0.12392513 + e22: 0.99140733 + e23: 0.5159766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03624043 + e01: -0.0038570198 + e02: -0.99933666 + e03: -0.58916 + e10: 0.9981301 + e11: 0.04940367 + e12: 0.036005944 + e13: -0.45536366 + e20: 0.04923193 + e21: -0.9987723 + e22: 0.005639838 + e23: 0.5730735 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000015234314 + e01: -0.054261215 + e02: -0.9985273 + e03: -1.0003669 + e10: -1.0000004 + e11: 0.0000027628557 + e12: -0.0000016194502 + e13: -0.0036596651 + e20: 0.000002909407 + e21: 0.99852735 + e22: -0.05426111 + e23: -1.2620856 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000015541281 + e01: -0.10878066 + e02: -0.99406636 + e03: -1.7854996 + e10: -1.0000005 + e11: 0.000002714793 + e12: -0.0000018074029 + e13: -0.0036599436 + e20: 0.0000029610258 + e21: 0.99406636 + e22: -0.10878056 + e23: -1.3613558 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000014871202 + e01: -0.1106958 + e02: -0.9938552 + e03: -3.5678988 + e10: -1.0000006 + e11: 0.0000027760414 + e12: -0.0000017525456 + e13: -0.0036595773 + e20: 0.0000030188137 + e21: 0.99385506 + e22: -0.110695675 + e23: -1.2758023 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000015635815 + e01: -0.1899248 + e02: -0.98179936 + e03: -2.7697275 + e10: -1.0000007 + e11: 0.0000025110617 + e12: -0.0000020302473 + e13: -0.003660326 + e20: 0.0000029207883 + e21: 0.9817992 + e22: -0.18992464 + e23: -1.558014 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000001422834 + e01: -0.16598594 + e02: -0.9861288 + e03: -2.2061439 + e10: -1.0000006 + e11: 0.000002726578 + e12: -0.0000018522162 + e13: -0.003660074 + e20: 0.0000030648655 + e21: 0.98612875 + e22: -0.16598581 + e23: -1.4907231 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.34627685 + e01: 1.2868851 + e02: 0.9381019 + e03: -2.7090728 + e10: -0.26393276 + e11: 0.6135509 + e12: -0.7442423 + e13: -0.014295697 + e20: -0.9408486 + e21: 0.0062084086 + e22: 0.33877403 + e23: -0.22332895 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.32758272 + e01: 0.38232177 + e02: 0.8640144 + e03: -2.2155347 + e10: -0.9446725 + e11: -0.14891344 + e12: -0.29226992 + e13: 0.43422234 + e20: 0.016922064 + e21: -0.91195244 + e22: 0.40995002 + e23: 1.1081643 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.36579952 + e01: -0.47212595 + e02: 0.80205464 + e03: -0.89086676 + e10: -0.907182 + e11: -0.011615791 + e12: -0.42058298 + e13: 0.41324246 + e20: 0.20788388 + e21: -0.88145673 + e22: -0.4240529 + e23: 2.6600304 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.34646043 + e01: 0.15267706 + e02: 0.9255572 + e03: -2.1005545 + e10: -0.9334167 + e11: -0.15422696 + e12: -0.32396132 + e13: 0.50607 + e20: 0.09328414 + e21: -0.9761695 + e22: 0.19594513 + e23: 1.650542 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.23550136 + e01: 0.8423769 + e02: 0.4847083 + e03: -2.7459092 + e10: -0.9071834 + e11: -0.0116150165 + e12: -0.42057967 + e13: 0.41323498 + e20: -0.34865618 + e21: -0.53876656 + e22: 0.76692396 + e23: -0.53226924 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.35460234 + e01: -0.4609541 + e02: 0.8134996 + e03: -1.2145883 + e10: -0.1841898 + e11: 0.8874262 + e12: 0.4225537 + e13: -2.7063737 + e20: -0.916698 + e21: 0.00000015672684 + e22: -0.39958575 + e23: 0.34529272 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.32164374 + e01: -0.4609539 + e02: 0.82708544 + e03: -1.1149434 + e10: -0.16707043 + e11: 0.88742596 + e12: 0.4296101 + e13: -2.7237887 + e20: -0.93200713 + e21: -0.00000025382042 + e22: -0.36244625 + e23: 0.24699703 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.016886048 + e01: -0.48664483 + e02: 0.8734383 + e03: -0.22586513 + e10: -0.9884223 + e11: 0.13987148 + e12: 0.058821972 + e13: -0.60728693 + e20: -0.15079464 + e21: -0.86233133 + e22: -0.48337176 + e23: 0.5939739 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.05569967 + e01: -0.86069185 + e02: 0.50607324 + e03: -0.22552085 + e10: -0.9953225 + e11: 0.08794574 + e12: 0.04002464 + e13: -0.57943386 + e20: -0.07895603 + e21: -0.50147593 + e22: -0.86156297 + e23: 0.8595466 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.46598583 + e01: 0.17799132 + e02: 0.8667065 + e03: -0.7138486 + e10: -0.88037264 + e11: -0.0045366655 + e12: 0.47426474 + e13: -0.8626731 + e20: 0.08834639 + e21: -0.9840232 + e22: 0.15458441 + e23: -0.05000055 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.06086589 + e01: -0.8579226 + e02: -0.51016253 + e03: -0.051441193 + e10: 0.99813044 + e11: -0.04940382 + e12: -0.036003098 + e13: 0.4626619 + e20: 0.00568379 + e21: -0.5113999 + e22: 0.859325 + e23: 1.1968803 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000000044383796 + e01: -0.9980815 + e02: 0.061928146 + e03: 0.30949986 + e10: 0.9934481 + e11: 0.0070779533 + e12: 0.11407347 + e13: 0.6349776 + e20: -0.11429287 + e21: 0.06152226 + e22: 0.99154115 + e23: 1.1694778 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.45105615 + e01: 0.055270772 + e02: 0.89078337 + e03: 0.554356 + e10: 0.8924967 + e11: 0.027933206 + e12: 0.4501905 + e13: 1.0827249 + e20: -0.000000004044251 + e21: 0.9980815 + e22: -0.06192834 + e23: -0.08942258 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.45105615 + e01: 0.055270735 + e02: 0.89078325 + e03: 0.45080686 + e10: 0.8924968 + e11: 0.027933218 + e12: 0.45019054 + e13: 1.0827253 + e20: -0.0000000040443595 + e21: 0.9980816 + e22: -0.06192836 + e23: -0.089422345 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.22280225 + e01: 0.06037177 + e02: 0.9729935 + e03: 0.7664662 + e10: 0.9748646 + e11: 0.013797748 + e12: 0.22237457 + e13: 0.7889794 + e20: 0.000000111439675 + e21: 0.99808156 + e22: -0.061928503 + e23: -0.086298466 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.050240584 + e01: 0.061850257 + e02: 0.9968213 + e03: 0.9586204 + e10: 0.99873817 + e11: -0.0031113946 + e12: -0.050144147 + e13: 0.44299594 + e20: 0.00000014869279 + e21: 0.99808145 + e22: -0.061928466 + e23: -0.08766115 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.050240606 + e01: 0.061850265 + e02: 0.9968215 + e03: 0.87750787 + e10: 0.9987383 + e11: -0.003111404 + e12: -0.05014413 + e13: 0.44299605 + e20: 0.00000015241787 + e21: 0.99808156 + e22: -0.061928503 + e23: -0.08766091 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.22280227 + e01: 0.060371794 + e02: 0.97299355 + e03: 0.6741799 + e10: 0.9748647 + e11: 0.013797752 + e12: 0.2223746 + e13: 0.78897953 + e20: 0.000000111439675 + e21: 0.99808156 + e22: -0.061928503 + e23: -0.08629835 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.5217776 + e01: 0.05282961 + e02: 0.85144526 + e03: 1.0671519 + e10: 0.85308284 + e11: -0.03231258 + e12: -0.52077615 + e13: -0.22922027 + e20: 0.00000002203179 + e21: 0.9980815 + e22: -0.061927997 + e23: -0.09415102 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.52177763 + e01: 0.05282957 + e02: 0.8514453 + e03: 0.9811443 + e10: 0.85308295 + e11: -0.03231261 + e12: -0.52077615 + e13: -0.22922029 + e20: 0.0000000220311 + e21: 0.9980817 + e22: -0.061927967 + e23: -0.09415126 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03856575 + e01: 0.101314515 + e02: 0.9941087 + e03: -1.0586144 + e10: -0.99889535 + e11: 0.030712206 + e12: 0.03562135 + e13: -0.5405143 + e20: -0.026922684 + e21: -0.99438184 + e22: 0.102386914 + e23: -0.050514817 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00784763 + e01: -0.63791496 + e02: 0.7700695 + e03: -0.9689523 + e10: -0.9988955 + e11: 0.030712377 + e12: 0.035621565 + e13: -0.54051495 + e20: -0.04637445 + e21: -0.7694966 + e22: -0.63696814 + e23: 0.91316205 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.18060505 + e01: 0.19193363 + e02: 0.96464866 + e03: -1.1938105 + e10: -0.9832708 + e11: -0.011544821 + e12: -0.18179452 + e13: -0.35541344 + e20: -0.023756107 + e21: -0.98134166 + e22: 0.19080737 + e23: -0.14673996 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.13847545 + e01: -0.6010327 + e02: 0.787139 + e03: -1.0665559 + e10: -0.9832712 + e11: -0.0115450835 + e12: -0.18179458 + e13: -0.35541365 + e20: 0.11835159 + e21: -0.7991433 + e22: -0.5893783 + e23: 0.9657186 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.30097467 + e01: 0.056825947 + e02: 0.95193905 + e03: -1.19345 + e10: -0.9536065 + e11: -0.010302962 + e12: -0.3008867 + e13: -0.3061755 + e20: -0.0072907545 + e21: -0.9983326 + e22: 0.057290547 + e23: 0.01461494 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.26797873 + e01: -0.4264358 + e02: 0.8639121 + e03: -1.2537879 + e10: -0.9536069 + e11: -0.010303103 + e12: -0.3008867 + e13: -0.30617568 + e20: 0.13720913 + e21: -0.9044612 + e22: -0.40388983 + e23: 0.69740355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.42885354 + e01: -0.434688 + e02: 0.79191834 + e03: -0.71582425 + e10: -0.8803728 + e11: -0.0045366357 + e12: 0.47426468 + e13: -0.8626729 + e20: -0.2025648 + e21: -0.9005718 + e22: -0.38463253 + e23: 0.45861253 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15040396 + e01: -0.9544024 + e02: -0.2578699 + e03: 1.184494 + e10: -0.9884222 + e11: -0.13987161 + e12: -0.058824673 + e13: 0.60005957 + e20: 0.020073835 + e21: 0.2637313 + e22: -0.9643885 + e23: 0.36291134 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.2795211 + e01: 0.9769845 + e02: 0.7528737 + e03: -2.386753 + e10: -0.24934776 + e11: 0.67040145 + e12: -0.7012064 + e13: -0.15197384 + e20: -0.9396846 + e21: 0.00842306 + e22: 0.34195554 + e23: -0.23053792 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.33485338 + e01: 1.1121434 + e02: 0.90353227 + e03: -3.20085 + e10: -0.23764595 + e11: 0.70199853 + e12: -0.6770642 + e13: -0.24959153 + e20: -0.9403419 + e21: 0.0100879865 + e22: 0.34009996 + e23: -0.23120327 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.37742203 + e01: -0.19180407 + e02: 0.9767051 + e03: -1.6219667 + e10: 0.9268537 + e11: -0.02908547 + e12: -0.3756278 + e13: 0.34131867 + e20: 0.22783034 + e21: 1.3016728 + e22: 0.5473253 + e23: -3.5610285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.35716498 + e01: -0.27207553 + e02: 0.9430033 + e03: -1.3129482 + e10: 0.23001899 + e11: 1.2876171 + e12: 0.6150227 + e13: -4.0037255 + e20: -0.9343105 + e21: 0.0019145281 + e22: 0.35651895 + e23: -0.24724133 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.32284793 + e01: -0.319504 + e02: 0.9288836 + e03: -1.7242796 + e10: 0.23200345 + e11: 1.2766693 + e12: 0.6534478 + e13: -3.9755716 + e20: -0.94623226 + e21: -0.004408131 + e22: 0.3237207 + e23: -0.15154342 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.3273644 + e01: -0.35784644 + e02: 0.90464675 + e03: -1.4433316 + e10: 0.24728996 + e11: 1.266464 + e12: 0.67919433 + e13: -4.029367 + e20: -0.94079334 + e21: -0.0012478728 + e22: 0.33900306 + e23: -0.1932004 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.37277436 + e01: 0.96261686 + e02: 1.0165819 + e03: -3.8701797 + e10: -0.17305972 + e11: 0.8973911 + e12: -0.49569866 + e13: -0.91784275 + e20: -0.94047916 + e21: 0.0067251096 + e22: 0.33979055 + e23: -0.22389346 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.40029278 + e01: 0.7933028 + e02: 1.0856874 + e03: -3.3036315 + e10: -0.10580955 + e11: 1.0500294 + e12: -0.3129697 + e13: -1.5259912 + e20: -0.9391386 + e21: 0.009836608 + e22: 0.3434342 + e23: -0.23657909 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.016883327 + e01: -0.48664495 + e02: 0.8734381 + e03: -0.2257415 + e10: -0.98842245 + e11: -0.1398714 + e12: -0.05882465 + e13: 0.6000593 + e20: 0.15079533 + e21: -0.86233145 + e22: -0.48337153 + e23: 0.595077 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.055697657 + e01: -0.8606917 + e02: 0.50607336 + e03: -0.22511315 + e10: -0.9953225 + e11: -0.08794585 + e12: -0.040027574 + e13: 0.5721561 + e20: 0.0789582 + e21: -0.50147605 + e22: -0.86156255 + e23: 0.86012363 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.465988 + e01: 0.1779912 + e02: 0.86670494 + e03: -0.71725583 + e10: -0.88037145 + e11: 0.0045366124 + e12: -0.47426727 + e13: 0.8562354 + e20: -0.08834751 + e21: -0.9840234 + e22: 0.15458411 + e23: -0.050646186 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.060867425 + e01: -0.8579229 + e02: -0.51016283 + e03: -0.050996304 + e10: 0.9981302 + e11: 0.04940386 + e12: 0.036006063 + e13: -0.45536375 + e20: -0.0056865057 + e21: -0.51139987 + e22: 0.85932523 + e23: 1.1968395 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000000089086555 + e01: -0.99808174 + e02: 0.06192799 + e03: 0.30949956 + e10: 0.9934479 + e11: -0.007077851 + e12: -0.114070624 + e13: -0.6277135 + e20: 0.11428984 + e21: 0.06152264 + e22: 0.9915419 + e23: 1.170314 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.45105377 + e01: 0.05527078 + e02: 0.8907856 + e03: 0.5576546 + e10: 0.89249754 + e11: -0.027932987 + e12: -0.4501883 + e13: -1.0761993 + e20: 0.00000019711881 + e21: 0.9980821 + e22: -0.061927855 + e23: -0.08942187 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.45105383 + e01: 0.05527081 + e02: 0.89078563 + e03: 0.45410565 + e10: 0.89249754 + e11: -0.027932987 + e12: -0.4501883 + e13: -1.0761993 + e20: 0.00000019711881 + e21: 0.9980821 + e22: -0.061927855 + e23: -0.08942175 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22279921 + e01: 0.060371615 + e02: 0.9729947 + e03: 0.76809585 + e10: 0.9748651 + e11: -0.013797696 + e12: -0.22237174 + e13: -0.7818515 + e20: 0.00000015241577 + e21: 0.99808186 + e22: -0.061927766 + e23: -0.08629775 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.050243516 + e01: 0.06185001 + e02: 0.9968215 + e03: 0.95825344 + e10: 0.99873775 + e11: 0.0031113578 + e12: 0.050147105 + e13: -0.4356934 + e20: 0.00000014496494 + e21: 0.998082 + e22: -0.06192776 + e23: -0.08766043 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.050243504 + e01: 0.06185002 + e02: 0.99682164 + e03: 0.87714076 + e10: 0.998738 + e11: 0.0031113685 + e12: 0.050147112 + e13: -0.43569332 + e20: 0.00000014123933 + e21: 0.9980821 + e22: -0.061927766 + e23: -0.08766031 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.52178 + e01: 0.05282961 + e02: 0.8514441 + e03: 1.0633374 + e10: 0.853081 + e11: 0.032312796 + e12: 0.52077895 + e13: 0.23545836 + e20: 0.00000003693162 + e21: 0.99808186 + e22: -0.06192766 + e23: -0.0941509 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.52178 + e01: 0.05282961 + e02: 0.8514441 + e03: 0.97732985 + e10: 0.85308117 + e11: 0.032312825 + e12: 0.520779 + e13: 0.23545823 + e20: 0.00000003693139 + e21: 0.998082 + e22: -0.06192764 + e23: -0.09415102 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22279924 + e01: 0.060371645 + e02: 0.97299486 + e03: 0.6758095 + e10: 0.9748652 + e11: -0.013797692 + e12: -0.22237177 + e13: -0.78185153 + e20: 0.00000015614081 + e21: 0.998082 + e22: -0.06192776 + e23: -0.08629775 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.03856874 + e01: 0.101314195 + e02: 0.9941082 + e03: -1.0588963 + e10: -0.99889493 + e11: -0.030712534 + e12: -0.0356244 + e13: 0.5332102 + e20: 0.02692198 + e21: -0.9943819 + e22: 0.102386415 + e23: -0.050317407 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.007850296 + e01: -0.6379153 + e02: 0.7700693 + e03: -0.9690087 + e10: -0.99889505 + e11: -0.0307123 + e12: -0.035624363 + e13: 0.53321034 + e20: 0.04637562 + e21: -0.76949656 + e22: -0.6369678 + e23: 0.91350126 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.18060231 + e01: 0.19193378 + e02: 0.9646491 + e03: -1.1924899 + e10: -0.98327124 + e11: 0.01154494 + e12: 0.18179154 + e13: 0.3482235 + e20: 0.023754729 + e21: -0.98134166 + e22: 0.19080761 + e23: -0.14656627 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.13847283 + e01: -0.60103315 + e02: 0.7871395 + e03: -1.065543 + e10: -0.9832714 + e11: 0.0115450015 + e12: 0.18179174 + e13: 0.34822342 + e20: -0.118350476 + e21: -0.79914314 + e22: -0.5893788 + e23: 0.964854 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.30097193 + e01: 0.056825932 + e02: 0.95194 + e03: -1.1912495 + e10: -0.95360714 + e11: 0.010303025 + e12: 0.30088362 + e13: 0.29920238 + e20: 0.007289877 + e21: -0.9983327 + e22: 0.05729039 + e23: 0.014669418 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.26797584 + e01: -0.426436 + e02: 0.86391276 + e03: -1.2518276 + e10: -0.95360726 + e11: 0.010303198 + e12: 0.3008837 + e13: 0.29920232 + e20: -0.13720886 + e21: -0.90446126 + e22: -0.4038905 + e23: 0.696401 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.42885602 + e01: -0.4346883 + e02: 0.7919169 + e03: -0.71895945 + e10: -0.8803718 + e11: 0.00453643 + e12: -0.4742674 + e13: 0.8562356 + e20: 0.2025653 + e21: -0.9005717 + e22: -0.38463172 + e23: 0.4600935 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9933373 + e01: 0.09707814 + e02: 0.06211652 + e03: -0.49033916 + e10: 0.09745272 + e11: 0.9952366 + e12: 0.0030191564 + e13: -1.3852421 + e20: -0.061527435 + e21: 0.0090524405 + e22: -0.99806494 + e23: 0.5952637 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.96522284 + e01: -0.031102538 + e02: 0.25957677 + e03: -3.2895079 + e10: -0.029376362 + e11: 0.9995139 + e12: 0.010526854 + e13: -1.6996801 + e20: -0.25977755 + e21: 0.0025352945 + e22: -0.9656657 + e23: 0.8038738 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.441272 + e01: -0.2550442 + e02: -0.8603682 + e03: 3.1982744 + e10: 0.10439839 + e11: 0.966843 + e12: -0.23306261 + e13: -0.8918703 + e20: 0.89128155 + e21: 0.013023047 + e22: 0.453266 + e23: 2.0348046 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.1721709 + e01: -0.21483897 + e02: -0.9613546 + e03: 1.3561735 + e10: -0.040201515 + e11: 0.97664785 + e12: -0.21105659 + e13: -1.364011 + e20: 0.9842476 + e21: 0.002310261 + e22: -0.17678717 + e23: 3.4311934 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.7200865 + e01: -0.0399042 + e02: -0.2590641 + e03: -1.7712952 + e10: -0.038009185 + e11: 0.9981205 + e12: -0.04809282 + e13: -1.6499007 + e20: 0.33993632 + e21: -0.032342203 + e22: -0.9398931 + e23: 2.6704493 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.84476244 + e01: 0.07521835 + e02: 0.5298309 + e03: -1.7666513 + e10: 0.10184722 + e11: 0.99457544 + e12: 0.021188263 + e13: -1.3903607 + e20: -0.52536243 + e21: 0.07186065 + e22: -0.8478393 + e23: -0.30883625 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.20000473 + e01: -0.2500092 + e02: -0.9473619 + e03: 1.403075 + e10: 0.045781493 + e11: 0.96822745 + e12: -0.2458502 + e13: -1.2596503 + e20: 0.97872555 + e21: 0.005799781 + e22: 0.2050955 + e23: 1.4514139 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.35257295 + e01: -0.31841856 + e02: -0.72587276 + e03: -0.53578275 + e10: -0.1851173 + e11: 0.9453561 + e12: -0.21196027 + e13: -2.133681 + e20: 0.6906155 + e21: 0.061594903 + e22: -0.61725813 + e23: 3.939897 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9882067 + e01: 0.13399978 + e02: 0.074115306 + e03: -0.52588916 + e10: -0.13387626 + e11: 0.9909763 + e12: -0.0066531487 + e13: -1.3664144 + e20: -0.074338 + e21: -0.0033476423 + e22: 0.99722797 + e23: -0.61808866 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9656395 + e01: -0.065152496 + e02: 0.25159064 + e03: -3.2619078 + e10: 0.0566085 + e11: 0.9975524 + e12: 0.04105795 + e13: -1.8825231 + e20: -0.25364974 + e21: -0.025405027 + e22: 0.9669632 + e23: -0.7418614 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.21068121 + e01: -0.13831297 + e02: -0.9677215 + e03: 1.1383047 + e10: 0.014285613 + e11: 0.9902705 + e12: -0.13842584 + e13: -1.4633577 + e20: 0.9774516 + e21: 0.015339342 + e22: 0.210607 + e23: -3.4330633 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.7073954 + e01: -0.06551899 + e02: -0.25825825 + e03: -1.6682124 + e10: 0.08166595 + e11: 0.99623686 + e12: -0.02905028 + e13: -1.8593807 + e20: 0.3428849 + e21: -0.0007155305 + e22: 0.9393778 + e23: -2.6217942 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.44333416 + e01: -0.12196414 + e02: -0.88802105 + e03: 2.9733417 + e10: -0.054095946 + e11: 0.9925351 + e12: -0.10931175 + e13: -1.3072366 + e20: 0.8947242 + e21: -0.0004230917 + e22: -0.44662222 + e23: -2.117282 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.100405894 + e01: -0.075156435 + e02: -0.9921044 + e03: 0.9707756 + e10: -0.09991922 + e11: 0.9928643 + e12: -0.06510166 + e13: -1.3198569 + e20: 0.98991734 + e21: 0.09259374 + e22: -0.10719879 + e23: -1.6300361 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.8735369 + e01: 0.034220673 + e02: 0.48555496 + e03: -1.7097389 + e10: -0.06669742 + e11: 0.9965323 + e12: 0.049758967 + e13: -1.5165691 + e20: -0.48216835 + e21: -0.07585158 + e22: 0.87278956 + e23: 0.19446313 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.38129684 + e01: -0.26732078 + e02: -0.70325714 + e03: -0.7805855 + e10: 0.16347189 + e11: 0.9614542 + e12: -0.18821603 + e13: -2.0522828 + e20: 0.67270905 + e21: -0.03043928 + e22: 0.6480558 + e23: -3.912666 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: -0.24410594, y: -1.2345824, z: -0.36790615} + m_Max: {x: 0.4780208, y: 0.39438695, z: -0.0772686} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.8003395, y: -1.2345824, z: -0.3627069} + m_Max: {x: 0.8003395, y: -1.2345824, z: -0.3627069} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.62814593, y: -0.2520477, z: -0.2770033} + m_Max: {x: 0.006750822, y: 0.3659977, z: 0.15455371} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.76662827, y: -0.4353727, z: -0.30947828} + m_Max: {x: 0.18710375, y: -0.022926748, z: 0.30989707} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.091704965, y: -0.20775914, z: -0.1254986} + m_Max: {x: 1.3920542, y: 0.11472845, z: 0.8297882} + - m_Min: {x: 0.052792072, y: -0.038145304, z: -0.09308207} + m_Max: {x: 1.6963596, y: 0.116864204, z: 0.3639891} + - m_Min: {x: 0.27105355, y: -0.033267915, z: -1.0917032} + m_Max: {x: 3.1096196, y: 0.30286938, z: 0.29859638} + - m_Min: {x: 0.2349999, y: -0.1548487, z: -1.1839633} + m_Max: {x: 3.1593335, y: 0.2772118, z: 0.5579066} + - m_Min: {x: 0.17264116, y: -0.121264696, z: -0.28926563} + m_Max: {x: 1.4627863, y: 0.11897397, z: 0.3991995} + - m_Min: {x: -0.21528256, y: -0.21218276, z: -0.19994077} + m_Max: {x: 1.8477968, y: 0.11804283, z: 0.44851938} + - m_Min: {x: 0.32624626, y: -0.081939936, z: -0.53859746} + m_Max: {x: 1.2123575, y: 0.1338476, z: 0.4224819} + - m_Min: {x: -0.025417686, y: -0.1667285, z: -0.109712124} + m_Max: {x: 1.9009571, y: 0.090764284, z: 0.98260784} + - m_Min: {x: 0.10509533, y: -0.17102921, z: -0.8577534} + m_Max: {x: 1.4143893, y: 0.06991708, z: 0.0916757} + - m_Min: {x: 0.012554884, y: -0.08145213, z: -0.31100672} + m_Max: {x: 1.6576202, y: 0.07324743, z: 0.14463812} + - m_Min: {x: 0.25909317, y: -0.4403807, z: -0.58994627} + m_Max: {x: 3.1533122, y: 0.110973716, z: 1.1591628} + - m_Min: {x: 0.19263709, y: -0.10275674, z: -0.80465305} + m_Max: {x: 1.466414, y: 0.08114469, z: 0.29629183} + - m_Min: {x: 0.21903658, y: -0.43286318, z: -0.36269784} + m_Max: {x: 3.024782, y: 0.08927977, z: 1.0285294} + - m_Min: {x: -0.17137885, y: -0.23762274, z: -0.46979916} + m_Max: {x: 1.1852164, y: 0.07528603, z: 0.8941405} + - m_Min: {x: -0.18197346, y: -0.16783202, z: -0.3157158} + m_Max: {x: 1.8493654, y: 0.10096955, z: 0.11049807} + - m_Min: {x: -0.029438913, y: -0.22324741, z: -1.0120447} + m_Max: {x: 1.8544841, y: 0.07977104, z: 0.08845639} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 0200000001000500030004000600040003000300070006000800060007000500040001000100000005000700020008000200010008000400060009000a0009000600040009000b000b000100040008000c000a00060008000a0001000b000c000c000800010009000a000d000b0009000d000a000c000d000c000b000d0010000e000f000f00110010000e0012000f0012000e0013001300140012001700150016001a001800190018001a001b001b001c0018001c001b001d0017001a0019001900150017001d0016001c001d00170016001e001b001a001b001e001f0020001e001a001a00170020001f0021001d001f001d001b0021002000170017001d00210022001f001e0022001e002000220021001f002200200021002500230024002400260025002500270023002800230027002700290028002c002a002b002a002c002d002f002a002e0030002f002e002a002f002b00300031002f003400320033003600320035003400350032003700340033003500340038003700380034003b0039003a003a003c003d003e003d003c003e003f003d003a003d0040004300410042003b0042004100410044003b0039003b004400450042003b00480046004700470049004800390047003a00390044004700490047004400400045003b003d003f004000450040003f003a0040003b004c004a004b004e004d004a004b004a004d0051004f005000510052004f00540053004f0050004f0053005500540052004f00520054004d004e005400530054004e0056004d005500540055004d004c0057004a004c00580057005a00590057004a00570059005b005a005800570058005a005e005c005d005e005f005c00610060005c005d005c006000620061005f005c005f0061005a005b006100600061005b0059005a006200610062005a006500630064006600640063006900670068005800680067004c00680058006a00690038006800380069004c00380068006d006b006c006d006e006b006f0065006e006b006e0065006c006b006400650064006b00700063006f0065006f006300700067006300690063006700660063006a0069006a0063004c00360035004c00350038002f00310042004300420031002b002f004500420045002f004d0056004b00560046004b004b0046004c00460048004c004c004800710048004900710071004900720049004400720072004400730044004100730041004300730073004300740043003100740074003100750031003000750075003000760077002d002c002b0077002c002b002c0078007500760079007b007a00770079007a007b0077002b007b0079007b007c00750079007c007d00330037007e00330032007e0032007f0036007f0032007d0037003800370033007e0037007e0038007f0038007e002b00780080003e0081003f003e003c008100450080003f007400820073008300730082008400730083008500720084007300840072007200850071008700830086008200860083008800840087008300870084004500870086008a0089008500710085008900850084008a0088008a0084008b008700450045003f008b0081008b003f00710089004c0036004c007f0038006a007d0055008c00520055008d008c003a008e0047008d0056008e0053008f004e00910090005300900059008f00620092005f006200900092009300700067005b00940093006000950094009400700093008d003c008c008d003a003c006f00940095006f007000940046008e00560047008e0046008d008e003a00550056008d009100530050009200900091004a008f0059004e008f004a0090008f0053006200590090006f0095009600580093006700970060005d00970095006000600094005b0058005b0093006e006f009600880087003a003a0081003c003a008b008100470046008a0089008a00460047008a003a0088003a008a003a0087008b00890046004c0098004c0046004a004c009800460056009800990098005600980099004a004e004a00990051009a005200510050009a009b0055009a0052009a00550053009b0050009a0050009b00990056009b0055009b0056004e00990053009b00530099009c004c004a0058004c009c004a0059009c009d009c0059009c009d0058005b0058009d005e009e005f005e005d009e009f0062009e005f009e00620060009f005d009e005d009f009d0059009f0062009f0059005b009d0060009f0060009d00a0004c00580058006700a000a100a0006700a000a10038006a003800a10038004c00a0006d00a2006e006d006c00a200a3006f00a2006e00a2006f006400a3006c00a2006c00a300a4007000a3006f00a30070006600a4006400a3006400a400a1006700a4007000a40067006a00a1006600a4006600a1007f004c00380045002b00800082007c0086007b0086007c0086007b0045002b0045007b00820074007c0075007c007400a700a500a600aa00a800a900a800aa00ab00ab00ac00a800ac00ab00ad00a700aa00a900a900a500a700ad00a600ac00ad00a700a600ae00ab00aa00ab00ae00af00b000ae00aa00aa00a700b000af00b100ad00af00ad00ab00b100b000a700a700ad00b100b200af00ae00b200ae00b000b200b100af00b200b000b100b500b300b400b400b600b500b500b700b300b800b300b700b700b900b800bc00ba00bb00bf00bd00be00c000be00bd00bd00c100c000c200c000c100bf00be00bb00bb00ba00bf00c100bc00c200bc00bb00c200be00c000c300c400c300c000be00c300c500c500bb00be00c200c600c400c000c200c400bb00c500c600c600c200bb00c300c400c700c500c300c700c400c600c700c600c500c700ca00c800c900c900cb00ca00c800cc00c900cc00c800cd00cd00ce00cc00d100cf00d000d200d000cf00d400cf00d300d400d300d500d100d300cf00d300d600d500d900d700d800db00d700da00d700db00d800d900d800dc00dd00d800db00d800dd00dc00e000de00df00e200e100e000e100e200e300e200e400e300e500e200e000e800e600e700e600e800df00df00e900e600e900df00de00df00e800ea00ed00eb00ec00ec00ee00ed00e000ed00de00ed00e900de00e900ed00ee00df00ea00e500e500e400e200e400e500ea00df00e500e000f100ef00f000ef00f200f300f200ef00f100f600f400f500f400f700f500f400f800f900f800f400f600f700f900fa00f900f700f400f900f300f200f300f900f800fa00f200fb00f200fa00f900ef00fc00f000fc00fd00f000fc00fe00ff00fe00fc00ef00fd00ff000001ff00fd00fc0003010101020101010401020101010501060105010101030104010601070106010401010106010001ff000001060105010701ff00fe00ff00070106010a010801090108010a010b010e010c010d010c010e01fd00fd000e01f000dd000d010f010d01dd000e010e01dd00f0001201100111011001130111011301090114010901130110010a011001120110010a01090114010801150108011401090108010c0115010c0108010d010f0108010b0108010f010d01db00da00f000dd00db00f000e800d600d300d600e800e700ea00d300d100d300ea00e800f100fb00f200f100eb00fb00f000eb00f100f000ec00eb001601ec00f0001601ee00ec001701ee0016011701e900ee001801e90017011801e600e9001801e700e6001901e70018011901d600e7001a01d60019011a01d500d6001b01d5001a01d000d2001c01d0001c01d1001d01d000d1001e011b011a011c011f01200120011f011e012001d1001c01210120011e0121011e011a01dc00d9002201d700d90023012401d7002301d7002401da00dd00dc0022012301d900dc00dd002301dc002301dd00240125011d01d100e4002601e3002601e100e300e4002501ea00180127011901270118012801280118012901290117012a0117012901180116012a0117012c0128012b0128012c0127012b0129012d0129012b0128012c012b01ea002a012e012f012e012a0116012f0129012a0129012f012d01ea002b0130013001e400ea00e40030012601f0002e0116012401f000da0022010f01dd00f7003101fa0031013201fa00ed003301e0003301fb003201f3003401f800f800350136013401fe0035010401370107013701350107010c011501380138013901000139013a0105013801150139013101e1003201e100e00032013a0139011401390115011401fb003301eb00eb003301ed00e000330132013201fb00fa00f600f8003601360135013701fe003401ef00ef003401f300f800340135013501fe0007013b013a0114010c013801fd00030105013c0105013a013c0100013901050138010001fd003b0114011301e0002b012d01e1002601e00026013001e0002f01eb00ed00eb002f012e01e0002f01ed002f01e0002d0130012b01e000f000eb002e01eb00f0003d013d01f000ef003d01fb00eb00fb003d013e01ef003e013d013e01ef00f300f7003f01f5003f01f600f5003f01fa004001fa003f01f700f6004001f8004001f6003f014001fb003e01fb004001fa00f8003e01f3003e01f8004001ef00f00041014101f000fd004101fe00ef00fe0041014201fd00420141014201fd0000010401430102014301030102014301070144010701430104010301440105014401030143014401fe004201fe0044010701050142010001420105014401fd00f000450145010c01fd000c0145014601dd00460145014601dd000f014501f000dd00130147011101470112011101470114014801140147011301120148010a014801120147014801150149011501480114010a0149010b0149010a01480149010c0146010c01490115010b0146010f0146010b014901dd00f00024012501d100ea002c012101270121012c012001ea0020012c012001ea00d100210119012701190121011a01 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 330 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 21120 + _typelessdata: 8916183fef470340e3bae93f2e0524bd92037e3f800af1bd96f5163f021202405882d53faefba0bedc7c593f16dad8bea45a133f09ca0040e687de3fdba17abf20f7453e6979833daac6263f5ab8fa3f9de1e63f9bc5753f6d708dbe5f1237bd99f9223ff6230040a99ad63f03f2573f94c2b83e70a9cbbe76c0243f2ca70140d822ea3faccc3e3f2ad2273f13dcf8bd7633223ff667f83fd3a6d73f7a7b1d3fa57e42bfc7ab573eee9f193f1ea2fa3f58f1e33f88affabe047859bfb84b493ef14d113fc010fb3fa34bd73fc5aa4cbf7a8adebe0f49d43ee33b153fc0a4ea3f21e4c03fa625713fd3bae43dce11a2befa2e133f5b8ae53fa460c23f9225cc3ccaba4dbf0d38183fa4dc0e3fc915ec3f7f27c03f92eb003d12ef303fced638bf28ae083f5db9e93f41c1c13f008f7ebf407484bd03eaab3d11a8103f2ebbd33fd2c2a33f7698a0bdfd02b0bed38e6fbfa49f173f04f8d13f56b9e33f16f97c3f8e5602bed712afbd7633223ff667f83fd3a6d73fc8a57a3f927c3fbe01f8a3bd9e431b3f4f86e83f8120ef3f978f7b3fbcb33cbe3a16a83caac6263f5ab8fa3f9de1e63f36ed6f3f6493acbe4c69b7bdfa2e133f5b8ae53fa460c23fbf567d3fc152d2bd9c2ecebd99d5103ff849c93fc836c73fd3447f3f35df50bd9d3164bd11a8103f2ebbd33fd2c2a33f17b87f3f2ffd34bda6487ebc8213aa3eee47034054a5f63f54cb49bd97037e3fc0c2e9bd9a0a933e09ca0040d4c0ec3f31e1443f5bf9453eccf61bbf7ef76a3e02120240c645e73fb9ff50bd577d593faa6606bf0ca68c3e59b8fa3ff975f93f93ec3dbf8b738dbed5671c3f3662983e2ba70140ed31fb3f015b22bf1ad2273f84e2d13e88344d3ef52300408b1dec3fa27364bfd5bfb83e84bf8a3eb11f553ef467f83feaa1ec3f1d32a1bef57f42bfc7a2113f2544983e1da2fa3fa3def23f546cfd3e7f7759bfb31e3bbebaa9823ebf10fb3f16b3e63f14fb5e3fc888debe22716abede6b013ebea4ea3fa767d73f652f69bf23c0e43de666cb3e617a0f3e598ae53fb4d1d73f2ed1c23ea6ba4dbf9a4aea3efb5c103ec715ec3f6cb8d43faaff01bfe4ee303fb2a503bfff492b3e5bb9e93f6bd5d33f372e4b3f5a7a84bd5dda1abf2cb955bc2abbd33fad44c03ff9db11bf9b05b0bee0163fbfa3a59a3e02f8d13f5709f23f08454abf245602be2c7f193f38d9b33e4e86e83f87b6fb3f650437bf7bb33cbebbab2c3fb11f553ef467f83feaa1ec3f3f9d47bf867b3fbe41f7183f0ca68c3e59b8fa3ff975f93fca4b41bf8993acbefef70f3f617a0f3e598ae53fb4d1d73f34264dbf4453d2bd09dc163faa68303ef549c93f2b9eda3fa1db46bff4e450bd79b0203f2cb955bc2abbd33fad44c03fd24940bfa60135bd1b9f283fcd90aebee868aa3f11d9633e980b97befc2767bf3cfd9fbe753c1fbf8ad9b33f35f9b93e776d9cbbba4d653f6da2e3be8e2ee6beb6ceb13f9581213c85c165beb6886e3f892092be141399be8117ae3f0eaa2a3d7db1383ee47207bea78379bf985db1befa40a13ff9add73ea54b16be6c8b7cbf24af94bd3aae1fbfc831a63fab35ea3eaa8b05be26df68bf8ce9c9be6dcccbbed8d1a63fe513383fb07586bee8ad64bf46c8ba3ed98221bfd71bac3f2ed00f3f063401be25aa64bf2cf4dc3e6ebc75c0a3b1cc3f89a4fb3f6b5e843ea20a8138ef4b773f843895c0c38cc23f1b3503400666eebdd4f37b3f34b3083ecf9276c0338ec43f19f5f23f5bd30abd40dd7dbf61b4febd65e655c00feec53f412ad83fdb3c273e26ed77bfafaf403e550554c0b2dacf3f8641e13f97f3923ef9c61239a53a753f616177c0adc9cb3ffe96ea3f2afb1bbe62dc753f83ec6ebef7c457c00855cf3f7615cf3f5d54b8bec718653f3e00873efbf8d9bfcb96ac3fa796ff3e2fdea7bee84d71bfdfd081bd2ea5e2bf7182bf3fcf6abc3e93ffd2be1512493fd771ecbe03e1c7bf7610b03fba48f53eb13414bcfb5a7fbf470e90bd962bc0bfc2ffa43fb53a99bebe6919bcbb09723f1db5a6be94efbbbf49f89e3fb4ec88be82afb8be2cd36cbf6604f33da0e9b5bfd4539a3f8774d5be1daf263eb120d338ef957cbf5c92b5bf68ffa43f383c92bed9c7043f10fb503ff41c82be84e0c3bfd88bad3fba54873ec793273ec8ce76bf8a2b563e518ac3bf6937b73f45171a3f9c31143d15e76ebfc609b73e2bedb7bf7196ac3f8f24e43e2926aabd7eee7ebf35bc1abdffeeb2bf6937b73f6788163f15ca34bda39966bf2132dd3e134cd1bf6837b73fac63213fd36e70bc76c76dbf9c8ebd3e5aebbcbf79abbf3f19369b3e633f6a3e2a943b3f491324bfa55139c004a6cf3f6da0ac3fceff13bef617573f25cc05bff3b710c03658cb3f27c66d3f1d6438bf7963a0bdc27230bf578735c0dbaac23ff69bb73fb82206bc52cd7fbf77841d3d82ec09c0861dcc3f61fc833fd0d6073e704b72bfc3ad963ec82748c0c47ecf3f64aba83fa6a726bef25b663fc037cfbef14d40c0942bc43fadf6a93f856ce73d3ed77abf21ab283e9a3043c00349cf3f5a5add3fbcd1a63e1faa0bbbaf07723f5f3935c097ecbc3f74fb3a3f505f44bdaf267dbf3b37103ec12c39c06ed1c43fe176363f672ae0be7c49563f6bfba7bea1f5f7bfbbc1843f4b3649bf68f0c4beeddc69bf2785073e2b6afdbfbc698b3f98d650bfdfad61be1c50513f3b2a08bf8da6e0bf3e575c3f81b086bff5a6123f00000000ccd451bfbd80f2bfbd698b3fe99541bf4512e03e28e7643ff8e5c1bdf65b20c00970af3fca2c1bbe6be53ebd670e733f8bf69ebe79c41cc04b1ea83f995006be2cdb1bbe952476bfaa506a3ed02c19c00870af3f43e8e2bde3343d3edfa1753ff2be59beeb0131c06ed1c43fba7e3f3fd6d7a43ea3dd713fe7be79bd3e754dc0ab3ec43f8885ad3fa6aa3f3e55767bbf5633263c1ec152c00e7ecf3f0a66b23fdea9a1becae1713fe60bb2bdc3c059c06227ca3f3ef73d3fc101873e83536c3fac3c8fbeec995dc08a42c23fbab9433f88e4a43c8f9b7cbfdcdd243e447361c06227ca3fcd7a493f63a9adbd87297c3f95d419be3ac46ec0d908723fefe481bf146e38be463c66bf4ffacb3ea91272c0e2587f3fdb2381bf0ab58fbeed25613fb0c9c4beae876dc07a21493f1d7ab1bf960ee8bdf9dfb834ef597ebf71756bc0df587f3f0fa682bfad60323e2e0b663f582dcebe95cd6ec00370af3f3a6c0ebe290548bdceb8743f8a3394be5d3f6bc0451ea83f6dd624be30f78f3aad2d72bf52f5a53e2ab167c00a25ae3f9d403bbeb49f663d57526e3f30bab8be9b909dc09d40b23f5813813fea7bf23d62ac7cbf687cde3d9f24b3c0cec09f3f5ee2d73e9df53cbf0929febd7cc4293f0de4b1c0531c983fadcbc03ee86eab3e0b326fbfeeb1f93d268f9ec03278ba3f6544883f6f9d0cbf33024f3ed3914f3f125f84c0088bc43f8de2a43f1198223d036f5f3f5614f9be6e6956c01829c43f888bc03f8ffa0a3e8a9a7bbf660600be310685c0673bbc3fd573ad3f945cc53ca18c77bf9fe1813e50ad85c08430c53f7905b63f766cc1be0bd7993e7c33603f3299c1c02bb05c3f687ad1be4c7322bd11bd67bfa19cd83e2f06c3c031006a3f9fbec3becb9263bf35ec873eb513bf3e5b1cc5c04dbd383f317f2ebfda0904bf4a4fad3642525bbf342cc0c033006a3f2c36dfbe4dea713eec04543fbf1902bf7ea3b0c0116e9f3fadb4a93e53d140be744b743f82bc6dbefc919cc07425ba3f49c5733fe5b102bebea87c3f3415c9bd75be31c0a213d03f68a1c23f4293143f29ab04385879503f6ff206c0d656d03f22c78d3f3f88eb3e57df34b9d84d633f8e6fbcbfc0aabf3f2795533fa392a83efdc3233c92b6713f34949dbf1eabbf3fbbe5423f26b6b03df72514b8970b7f3fff4314bfcbd9b33f4d013a3f08f156be208c4a3e091f753f5430afbe65b4b33f9eb4483fa23a6bbeafbb4e3e0cbc733f09ea96be2d26b43f0807623e1c42c2bb0e58753fb32692bea5f129bf39ebb13f74a80ebd782c0fbcbdd07f3fbd5a17bd2ea680be0684be3f1f18373f0b6f70bd26f6783f79c4663e47e78abe8aaaba3f4b51df3e3ad20c3eb9b8793fcbfc2fbe3cae1fbf8d81c13f9235ea3e5a79af3dcb396a3f30ecc9beda8221bfc197bb3f2fd00f3ff1d9983d7deb6d3f6918b93e12a585c0317bcd3feaa7ca3fc29c06bd18db7f3f8220debbd19276c09552d43f19f5f23f911b49be445f763f683540be18e455c00ac8d93f2228d83f9d59c03d4da07b3f4218223e1d5783bfa05cb03f5f0c23beed34d33c56627b3fd0c43fbe96efbbbfe106ab3f73eb88be050fb8be74754e3f3158f0bea5eeb2bf291fc83fc288163f261edb3d53a76e3f3bfab03ed261c4bf291fc83f84b2183f012e143d4de46e3f4b18b73eb64bd1bfcd1ec83f6264213f9c4fa13eeccc6a3f07c8793e53ec09c03791d43fbdfc833f0018b33e9e9b583f99e5cd3ed2ecb7bf7ec0d23f2526e43ec5b0e43d44ba7d3fc6c193bd50e0c7bf7846cf3fdc4af53efa7c0cbd45587b3f9e313fbe47f8d9bfd7c0d23fcb99ff3ef412a8bcd191783fc00474be3c8b35c0c47cdd3f47a1b73f4497d23c3d707c3fe62a283ee6730ec092addc3f6782763f7b0c6ebe6cee653f240fbfbeca35c9bfde53ca3fb55c873e0ed8923cdc866f3fdf76b4bee519dcbf61c3a03f4e79f8be685710bd286b6a3fbef6ccbed5df03c0e45fbd3f05d1b43dba29dfbb8284783f3aaa75bed4441fc09bdfc73f25f7473f5adfa3bcac8e7d3f3ba00bbe14174ac04eb7c93ff974313f3422c23d8ad57c3fd6c0ffbdca8e45c00a98b63f657290be49d28f3be528773f665e85be68331ec00da8953fbc6a41bfa1a1eb3da4c46e3fd805afbe3e1445c07c01953fd94560bf0992c5bdf4ca693f15a7cabe613f75c09d24d23f6c5c793f4556b2bd40db7e3f1973153df1bb8bc0ca8bc93feefcae3e065ad6bd47567b3f3f5f22bedb7e98c0c0e6a93f0c16d1beafdf0dbef436753f58ce80be4e10b2c0b7ea893f4aa7b1be3f229cbea9cc6d3f532557be54df84c000ed993fbeb836bffb0ccf3d9bb76e3faa8ab1be494e40c010c8db3f75fea93f67b4133e78527d3f8e0918bb603935c01d5ccd3f75fb3a3fc90a88be373b6c3f23e28ebea0f5f7bfc011923f4a3649bf6a5dda3e2cfb623fde1237be79c41cc04267b73f965006be3d9d253ef642753fe14572be78734dc022b2db3f9b8cad3fc96a2b3e9ac17b3fe0b98ebdec995dc011b2d23fbbb9433f16efc6be41a66b3f8c1329bd39c46ec07354863fefe481bf2ad4633e18405d3fc7ffe6be603f6bc03c67b73f69d624bedbd86e3b96e7703fc234adbe116656c087cadb3ff08cc03faa6a4bba996e7b3ff59340be330685c0a225ce3fd673ad3f183b49be407e713f56e9883e3099c1c0ed50773f667ad1bed7fddc3b90bf613f246bf1be0ee4b1c04b65a73fafcbc03e4d1e4fbe005d723f884b80be9c909dc022b0c23f5813813fd1e633becd1d793f908918be843c17bfed47034063dde93f9b25233d94037e3fd22ff1bdc38a12bf07ca004053a9de3f16a97a3f69fa453efbcc7f3dfa2d16bf0012024099a4d53f7b98a03ede7c593f9823d9be2def25bf55b8fa3f7507e73fc4ca75bf10708dbe001330bd04e623bf29a701403a48ea3f2edb3ebfafd1273f0c25f6bded3022bff3230040a6bfd63f702058bf29c2b83e75e4cabee26921bff167f83fa2cbd73fc8621dbfb87e42bf61ca583e1fcb18bf19a2fa3f3414e43f13ddfa3e167859bf0d67483ea68410bfbc10fb3f9a6cd73f0ddb4c3f5e8adebe938ed33ef88614bfbba4ea3fff05c13f834a71bf25b8e43dff35a1beb47812bf568ae53f0b82c23f577cc3bcc9ba4dbfe73a183f72280ebfc415ec3fea47c03f732e06bd11ef303f10d338bf76f807bf58b9e93f44e0c13fc7987e3ff16d84bd7846a83da60d10bf29bbd33fa8e3a33fd8309d3d0203b0beda976fbf02cb16bffff7d13fbcdbe33feb027dbf445702bedc79abbd9f641abf4a86e83fba43ef3f138d7bbf1ab43cbeda6cb63ce26921bff167f83fa2cbd73ffaae7abf4c7d3fbe0e67a0bd2def25bf55b8fa3f7507e73f9cf76fbf3993acbef5fcb3bdb47812bf568ae53f0b82c23f5c627dbfdb53d2bda794cabde91a10bff349c93fa557c73f344b7fbf26e050bdfdee5cbda60d10bf29bbd33fa8e3a33fcbb97fbf26fe34bd773161bceb47a8beed47034091b8f63f64f9483d95037e3f90f0e9bd519867be001202400c53e73fbf2e4d3d5d7d593f826c06bf205191be07ca004074d1ec3fc52745bf37fa453e7b9d1bbf70d58abe55b8fa3fde85f93f7c333e3f36748dbe6c111c3fbbc349bef32300401d29ec3f1793643fbcbfb83ec7ef893e598e96be29a701402843fb3fd28a223fe6d1273feb4ed13efcac51bef167f83ff0adec3f54b6a13e0d8042bffd7d113f877f96be1aa2fa3fdceff23f5296fdbe9b7759bfaf383abe2afb80bebc10fb3fd9c1e63f8b155fbf1a89debec1db68bedf8cfcbdbca4ea3fec6ed73f915d693f7dc0e43d9e92ca3e6b530cbe578ae53fc5d9d73f8266c2beacba4dbf0ea3ea3e50410dbec515ec3f8bc0d43fa3c3013ff3ee303fc9e003bf8b3128be59b9e93f12dfd33f8e744bbf067a84bde97d1abfc265813c2bbbd33fd643c03ff284113f6105b0be3d593fbf62e298befff7d13fd41af23fc38a4a3fe05502be2323193ffcac51bef167f83ff0adec3fb3e2473f2f7b3fbe7d9c183f7904b2be4a86e83fe0cafb3fb452373ff1b23cbe9d582c3f70d58abe55b8fa3fde85f93f148d413f4893acbe40a00f3f6b530cbe578ae53fc5d9d73fc86a4d3ff052d2bd9c7e163f70372dbef549c93f1ba8da3faf24473f3be450bdeb55203fc265813c2bbbd33fd643c03f7b96403ff30035bd8647283f9c7bae3eea68aa3ff9d8633eb30b973ef82767bf47fd9fbe5419e63ebaceb13fd57f213c71c1653eb5886e3f962092bedd311f3f8ed9b33f1ff9b93ecf639c3bba4d653f6ca2e3bedcfd983e8217ae3fc1a92a3da2b138bed97207bea58379bfa5a31f3fcd31a63f9635ea3ece8b053e24df68bf8fe9c9be7048b13efc40a13fedadd73ef84b163e688b7cbf4aaf94bd4db7cb3edad1a63fdd13383fde75863ee4ad64bf3bc8ba3e4578213fdb1bac3f23d00f3f5834013e25aa64bf25f4dc3eccb97540c0b1cc3f69a4fb3f4c5e84be08e67e38f54b773f2e907640518ec43ffaf4f23f84d40a3d3ddd7dbfbcb4febd33379540e88cc23f083503408c65ee3dd6f37b3f36b3083eb2025440cbdacf3f6c41e13f77f392bee8451239ac3a753fc3e3554028eec53f262ad83f813c27be29ed77bfb4af403ec05e7740cbc9cb3fdf96ea3fd4fa1b3e66dc753f8cec6ebe54c257402155cf3f5c15cf3f4d54b83ecc18653f3400873eb0f3d93fd796ac3f7196ff3e53dea73ee14d71bf1bd181bdb7dbc73f8110b03f8948f53e9a37143cfc5a7fbf7b0e90bde09fe23f7f82bf3f996abc3e6fffd23e1912493fe571ecbe4426c03fcdffa43fe03a99be6965193cbd09723f22b5a6be43eabb3f54f89e3fdfec88bea6afb83e26d36cbf4e04f33d4ee4b53fde539a3fb074d5be4faf26bed0bed338ed957cbf0a8db53f72ffa43f613c92bee8c704bf09fb503fe81c82be36dbc33fe48bad3f8b54873e679327beccce76bf932b563e0685c33f7537b73f2d171a3f873014bd14e76ebfcb09b73eb4e9b23f7337b73f5088163f7ecb343da29966bf1f32dd3edfe7b73f7c96ac3f6224e43e9826aa3d7bee7ebfaabc1abdc746d13f7437b73f9263213f6b73703c75c76dbfa28ebd3e0ce6bc3f84abbf3feb359b3eb63f6abe24943b3f451324bf014f39401aa6cf3f55a0ac3f75ff133efd17573f23cc05bfb4843540f1aac23fdf9bb73f2d25063c53cd7fbfdf841d3d4db510404758cb3f03c66d3f1564383fff62a0bdcb7230bfdde90940971dcc3f50fc833f87d607be724b72bfd1ad963e24254840dc7ecf3f4baba83f44a7263ef65b663fbd37cfbef72d43401a49cf3f415add3fb5d1a6be69aa0bbbb207723f4d4b4040ab2bc43f94f6a93f076ce7bd40d77abf2eab283eb9363540acecbc3f49fb3a3fe45f443dad267dbf4b37103e1a2a394084d1c43fb576363f3d2ae03e8549563f79fba7be4cf0f73fc9c1843f653649bf8df0c43ee6dc69bf0485073e38a1e03f59575c3f8db086bff7a612bffec7a1b5cad451bfd664fd3fcb698b3fb3d650bf99ad613e1f50513f412a08bf687bf23fcb698b3f039641bf7f12e0be1ae7643f85e5c1bd4d5920401c70af3f5e2d1bbe49e43e3d670e733f8ff69ebed0c11c405d1ea83f2a5106be56db1b3e942476bfbe506a3e262a19401b70af3f5ee9e2bd4f353dbedba1753fd1be59be45ff304083d1c43f8e7e3f3ff7d7a4be9edd713f7abe79bd99724d40c33ec43f6e85ad3f69aa3fbe57767bbfee33263c7abe5240277ecf3fef65b23fc2a9a13ecfe1713f4e0cb2bd1cbe59407c27ca3f0af73d3fe60187be80536c3fa33c8fbe45975d40a542c23f84b9433ff3e0a4bc909b7cbfe1dd243e9c7061407d27ca3f977a493fc9a8ad3d8a297c3f9ad419be8ec16e401309723f0ae581bf7b6e383e423c66bf4ffacb3e01856d40b421493f377ab1bfb10de83dfca70a35f2597ebffd0f72401c597f3ff62381bfe8b48f3ef025613fbec9c4bec5726b4018597f3f28a682bfee6032be2c0b663f512dcebeeaca6e402070af3f166d0ebef103483dceb8743f903394beb43c6b40621ea83f46d724be20b48fbaab2d72bf57f5a53e80ae67402525ae3f73413bbec4a066bd55526e3f2fbab8be498f9d40c340b23f3213813f4b7bf2bd64ac7cbf877cde3db9e2b1407f1c983f07cbc03ede6eabbe10326fbfd2b1f93d4a23b340fac09f3fb6e1d73eb6f53c3f6c27febd68c4293fd38d9e405878ba3f3f44883f7b9d0c3f41034f3eb9914f3fc05d8440288bc43f6de2a43f599922bdfe6e5f3f6014f9bede048540873bbc3fb573ad3f2a5ac5bca28c77bf98e1813ecb6656403129c43f6d8bc03f5efa0abe8b9a7bbf770600befeab8540a430c53f5805b63f856cc13e23d7993e7433603fdc97c14089b05c3f1a7bd1be1c74223d10bd67bf999cd83e051bc540aebd383f8b7f2ebff809043f6416333631525bbfd904c3408f006a3f52bfc3bed092633fd9eb873edc13bf3edf2ac04091006a3fdd36dfbe8aea71beec04543fb81902bf29a2b0403c6e9f3f07b4a93e19d1403e784b743f82bc6dbea9909c409925ba3ffec4733fadb1023ebfa87c3f1b15c9bdd2bb3140b813d03f51a1c23f369314bf1acefc376079503fcaef0640e656d03f11c78d3f2288ebbe9b8934b9df4d633f446abc3fcbaabf3f0f95533f8c92a8be9dc5233c95b6713fea8e9d3f27abbf3fa7e5423fafb5b0bd850915b8960b7f3f6e39143fcfd9b33f42013a3f35f1563e2d8c4a3e051f753f341baf3e67b4b33f97b4483fd63a6b3ec2bb4e3e0bbc733fd6d4963e2f26b43ff406623eaa36c23b0d58753fa92692be07e7293f3debb13f15a90ebda4290f3cbdd07f3fd35a17bd0991803e0784be3f1918373f3c6e703d27f6783f72c4663e1ad28a3e8baaba3f4151df3e89d20cbeb6b8793fbbfc2fbea4a31f3f9181c13f7e35ea3e057aafbdc9396a3f2cecc9be4578213fc597bb3f24d00f3f41da98bd7beb6d3f7018b93ebfa38540527bcd3fc9a7ca3f979b063d18db7f3f9b22debb2e907640b252d43ffaf4f23f411b493e485f763f663540be75e1554024c8d93f0728d83ff959c0bd4ca07b3f3b18223ecd51833fa75cb03f9b0c23be4e37d3bc56627b3fd6c43fbe45eabb3fec06ab3f9deb88bed80eb83e78754e3f4258f0be59e9b23f331fc83fab88163f721edbbd51a76e3f41fab03e855cc43f341fc83f6bb2183fa72e14bd4ce46e3f5218b73e6a46d13fd91ec83f4764213fb44fa1bee8cc6a3f1bc8793eaee909404791d43facfc833f1818b3be969b583fa9e5cd3e02dbc73f8446cf3faa4af53ef07b0c3d46587b3f8c313fbe84e7b73f89c0d23ff825e43e57b1e4bd42ba7d3faac193bdf8f2d93fe3c0d23f9699ff3e4b10a83cd391783fb10474be97883540da7cdd3f31a1b73f7f98d2bc3f707c3fe02a283e40710e40a3addc3f4482763f1e0c6e3e6eee653f270fbfbe7b30c93fea53ca3f855c873e4adb92bcdc866f3fe376b4be9114dc3f6ec3a03f7f79f8be0c56103d296b6a3fbdf6ccbe2ddd0340f35fbd3f0dd0b43d3520df3b8384783f3caa75be2e421f40aedfc73ffef6473f4fdda33cac8e7d3f41a00bbe6d144a4066b7c93fc874313fc622c2bd88d57c3fc6c0ffbd1f8c45402298b63fc07290be59db8fbbe528773f665e85bebd301e4020a8953fdf6a41bf4da2ebbda4c46e3fd505afbe921145409401953f054660bf7491c53df6ca693f18a7cabebb3c7540ba24d23f315c793fce55b23d42db7e3f0673153d9dba8b40ec8bc93f69fcae3e7d59d63d47567b3f445f22be857d9840e5e6a93f9816d1be65df0d3ef836753f5ece80bef90eb240e3ea893feea7b1be1b229c3eaecc6d3f542557befedd844020ed993ff9b836bf950dcfbd98b76e3fac8ab1bea54b404027c8db3f5dfea93fa3b413be75527d3f090718bbb9363540325ccd3f4afb3a3fb20a883e363b6c3f31e28ebe4af0f73fce11923f653649bf7a5ddabe2afb623fe21237bed0c11c405567b73f265106be509d25bef442753fed4572bed4704d403ab2db3f818cad3f116b2bbe97c17b3fc3b98ebd45975d402cb2d23f85b9433f0eefc63e43a66b3fc51329bd8cc16e409054863f0ae581bfbbd463be11405d3fc0ffe6beb53c6b405967b73f42d724be63f66ebb95e7703fc734adbe6e635640a1cadb3fd58cc03f8b264b3a9c6e7b3fdc9340bee0048540c225ce3fb573ad3ff73a493e427e713f59e9883edb97c1404b51773f187bd1be2305ddbb92bf613f216bf1beb9e2b1407665a73f09cbc03e1b1e4f3e065d723f884b80be488f9d4047b0c23f3213813f89e6333ecf1d793fb48918bea52ce33de415793ff8802a3dd0b8643faed5ae3d50286a3f971a113e38b46a3fcc8d733dd8d4613f2de8fd3d5e30763f6bd8ba3da4df5a3feecf053e3d01683f1acaa43da4365d3f8d65553d32e4383f0e379b3d2619353f20ec343dc9ad393f222f703d2cbb383f0381a93c1a19083f0fd28b3e66143f3f6bd8ba3da4df5a3feb37733ecdc95f3f971a113e38b46a3f0e379b3d2619353f9695463e40171d3f0381a93c1a19083fa52ce33de415793faed5ae3d50286a3ff8802a3dd0b8643f971a113e38b46a3f2de8fd3d5e30763fcc8d733dd8d4613f6bd8ba3da4df5a3feecf053e3d01683f1acaa43da4365d3f8d65553d32e4383f0e379b3d2619353f20ec343dc9ad393f222f703d2cbb383f0381a93c1a19083f0fd28b3e66143f3feb37733ecdc95f3f6bd8ba3da4df5a3f971a113e38b46a3f0e379b3d2619353f9695463e40171d3f0381a93c1a19083fa334a03d900e2f3e9f04263eb0833a3e2464ab3de4fe633e983f153d1454543e0b08ed3d88f2fe3daa0b383e88d1233e0647393e40fc7c3d111e4d3e94890b3ec768593f04087f3ee9d2773f3e79a83ef791573f906c863e76513c3fc81a753e45a13d3f64c1643e53cc553fa0148d3eef003b3f28b6823e1ec1a53e641c833e94f7a13ea206933efe48993e60d2783e04383d3eecfdbe3eac733c3e7a20ba3e715a203e40c6c43ee223323ea8c5b83ec3f2873e14e68d3e5f259f3ea0935e3eb1338d3ef0d86f3eea04943efc73513eca8aa93eb061663ed061863e361f873e74091f3fb8aa7c3ebf45ef3e58fb7b3ee6b01f3fcc0d663e020dee3e74ba5c3e8d0b273f0a168f3e1897223ff8c8863ed445323fe8924a3ec619073f243fb23e32e8083f7e8eb73e8a053e3ee692023fc191403e7e33053fbb25f93d4819093f96793b3e9ce4ff3ed785b73e0e29ee3ed289b43e2cf1e83ece8db13e4ab9e33e9b21053ff6afac3eae9a2b3f4ca8903e882a303f8634923e40dc1d3f6893d33ecefe203f4e2bd53e5c21243f76c3d63ec2a5db3e8ae9423f581ae03ed733443f315dc03ea818533fe830d73e2c9f413f61330c3f2a6f1b3f1344093f88bf1a3fd654063ff60f1a3feeaf623fd4990b3fc6c2683fa65f3a3f3faa653f8a3a3b3f16da653fd2000a3f3b8c4d3f1a8bce3e433c363fe2ad8b3eb9aa503fd0bbc93e47c9533fa6ecc43e48a85d3fbe726d3f0055603f8a946d3f766d5b3f073e793f7ffb5a3fe5506d3fa791623f7f153c3fd7855f3fd7320d3f145c203f98654f3ed0b5ef3e9c53493ef25daa3e18602f3ee8f6923e18171e3ed5085d3e5047c03d889d393e1037193d34f88b3d7cf7273e1efaee3d98e6763e8577193e901a213df7ccd23d0033df3daa0b383e88d1233e111e4d3e94890b3eb455593f9c52b63ef791573f906c863e904f3c3fbc19753e14ae173e9e5c933eac733c3e1420ba3eea04943eb873513ee4489f3eec59603eca8aa93ee460663e020dee3eecb95c3eb1338d3e28d86f3efe48993e54d1783e1ec1a53e9c1b833eb3b41f3f880d663e8bddee3e808f713e86378b3e4867903e139d453e6ceadc3e6748a53e8cb7bd3e2cd8f63ed201993ebc94123fda3dc93e3200dc3eab790e3f4f028b3e2b4e113f713db23e8e09293faeba363fbe86d83e72c1353f5ce2183fa25f2b3f38ba463f14cc4c3ff7055c3f00c5083f0708423f9599223fbac3863ec619073f243fb23e8a053e3ee692023fd289b43e2cf1e83e899b2b3fbea1903ecefe203f4e2bd53ec2a5db3e8ae9423f1344093f88bf1a3f9f3a363fd2a98b3eb9aa503ff0bbc93e48a85d3fbe726d3f2eaa653f8a3a3b3feeaf623fd4990b3fa52ce33de415793faed5ae3d50286a3ff8802a3dd0b8643f971a113e38b46a3f2de8fd3d5e30763fcc8d733dd8d4613f6bd8ba3da4df5a3feecf053e3d01683f1acaa43da4365d3f8d65553d32e4383f0e379b3d2619353f20ec343dc9ad393f222f703d2cbb383f0381a93c1a19083f0fd28b3e66143f3feb37733ecdc95f3f6bd8ba3da4df5a3f971a113e38b46a3f0e379b3d2619353f9695463e40171d3f0381a93c1a19083fa52ce33de415793ff8802a3dd0b8643faed5ae3d50286a3f971a113e38b46a3fcc8d733dd8d4613f2de8fd3d5e30763f6bd8ba3da4df5a3feecf053e3d01683f1acaa43da4365d3f8d65553d32e4383f0e379b3d2619353f20ec343dc9ad393f222f703d2cbb383f0381a93c1a19083f0fd28b3e66143f3f6bd8ba3da4df5a3feb37733ecdc95f3f971a113e38b46a3f0e379b3d2619353f9695463e40171d3f0381a93c1a19083fa334a03d900e2f3e2464ab3de4fe633e9f04263eb0833a3e983f153d1454543eaa0b383e88d1233e0b08ed3d88f2fe3d0647393e40fc7c3d111e4d3e94890b3ec768593f04087f3ef791573f906c863ee9d2773f3e79a83e45a13d3f64c1643e76513c3fc81a753e53cc553fa0148d3eef003b3f28b6823e1ec1a53e641c833efe48993e60d2783e94f7a13ea206933e04383d3eecfdbe3eac733c3e7a20ba3e715a203e40c6c43ee223323ea8c5b83ec3f2873e14e68d3e5f259f3ea0935e3eea04943efc73513eb1338d3ef0d86f3eca8aa93eb061663ed061863e361f873e74091f3fb8aa7c3ee6b01f3fcc0d663ebf45ef3e58fb7b3e020dee3e74ba5c3e8d0b273f0a168f3ed445323fe8924a3e1897223ff8c8863ec619073f243fb23e32e8083f7e8eb73e8a053e3ee692023fbb25f93d4819093fc191403e7e33053f96793b3e9ce4ff3ed785b73e0e29ee3ed289b43e2cf1e83ece8db13e4ab9e33e9b21053ff6afac3eae9a2b3f4ca8903e882a303f8634923e40dc1d3f6893d33ecefe203f4e2bd53e5c21243f76c3d63ec2a5db3e8ae9423f315dc03ea818533f581ae03ed733443fe830d73e2c9f413f61330c3f2a6f1b3f1344093f88bf1a3fd654063ff60f1a3feeaf623fd4990b3f3faa653f8a3a3b3fc6c2683fa65f3a3f16da653fd2000a3f3b8c4d3f1a8bce3eb9aa503fd0bbc93e433c363fe2ad8b3e47c9533fa6ecc43e48a85d3fbe726d3f766d5b3f073e793f0055603f8a946d3f7ffb5a3fe5506d3fa791623f7f153c3fd7855f3fd7320d3f145c203f98654f3ed0b5ef3e9c53493ef25daa3e18602f3ee8f6923e18171e3ed5085d3e5047c03d889d393e1037193d34f88b3d7cf7273e1efaee3d98e6763e8577193e901a213df7ccd23d0033df3daa0b383e88d1233e111e4d3e94890b3eb455593f9c52b63ef791573f906c863e904f3c3fbc19753e14ae173e9e5c933eac733c3e1420ba3eea04943eb873513ee4489f3eec59603eca8aa93ee460663e020dee3eecb95c3efe48993e54d1783eb1338d3e28d86f3e1ec1a53e9c1b833eb3b41f3f880d663e8bddee3e808f713e86378b3e4867903e139d453e6ceadc3e6748a53e8cb7bd3e2cd8f63ed201993ebc94123fda3dc93e3200dc3eab790e3f4f028b3e2b4e113f713db23e8e09293faeba363fbe86d83e72c1353f5ce2183fa25f2b3f38ba463f14cc4c3ff7055c3f00c5083f0708423f9599223fbac3863ec619073f243fb23e8a053e3ee692023fd289b43e2cf1e83e899b2b3fbea1903ecefe203f4e2bd53ec2a5db3e8ae9423f1344093f88bf1a3f9f3a363fd2a98b3eb9aa503ff0bbc93e48a85d3fbe726d3f2eaa653f8a3a3b3feeaf623fd4990b3f0000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000330000000000000000000000000000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000490000000400000000000000030000000000803f000000000000000000000000490000000400000000000000030000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000490000000400000000000000030000000000803f000000000000000000000000000000000400000003000000490000000000803f000000000000000000000000490000000400000000000000030000000000803f0000000000000000000000004a0000000000000000000000000000000000803f0000000000000000000000004a0000000000000000000000000000000000803f0000000000000000000000004a0000000000000000000000000000000000803f0000000000000000000000004a0000004b0000004c0000004d0000000000803f0000000000000000000000004a0000004b0000004c0000004d0000000000803f0000000000000000000000004a0000000000000000000000000000000000003f0000003f00000000000000004a0000004d0000004c0000004b0000000000003f0000003f0000000000000000490000004e0000004f000000000000000000803f0000000000000000000000004f0000000000000000000000000000000000003f0000003f0000000000000000490000004e0000004f000000000000000000803f0000000000000000000000004f0000000000000000000000000000000000803f0000000000000000000000004f0000000300000000000000000000000000803f0000000000000000000000004f0000000300000000000000000000000000803f0000000000000000000000004f0000000300000000000000000000000000803f0000000000000000000000004f0000000000000000000000000000000000003f0000003f0000000000000000490000004e000000000000004f0000000000003f0000003f0000000000000000490000004e0000004f000000040000000000003f0000003f0000000000000000490000004e000000000000004f0000000000003f0000003f0000000000000000490000004e0000004f000000000000000000803f0000000000000000000000004f0000000000000000000000000000000000803f0000000000000000000000004b0000004e00000000000000000000000000803f0000000000000000000000004e0000000000000000000000000000000000803f0000000000000000000000004e0000004b00000000000000000000000000803f0000000000000000000000004e0000000000000000000000000000000000003f0000003f00000000000000004b0000004c00000000000000000000000000803f0000000000000000000000004b0000004c00000000000000000000000000003f0000003f00000000000000004e0000004a0000004b0000004c0000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004c0000004b00000000000000000000000000003f0000003f00000000000000004c0000004d0000004b000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000003f0000003f00000000000000004d0000005000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000003f0000003f00000000000000004d0000005000000000000000000000000000803f0000000000000000000000004d0000000000000000000000000000000000803f0000000000000000000000004d0000004c0000004a000000000000000000803f0000000000000000000000004d0000000000000000000000000000000000803f0000000000000000000000004d0000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000003f0000003f00000000000000004d0000005000000000000000000000000000803f0000000000000000000000004e0000000000000000000000000000000000803f0000000000000000000000004e0000000000000000000000000000000000003f0000003f0000000000000000490000004e000000000000004f0000000000003f0000003f0000000000000000490000004e00000004000000000000000000803f000000000000000000000000490000000400000000000000030000000000803f000000000000000000000000000000000400000003000000490000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000490000000400000000000000030000000000803f000000000000000000000000000000000400000003000000490000000000803f000000000000000000000000000000000400000003000000490000000000803f000000000000000000000000490000000400000000000000030000000000803f000000000000000000000000490000000400000000000000030000000000003f0000003f00000000000000004a0000004d00000000000000000000000000803f0000000000000000000000004a0000000000000000000000000000000000803f0000000000000000000000004a0000004b0000004c0000004d0000000000003f0000003f00000000000000004f0000004900000000000000030000000000803f0000000000000000000000004f0000000000000000000000000000000000003f0000003f0000000000000000490000004e000000000000004f0000000000003f0000003f0000000000000000490000004e0000004f000000000000000000003f0000003f0000000000000000490000004e0000004f000000000000000000803f0000000000000000000000004e0000000000000000000000000000000000003f0000003f0000000000000000490000004e000000000000004f0000000000003f0000003f0000000000000000490000004e0000004f000000000000000000003f0000003f0000000000000000490000004e0000004f000000000000000000803f0000000000000000000000004e0000004b00000000000000000000000000803f0000000000000000000000004e0000000000000000000000000000000000803f0000000000000000000000004f0000000000000000000000000000000000003f0000003f00000000000000004b0000004f00000000000000000000000000003f0000003f00000000000000004b0000004f00000000000000000000009a99193fcccccc3e00000000000000004b0000004e00000000000000000000005c8f423f8fc2753e00000000000000004c0000004b00000000000000000000000000003fffffff3e00000000000000004c0000004b00000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000003fffffff3e00000000000000004c0000004b00000000000000000000000000003f0000003f00000000000000004d0000004c00000000000000000000000000003f0000003f0000000000000000500000004c00000000000000000000000000003f0000003f00000000000000004c0000005000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004b0000000000000000000000000000000000803f0000000000000000000000004c0000004b00000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004c0000000000000000000000000000000000803f0000000000000000000000004d0000004b0000004c0000004a0000000000803f0000000000000000000000004d0000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000803f000000000000000000000000500000000000000000000000000000000000003f0000003f00000000000000004d0000005000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000510000000400000000000000030000000000803f000000000000000000000000510000000400000000000000030000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000510000000400000000000000030000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000000000000400000003000000510000000000803f000000000000000000000000510000000400000000000000030000000000803f000000000000000000000000520000000000000000000000000000000000803f000000000000000000000000520000000000000000000000000000000000803f000000000000000000000000520000000000000000000000000000000000803f000000000000000000000000520000005300000054000000000000000000803f000000000000000000000000520000005300000054000000000000000000803f000000000000000000000000520000000000000000000000000000000000003f0000003f0000000000000000520000005400000053000000550000000000803f000000000000000000000000560000000000000000000000000000000000803f000000000000000000000000560000000000000000000000000000000000803f000000000000000000000000560000000000000000000000000000000000803f000000000000000000000000560000000000000000000000000000000000803f000000000000000000000000560000000300000000000000000000000000803f000000000000000000000000560000000300000000000000000000000000803f000000000000000000000000560000000300000000000000000000000000803f000000000000000000000000560000000000000000000000000000000000003f0000003f0000000000000000510000005700000000000000560000000000003f0000003f0000000000000000510000005700000000000000560000000000803f000000000000000000000000560000000000000000000000000000000000003f0000003f0000000000000000510000005700000056000000000000000000803f000000000000000000000000560000000000000000000000000000000000003f0000003f0000000000000000570000005500000000000000000000000000803f000000000000000000000000570000005500000000000000000000000000803f000000000000000000000000570000000000000000000000000000000000803f000000000000000000000000570000000000000000000000000000000000003f0000003f0000000000000000550000005300000000000000000000000000003f0000003f0000000000000000570000005200000055000000530000000000803f000000000000000000000000550000005700000053000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000530000005500000000000000000000000000003f0000003f0000000000000000530000005400000055000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000003f0000003f0000000000000000540000005800000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000003f0000003f0000000000000000540000005800000000000000000000000000803f000000000000000000000000540000000000000000000000000000000000803f000000000000000000000000540000000000000000000000000000000000803f000000000000000000000000540000005500000053000000520000000000803f000000000000000000000000540000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000003f0000003f0000000000000000540000005800000000000000000000000000803f000000000000000000000000570000000000000000000000000000000000803f000000000000000000000000570000000000000000000000000000000000003f0000003f000000000000000051000000570000000000000056000000f385763f029b173def03b93600000000510000000000000004000000000000000000803f000000000000000000000000510000000400000000000000030000000000803f000000000000000000000000000000000400000003000000510000000000803f000000000000000000000000000000000400000003000000000000000000803f000000000000000000000000510000000400000000000000030000000000803f000000000000000000000000000000000400000003000000510000000000803f000000000000000000000000000000000400000003000000510000000000803f000000000000000000000000510000000400000000000000030000000000803f000000000000000000000000510000000400000000000000030000000000003f0000003f0000000000000000520000005400000000000000000000000000803f000000000000000000000000520000000000000000000000000000000000803f000000000000000000000000520000005500000053000000540000000000003f0000003f0000000000000000560000005100000000000000030000000000803f000000000000000000000000560000000000000000000000000000000000003f0000003f0000000000000000510000005700000000000000560000000000003f0000003f0000000000000000510000005700000056000000000000000000003f0000003f0000000000000000510000005700000056000000000000000000803f000000000000000000000000570000000000000000000000000000000000003f0000003f0000000000000000510000005700000056000000000000000000003f0000003f0000000000000000510000005700000000000000560000000000003f0000003f0000000000000000510000005700000056000000000000000000803f000000000000000000000000570000005500000000000000000000000000803f000000000000000000000000570000000000000000000000000000000000803f000000000000000000000000560000000000000000000000000000000000003f0000003f0000000000000000550000005600000000000000000000000000003f0000003f0000000000000000550000005600000000000000000000000000003f0000003f0000000000000000550000005600000000000000000000000000003f0000003f0000000000000000530000005500000000000000000000000000003f0000003f0000000000000000550000005300000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000003f0000003f0000000000000000550000005300000000000000000000000000003f0000003f0000000000000000530000005400000000000000000000000000003f0000003f0000000000000000530000005400000000000000000000000000003f0000003f0000000000000000530000005800000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000550000005700000053000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000550000000000000000000000000000000000803f000000000000000000000000530000005500000054000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000530000000000000000000000000000000000803f000000000000000000000000540000005500000053000000520000000000803f000000000000000000000000540000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000803f000000000000000000000000580000000000000000000000000000000000003f0000003f000000000000000054000000580000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: -0.000081539154, y: 1.386452, z: 0.33178705} + m_Extent: {x: 6.15963, y: 0.6648135, z: 1.7183292} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh.meta new file mode 100644 index 0000000000..5a6d068d84 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90a5de1e64bba0248bc2bf3305c2e109 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab new file mode 100644 index 0000000000..1b8690f6dc --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab @@ -0,0 +1,295 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6844168087696745476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7220016853278081881} + - component: {fileID: 2878642447122916467} + - component: {fileID: 2442159759821776818} + - component: {fileID: 8672994124121204144} + m_Layer: 0 + m_Name: Object01_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7220016853278081881 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6844168087696745476} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2878642447122916467 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6844168087696745476} + m_Mesh: {fileID: 4300000, guid: 90a5de1e64bba0248bc2bf3305c2e109, type: 2} +--- !u!137 &2442159759821776818 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6844168087696745476} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 32258081b81adb7478c12060c864b013, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 90a5de1e64bba0248bc2bf3305c2e109, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &8672994124121204144 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6844168087696745476} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 2878642447122916467} + _skinnedMeshRenderer: {fileID: 2442159759821776818} + BoneNames: + - Bip01 Spine2 + - Bip01 Neck + - Bip01 Neck1 + - Bip01 Spine + - Bip01 Spine1 + - Bip01 Neck2 + - Bip01 L UpperArm + - Bip01 Pelvis + - Bip01 L Thigh + - Bip01 L Calf + - Bip01 R Thigh + - Bip01 R Calf + - Bip01 Tail + - Bip01 Tail1 + - Bip01 Tail4 + - Bip01 Tail3 + - Bip01 Tail2 + - Bone01 + - Bip01 Neck3 + - Bip01 Ponytail1 + - Bip01 Neck4 + - Bip01 Head + - Bone22 + - Bone18 + - Bip01 L ForeArm + - Bip01 L Hand + - Bip01 L Finger0 + - Bip01 L HorseLink + - Bip01 L Foot + - Bip01 L Toe0 + - Bip01 L Toe01 + - Bip01 L Toe1 + - Bip01 L Toe2 + - Bip01 L Toe21 + - Bip01 L Toe11 + - Bip01 L Toe3 + - Bip01 L Toe31 + - Bip01 L Finger1 + - Bip01 L Finger11 + - Bip01 L Finger2 + - Bip01 L Finger21 + - Bip01 L Finger3 + - Bip01 L Finger31 + - Bip01 L Finger01 + - Bip01 R UpperArm + - Bone03 + - Bone04 + - Bone08 + - Bone07 + - Bone26 + - Bone24 + - Bone06 + - Bone05 + - Bip01 R ForeArm + - Bip01 R Hand + - Bip01 R Finger0 + - Bip01 R HorseLink + - Bip01 R Foot + - Bip01 R Toe0 + - Bip01 R Toe01 + - Bip01 R Toe1 + - Bip01 R Toe2 + - Bip01 R Toe21 + - Bip01 R Toe3 + - Bip01 R Toe31 + - Bip01 R Toe11 + - Bip01 R Finger1 + - Bip01 R Finger11 + - Bip01 R Finger2 + - Bip01 R Finger21 + - Bip01 R Finger3 + - Bip01 R Finger31 + - Bip01 R Finger01 + - Bone12 + - Bone16 + - Bone23 + - Bone25 + - Bone27 + - Bone14 + - Bone21 + - Bone28 + - Bone09 + - Bone11 + - Bone17 + - Bone19 + - Bone15 + - Bone13 + - Bone10 + - Bone20 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab.meta new file mode 100644 index 0000000000..633df6cb13 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/Object01_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b913d3f48659333429c1e470ec55b8f7 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat new file mode 100644 index 0000000000..3971257b1b --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8670961062326231195 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: box03_0 + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 37e38100eb2a32940aaa00d564da265b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 37e38100eb2a32940aaa00d564da265b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat.meta new file mode 100644 index 0000000000..59598c804d --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 64a2917c15df2734e86993dcdd0cc5d7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh new file mode 100644 index 0000000000..80529ddcd4 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh @@ -0,0 +1,1787 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: box03_0 + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 7188 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 1730 + localAABB: + m_Center: {x: 0.00048974156, y: 1.2556452, z: -0.98787117} + m_Extent: {x: 0.81574905, y: 1.255752, z: 3.4824367} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: -0.0000014885275 + e01: 0.35050398 + e02: 0.9365617 + e03: -0.75984585 + e10: -1.0000006 + e11: -0.0000026921407 + e12: -0.00000054453517 + e13: -0.0036534132 + e20: 0.0000022537788 + e21: -0.9365619 + e22: 0.3505039 + e23: 0.8913011 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.21864673 + e01: 0.7848885 + e02: 0.57978016 + e03: -1.697715 + e10: -0.969122 + e11: -0.10524497 + e12: -0.22299781 + e13: 0.23921148 + e20: -0.11400951 + e21: -0.610635 + e22: 0.78366333 + e23: -0.015477419 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.18944904 + e01: 0.76930875 + e02: 0.6101432 + e03: -1.9453067 + e10: -0.9759975 + e11: -0.07955671 + e12: -0.20273615 + e13: 0.1742814 + e20: -0.10742569 + e21: -0.63390595 + e22: 0.76591444 + e23: 0.042889595 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000016676889 + e01: -0.08884438 + e02: 0.99604577 + e03: 0.44146356 + e10: -1.0000002 + e11: -0.000002671545 + e12: -0.0000018476834 + e13: -0.0036531985 + e20: 0.0000027710637 + e21: -0.9960459 + e22: -0.088844456 + e23: 1.059433 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000014847684 + e01: 0.0898714 + e02: 0.99595374 + e03: -0.092469275 + e10: -1.0000004 + e11: -0.0000027317892 + e12: -0.0000011900681 + e13: -0.0036530902 + e20: 0.000002549062 + e21: -0.99595386 + e22: 0.08987131 + e23: 1.0602214 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.2865391 + e01: 0.5907788 + e02: 0.75423956 + e03: -2.1031573 + e10: -0.9563981 + e11: -0.12989263 + e12: -0.261598 + e13: 0.345067 + e20: -0.056576442 + e21: -0.7963104 + e22: 0.6022382 + e23: 0.5559794 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.15040392 + e01: -0.95440245 + e02: -0.2578706 + e03: 1.1833944 + e10: -0.9884223 + e11: 0.13987154 + e12: 0.05882184 + e13: -0.60728675 + e20: -0.020070862 + e21: 0.26373172 + e22: -0.96438843 + e23: 0.36276424 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000002384186 + e01: -0.00000005960465 + e02: 1.0000001 + e03: 0.6392568 + e10: -1.0000001 + e11: 0.0000013113023 + e12: -0.00000017881396 + e13: -0.0036565026 + e20: -0.000001370907 + e21: -1.0000001 + e22: -0.0000001192093 + e23: 1.0941919 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.04451765 + e01: -0.99106145 + e02: 0.12576278 + e03: 1.1455554 + e10: 0.9981302 + e11: -0.049403805 + e12: -0.036003135 + e13: 0.46266183 + e20: 0.041894395 + e21: 0.123924844 + e22: 0.991407 + e23: 0.516283 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0362373 + e01: -0.003856977 + e02: -0.9993362 + e03: -0.5894246 + e10: 0.9981303 + e11: -0.049403854 + e12: -0.036002956 + e13: 0.462662 + e20: -0.049232237 + e21: -0.9987721 + e22: 0.0056400215 + e23: 0.57271343 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.044517197 + e01: -0.99106145 + e02: 0.1257629 + e03: 1.1458812 + e10: 0.9981301 + e11: 0.04940386 + e12: 0.036005996 + e13: -0.45536384 + e20: -0.041897375 + e21: 0.12392513 + e22: 0.99140733 + e23: 0.5159766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03624043 + e01: -0.0038570198 + e02: -0.99933666 + e03: -0.58916 + e10: 0.9981301 + e11: 0.04940367 + e12: 0.036005944 + e13: -0.45536366 + e20: 0.04923193 + e21: -0.9987723 + e22: 0.005639838 + e23: 0.5730735 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000015234314 + e01: -0.054261215 + e02: -0.9985273 + e03: -1.0003669 + e10: -1.0000004 + e11: 0.0000027628557 + e12: -0.0000016194502 + e13: -0.0036596651 + e20: 0.000002909407 + e21: 0.99852735 + e22: -0.05426111 + e23: -1.2620856 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000015541281 + e01: -0.10878066 + e02: -0.99406636 + e03: -1.7854996 + e10: -1.0000005 + e11: 0.000002714793 + e12: -0.0000018074029 + e13: -0.0036599436 + e20: 0.0000029610258 + e21: 0.99406636 + e22: -0.10878056 + e23: -1.3613558 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000014871202 + e01: -0.1106958 + e02: -0.9938552 + e03: -3.5678988 + e10: -1.0000006 + e11: 0.0000027760414 + e12: -0.0000017525456 + e13: -0.0036595773 + e20: 0.0000030188137 + e21: 0.99385506 + e22: -0.110695675 + e23: -1.2758023 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000015635815 + e01: -0.1899248 + e02: -0.98179936 + e03: -2.7697275 + e10: -1.0000007 + e11: 0.0000025110617 + e12: -0.0000020302473 + e13: -0.003660326 + e20: 0.0000029207883 + e21: 0.9817992 + e22: -0.18992464 + e23: -1.558014 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000001422834 + e01: -0.16598594 + e02: -0.9861288 + e03: -2.2061439 + e10: -1.0000006 + e11: 0.000002726578 + e12: -0.0000018522162 + e13: -0.003660074 + e20: 0.0000030648655 + e21: 0.98612875 + e22: -0.16598581 + e23: -1.4907231 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.34627685 + e01: 1.2868851 + e02: 0.9381019 + e03: -2.7090728 + e10: -0.26393276 + e11: 0.6135509 + e12: -0.7442423 + e13: -0.014295697 + e20: -0.9408486 + e21: 0.0062084086 + e22: 0.33877403 + e23: -0.22332895 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.32758272 + e01: 0.38232177 + e02: 0.8640144 + e03: -2.2155347 + e10: -0.9446725 + e11: -0.14891344 + e12: -0.29226992 + e13: 0.43422234 + e20: 0.016922064 + e21: -0.91195244 + e22: 0.40995002 + e23: 1.1081643 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.36579952 + e01: -0.47212595 + e02: 0.80205464 + e03: -0.89086676 + e10: -0.907182 + e11: -0.011615791 + e12: -0.42058298 + e13: 0.41324246 + e20: 0.20788388 + e21: -0.88145673 + e22: -0.4240529 + e23: 2.6600304 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.34646043 + e01: 0.15267706 + e02: 0.9255572 + e03: -2.1005545 + e10: -0.9334167 + e11: -0.15422696 + e12: -0.32396132 + e13: 0.50607 + e20: 0.09328414 + e21: -0.9761695 + e22: 0.19594513 + e23: 1.650542 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.23550136 + e01: 0.8423769 + e02: 0.4847083 + e03: -2.7459092 + e10: -0.9071834 + e11: -0.0116150165 + e12: -0.42057967 + e13: 0.41323498 + e20: -0.34865618 + e21: -0.53876656 + e22: 0.76692396 + e23: -0.53226924 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.35460234 + e01: -0.4609541 + e02: 0.8134996 + e03: -1.2145883 + e10: -0.1841898 + e11: 0.8874262 + e12: 0.4225537 + e13: -2.7063737 + e20: -0.916698 + e21: 0.00000015672684 + e22: -0.39958575 + e23: 0.34529272 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.32164374 + e01: -0.4609539 + e02: 0.82708544 + e03: -1.1149434 + e10: -0.16707043 + e11: 0.88742596 + e12: 0.4296101 + e13: -2.7237887 + e20: -0.93200713 + e21: -0.00000025382042 + e22: -0.36244625 + e23: 0.24699703 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.016886048 + e01: -0.48664483 + e02: 0.8734383 + e03: -0.22586513 + e10: -0.9884223 + e11: 0.13987148 + e12: 0.058821972 + e13: -0.60728693 + e20: -0.15079464 + e21: -0.86233133 + e22: -0.48337176 + e23: 0.5939739 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.05569967 + e01: -0.86069185 + e02: 0.50607324 + e03: -0.22552085 + e10: -0.9953225 + e11: 0.08794574 + e12: 0.04002464 + e13: -0.57943386 + e20: -0.07895603 + e21: -0.50147593 + e22: -0.86156297 + e23: 0.8595466 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.46598583 + e01: 0.17799132 + e02: 0.8667065 + e03: -0.7138486 + e10: -0.88037264 + e11: -0.0045366655 + e12: 0.47426474 + e13: -0.8626731 + e20: 0.08834639 + e21: -0.9840232 + e22: 0.15458441 + e23: -0.05000055 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.06086589 + e01: -0.8579226 + e02: -0.51016253 + e03: -0.051441193 + e10: 0.99813044 + e11: -0.04940382 + e12: -0.036003098 + e13: 0.4626619 + e20: 0.00568379 + e21: -0.5113999 + e22: 0.859325 + e23: 1.1968803 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000000044383796 + e01: -0.9980815 + e02: 0.061928146 + e03: 0.30949986 + e10: 0.9934481 + e11: 0.0070779533 + e12: 0.11407347 + e13: 0.6349776 + e20: -0.11429287 + e21: 0.06152226 + e22: 0.99154115 + e23: 1.1694778 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.45105615 + e01: 0.055270772 + e02: 0.89078337 + e03: 0.554356 + e10: 0.8924967 + e11: 0.027933206 + e12: 0.4501905 + e13: 1.0827249 + e20: -0.000000004044251 + e21: 0.9980815 + e22: -0.06192834 + e23: -0.08942258 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.45105615 + e01: 0.055270735 + e02: 0.89078325 + e03: 0.45080686 + e10: 0.8924968 + e11: 0.027933218 + e12: 0.45019054 + e13: 1.0827253 + e20: -0.0000000040443595 + e21: 0.9980816 + e22: -0.06192836 + e23: -0.089422345 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.22280225 + e01: 0.06037177 + e02: 0.9729935 + e03: 0.7664662 + e10: 0.9748646 + e11: 0.013797748 + e12: 0.22237457 + e13: 0.7889794 + e20: 0.000000111439675 + e21: 0.99808156 + e22: -0.061928503 + e23: -0.086298466 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.050240584 + e01: 0.061850257 + e02: 0.9968213 + e03: 0.9586204 + e10: 0.99873817 + e11: -0.0031113946 + e12: -0.050144147 + e13: 0.44299594 + e20: 0.00000014869279 + e21: 0.99808145 + e22: -0.061928466 + e23: -0.08766115 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.050240606 + e01: 0.061850265 + e02: 0.9968215 + e03: 0.87750787 + e10: 0.9987383 + e11: -0.003111404 + e12: -0.05014413 + e13: 0.44299605 + e20: 0.00000015241787 + e21: 0.99808156 + e22: -0.061928503 + e23: -0.08766091 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.22280227 + e01: 0.060371794 + e02: 0.97299355 + e03: 0.6741799 + e10: 0.9748647 + e11: 0.013797752 + e12: 0.2223746 + e13: 0.78897953 + e20: 0.000000111439675 + e21: 0.99808156 + e22: -0.061928503 + e23: -0.08629835 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.5217776 + e01: 0.05282961 + e02: 0.85144526 + e03: 1.0671519 + e10: 0.85308284 + e11: -0.03231258 + e12: -0.52077615 + e13: -0.22922027 + e20: 0.00000002203179 + e21: 0.9980815 + e22: -0.061927997 + e23: -0.09415102 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.52177763 + e01: 0.05282957 + e02: 0.8514453 + e03: 0.9811443 + e10: 0.85308295 + e11: -0.03231261 + e12: -0.52077615 + e13: -0.22922029 + e20: 0.0000000220311 + e21: 0.9980817 + e22: -0.061927967 + e23: -0.09415126 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03856575 + e01: 0.101314515 + e02: 0.9941087 + e03: -1.0586144 + e10: -0.99889535 + e11: 0.030712206 + e12: 0.03562135 + e13: -0.5405143 + e20: -0.026922684 + e21: -0.99438184 + e22: 0.102386914 + e23: -0.050514817 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00784763 + e01: -0.63791496 + e02: 0.7700695 + e03: -0.9689523 + e10: -0.9988955 + e11: 0.030712377 + e12: 0.035621565 + e13: -0.54051495 + e20: -0.04637445 + e21: -0.7694966 + e22: -0.63696814 + e23: 0.91316205 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.18060505 + e01: 0.19193363 + e02: 0.96464866 + e03: -1.1938105 + e10: -0.9832708 + e11: -0.011544821 + e12: -0.18179452 + e13: -0.35541344 + e20: -0.023756107 + e21: -0.98134166 + e22: 0.19080737 + e23: -0.14673996 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.13847545 + e01: -0.6010327 + e02: 0.787139 + e03: -1.0665559 + e10: -0.9832712 + e11: -0.0115450835 + e12: -0.18179458 + e13: -0.35541365 + e20: 0.11835159 + e21: -0.7991433 + e22: -0.5893783 + e23: 0.9657186 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.30097467 + e01: 0.056825947 + e02: 0.95193905 + e03: -1.19345 + e10: -0.9536065 + e11: -0.010302962 + e12: -0.3008867 + e13: -0.3061755 + e20: -0.0072907545 + e21: -0.9983326 + e22: 0.057290547 + e23: 0.01461494 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.26797873 + e01: -0.4264358 + e02: 0.8639121 + e03: -1.2537879 + e10: -0.9536069 + e11: -0.010303103 + e12: -0.3008867 + e13: -0.30617568 + e20: 0.13720913 + e21: -0.9044612 + e22: -0.40388983 + e23: 0.69740355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.42885354 + e01: -0.434688 + e02: 0.79191834 + e03: -0.71582425 + e10: -0.8803728 + e11: -0.0045366357 + e12: 0.47426468 + e13: -0.8626729 + e20: -0.2025648 + e21: -0.9005718 + e22: -0.38463253 + e23: 0.45861253 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15040396 + e01: -0.9544024 + e02: -0.2578699 + e03: 1.184494 + e10: -0.9884222 + e11: -0.13987161 + e12: -0.058824673 + e13: 0.60005957 + e20: 0.020073835 + e21: 0.2637313 + e22: -0.9643885 + e23: 0.36291134 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.2795211 + e01: 0.9769845 + e02: 0.7528737 + e03: -2.386753 + e10: -0.24934776 + e11: 0.67040145 + e12: -0.7012064 + e13: -0.15197384 + e20: -0.9396846 + e21: 0.00842306 + e22: 0.34195554 + e23: -0.23053792 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.33485338 + e01: 1.1121434 + e02: 0.90353227 + e03: -3.20085 + e10: -0.23764595 + e11: 0.70199853 + e12: -0.6770642 + e13: -0.24959153 + e20: -0.9403419 + e21: 0.0100879865 + e22: 0.34009996 + e23: -0.23120327 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.37742203 + e01: -0.19180407 + e02: 0.9767051 + e03: -1.6219667 + e10: 0.9268537 + e11: -0.02908547 + e12: -0.3756278 + e13: 0.34131867 + e20: 0.22783034 + e21: 1.3016728 + e22: 0.5473253 + e23: -3.5610285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.35716498 + e01: -0.27207553 + e02: 0.9430033 + e03: -1.3129482 + e10: 0.23001899 + e11: 1.2876171 + e12: 0.6150227 + e13: -4.0037255 + e20: -0.9343105 + e21: 0.0019145281 + e22: 0.35651895 + e23: -0.24724133 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.32284793 + e01: -0.319504 + e02: 0.9288836 + e03: -1.7242796 + e10: 0.23200345 + e11: 1.2766693 + e12: 0.6534478 + e13: -3.9755716 + e20: -0.94623226 + e21: -0.004408131 + e22: 0.3237207 + e23: -0.15154342 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.3273644 + e01: -0.35784644 + e02: 0.90464675 + e03: -1.4433316 + e10: 0.24728996 + e11: 1.266464 + e12: 0.67919433 + e13: -4.029367 + e20: -0.94079334 + e21: -0.0012478728 + e22: 0.33900306 + e23: -0.1932004 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.37277436 + e01: 0.96261686 + e02: 1.0165819 + e03: -3.8701797 + e10: -0.17305972 + e11: 0.8973911 + e12: -0.49569866 + e13: -0.91784275 + e20: -0.94047916 + e21: 0.0067251096 + e22: 0.33979055 + e23: -0.22389346 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.40029278 + e01: 0.7933028 + e02: 1.0856874 + e03: -3.3036315 + e10: -0.10580955 + e11: 1.0500294 + e12: -0.3129697 + e13: -1.5259912 + e20: -0.9391386 + e21: 0.009836608 + e22: 0.3434342 + e23: -0.23657909 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.016883327 + e01: -0.48664495 + e02: 0.8734381 + e03: -0.2257415 + e10: -0.98842245 + e11: -0.1398714 + e12: -0.05882465 + e13: 0.6000593 + e20: 0.15079533 + e21: -0.86233145 + e22: -0.48337153 + e23: 0.595077 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.055697657 + e01: -0.8606917 + e02: 0.50607336 + e03: -0.22511315 + e10: -0.9953225 + e11: -0.08794585 + e12: -0.040027574 + e13: 0.5721561 + e20: 0.0789582 + e21: -0.50147605 + e22: -0.86156255 + e23: 0.86012363 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.465988 + e01: 0.1779912 + e02: 0.86670494 + e03: -0.71725583 + e10: -0.88037145 + e11: 0.0045366124 + e12: -0.47426727 + e13: 0.8562354 + e20: -0.08834751 + e21: -0.9840234 + e22: 0.15458411 + e23: -0.050646186 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.060867425 + e01: -0.8579229 + e02: -0.51016283 + e03: -0.050996304 + e10: 0.9981302 + e11: 0.04940386 + e12: 0.036006063 + e13: -0.45536375 + e20: -0.0056865057 + e21: -0.51139987 + e22: 0.85932523 + e23: 1.1968395 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000000089086555 + e01: -0.99808174 + e02: 0.06192799 + e03: 0.30949956 + e10: 0.9934479 + e11: -0.007077851 + e12: -0.114070624 + e13: -0.6277135 + e20: 0.11428984 + e21: 0.06152264 + e22: 0.9915419 + e23: 1.170314 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.45105377 + e01: 0.05527078 + e02: 0.8907856 + e03: 0.5576546 + e10: 0.89249754 + e11: -0.027932987 + e12: -0.4501883 + e13: -1.0761993 + e20: 0.00000019711881 + e21: 0.9980821 + e22: -0.061927855 + e23: -0.08942187 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.45105383 + e01: 0.05527081 + e02: 0.89078563 + e03: 0.45410565 + e10: 0.89249754 + e11: -0.027932987 + e12: -0.4501883 + e13: -1.0761993 + e20: 0.00000019711881 + e21: 0.9980821 + e22: -0.061927855 + e23: -0.08942175 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22279921 + e01: 0.060371615 + e02: 0.9729947 + e03: 0.76809585 + e10: 0.9748651 + e11: -0.013797696 + e12: -0.22237174 + e13: -0.7818515 + e20: 0.00000015241577 + e21: 0.99808186 + e22: -0.061927766 + e23: -0.08629775 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.050243516 + e01: 0.06185001 + e02: 0.9968215 + e03: 0.95825344 + e10: 0.99873775 + e11: 0.0031113578 + e12: 0.050147105 + e13: -0.4356934 + e20: 0.00000014496494 + e21: 0.998082 + e22: -0.06192776 + e23: -0.08766043 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.050243504 + e01: 0.06185002 + e02: 0.99682164 + e03: 0.87714076 + e10: 0.998738 + e11: 0.0031113685 + e12: 0.050147112 + e13: -0.43569332 + e20: 0.00000014123933 + e21: 0.9980821 + e22: -0.061927766 + e23: -0.08766031 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.52178 + e01: 0.05282961 + e02: 0.8514441 + e03: 1.0633374 + e10: 0.853081 + e11: 0.032312796 + e12: 0.52077895 + e13: 0.23545836 + e20: 0.00000003693162 + e21: 0.99808186 + e22: -0.06192766 + e23: -0.0941509 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.52178 + e01: 0.05282961 + e02: 0.8514441 + e03: 0.97732985 + e10: 0.85308117 + e11: 0.032312825 + e12: 0.520779 + e13: 0.23545823 + e20: 0.00000003693139 + e21: 0.998082 + e22: -0.06192764 + e23: -0.09415102 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22279924 + e01: 0.060371645 + e02: 0.97299486 + e03: 0.6758095 + e10: 0.9748652 + e11: -0.013797692 + e12: -0.22237177 + e13: -0.78185153 + e20: 0.00000015614081 + e21: 0.998082 + e22: -0.06192776 + e23: -0.08629775 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.03856874 + e01: 0.101314195 + e02: 0.9941082 + e03: -1.0588963 + e10: -0.99889493 + e11: -0.030712534 + e12: -0.0356244 + e13: 0.5332102 + e20: 0.02692198 + e21: -0.9943819 + e22: 0.102386415 + e23: -0.050317407 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.007850296 + e01: -0.6379153 + e02: 0.7700693 + e03: -0.9690087 + e10: -0.99889505 + e11: -0.0307123 + e12: -0.035624363 + e13: 0.53321034 + e20: 0.04637562 + e21: -0.76949656 + e22: -0.6369678 + e23: 0.91350126 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.18060231 + e01: 0.19193378 + e02: 0.9646491 + e03: -1.1924899 + e10: -0.98327124 + e11: 0.01154494 + e12: 0.18179154 + e13: 0.3482235 + e20: 0.023754729 + e21: -0.98134166 + e22: 0.19080761 + e23: -0.14656627 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.13847283 + e01: -0.60103315 + e02: 0.7871395 + e03: -1.065543 + e10: -0.9832714 + e11: 0.0115450015 + e12: 0.18179174 + e13: 0.34822342 + e20: -0.118350476 + e21: -0.79914314 + e22: -0.5893788 + e23: 0.964854 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.30097193 + e01: 0.056825932 + e02: 0.95194 + e03: -1.1912495 + e10: -0.95360714 + e11: 0.010303025 + e12: 0.30088362 + e13: 0.29920238 + e20: 0.007289877 + e21: -0.9983327 + e22: 0.05729039 + e23: 0.014669418 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.26797584 + e01: -0.426436 + e02: 0.86391276 + e03: -1.2518276 + e10: -0.95360726 + e11: 0.010303198 + e12: 0.3008837 + e13: 0.29920232 + e20: -0.13720886 + e21: -0.90446126 + e22: -0.4038905 + e23: 0.696401 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.42885602 + e01: -0.4346883 + e02: 0.7919169 + e03: -0.71895945 + e10: -0.8803718 + e11: 0.00453643 + e12: -0.4742674 + e13: 0.8562356 + e20: 0.2025653 + e21: -0.9005717 + e22: -0.38463172 + e23: 0.4600935 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9933373 + e01: 0.09707814 + e02: 0.06211652 + e03: -0.49033916 + e10: 0.09745272 + e11: 0.9952366 + e12: 0.0030191564 + e13: -1.3852421 + e20: -0.061527435 + e21: 0.0090524405 + e22: -0.99806494 + e23: 0.5952637 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.96522284 + e01: -0.031102538 + e02: 0.25957677 + e03: -3.2895079 + e10: -0.029376362 + e11: 0.9995139 + e12: 0.010526854 + e13: -1.6996801 + e20: -0.25977755 + e21: 0.0025352945 + e22: -0.9656657 + e23: 0.8038738 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.441272 + e01: -0.2550442 + e02: -0.8603682 + e03: 3.1982744 + e10: 0.10439839 + e11: 0.966843 + e12: -0.23306261 + e13: -0.8918703 + e20: 0.89128155 + e21: 0.013023047 + e22: 0.453266 + e23: 2.0348046 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.1721709 + e01: -0.21483897 + e02: -0.9613546 + e03: 1.3561735 + e10: -0.040201515 + e11: 0.97664785 + e12: -0.21105659 + e13: -1.364011 + e20: 0.9842476 + e21: 0.002310261 + e22: -0.17678717 + e23: 3.4311934 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.7200865 + e01: -0.0399042 + e02: -0.2590641 + e03: -1.7712952 + e10: -0.038009185 + e11: 0.9981205 + e12: -0.04809282 + e13: -1.6499007 + e20: 0.33993632 + e21: -0.032342203 + e22: -0.9398931 + e23: 2.6704493 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.84476244 + e01: 0.07521835 + e02: 0.5298309 + e03: -1.7666513 + e10: 0.10184722 + e11: 0.99457544 + e12: 0.021188263 + e13: -1.3903607 + e20: -0.52536243 + e21: 0.07186065 + e22: -0.8478393 + e23: -0.30883625 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.20000473 + e01: -0.2500092 + e02: -0.9473619 + e03: 1.403075 + e10: 0.045781493 + e11: 0.96822745 + e12: -0.2458502 + e13: -1.2596503 + e20: 0.97872555 + e21: 0.005799781 + e22: 0.2050955 + e23: 1.4514139 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.35257295 + e01: -0.31841856 + e02: -0.72587276 + e03: -0.53578275 + e10: -0.1851173 + e11: 0.9453561 + e12: -0.21196027 + e13: -2.133681 + e20: 0.6906155 + e21: 0.061594903 + e22: -0.61725813 + e23: 3.939897 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9882067 + e01: 0.13399978 + e02: 0.074115306 + e03: -0.52588916 + e10: -0.13387626 + e11: 0.9909763 + e12: -0.0066531487 + e13: -1.3664144 + e20: -0.074338 + e21: -0.0033476423 + e22: 0.99722797 + e23: -0.61808866 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9656395 + e01: -0.065152496 + e02: 0.25159064 + e03: -3.2619078 + e10: 0.0566085 + e11: 0.9975524 + e12: 0.04105795 + e13: -1.8825231 + e20: -0.25364974 + e21: -0.025405027 + e22: 0.9669632 + e23: -0.7418614 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.21068121 + e01: -0.13831297 + e02: -0.9677215 + e03: 1.1383047 + e10: 0.014285613 + e11: 0.9902705 + e12: -0.13842584 + e13: -1.4633577 + e20: 0.9774516 + e21: 0.015339342 + e22: 0.210607 + e23: -3.4330633 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.7073954 + e01: -0.06551899 + e02: -0.25825825 + e03: -1.6682124 + e10: 0.08166595 + e11: 0.99623686 + e12: -0.02905028 + e13: -1.8593807 + e20: 0.3428849 + e21: -0.0007155305 + e22: 0.9393778 + e23: -2.6217942 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.44333416 + e01: -0.12196414 + e02: -0.88802105 + e03: 2.9733417 + e10: -0.054095946 + e11: 0.9925351 + e12: -0.10931175 + e13: -1.3072366 + e20: 0.8947242 + e21: -0.0004230917 + e22: -0.44662222 + e23: -2.117282 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.100405894 + e01: -0.075156435 + e02: -0.9921044 + e03: 0.9707756 + e10: -0.09991922 + e11: 0.9928643 + e12: -0.06510166 + e13: -1.3198569 + e20: 0.98991734 + e21: 0.09259374 + e22: -0.10719879 + e23: -1.6300361 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.8735369 + e01: 0.034220673 + e02: 0.48555496 + e03: -1.7097389 + e10: -0.06669742 + e11: 0.9965323 + e12: 0.049758967 + e13: -1.5165691 + e20: -0.48216835 + e21: -0.07585158 + e22: 0.87278956 + e23: 0.19446313 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.38129684 + e01: -0.26732078 + e02: -0.70325714 + e03: -0.7805855 + e10: 0.16347189 + e11: 0.9614542 + e12: -0.18821603 + e13: -2.0522828 + e20: 0.67270905 + e21: -0.03043928 + e22: 0.6480558 + e23: -3.912666 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: -0.2446028, y: -0.5928361, z: -0.37231702} + m_Max: {x: 0.9490148, y: 0.4747946, z: 1.1608043} + - m_Min: {x: -0.016193151, y: -0.24856313, z: -0.26469684} + m_Max: {x: 0.3305726, y: 0.21963236, z: 0.31854004} + - m_Min: {x: -0.12316692, y: -0.18958561, z: -0.2294721} + m_Max: {x: 0.28695977, y: 0.18613532, z: 0.29494137} + - m_Min: {x: -0.5246955, y: -0.39273092, z: -0.39058757} + m_Max: {x: 0.3236972, y: 0.38522074, z: 0.45495534} + - m_Min: {x: -0.10300517, y: -0.5740591, z: -0.359748} + m_Max: {x: 0.90152454, y: 0.47479454, z: 0.7549703} + - m_Min: {x: -0.05353141, y: -0.17362943, z: -0.24761581} + m_Max: {x: 0.30167985, y: 0.19374606, z: 0.2808047} + - m_Min: {x: -0.08134961, y: -0.13919383, z: -0.261185} + m_Max: {x: 0.7664368, y: 0.12050301, z: 0.31036854} + - m_Min: {x: -0.50026244, y: -0.46673515, z: -0.41618633} + m_Max: {x: 0.38206702, y: 0.45836598, z: 0.4753055} + - m_Min: {x: -0.082695365, y: -0.17020586, z: -0.31669384} + m_Max: {x: 0.9369613, y: 0.24158064, z: 0.36420205} + - m_Min: {x: -0.24613076, y: -0.17074576, z: -0.207578} + m_Max: {x: 0.57191, y: 0.2415806, z: 0.44570374} + - m_Min: {x: -0.10113382, y: -0.45349023, z: -0.5422843} + m_Max: {x: 0.7357228, y: 0.17891547, z: 0.32233068} + - m_Min: {x: -0.24666187, y: -0.23310438, z: -0.161659} + m_Max: {x: 0.3011853, y: 0.17808309, z: 0.15393159} + - m_Min: {x: -0.13265616, y: -0.3633716, z: -0.36617565} + m_Max: {x: 0.88061905, y: 0.35449642, z: 0.28510857} + - m_Min: {x: -0.0033847094, y: -0.20636094, z: -0.1897378} + m_Max: {x: 0.5116308, y: 0.19601765, z: 0.18831456} + - m_Min: {x: -0.023288488, y: -0.097931795, z: -0.05682099} + m_Max: {x: 0.78613234, y: 0.08450161, z: 0.11174667} + - m_Min: {x: -0.011937618, y: -0.1437379, z: -0.14717984} + m_Max: {x: 0.6775267, y: 0.13148303, z: 0.12424624} + - m_Min: {x: 0.00045633316, y: -0.18552454, z: -0.18910098} + m_Max: {x: 0.60382247, y: 0.17430589, z: 0.14120638} + - m_Min: {x: 0.029718399, y: -0.3291164, z: -0.219708} + m_Max: {x: 0.60048985, y: 0.25584346, z: 0.2398848} + - m_Min: {x: -0.0876174, y: -0.1623084, z: -0.23491096} + m_Max: {x: 0.52181315, y: 0.22399116, z: 0.34150302} + - m_Min: {x: 0.072333515, y: -0.16622174, z: -0.08440328} + m_Max: {x: 0.4649334, y: 0.17123532, z: 0.09862018} + - m_Min: {x: -0.10013008, y: -0.18601537, z: -0.20931518} + m_Max: {x: 0.3367877, y: 0.24305308, z: 0.278502} + - m_Min: {x: -0.24485421, y: -0.36240676, z: -0.765885} + m_Max: {x: 0.32931566, y: 0.43905565, z: 0.612473} + - m_Min: {x: 0.06585252, y: -0.0070984364, z: -0.00042328238} + m_Max: {x: 0.06585252, y: -0.0070984364, z: -0.00042328238} + - m_Min: {x: -0.10520375, y: -0.040192127, z: -0.056830645} + m_Max: {x: 0.05512166, y: 0.02159357, z: 0.052616924} + - m_Min: {x: -0.14602874, y: -0.1296604, z: -0.13959235} + m_Max: {x: 0.57539594, y: 0.12480974, z: 0.21072668} + - m_Min: {x: -0.082074225, y: -0.1619047, z: -0.22978324} + m_Max: {x: 0.41942716, y: 0.19272316, z: 0.117548645} + - m_Min: {x: -0.03240794, y: -0.056706607, z: -0.06311667} + m_Max: {x: 0.19621593, y: 0.046200693, z: 0.060443558} + - m_Min: {x: -0.12618512, y: -0.15845278, z: -0.20048273} + m_Max: {x: 0.55258465, y: 0.11661515, z: 0.1465317} + - m_Min: {x: 0.045153707, y: -0.24000633, z: -0.10357416} + m_Max: {x: 0.23691556, y: 0.20135602, z: 0.3439607} + - m_Min: {x: -0.04441893, y: -0.06707597, z: -0.014552385} + m_Max: {x: 0.10359287, y: 0.06133473, z: 0.15188992} + - m_Min: {x: -0.010756671, y: -0.041652083, z: -0.017820202} + m_Max: {x: 0.12523216, y: 0.057937145, z: 0.104468405} + - m_Min: {x: -0.087565005, y: -0.07565671, z: -0.012320444} + m_Max: {x: 0.11327338, y: 0.06847614, z: 0.16996539} + - m_Min: {x: -0.06335318, y: -0.04474482, z: -0.013683185} + m_Max: {x: 0.10925257, y: 0.06317833, z: 0.14494921} + - m_Min: {x: 0.0013846755, y: -0.041743845, z: -0.011212245} + m_Max: {x: 0.12046057, y: 0.041096568, z: 0.090007395} + - m_Min: {x: -0.0036073923, y: -0.04500997, z: 0.000014804304} + m_Max: {x: 0.09087968, y: 0.04232949, z: 0.113855585} + - m_Min: {x: -0.02229476, y: -0.05017978, z: -0.021566853} + m_Max: {x: 0.09890294, y: 0.07200727, z: 0.123878255} + - m_Min: {x: -0.0014922023, y: -0.044296756, z: -0.0060397163} + m_Max: {x: 0.10198599, y: 0.04994522, z: 0.06377986} + - m_Min: {x: -0.014404416, y: -0.06616971, z: -0.06339006} + m_Max: {x: 0.34672236, y: 0.06700486, z: 0.062483154} + - m_Min: {x: -0.013542771, y: -0.036970615, z: -0.046540916} + m_Max: {x: 0.15794563, y: 0.029885948, z: 0.030828178} + - m_Min: {x: -0.05445528, y: -0.052991122, z: -0.06580043} + m_Max: {x: 0.25293458, y: 0.06178093, z: 0.079986215} + - m_Min: {x: -0.019117117, y: -0.11710885, z: -0.055372596} + m_Max: {x: 0.18313849, y: 0.03825444, z: 0.06502497} + - m_Min: {x: 0.008677959, y: -0.065862805, z: -0.046583086} + m_Max: {x: 0.24871147, y: 0.0435268, z: 0.07162158} + - m_Min: {x: -0.014331818, y: -0.026714623, z: -0.04219532} + m_Max: {x: 0.13534832, y: 0.031902075, z: 0.030913472} + - m_Min: {x: -0.004617214, y: -0.048809648, z: -0.031582206} + m_Max: {x: 0.13021368, y: 0.036635995, z: 0.04521656} + - m_Min: {x: -0.08071792, y: -0.12624371, z: -0.41995913} + m_Max: {x: 0.93549263, y: 0.13338888, z: 0.2774815} + - m_Min: {x: 0.021415234, y: -0.30306923, z: -0.17367688} + m_Max: {x: 0.42926192, y: 0.23905456, z: 0.20882455} + - m_Min: {x: -0.09159565, y: -0.28604084, z: -0.1805995} + m_Max: {x: 0.5298381, y: 0.2327916, z: 0.19725} + - m_Min: {x: 0.16037107, y: -0.16524959, z: -0.051711082} + m_Max: {x: 0.6404451, y: 0.17301947, z: 0.25516367} + - m_Min: {x: -0.6226952, y: -0.45429277, z: -0.404499} + m_Max: {x: 0.77363276, y: 0.34897327, z: 0.39880115} + - m_Min: {x: 0.058676243, y: -0.0078725815, z: -0.0039062947} + m_Max: {x: 0.058676243, y: -0.0078725815, z: -0.0039062947} + - m_Min: {x: -0.06444371, y: -0.05598378, z: -0.051218554} + m_Max: {x: 0.09580886, y: 0.03225565, z: 0.058207408} + - m_Min: {x: -0.26995587, y: -0.3369918, z: -0.1830715} + m_Max: {x: 0.33470488, y: 0.15387952, z: 0.18008143} + - m_Min: {x: -0.09174967, y: -0.30539083, z: -0.18300012} + m_Max: {x: 0.409837, y: 0.21263576, z: 0.18317744} + - m_Min: {x: -0.145239, y: -0.1304248, z: -0.13922256} + m_Max: {x: 0.4877177, y: 0.12360373, z: 0.1641947} + - m_Min: {x: -0.08129817, y: -0.1976273, z: -0.23015225} + m_Max: {x: 0.42017245, y: 0.15685672, z: 0.117054045} + - m_Min: {x: -0.034222305, y: -0.08121568, z: -0.063449085} + m_Max: {x: 0.19449961, y: 0.051838994, z: 0.0631786} + - m_Min: {x: -0.1260494, y: -0.10746035, z: -0.19976091} + m_Max: {x: 0.55271286, y: 0.167211, z: 0.13091421} + - m_Min: {x: 0.04521486, y: -0.19263849, z: -0.101659894} + m_Max: {x: 0.23695959, y: 0.24855769, z: 0.34591395} + - m_Min: {x: -0.0393095, y: -0.05416429, z: -0.014625721} + m_Max: {x: 0.108704865, y: 0.074288964, z: 0.15181363} + - m_Min: {x: -0.0058189332, y: -0.05094123, z: -0.017909706} + m_Max: {x: 0.13025978, y: 0.048624873, z: 0.10438612} + - m_Min: {x: -0.02057445, y: -0.06440377, z: -0.01237911} + m_Max: {x: 0.116217375, y: 0.08378255, z: 0.16989973} + - m_Min: {x: 0.016115725, y: -0.05462414, z: -0.013741791} + m_Max: {x: 0.10968679, y: 0.076584846, z: 0.14489591} + - m_Min: {x: 0.0018960834, y: -0.032639563, z: 0.014044724} + m_Max: {x: 0.02857399, y: 0.05020395, z: 0.08995426} + - m_Min: {x: -0.02643478, y: -0.06417875, z: -0.02161128} + m_Max: {x: 0.18454194, y: 0.26795298, z: 0.12383735} + - m_Min: {x: -0.0055948496, y: -0.042303324, z: -0.01775641} + m_Max: {x: 0.098534346, y: 0.2679529, z: 0.063745424} + - m_Min: {x: -0.0005902052, y: -0.03440398, z: -0.00005595386} + m_Max: {x: 0.093826056, y: 0.052941203, z: 0.11378685} + - m_Min: {x: -0.0077311993, y: -0.04523444, z: -0.057706878} + m_Max: {x: 0.28815484, y: 0.05189681, z: 0.057245426} + - m_Min: {x: -0.012917042, y: -0.034425378, z: -0.046880662} + m_Max: {x: 0.15856397, y: 0.032434225, z: 0.030450523} + - m_Min: {x: -0.052578807, y: -0.066211045, z: -0.0654881} + m_Max: {x: 0.25478482, y: 0.04858613, z: 0.08031848} + - m_Min: {x: -0.115971506, y: -0.04254815, z: -0.05654025} + m_Max: {x: 0.18461561, y: 0.04858616, z: 0.12742078} + - m_Min: {x: 0.0004911423, y: -0.04778841, z: -0.046477452} + m_Max: {x: 0.2513368, y: 0.081009835, z: 0.07172951} + - m_Min: {x: -0.011972666, y: -0.035944104, z: -0.043353558} + m_Max: {x: 0.13770819, y: 0.022678167, z: 0.029734075} + - m_Min: {x: -0.006200969, y: -0.041193962, z: -0.030840844} + m_Max: {x: 0.12863159, y: 0.04426253, z: 0.045929193} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 0200000001000300000002000500020004000600020005000300020007000a00080009000a000b0008000d000c000a000a000c000e000a000e000b000c000f0010000c000d000f00090011000a00110012000d000f000d0012000a0011000d001500130014001800160017001400130019001a0013001500150017001a001c0005001b0001001d001e001f001e001d0020001e001f001e0004000100020001000400130021001900210013001f001f001d00210022001a00170010001a00220012001c001b00120011001c0013001a002000100020001a001700160022000c0010002200130020001f0016000e000c000c002200160023001c000900110009001c00230024001c00050004001b002600170025002700180026002600180017002900280026002800270026002c002a002b002b002a002d002a002e002d002c002f0030002f002c002b002c0031003200300031002c003100280032003200280029002f002b003300340033002b00350034002d002b002d0034002e0035002d00290026003600140019003700370038001400150014003800380025001500250017001500320039003a002900390032003600260025003d003b003c0040003e003f0041003f003e00400042003e0040003f004300430044004000440043003d0045004200400040004400450046004500440044003d0046003c0046003d001c0024000500470006002400020006000700480023000900090008004800490024002300230048004900240006000500240049004a004c004b0003004b00000003004f004d004e004e0019004f004b004c004d004e004d004c00520050005100530019004e004c005400550055004e004c004e0055005600560053004e0057003b003d005300580037003a002c0032001900530037005a0058005900380037005a0058005a0037005a005b005c003a005d002a005c0025005a002a005d005e005e005d005b005b0059005e005e002e002a005a0059005b003a002a002c00250038005a005f002e005e005e0060005f00610058005300530056006100620035002e002e005f00620063005900580058006100630060005e005900590063006000640043003f003f006500640065003f00410041006600650057003d0043004300640057005400500067004c00500054006700680069006a004a00490024004a0047006a006b006c006d00670069006800670052000300070051005200670050004c00030050005000030051006a006c004a0047004a006c00070006006e0070006f004700060047006f00510007006e006e00710051005200710072006e0006006f00510071005200740073006b0047006c007000730070006c0075006900680068007600750072007600680073006c006b005200720068007900770078007c007a007b007f007d007e007d007a007c008200800081008500830084008700860082008800820086007900780083007d007f007a0089007d0079007d0089008a0079007d0077007a0080007b007c0077007d0080007a0081008700820081008500790083008500890079008a0089008b008a008c008d00890085008e0090007f008f00920091007e00900087008100950093009400930096009700930098009400980099009a009a009b009c0099009d009a009f009e009d0097009600a000a200a1009600a500a300a400a800a600a700aa00a9009f009f00ab00ac00a000ad00ae00b100af00b000ae00b200b300b600b400b500b300a000ae009700a000b3009f00b700ab00ac009e009f009e00ac00b8009e00b800b900bc00ba00bb00be00a000bd00a100bd00a000ba009500bf00b300b200a400b000c000c100c200ad00b600b200a500a400af00c300b000c300c000b000b100b000c100bc0096009500b400b600c40095009600930093009700980095009400bf009a00c5009b009a009d00c5009e00b900c500b400c600b500c200b600b500a600a300a700a700a300a5009700b300c700a300c700a400a3009d0099009900c700a300aa009f009d00c500b900c800a500c200a700ca00b500c900a600cb00cc009700c7009800a200cd00ce009800c700990098009a00cf009800cf00d0009800d00094009a009c00cf00bc009500ba00d200a800d100d400d300a700d600d500aa00cc00cb00d600d700d600cb00c900c600d800c600c900b500d400ca00d900b800ac00da00db00da00ac008600d800c600ab00db00ac00a300cc009d00a300a600cc00c500c8009b00b600ad00be00be00c400b600a400c700b300c400dc00b4007b008000dd00de00dd00800082008800df008200de008000df008800dc00de008200df00bc00bb00e000e100e000bb00e400e200e300e500cd00a200c400be00e600e600e700c400dd00e800e900e800dd00de00eb00de00ea00de00eb00e800e100ec00e000ec00ed00e000ef00e600ee00ea00f000eb00f100eb00f000ea00de00df00e700ea00c400f400f200f300f700f500f600f000ea00e700bd00a100f800a100a200ce00a0009600a100bc00a2009600e500a200bc00b500ca00a700f900ca00d400fc00fa00fb00fb00fd00fc00fe00fa00fc00fc00fd00fe00a700c200b500f800a100ce00e000e500bc000101ff00000102010001ff00ff000301020104010201030107010501060105010701f500030108010401080103010901f600f500070107010401f600000102010a010b010a010201020104010b010c010b010401070106010d010e010d010601040107010c010d010c0107010a010b010f0110010f010b010b011101100111010b010c010d010e011201120113010d0113010c010d01130111010c01f2001401f3000801f6000401170115011601180117011601be00ad00a0009d009e00c500e4001901e20081007f00900092008f0091007f0081007a0091008f007f0091007f007e008c0092008d007d008a007e008b008c008a008d0092007e008a008d007e0085008b008e0089008e008b00d400d100d300cb00a600a800d200d100d700d300d100a800d300a800a700cb00d200d700cb00a800d200cc00aa009d00cc00d600aa00d500a900aa00d500b700a900a900b7009f00a700f900d400f900a700ca001c011a011b011e011a011d011a011e011f011a011f011b011a011c011d01210120011d011d0122012101200123011d012301200124012401250123012501240126012501210122012101250126012001210127012401200127012701260124012101260127012a012801290128012a012b012d012c012b012a012d012b0128012e0129012b012c012f012e012f012c0128012b012f012f012e0128013201300131013301310130013401320131013101350134013001360133013701330136013601380139013901370136013a01300132013a01320134013a01360130013a0138013601330137013b013c01310133013b013c0133013f013d013e0140013e013d01430141014201410143013d014101440142014401410145013d0143014001450146014401460145013f01470145014101450147014801490141013d014101490147014a0149013f013d013f01490145014a013f014a01450148014b01480147014b01470149014b0149014a014b014a0148013f013e0146014e014c014d0150014d014f0150014f0151015401520153015601550152015901570158014d0157014e015301580154015801530159015c015a015b015f015d015e015a0160015b016201600161016101630162015f01620163015c015b0164015e016501660166016501560166015f015e014d01580157014f014d014c015f0163015d0162015b01600152016601560155015301520169016701680168016a016b016c016a016801680167016c016d016901680168016b016d01780077006e017b006f017c007201700171017c006f017001750173017401840083007601740177017801770174017901830078006e016f01710170016e0170017a017b017a017001770070016e017b0073016f01700177007c0075016f01730175017401780183006e0176016e017a0176017c017a017b017e017d017b017f0176017a018101710180017201820183017501780180019400840185018701860184019400880184018a01890188019c009b008a018a018b0189018b018c018d018e018601870186018f0190019301910192019601940195018d01970198019a0199018d019c019b018e019f019d019e01a101a0019c01a401a201a3019c018e01a101a1018e0187019901a5018d018d018c019a01b8009a018c01b900b8008c01bb00ba00a601a8018e01a7018e01a8018f01bf008501ba009301a001a101aa01a9019f01a3019b01ab0193019201a0019f01ac019d019f01a901ac01aa019f019e0185018601a601ad01a301a201840186018501880187018401bf00940085019b00ae018a01ae018b018a01ae01b9008c01a401af01a201a401a301ab01960191019401920191019601b001a10187019301b001910189018b0191019101b00189018b018d019801c800b900ae019601ab019201b201a401b101b401b30194018801b0018701b601b50190018901b0018801cf008a018801d000cf0088019400d0008801cf009c008a01ba008501a601b8019501b7019601b901ba019801bb01bc01bc01b301b401b301bc01bd01be01af01b201a401b201af01bf01b101ba01da009a01b8009a01da00db00af01be0177019a01db0099018b01b4019101b401940191019b00c800ae01a7019b01a301a301ad01a701a101b0019301a201c001ad01dd0073017b007301dd00c101c201790174017301c1017401c0017901c201c2017401c101c301bb00a601bb00c301e100c601c401c5019001b501c701c801a701ad01ad01c901c801e900ca01dd00c101dd00ca01cc01c101cb01ca01cb01c101c301ec00e100c301cd01ec00cf01c801ce01cb01d001cc01d001cb01d101c201c101cc01ad01cc01c901d401d201d301d701d501d601c901cc01d001d8018f01a801b60190018f018f0186018e0186019001a601a6019001c7019601b101a401ba01b101d901dc01da01db01db01dd01dc01db01da01de01de01dd01db01a401ab019601b6018f01d801a601c701c3010001df010101df010001e001e001e101df01e101e001e20106010501e301d501e3010501e201e401e101e501e101e401e301d501d701d701e201e3010a01e0010001e0010a01e601e601e201e001e201e601e701e8010601e3010601e8010e01e701e301e201e301e701e8010f01e6010a01e6010f01e901e901ea01e601e701e601ea0112010e01e801e801eb011201e801e701eb01e701ea01eb01d401ec01d201e201d701e401ee01ed011701ee01170118018e019b01a701ae018c018b01c401ef01c5018001710175018201810183016f01750171017101810182017201710182017e0183017d0172017b0170017b017d017c01720183017e0172017e017b017f017c0176017c017f017a01b901b801ba0195019401b301bd01b801b7019501b801b90196019501b901bd01b701b301b7019501b3018b019801b4019801bc01b40198019701bb019701a501bb018d01a5019701ba01d9019601b1019601d901f201f001f101f401f001f301f501f301f001f201f501f001f401f101f001f401f601f701f701f801f401f401f901f601fa01f601f901f901fb01fa01fc01fa01fb01f801f701fb01fc01fb01f701fd01f701f601fd01f601fa01fa01fc01fd01fd01fc01f7010002fe01ff010102ff01fe0101020202030201020302ff0100020402fe0105020202010202020502040205020102fe01fe0104020502080206020702060208020902080207020a020a020b02080209020c0206020c0209020d020f020e020c020c020d020f020702060210020a020702100206020c0210020c020e02100211020d02090209020802120209021202110215021302140213021502160219021702180213021802170219021a0217021b0217021a021602180213021a021c021b0214021b021c0217021b021d021e021d021b02130217021f021d021f02170214021f0220021f0214021302140220021b021e021b0220021d021e0221021f021d02210220021f0221021e02200221021c02150214024d012202230224024d01500125022402500127022602540126022802290258012a022b0223022a024d015401580127022b02270258015b012c022d022f022e025f015b0130022c02310230026201620132023102320262015f0164015b012d02660133022f022902330266012f025f0166012a0258014d0122024d0124022e0232025f0130025b0162012902660126022602270228023402670169016b016a01340234026a013502350267013402340269016d016d016b0134023802360237023802370239023c023a023b023f023d023e02410240023d024102360240024202400236024202430244024502440243023802420236024302420238023a023c02460238023a024302460243023a024502430246024902470248024c024a024b024c024d024a024f024d024e0250024e024d0252024b025102530251024b0249024802540254025502490253024b024a024a025602530256024a024d024d024f0256025802570255024902550257024702490259025b0250025a025a024d024c025a0250024d025702590249025c02390237025f025d025e02610260025e026402620263025c025e0265026702660262026202640268025d0269025e02690261025e02690264026a026a026102690269025d0268026802640269026702620268026b0239025c026b026c0239025c0237025f026e026d026702670268026e026f026002610261026a026f02650270025c02720255027102540271025502620271026302710262027202600265025e0273025502720273025802550274026b0270025e025c025f02700256024f027002650256026002530265025602650253024f024e027402740270024f026f0251025302530260026f025f0275025d025f023702750262026602720272026602730270026b025c026d027602670266026702760275026e025d0268025d026e023d0276026d023f0276023d026d026e02410241023d026d023702360275023a023802390239026c023b023b023a02390241026e0275027502360241027902770278027b0279027a027e027c027d027d0277027b0279027b0277027b027e027d0281027f02800284028202830284028502860286028202840281028702880289028702810283028a0284028b0284028a02850284028b028a028c028b02810288027f028b028c028d028e028d028c028d028e028f02920290029102950293029402970294029602960298029702960294029302940299029502900292029a028b029602850293028502960296028b028d0297029b029c0298029b02970287029d02880293029e028502860285029e029d02910288029f02880291029f027f0288029402a00299029402a102a0029002a202a30290029a02a20296028d0298028d028f0298029b0298028f029102a4029f0294029702a1029902a002a502a502a6029902a702a1029702a7029702a8029c02a8029702a902a402a302aa027b027a02ad02ab02ac02ad02ac02ae02ad02af02ab027a02b002b102ac02b202ae02b402ae02b302b102a902aa02b602b402b502b302b502b402aa02b7027e027e027b02aa02ae02a702ad02a702ae02a102a802ad02a702b102aa027a02a902a302aa02a302a202b702b702aa02a302a002b402b602b602a502a002a802af02ad02930295029e029502b8029e029d029202910291029002a4029002a302a402a002a102b402a102ae02b402bb02b902ba02b902bb02bc02ba02b902ab02ac02ab02b902b202bd02b302c002be02bf02b502b302c0027a027902b002b0027902c102b202b302ae02b902b202ac027802c202c102c10279027802bf02b502c002b302bd02c002bc02bd02b202b202b902bc02c402c302bc02bc02bb02c402c002bd02be02c502be02bd02c502bd02c302bc02c302bd02c2027802c602c70295029902c8029a029202c702b8029502c7029902a602cb02c902ca02ce02cc02cd02cf02cd02cc02d202d002d102d402d302d002d002d202d402d702d502d602d802d602d502da02d902d702d502d702d902d802db02d602dc02d602db02db02dd02dc02de02dc02dd02e002cd02df02d402df02cd02df02e102e002e402e202e302e502e302e202e202e602e502da02e502e602e802e702e302e402e302e702ea02e902e802e702e802e902ce02eb02cc02ed02c902ec02cb02ec02c902cb02ca02ea02ef02ee02ec02ed02ec02ee02f102f002ef02ee02ef02f002e502d702f202f302cd02cf02f602f402f502f802f702f302f902f302f702da02d702e502fa02dc02de02d402f302fb02fe02fc02fd020003fd02ff02fb02d302d402f802f3020103f302cf020103cd02f302d4020203e302f202e802e3020203ef02ec020303dc02fa0204030503cb02e8020603fc02fe02fe0207030603f402f6020803ff02fd02fc020003ff020803ec0205030303d702d602f202fa02f502040304030203f2020303050302030703ef0203030703f102ef02f202d6020403030309030603030302030903040309030203f60200030803070303030603f502f40204030403f40209030503ec02cb02dc020403d6020a03fa02de02e502f202e302e80202030503ea02e802cb02ca02c9020b03ed020b03c902ed02ee020b03ee02f0020b03dd02db020c03d5020c03d802d9020c03d502db02d8020c03e602e2020d03e202e4020d03e7020d03e402e9020d03e7020e03f302f902f3020e03fb020f03f502fa02f5020f0310031003f602f5021203f6021103140313030f0310030f0313031503fb020e03fb021503160313031703110311031003130318031303140319031603150318031703130314030f030a030a030f03fa021203110317030003f602120310031103f6021c031a031b031f031d031e0322032003210324031f03230326031d032503240325031d032803270325032603250327032b0329032a032d032a032c0328032e03270331032f03300324032303320333033203230333031a0332031c0332031a033603340335033803200337032803370320033a03390337033803370339033a033b0339033e033c033d0341033f0340033d0342033e0343033e034203460344034503490347034803310346032f0345032f0346032c0349032d0346032d0349033403360349033603470349034a03490348034a03440346034a034603490323031f034b03280322032e033a034c033b0324031d031f031c031b034d0328032003220350034e034f0353035103520328035403370356034103550358034a035703550353035903480357034a0342034a035803510353035503430342035803420344034a033a033703540354033f033a033f035a033a035a034c033a035b0352034f035c03400354035e035d035c033f03410356035f035d03500350035d035e035c03540360033f03540340035f0352035d0351035d035203530352035b0363036103620356035503590350036303620324036003250332035e032403600324035e0354032803600360035e035c03280325036003630350035e03320363035e0362034e03500352035f034f0350034f035f031c034d036103610363031c035a033f03560332031c0363036603640365031e031d0366032c032a0329036603670364036703660326031d03260366031e03660365036803640367032703680367036703260327032e03680327034b0369036a031b031a036b036a0369036c036a036c032303330323036c034b036a0323036b036c03690333036c031a036b031a036c031b036b03690339036d03380320036d0321033b036d033903200338036d035b034f036e034e036f036e035b036e036f034e036e034f0372037003710371037003730375037103740374037103760377037103730379030800780308000b00780378037a037b030e007a0378030b000e0078037d037c037a037c037b037a0378037e0379037b037f037e037f037b037c037b037e037803820380038103830316001800840380038203810380038503850383038103870374038603890388037203880389038a038a0389038b0372037503890375037203710384038c0380038a0380038c038c0388038a03830385038d038d0385037d03870386037f0386037e037f038b038503800385038b037d038d03160083038d037d037a038a038b0380037a030e00160016008d037a03790386038e03860379037e0386038f038e0387037503740391038303900390031800270083031800900390032800920390032700280095039303940396039303950396039703930330002f009403950394032f00980331009403940331003000980328003100920328009803330095032f00950333009903960399039a0399039603950396039a0397039b03900392039c038403820382039d039c039d0382038103810391039d038103830391039f039e03980398039e039203910390039b033c00a003a103a403a203a303a203a403a503a2034200a303a603a403a303a303a703a603a103a603a703a303420045004500a703a303a703450046004600a103a703a10346003c0074038f0386038f037603a80377037603710379038e0348004800080079038e038f034900490048008e03740376038f03a90349008f037303aa03ab0373037003aa03ae03ac03ad03ad038403ae03ac03ab03aa03ab03ac03ae03b103af03b003ae038403b20355005400ab03ab03ae03550056005500ae03ae03b2035600a103a00357009c03b303b203980394039f039c03b2038403b503b303b403b4039c039d039c03b403b303b703b603b4039303b8039f03b4039103b703b903b8039303b603b803b903b903b503b60393039703b903b603b503b403940393039f03b4039d039103b90397035f005f006000b903b203b303610061005600b20397039a03620062005f009703b303b503630063006100b303b503b903600060006300b503a403a603640064006500a403a503a403650065006600a503a603a103570057006400a6036700af0354005400af03ab03bb03ba0367004900a903bc03a803a9038f03be03bd03bc03bb036700bf03b0036700ba03b10377037303af036700b003af037303ab03b1037303af03a903be03bc03be03a903a803c00376037703a803c103c203c103a8037603c0037703b103b103c303c003c403c303b003c1037603c003b003c303b103bd03c503c603c203be03a803be03c203c503ba03bb03c703c703c803ba03ba03c803c403bd03be03c503ba03c403b003cb03c903ca03ce03cc03cd03d103cf03d003cd03cc03cf03d403d203d303d703d503d603d303d803d903d803d303da03d503cb03ca03cc03d003cf03ca03cf03db03dc03db03cf03c903cf03ca03ce03d203cc03cf03c903cd03d403cc03d203d403d303d903d503ca03d603ca03db03d603dd03db03dc03df03de03dc03e003d603db03e203d003e103d103e303e403d403d903e103e703e503e603e903e803e503e703ea03e503ec03eb03ea03ee03ed03ec03ec03ef03eb03ef03f003f103f203e803e903e803f303f403f703f503f603fa03f803f903f103fb03fc03fe03fd03f1030004ff03f2030304010402040504040400040804060407040004f20305040504f203e903fd030904f103f103f003fe030a04fe03f0030b040a04f0030e040c040d041004f2030f04f2031004f3031104e6030c04f703040405041304120403040704ff031404f703f6030404030415040104030412041504130403040204e603e8030d04160407040604e503e803e603ea03e903e5031104e703e603ed031704ec031704ef03ec0317040b04f003080418040604080407041404fa03f503f803f603f503fa0319040504e903f7031904f503eb03ef03f503f5031904eb03ef03f103fc031a040b041704fa031404f6031c0408041b041e041d04f803ea031904e90320041f04f403eb031904ea032104ec03ea0322042104ea03e7032204ea032104ee03ec030c04e6030d042404f9032304fa0325042604fc032704280428041d041e041d04280429042a0418041c0408041c0418042b041b0426042c04fe030a04fe032c042d0418042a04d803fe032d04fd03ef031e04f5031e04f803f503ed031a0417040f04ff030704070416040f0405041904f70306042e0416042f04d203ce03d2032f0430043104da03d303d2033004d3032e04da0331043104d303300432040e040d040e0432043304360434043504f4031f04370438040f0416041604390438043b043a042f0430042f043a043d0430043c043a043c04300432043e04330432043f043e044104380440043c0442043d0442043c044304310430043d0416043d04390446044404450449044704480439043d0442044a04f30310042004f403f303f303e803f203e803f4030d040d04f4033704fa031b04080426041b044b044e044c044d044d044f044e044d044c04500450044f044d0408041404fa032004f3034a040d043704320453045104520451045304540454045504510455045404560459045704580447045804570456045a0455045b0455045a045804470449044904560458045c045404530454045c045d045d045604540456045d045e045f045904580459045f0460045e045804560458045e045f0461045d045c045d0461046204620463045d045e045d046304640460045f045f04650464045f045e0465045e0463046504460466044404560449045a04690467046804690468046a04f203ff030f041704f003ef0334046b043504e103d003d403e303e203e403cc03d403d003d003e203e303d103d003e303df03e403de03d103dc03cf03dc03de03dd03d103e403df03d103df03dc03e003dd03d603dd03e003db03250424042604f903f8031d04290424042304f90324042504fa03f9032504290423041d042304f9031d04ef03fc031e04fc0328041e04fc03fb032704fb0309042704f1030904fb0326044b04fa031b04fa034b046e046c046d0470046c046f0471046f046c046e0471046c0470046d046c047004720473047304740470047004750472047604720475047504770476047804760477047404730477047804770473047904730472047904720476047604780479047904780473047c047a047b047d047b047a047d047e047f047d047f047b047c0480047a0481047e047d047e048104800481047d047a047a04800481048404820483048204840485048404830486048604870484048504880482048804850489048b048a048804880489048b04830482048c04860483048c04820488048c0488048a048c048d0489048504850484048e0485048e048d0491048f0490048f04910492049504930494048f0494049304950496049304970493049604920494048f049604980497049004970498049304970499049a04990497048f0493049b0499049b04930490049b049c049b0490048f0490049c0497049a0497049c0499049a049d049b0499049d049c049b049d049a049c049d04980491049004a0049e049f04a204a004a104a304a204a104a604a404a504a404a704a804ab04a904aa049f04a904a004a504ab04a604aa04a604ab04ae04ac04ad04b104af04b004ae04b204ac04b404b204b304b304b504b404b504b304b004b604ae04ad04b804b704b104a804b704b804b104b004b804a904ab04a0049e04a004a204af04b504b004b204ae04b304a804b804a404a404a604a704bb04b904ba04bd04bc04bb04bb04bc04be04be04b904bb04bb04ba04bf04bf04bd04bb04c004c903cb03cd03c104ce03c404c204c304c204c104cd03c704c504c604c804d503d703ca04c904c704cb04c704c904c004cb03d503c204c404c104cc04c204c004c204cc04cd04c004c204c903c104c504ce03cd03c903c204c504c104c604ca04c704c604c804c004d503c804cc04c004cd04cc04ce04cd04cf04d004cc04c804d104d304c404d204d504d404c304d304ca04c604d704d604e703d604d804d904d604da04e703da04db04dc04dc04ed03ee03db04dd04dc04df04de04dd04d904d804e004e204e104d804e504e304e404e804e604e704ea04e904df04df04eb04ec04e004ed04ee04f104ef04f004ee04f204f304f604f404f504f304e004ee04d904e004f304df04f704eb04ec04de04df04de04ec040a04de040a040b04f8040c040e04fa04e004f904e104f904e0040c04d7041104f304f204e404f004fb04fc04fd04ed04f604f204e504e404ef04fe04f004fe04fb04f004f104f004fc04f804d804d704f404f604ff04d704d804d604d604d904da04d704e7031104dc040005ed03dc04dd040005de040b040005f4040105f504fd04f604f504e604e304e704e704e304e504d904f3040205e3040205e404e304dd04db04db040205e304ea04df04dd0400050b041a04e504fd04e7040405f5040305e60405050605d9040205da04e20407050805da040205db04da04dc042104da0421042204da042204e703dc04ee032104f804d7040c040a05e80409050c050b05e7040e050d05ea04060505050e050f050e05050503050105100501050305f5040c05040511050a04ec042c042d042c04ec04c90410050105eb042d04ec04e3040605dd04e304e604060500051a04ed03f604ed04fa04fa04ff04f604e4040205f304ff041205f404ce03c5042f0413052f04c504c704cb041405c7041305c5041405cb0412051305c7041405f8040e041505330415050e0418051605170519050705e204ff04fa041a051a051b05ff042f041c053b041c052f0413051e0513051d0513051e051c0533043e0415053e041f05150521051a0520051d0522051e0523051e0522051d05130514051b051d05ff0426052405250529052705280522051d051b05f904e1042a05e104e2040805e004d804e104f804e204d8041905e204f804f5040405e7042b0504050c052e052c052d052d052f052e0530052c052e052e052f053005e704fd04f5042a05e104080515051905f804520431055304320553043105310533053205340532053305350557045904570435052705330536053405360533053705280527053505350534052805530432055c0438055c043205320534053805390538053405350559043a0560043a0559043405350539053a05390535055c04380561043b056104380538053c053b053c05380539053a056004640464043d053a053d0539053a053d053c05390524053e05250536052805340568043f0540056a0468044005fa04ed04e004dd04de040005180541051605c604c404d304d504d204d404c404c604c104d404d204c404d404c404c304cf04d504d004c204cd04c304ce04cf04cd04d004d504c304cd04d004c304c804ce04d104cc04d104ce040c0509050b050505e604e8040a0509050f050b050905e8040b05e804e70405050a050f050505e8040a050605ea04dd0406050e05ea040d05e904ea040d05f704e904e904f704df04e7042b050c052b05e704040544054205430546054205450542054605470542054705430542054405450549054805450545054a05490548054b0545054b0548054c054c054d054b054d054c054e054d0549054a0549054d054e05480549054f054c0548054f054f054e054c0549054e054f055205500551055005520553055505540553055205550553055005560551055305540557055605570554055005530557055705560550055a05580559055b05590558055c055a05590559055d055c0558055e055b055f055b055e055e056005610561055f055e05620558055a0562055a055c0562055e055805620560055e055b055f056305640559055b05630564055b056705650566056805660565056b0569056a0569056b05650569056c056a056c0569056d0565056b0568056d056e056c056e056d0567056f056d0569056d056f057005710569056505690571056f057205710567056505670571056d057205670572056d057005730570056f0573056f057105730571057205730572057005670566056e0575057405a004a104a0047605a10476057705a504780579057b057a0578057d057c05ab04a0047c0575057905ab04a504ab0479057d057f057e05ae04b004800581057e058205ae04b3048205830583058405b304b004b30484057f05ae04b60481058505b804b80485057b05b804b0048105a004ab047c057605a0047405b00484058005b304ae0482057805b8047b057a0579057805ba04b90486058605bc04bd048705bc0486058605b9048705bf04ba0486058605bd04bf048a05880589058b058a0589058e058c058d0591058f0590058f059205930592058805930588059205940596059505940595059605970588059405890589059405950598058d058c0595058c0589058c05950598059805950597059b0599059a059e059c059d059c059f059d05a1059f05a0059f05a105a205a4059e05a3059e05a405a505a6059b059a059a05a705a6059c059e05a505a505a8059c059f059c05a805a805a0059f05a705a905aa05a905a7059a05ab059a059905ad05a205ac059d059f05ad059f05a205ad059a05ab05a9058a058b05ae05b105af05b005b105b205b305b605b405b505b705b105ae05b405b805b905ba05b505b405b105bb05af05b105b305bb05bc05b505bb05bb05b305bc05ba05af05bb05bb05b505ba05ba05b405b905ae058b05bd058b05be05bd05b0058a05ae05b905bf05c005c005ba05b905b305b205c105c105bc05b305ae05c205b705c405a705c305a705c405a605b605c405b405c305b405c405b105b705b205c305a705c505a705aa05c505c205bd05c605b005ae05b105a005a805c205a805b705c205b705a505b205a505b705a805c605a105a005a005c205c605a505a405c105c105b205a505af05c705b005c7058a05b005c305b805b405c505b805c305ae05bd05c205b905c805bf05c805b905b805af05c005c705c005af05ba05bf05c8058f058f05c80590059305c005bf05bf058f059305c70588058a058b0589058c058e05be058b058b058c058e05c705c005930593058805c705cb05c905ca05cd05ca05cc05d005ce05cf05cc05c905d005c905cc05ca05d005cf05cc05d305d105d205d605d405d505d805d705d505d505d405d805da05d905d205d205d905db05d505dc05d605dc05d505dd05dd05d505d705dd05de05dc05d105da05d205df05de05dd05de05df05e005e105e005df05e405e205e305e705e505e605e905e705e805e805ea05e905e505e705e905e605eb05e705ec05e305e205d705e905dd05e905d705e505df05dd05e905ee05ed05e805e805ed05ea05da05ef05d905d705f005e505f005d705d805da05e405ef05e405da05f105da05d105f105eb05f205e705f205f305e705f505f405e205f405ec05e205ea05df05e905ea05e105df05e105ea05ed05f105f605e405f305e805e705f705f205eb05eb05f805f705e805f305f905fa05e805f905e805fa05ee05f505f605fb05cd05cc05fc05ff05fd05fe050006ff05fe05fd050106fe0503060206cd0500060406ff05060600060506fc05fb050306080605060706050608060606cf050906fc05fc05cc05cf05fe05f9050006f3050006f905f905fe05fa05cd05fc050306fc05f505fb050906f405f505f505fc05090607060506f205f205f7050706fe050106fa05f005e605e505f0050a06e605e405e305ef05f605e205e405f605f505e2050506f305f20505060006f3050d060b060c060e060c060b06fd050b060d060b06fd05ff0506060f0604061206100611061106060608060206ca05cd051306ca050206000606060406ff0504060b0613061406cb05cb05ca05130611060806120611060f06060604060f060e060e060b0604060e061506160616060c060e0610060f0611060f061006170615060f0617060f0615060e061806cb051406eb05e6051906e305ec051a06e6050a061906f805eb0519061d061b061c0620061e061f061e0620062106240622062306220625062606260623062206290627062806270629062a0628062b062c062b062806270629062d062a062d0629062e062e062f062d062f062e063006320620063106200632062606310633063206360634063506340636063706370638063406380637062c06360639063a063906360635063a063b063c063b063a0639061e063d061f063f061b063e061b063f061c063c061d061c063f064006410640063f063e06410642064306420641064006440628063706210620064506480646064706450649064a06490645064b06370628062c0630062e064c064d064506260650064e064f06520650065106260625064d06530645064a06530621064506260645062006440636065406540636063a0655063f06410656064c062e063a061c0657064f064e065806580659064f065a06470646064e06500652065a0652065106550657063f06440629062806560648064c0644065406560654065706550655064106590641064306590656062906440658065b0655065b065406550654065b0656065a06510647065806550659065606460648065b06460656061c063f065706290656062e0630064c065c06360644063706570654063a061c063a063c065d061b061d061b065d063e065d0640063e065d06420640065e062d062f062a065e06270627065e062b065e062a062d065f06340638065f063506340635065f06390639065f063b064b06450660064d06600645064c064806610662066106480648064706620664064706630661066506660665066106620660064d066706680667064d06640669066506650662066406660665066a06670668066b06650669066a065c06610666064c0661065c066906640663066306470651064706640662066e066c066d0671066f06700674067206730676067006750678066f0677066f0678067506780679067a067906780677067d067b067c067f067d067e06790680067a0683068106820684067606750676068406850684066c0685066c0684066d068806860687068a067206890672068a067a068a068b068c068b068a0689068b068d068c0690068e068f069306910692068f069406900694068f0695069806960697069b0699069a068106970682069706810698067e069a067f069a067e0697069a06870686069a06990687069b069a069c06970696069c069a0697069c069d0670067606800673067a068d069e068c0670066f0675069f066e066d06730672067a06a206a006a106a506a306a4068a06a6067a06a8069206a706aa069c06a906ab06a406a8069c06aa069b06a9069c069406a806a406a306a906940695069c0696069406a6068a068c068c069106a6068c06ac0691068c069e06ac06a206a506ad06a6069306ae06ae06af06b006a70692069106a106af06b106b006af06a106b206a606ae069306a6069106af06a506b106a506af06a306ad06a506a406b506b306b406ab06a806a706b506b406a1067806b20675067506b0068406b0067506b206b2067a06a606ae06b006b206b20678067a06b006a106b406b006b4068406a106a006b506a206b106a506b106a206a106b3069f066d066d06b406b306a7069106ac06b4066d068406b806b606b706b7066f0671067b067d067f06b606b906b7067706b706b906b70677066f06b806b7067106b906b606ba06b906ba06790679067706b9067906ba068006bc06bb069d06bd066c066e06be06bb06bc067606be06bc06be06760685067606bc069d06bb06be06bd066c06be068506be066c06bd06bb06bd066e068906bf068b067406bf0672068b06bf068d06bf0689067206c006a206ad06c006c106a006c106c006ad06a206c006a006 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 1730 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 110720 + _typelessdata: 9506b0be6db4b33fa78c483fcc7254bf73f50d3f9ba97cbda893ccbedfd1a63f70e5373fa37d74bf89bc973ec64404bcbbc4b2befe1db23fa8cd723f85a578bffa856f3ee90433bd9a3c85be8e1dc43f6b685d3f31ca26bfe48d293f8a67bdbe5936d4be97b5953fda47513fc01e7bbf7727193e8c13fe3d045ababe98b79e3fb1cc8a3fe46777bf493690bdb6067d3e6f5cc3be07d2b43fb6ae9c3f89f879bf50864fbe958f973d59f6b4be63dac43f9ad98b3fb7d56dbfe4d42d3e2e4fa8bef7619aba3eda2f3f78a18c3f7d6818ba919541bfb883273f7ef341be33e4383f0acb863f5d21efbe108f1bbf7f71243f7eda2cbe8a5a1a3f24a45d3f3ff504bff98b57bf038c153ee43d81ba02750c3fdbf7613fd97d70b9ac5477bf0b1d843eecb483be3a97323f75dcde3ebae918bffe974bbf2e25d4bdd96691be6275323f6f252d3f193d4abfc3141cbfcc79843d3cea27ba907c063fd1c1fc3e877098387d237fbf40dda7bd9ee4a8bec114433fd54e1a3fca8e50bf3c6914bf8dc76dbcd989c1be2c745c3fb780ad3e9ea84ebfe21010bf382136be8d5199becbce493f7eb4763fc54e50bf7d1205bfb433853e6649adbeeb4e5f3f3180643f7e2169bf4146c1be61eb2b3e1365c3bea7bb963ff48e2e3ed1a678bf67632f3ef30829beb705bdbec697953f3e218cbce06d7bbf00bb3f3e327795bcf51bbbbeb154753fe7280abdf7f87cbf805e1cbece0064bcfb3ecfb9b539153f0bbd5e3e65cdff3813927dbfdfbc0cbed66c8dbe30f2403fdfed52bde43631bfeec137bf00ad98bdbe7e15b9f42c203f714b89bd525cf1386bd77dbf05b204be8f3c99be8517ae3f467c283d88733abf2ff02d3f5bf9b5bdfbe8c3be286f763f94123e3e6d956ebf78d6a1be96cf35be52bbcebe459f833f198f673fb41774bfa4a00ebedbde883ec845a7be226f7b3fe3f58c3f27d358bf1ac096be37a4e23e7bdfb1be0041a13f225dd73e04005cbf23ed013f81917fbd2ffcd8bed604963f3c140f3f2b596dbf642cbb3eb470a8bd831ed3be9fb0953f40f4c33ecc8168bf8e67d43e5de560bd7bf7f4bee577803f8389be3e8ccc75bf08728c3db2b78abe65e4aebeed68aa3f023a633e11c86dbf10efba3e86f880bdd31186be328e3b3ff4f5493ef8ef31bfc69836bfdaa4b8bdeffd5bbe64e3733fedbd9a3fb8bdb9be18b8e1bef42c523f26057cbebc5f993fd47ba93f1f2b1abf2d33bbbebead353fb110c2be2fbf763f9c0684be4cea72bf968e91bedf5e0c3ee4816abeae29423f35c99cbe7c60f4be036360bf0424803d4f09a53869c3283ffde1a1be621138b7fffa7fbf6a504a3c54a0b539576f1e3fc01d1ebf9fe5b436c0fe7fbf2e6bcabbb75b91be9698323f142a19bf839f95be09bd74bf0137d03c975fb7be5a168b3feaf68dbf3ffc71bff52c6abd767fa4bea1dc40be8939833ffb42b8bf7f4210bf24464fbf18ef27be498931bed1dd613fc3db91bff060fbbe9f1a40bfa793e2be558992be5ae6923f2e9fb6bf0e007cbf2639aebde9dd1dbe4a8360be9e34aa3f1b80b4bf1e5237bf40602e3f0c141cbe83718d3afee0723feaa7b8bf1cb464397c2478bf56c17bbe359f533a6be1553fd87991bf2d52cc39040766bf2ab5e0beb38f1e3ad71b303f399c68bf9cacc539abc667bfcc66d9be96f85dbed0ca3d3f46e362bfe76db6be0e165dbfb89cb6be071dc33a2bea783fcbabf3bf69b81438bdca7fbf951a25bd10ed38bed0a4843f6507f4bfac9349bfe5c31bbf5f61cabd77764cbe78dd9d3fa2fcf7bf249b60bfe0dee43e128f32bef547a2be34024c3ff713bdbe61c316bfab5035bfd24fc73e25b8a5be86cea73f9a2feebd288d4cbfeed8193f3d47a23c483abebe9891973f0b572fbef5567ebfb752a93d10df9f3d27ebb2beaa163d3f67573ebfaee3cebeeea353bf676fc8be94a0cdbebb3a5e3f713456bf341b3bbfab05febe3ff6efbecd8b5e3b66614d3fc30c8fc0b54e7ebf8174efbc385de3bd09a6473b9fb1513fba186ac0e93017b80dd17fbf53041b3d2189b4bd1661673f4a626bc0757776bfd31685beba3698bd10ed38bed0a4843f6507f4bf38bc5dbf81d8ffbe816a123cb13a36bec708913f65931bc0861767bf4b52d13eb15309be648606be6b6e773f78cd19c0e8733ebf83e72abf034bee3c77764cbe78dd9d3fa2fcf7bf807842bfefb5213fdd541ebe071dc33a2bea783fcbabf3bfee41cab8cb7d7ebfbc02de3db6600abe4a3e843f34f840c0a2ce6cbfe63ab73e8a8a02be7e75d8bdc6cd6a3faec33fc0ecca34bf8c2335bf8426c73c17dafc3ad57f6a3f9b9419c08946a9b856f17ebf62f0b93d5b02213b179b5b3fca9b3fc030e140b89ba87fbf0e76533d01ac8fbed7ecac3fbe34b43fda5de2beb34f04bffdaa3b3f9ae6acba0c3a6b3f04ffa03fc1704cba321af5bea1c2603f09a6b6ba2efe983fe2b7ab3f97df5fba0e928cbe9329763f0a766abd0e2da53f9cb8ab3f7640823ea00345bef4a0723f886c81be0d84be3fbffa363f68ba92bee721703fe89a47be14cd0cbe3c32bf3fd8b3323f4ef4c4bde42a793fbf5e55bea36c8bbe90aaba3ff011df3ec656b9bbd5a77c3fcde024bee0d71cbe8203b63fcb8a7f3e7bd324be3ac97b3fc027a8bd383d97be3226b43f7a7d613eccaf4dbd904e783fb7c873befb8306bef1c8cb3f8e46673f5f6a933ce6f45f3f41dbf7be165b8fbec5cdd33fe076823f351f16bf5a74fa3ebe4725bf6fb912befe47db3f5ec7853f5451733e4d67333f35312cbf6f263ebe8609b63f2d94aabd56ccbfbe274e6d3fa5c7a13c46c956ba78bec03f5ef1313f77b45b3987c6783fac8d71be2264e7b9589bb93f86f6893e2916a9386ff17e3fd8e7b9bd64c610b96929bb3fad8193bd61ad1ab87ec77f3f770c2a3dbf314a3b07de7b3f15e56cc0bb2452392b4e793f1aa668be380e63be23b8b43f5f72b4be253e02bf011c5c3f0aa9323d69407fbe46eeb43f886f21bfd85512bf320d523f6c7d0f3bd31ac7be60ca9d3f8dd9adbe821b55bfa9a6093f3d05093e36d1e4be46df973f451213bfceed4abfeb061c3fdf4758bc09b9e9be2bbb8c3f9aceaabe055f48bf9ad6d53eb944ec3efe8decbe9b3f8f3f711653bfe2b267bf1c62a73e173f8bbe51a483be60e8b13f803b73bf5be62fbf0f84363fb0490fbe94098a3a8beab83f8ae7b4bf070e10397feb7c3f195e1ebec74c283aedb8bf3f674c73bfcb21933821337f3f2ecfa1bd3bbfe13896adbd3fd787b2be9eeb56b817927f3f97206d3d334ec93ae221ac3fa679fabf2ebf3039805b7b3fd82142be8fe5c1391254c13f0dd724bf87b2dcb70ce37f3fd778f33c9af1223bfe5d903fedbb41c031ba3f3923847a3f69d052be5f2c013b801b9f3f75991cc004934039ca787a3f99a753be334ec93ae221ac3fa679fabf1eaa3d3922a77a3fa43250bebb958eba4e17ca3f9e567f3fa53a8739f8f5743f06bb94be83a02cbd144bda3f1d3d963f5625623f1083e03ece5b29bef0a4d4bcbbc3c63fa2baa73f0f5b7a3f83d63a3ee309d03d3c010fbba167b53fa4b5a33f2cf22b3f7b0d7e3d47fe3c3ff0a4d4bcbbc3c63fa2baa73f77a4443f140a99bd33cb223fe049c8bd12a0b43fc769b13fa9b9fd3ebf9d81be80b3543f3c010fbba167b53fa4b5a33f67f97b3f77291b3eadf3b93d73accebe9d52d93fcbfb9d3fb9a66ebff8d4683d28f9b6be4627d1befaabc73f065eaf3f99eb6cbf4772a8be174d403ee6c1a2be45a3c03f4768c03fd5c2babdb03d05bfbc57593f558faabe13afec3f7914963ff143d5be5bc8f83e1bb444bf688e4dbe24edf33f78c3983fa5abdd3e04f9213fdb5d24bfc60521befaabc73f71a9bc3f2b97233f4d2a51be68d73d3f3e8a8dbd9d52d93f523bb23fd96a453f60b4fdbd51dd1f3f3e8a8dbd9d52d93f523bb23f29e0773f59825c3ee7e6013edf44b3bdc425ec3f296ea43f733b653fbc38d53eda2121bed9231cbf59d0dd3fb87310402144003eb4f46fbfef7aa6be0f0f23bf43b8d73f30f1144021f72b3d703f7ebf7638dfbdf38731bf681fda3fc1351440c8b1f2be4db85bbf085b49be51b332bf8730e23f7db70840429597be9ef669bf802a8ebe95550bbf8407e33fd08b0540110b893dad867bbfa8dc31bec19d13bf2c31df3fb3eb0a403363823d20f47bbf983829be394834bf117de03f40e90e40dee3b0be9c2b66bfaf9f89be554439bf2786e43ff6070f406f866dbff35bb1be18a20dbefbdb38bfefa7e53f55d90c4077e46cbf4286a5be90b74abe1aba2cbfb1cfe53f16b0024015bfb9be63fe61bf51ce98be804839bf389be73fac070940791278bf161b0fbe777850be240033bfdc7cec3f376e024022cc6abfb51951be6832afbedbf729bf4d8ddb3ff56c1940a7d184be6a3731bf2b652c3f3f002abf04d2df3f72721940a60bb8beae2e30bc72df6e3fd85b35bfceafe03f4f1d1640defc4ebf5a94a0bea9eafe3e17f931bf97bcf53f016a0340c2fc7fbfcb3066bb017418bc1d4132bf2201f13f35890540661978bf0273783e90c632bd5bae30bfe1a7f43fa8b80040c50a7dbf18dbd2bdc0d3e3bda60b39bfd9e4df3fd722134070355ebf3b5dfcbe7b8076bdccae39bfdfa3e23fc37c10402b2272bfc76899be4af9ff3dedad36bf1e04e33fe67b1340eed018bfb9cf4c3fe489753d7c1836bf3397e53f1f301140393484bcce33d73e7840683f6bd042bf0388ea3f7eb91140553660bfe632dd3e1a475c3ee3c73fbf7082e33f21c11440de566cbf69fd963e2e5b7c3e366237bf805ce83fa5220d40c228363e11a75f3f4de0e7be1c5336bf9cb7ea3f9b450a403dbe6ebff043b53e1ee08f3d35eb44bf2059ee3ffb580e40366f6cbfd6e7b73e685f093ed1dd35bf5c9ee73f605f0f40f46fad3e17a4623f8817a33e9b8325bf528e064084d90c401bef83be2e1c583f1aacf03e8f4818bf2488084008f30d4075136ebeb73e433f2e821a3f538b21bf090809401eb90840aa4120bf1630413fe049493eb44232bf18310940523a07408c7518bfc831313f73c0d03ecd3738bfa573064031940c40abdf30bf19f2173f5252d33e3f2629bf3ae802401e0e1240e6e220bfdbc4323f146caf3e145e37bff0ad0040dcbf13402b3e45bf09671a3f1253533e02932fbfbc7cff3f16541740b59220bff8913c3ff183813e312b2bbfd4a1fe3f72341a40368ed5bdaa00753fc7858a3ee9aa26bf7889034090481740637d47be032d573f1b6a013f7eb137bf3f92fb3febc616404c7263bfa8c5e53e71d2c43dabaf3cbf585cf53f8f4b1b40164967bf52447d3ee743b33e386c3fbf5bb9f33f3415174082477abfa56e373e6e53e13db2cc38bf01cf0540a10405409e927fbf580e753b3f0f6cbd8d0c37bf1b880a4062aaf63f5ebc7fbf7b96383d7a7eb93b243433bf5ba71240dfcbf83fc6a2e4bee615483f2402df3e291536bf2620ff3fd7f80e4075b16ebfe8fbb83e3cbe263c072f35bf4ee50140f6f80a40148b7cbf00fd25be65babf3c8f3935bf82e200407e110a40fc4273bfd3e2993effb7a73db5bc3fbf3414f63fbcec0d40ba1b72bf25efa43e925b2ebd6cd23dbf80dbf63f3cf40940d50a79bffe15683e9c4842bd36f03dbfad59f43fc1e10b40ae2a79bf6ec246be0dcefabd48bc44bf6403ef3f6b5b154062d570bf5d3ba9be4efe9abdeccb3fbfa64df43f4c471540597978bf7105763e67756dbcde0e3cbf46edeb3f21cb1940f62b5dbf457300bf8cf82e3d894f3dbf5320ed3f49321b408e4362bfbc2c9ebeb9d7b33ead5035bf6aa8024091360640819e7ebfc0f88f3d04339cbd537437bfc4a90340aacd07407dff6dbf2431adbeb05915be8f3935bf82e200407e110a4001fd6ebf0d4c8dbe643e6a3eefeb38bfa53602404be607408ec37dbf7ad8fabd324d48bdfa9836bfc50401402eb90740f8ff64bfbaefd0bee7d23abe6c5337bf99f002404e4c09405c746ebf773bbabe7f760c3c136939bf7eb40340e7740a409adb7cbfe0a418be2b193f3d856d38bffd4dfb3f0c970140b71a7abf3044a13c9f9059be30ed3abfd8f5fa3f3144054005827dbf3415053eb4294cbdc29c39bf595f00406ede02400dbc77bfa47e653e0737ecbd3b513ebf1688f13ff2bb1640bc2e02bf79264fbffcb1963e7fe532bf9a35ef3f2b381f40f9e9b7be81471dbd33b66e3f243b31bf750bf93f8e231e4078b7b6bec4d8f63d05256d3ff0650bbf6c850e406796054076311bbe1c24683f4168c93efebb03bf73971340449d004001fffbbd7d89703f4688a33e43bc1cbfe95a0b402e2d0240061f00be37b7683ffe80cb3e745433bfc11407404800f63ff9b574bf005473bea2ba30beb87031bf816503407216fb3f264f7cbf6e42ce3c58532bbeb2bf10bf4a6f1040560f0940888e4cbecbd5543f73bf043f537437bfc4a90340aacd0740c5f574bf55e56b3e803935bead5035bf6aa8024091360640a0ce5fbfa34a66bdf5e4f6befa9836bfc50401402eb90740d12874bfe1a7943eb3819f3d6c5337bf99f002404e4c0940c1dd76bf1339b13c5017873e952133bfe2fefd3fd9d0f83fc1b476bf66ea603d91c885beeaa736bfa551fb3fcd8a1b40109856bfaf3d093f9303cc3dde9639bf8c41f83fa31e0340f96366bfdbeadebee850b8bc6a6434bf4d7f01408cd50f4060ab6ebf3dd1753e97828a3ee77033bffd470140a2921f409b584bbeff65553f1af5033f8da63abf514df83fd8c704401adb5bbfbdd601bfe8c993bd0b733abfed2ff63f092e0640a4162fbf367a24bf74f1b0be02a83ebf0808f33f05660e40c11c52bf80610ebf2ca8053e006840bf503ff53f29561240f8ff71bffc0ea53e34004b3dc7962cbf618716407539e43f97b5d2be5e6b5f3fe576863efb7335bfd1400f408de0e83ffd9b7dbf3c1c013e198b54bd719223bfa1b802406b461540334a6ebee225433f469c1a3f73d41ebf03ee084089321240cb085bbebdc44d3f931d0e3f2c5339bfcc46f33f22cb0b40b952463f7ce014bf4b3b7ebe04513dbfec1ced3f668b0c40396d7dbe9c1e74bfbc9d2fbe7bc13dbf2953ef3f3c130a4031a6a5bec5ec44bf3d0e0dbf6f7237bfca0bf53f7c710a409f150d3f6c2c46bfca7a9fbe03a03dbf910ff23fd8201540b2ae38bed3ac3ebfe67524bf1b923cbfcd8bf23fb9991240faca24bf08ce43bfe4d4c9bc60cf36bf1b6bf23f64ae0e4058ccb73ef2576abf8c7d3a3ef0c432bf882bf73f67480440145dd2be1a8264bfdf053e3e48ed33bfb37ff63f2f5f06404fa3e43d12717bbf46ba1abe148d30bf4e3fea3f79b21d4043d57cbe260d3abf1a17243f75fc2dbf31c1e83f71081c409bcc17bec33769bfd907c53e7f8537bf0e1af83fbf0d0040e95a78bf319e6dbea3a190bd2ce500bf223de33f378bfd3f1814973cb5a97fbf601344bd802f1ebf3823e83f17bff83f2d2519bf59563cbfa69fa2be37852ebf2a0cf23f1388fc3f1b6d53bfa2a5dcbe6c28babeba1215bfee3b0e403d19f23f1ec115bf48314f3f263357bd3247fbbefa8b11405451f93f8bb86bbdc8b27c3f64f8183edd8a2cbf339f11403157ed3fc94df13e008319bfcd9125bffb7335bfd1400f408de0e83fae16533fa19bc4bee7bbd4bec7962cbf618716407539e43fc94df13e008319bfcd9125bfd2f61ebf6a3811405a6ced3ffdb7173f3a67393f5f7ab43ec3aa2ebffc690140c8deef3fc1aa72bf28c41fbd1bdaa1beb4192ebf7eaefb3f1a19f43fec5470bf18215abe189b8abe6a570bbfd1eee53fdd73ee3f5f06babed1eb6abf31c424beee0aeebeee43e33fcabaf03f0d31363ae1ff7fbf697aecbad0e32bbf60cdf63fc8e5f23f7bf459bf959bf3bed11c62be25201fbf1deded3f3c27ec3f728f41bf6a141bbf85a27dbe3579d8bee23d164057bbe23f63fd9dbd52097a3f3a0c4d3eaac928bff473074047cee63f5f8032bfaf312f3f095e5abeaac928bff473074047cee63fa36a64bf8fdee3bdfc0ee0bea37628bf30a70140a56ce93fa36a64bf8fdee3bdfc0ee0be00a62cbf0a59f73f3ec4ed3f411e58bfcb8501bf8f3b35bed77c2abf63b8fa3fab2be63fd1794abf4b7502bf2270adbec4cc1bbff4470340f204e93fbd36aa3eff180c3cdb6d71bfaac928bff473074047cee63fbd36aa3eff180c3cdb6d71bf23bb1bbf63d80740e6c7eb3f602a123f7268713e9e5149bf23bb1bbf63d80740e6c7eb3fca653abf96b4153f4d16b7bed11017bf0eca0040f5d1dd3fa3d165bf1060633e3cd0c2bec4cc1bbff4470340f204e93f1edd77bf60289b3d341474be11d031bf3d210b40133ee93f01ac73bf499b68be67d752beb6a63abf94aef23f5ee40740ed20f9be28825fbf4d6effbc0b733abfed2ff63f092e0640e7823bbfec0fd7beae28093f8da63abf514df83fd8c70440424636bfa31ec83da30132bf2d3c39bfcaf5ee3f0ac3034012960bbee3b06abfac3bc0bef0c432bf882bf73f674804402071223f756e1dbefae741bf48ed33bfb37ff63f2f5f0640eb03253f085113bf0edb003f6a570bbfd1eee53fdd73ee3f2295dbbeda7c61bfea694dbe167fcebeee33e23f0142dc3f85e177bd14597cbf79d2203eee0aeebeee43e33fcabaf03f6e738ebc47b37fbfade5383de74bf0be6b3fe73ffe03d83fa20c30bfc08539bf613332bd25201fbf1deded3f3c27ec3ff33532bffe5f15bf0324d6bea48710bf16bff83fc82bd13f3a0f6ebf319062bef86796be3be4e8bedbfa0e401063ed3f832d6c3d8aaf7c3f904219be8894c5bebc690c40e278d63f50a2bb3df68b773f428673be1b8105bf43980640af3ad23f6dcb39bffc100e3f102bd0be1b561dbf27a2fa3f693be33f239f60bfa47620bef422e8bed77c2abf63b8fa3fab2be63ff649b5be3f4205bfb3e646bf4828b7be4286d63faf1ccd3f938683bed81633bf0db32a3f9243f2bef78dde3f3ad1c33ffca267bf3fcad6bec5f9943d51fcfbbeaf85f03f70edb83f923669bfe529983db8b5cfbeb2b2dabec0930240a968b33f192a0bbfd7e41e3ff4a410bfe77894be52f40640919ab63fb36b333e21885f3fbcdfe8bee6c1a2be45a3c03f4768c03f05ec96be69031ebf8abe3a3f4627d1befaabc73f065eaf3fc8076ebfd9a5bbbe48300a3d73accebe9d52d93fcbfb9d3fcf2672bff16d92bd2d08a2be688e4dbe24edf33f78c3983f3af07a3e7692463febe414bf558faabe13afec3f7914963f12f332bf487fc13e62691bbfa37628bf30a70140a56ce93fea7d4e3dc38460beeb6f79bf23bb1bbf63d80740e6c7eb3f0c2f033ff21e24bfd64112bfaac928bff473074047cee63ff50c013f69c01bbf1ceb1cbf3be4e8bedbfa0e401063ed3f642e8f3ecfdc20bf54d539bf3579d8bee23d164057bbe23ff7b1903ecb381ebf01cc3bbfd2f61ebf6a3811405a6ced3fc13d92bda6ce2dbf59103bbf085743bfc163ec3fb7d7ff3fb03f49bf069c1dbf28f65ebdde9639bf8c41f83fa31e03408ef844bfbb62e4bcf85c233f856d38bffd4dfb3f0c97014009056abf45f1bd3e5e6427be7f8537bf0e1af83fbf0d00406d7e72bfcd465d3ed167723e5bae30bfe1a7f43fa8b8004063a8203f45be1dbf23a8f3be17f931bf97bcf53f016a0340b83a403ec6a431bf62f5313f03cf44bff78af13f8363f63f1e7442bf1905b7be721a0b3fa92744bf7540f73fd734f23f66141dbf49372f3f619bc9be952133bfe2fefd3fd9d0f83f6337e7be50b1583f466e90be37852ebf2a0cf23f1388fc3fe19f713d9d1d70bfc1f4ae3e69d53bbf2d8cef3ff24cf53f6390e13e0f1264bfbc47e23dd0e32bbf60cdf63fc8e5f23f12a4013f5fc6c3bc87a95cbf4bad39bf324cf13f7d32ef3fe0d4133f76c982bc48f650bfe0264abfaec7e73fa57ce83f0f492abf69ef0ebf7fd6fdbe471d38bf768df43f8df9ec3f120e55bf898a81bed492fc3eb4192ebf7eaefb3f1a19f43f61a334bf24c23fbe4df32e3fc3aa2ebffc690140c8deef3faa3767bf13e5c73ed1a5363e0d2438bfbac5fa3f5afae73fd0034ebf2178003f055aa2bed77c2abf63b8fa3fab2be63f77660d3f57af2a3e931851bfa37628bf30a70140a56ce93f06dd07bf5a2d173fdba21bbf00a62cbf0a59f73f3ec4ed3f80fe2f3f8df233bfc0cd3a3e51e63fbf1530e93f1e9bd83f006e003e46584bbfc32b18bf99303bbf19b90940d04dda3feba37ebfaea299bde054903d11d031bf3d210b40133ee93fc8b1d23c69b97e3f4f4bc53dc83b36bfbce10b40ad96d73fdd8efb3e20d35a3fb42d2bbe65e636bf7cdd074004deed3f43187cbf9b002dbea28a2a3d30622dbf0ebd07403d4cda3f2830613fb484e63e230e1dbeaac928bff473074047cee63ff880533fb6880c3f37c201be9e3931bf5b7c05404d71dc3f4d8305bf715257bfc0ca12bec3aa2ebffc690140c8deef3f6e503ebf0e2024bf171e43be30622dbf0ebd07403d4cda3ff3685b3f7099efbe10aa5cbeaac928bff473074047cee63f5312643f4945cebe1cc156bedb923cbf59400840bffdbb3fc4a362beb760c4beff8765bfb87031bf816503407216fb3f081179bff78967be79c1443d745433bfc11407404800f63ff63f6cbf408d923e00f3833e26432ebfe2781140f668db3f8d0878bf72634fbc61237dbedd8a2cbf339f11403157ed3fe45726bfa8043c3ffa99483e241526bf8ac715400c93dd3f3afdadbee074673f119a843efb7335bfd1400f408de0e83f130774bf52f17d3e1ce930be961321bf388e0c40544dd93ff709293ecf3b5dbfb15bf3beaac928bff473074047cee63fd2d80e3f671a3bbf543ac9be11d031bf3d210b40133ee93fa4b353bf1710b0be02c3e3beba1215bfee3b0e403d19f23fc24a723fe45aa2bea64678bdfee411bfd7311340d2e9dd3f2db17a3fbb510b3ec6b1193ed2f61ebf6a3811405a6ced3fd367bb3eae08543f543bd93eb4c212bfcca614403ff9b93fad63143fbb8839bfc2b8bebe07f80cbfe80d19406539be3f37977a3fb6ad183e214c0f3e8d2420bf4152184051a8bb3fd9d871bf8f2287bd5472a4becb8d17bf01421a40a7cabe3fd2c1693c8974723f1a2ca43e889a08bfbbba2040b993a03f136b323e8e04d73e640264bf7c1836bf3397e53f1f301140b9df20bec1745d3f8beef33e599d1ebfb5c3e63fd90e12400a5d13be4b976a3f7e44bf3ed1dd35bf5c9ee73f605f0f4098f5a8bdc5e4703fcd0ca83eedad36bf1e04e33fe67b1340e6a456bedda2653f583cc73e3f002abf04d2df3f72721940e7a51abe974f683f44bac83ed85b35bfceafe03f4f1d1640ae2fb8be19eb553f6d8bd43e25621abfe183f63fe3910540692c7bbe22cd3d3edd99733f1d4132bf2201f13f358905405a0053be96c3493f7979143f0d0a0dbffb6cf33f19a706405a1d61befe8c4a3fb516123f17f931bf97bcf53f016a0340ea5aafbe6fd7ae3e4811603ff0c432bf882bf73f67480440fec3c73c02f74fbf0d28153f366237bf805ce83fa5220d40fa1e12be48c46e3f7c9ca93eccab17bf5ef0ea3f548d0d40311e30beebcc603f6094e43e1c5336bf9cb7ea3f9b450a40d10255bee26b5d3f52dce93e3b513ebf1688f13ff2bb164054d8583ec8f24ebfa89a0cbf50f928bf038cf13fb9c718406705493e4a7556bf147402bfde0e3cbf46edeb3f21cb194041a46d3e105c27bf196238bf2c5339bfcc46f33f22cb0b40afbe823eeeb46bbf580f97be6f7237bfca0bf53f7c710a40367e7d3ea73a6fbf25fc82be486d1abfc549f53f21570f4093d9e23d768b73bf623693be03a03dbf910ff23fd820154017a7a63df5467cbfb9bf18be1b923cbfcd8bf23fb9991240124f693d5e907fbfc4f44ebc205d23bf7233f33fc72315403054333d2d187ebf50bee8bd60cf36bf1b6bf23f64ae0e400027213eed017cbf5d03a1bd75fc2dbf31c1e83f71081c403336903e360e1fbf432f3bbf48ed33bfb37ff63f2f5f0640e4f8923ee79d73bf6760e0bd39210dbfaa45fc3f21b60640bc08753d2d6e7cbfc5031fbe39210dbfaa45fc3f21b6064057c935be1f9a5e3f00f5eb3e296a21bf6b97ef3f989c0d40f1177ebfda0663bb8960f9bd3c9f19bfafeaf13f65d10e40c28b56bee5ff4f3f5b440b3f0d0a0dbffb6cf33f19a70640f787de3dbb0574bf336f90beccbc18bfcb39ef3f763e0e40b57c0d3e55536cbf7eafb7be25621abfe183f63fe39105407b0b7abf78ee0cbba7925bbe0b6222bf1410e73fe5801440ed5aa7beaaded4bec844593fd45c16bf671fda3f89d316400584f73e05b85bbfb558303e904dedbe8730e23f15800e40e9c8cf3ea8f669bf9ff6edbb4b1a06bf117de03fe05b13408880df3ebb2b66bf77ff043d9159fabeefa7e53f0499124079aa513f5083a5bee2b6f23e38ba02bf2786e43fa1481440dfe3473ff357b1be2c1b053f62cdd5beb0cfe53f06070940a141f03e72fe61bf28f0b43c811ecbbedc7cec3fade3094088e1683f6f1951be7c25b93e9738e5be389be73f25d60f407beb5a3f50150fbe0395ff3e96a218bfceafe03f7fe1184076f4873eb899a0beac61693f7eebd1be97bcf53f27720a400f693f3fcdeb65bbf0fd293f5ae4dcbe2101f13f09110c40f4763f3fad7a783e0f2c1e3f3c62c5bee0a7f43f9f3b084000bf4e3f1af5d2bd4aa6143f89e80dbfd9e4df3f5d4a17400a1c2f3ffd5ffcbe20a8093f0c5406bfdfa3e23f0d6f15408f121e3f546899bee52f3a3fbb9810bf1e04e33fc6261740bffacd3e5ed54c3fe7cae33e27de0abf3397e53fdf59154085c918bf8939d73e3df62e3f97e002bf0388ea3fe6e11740b14c013f8c3bdd3e68433f3fdb410dbf7082e33fd89e194036ef043f6508973e4a554d3fd146f0be9cb7ea3fe542104033f6243f7b4bb53e45832d3fde12febe805ce83fe28f12409d12303ee7a55f3fe710e9bed481f0be2059ee3f2dbb1540db45183febefb73e2918383f8a2a06bf5c9ee73f7df71340de05eebe96a4623f5bc3123c50850bbf528e0640545a0f408689febd091c583f2f7e053ffb6303bf090809408fa00b40d523aa3e4e30413fced5103f20f7e5be183109409b520d4054182c3ef530313f71b0333f44d9f9bea57306400b4a12400b0d713eb8f2173fa904453fc3cb16bf3ae80240b6d2134044d3713ee2c5323f46fa2c3f7ccc10bff0ad0040cb76174047a5dd3e29651a3f20832b3f0b2f20bfbc7cff3faccf1840713f973e4f913c3f00c11b3fcaae18bf3f92fb3f77c319408227183fa5c2e53e05d82a3f141b21bf585cf53f90f31d4068c0de3ed33c7d3e4ba35d3fb2c513bf5bb9f33f70491b4055af263fda6d373e64cf3c3fbd67d0be01cf0540d1c70c40a169473f467c733b8b87203f3f049fbe1b880a40174e0540fea93c3f4b8d383d02a72c3fe76faabe7ca712402a73054053521f3db715483f06621f3f4eee04bf2520ff3fbdb413408b402f3f03fab83e6f13223f66d0f0be82e20040f7ec0f40d052263f35e2993ea5c0323f26baf5be4ee50140d3961040a240373fd60626be6cdf2d3f24ecf5be3414f63f6b8c144037d73a3f66f1a43e815a1a3f2aa0edbead59f43f81bb1240dfcc4d3ff2b646beb1ec0f3f4f73e3be80dbf63f684811408dd1403fa21a683e0b151e3f62330bbf6303ef3f04e61a403d903f3f1d3fa9be563c133f1ca70ebfa64df43f11031a40c4bb3a3f3a12763e33f5233f808a1dbf46edeb3f7cbb1c406caa1c3f067200bf21811c3fa16020bf5320ed3f94fb1d402be8d63e2d2e9ebe767b5a3f1cfddbbe69a8024009150d408fe7493f63f48f3dca5a1c3fa659e1bec4a90340c39e0e40eb87493ff338adbeeafb033f66d0f0be82e20040f7ec0f40ddeb093f52478dbe1ec64b3f6b31e2bec5040140d26a0e408325493f4cf0d0bea902ee3ef6b0dfbea436024004f00e406a92443f7edffabde7f8203f1c90e9be99f00240f0b40f401c5a2f3fff43babe2099213f0eb1ecbe7eb4034083ea1040d27c333ff1a718be0f81323fcf8ebebefc4dfb3f222d0a405bf35d3f1644a13c80f0fe3efba9c3be585f0040b3520b4067824b3f7781653e9451103f4d95cebed8f5fa3f39520d400c8a443fe518053e9aa0203f0ea813bf1588f13fced71a4005dd373e6e294fbffb330f3f27c6eabee95a0b4060f70540ba1732be46b7683f48e0c13e9233b3be81650340ee00064052d4573f5033ce3c7f85093fb1bfa2bec1140740486f04408b1a533fd05573bece6a033fa659e1bec4a90340c39e0e401f0c543ff8d46b3e4fc0023f1cfddbbe69a8024009150d40c9c8783f078766bd7c6d6a3e6b31e2bec5040140d26a0e40c3ab273f98a7943e8f99323f1c90e9be99f00240f0b40f40dabb093f6124b13c1ab8573f3899aabee1fefd3ffc710540a7d1633f35dd603d13d6e73e673d26bfa551fb3f8e1f1d4044060e3fb13b093f04e3223f7f0bc5be8c41f83f58810b406cb32e3fcaebdebe914e163f907f08bf4d7f0140d00f14406084023fa0d4753e277b533fd431d4be3030f63f32eb0d409f2f3d3fd67c24bfe0664f3e9062ccbe504df83f31ea0c405f6c2f3fded501bfa7cf053f5d11fabe0808f33ffab714401961053ff2610ebf15c0253f004e06bf4f3ff53fa7ee17401bf02a3f1910a53e02c52b3f31147abe838716402b6df93f7f0d043e626b5f3f7714f13e18c378bed1400f40c6d9ff3fdaf8443ff718013e044d203fbb1af2beeb1ced3f811e1340a4df983e991e74bfb3411f3dd1fdf3becc46f33f78e4114051d0d0be8ae414bf062f34bfb132e4be2953ef3fa75c1140ae101c3ffeea44bfd71444be0b88efbeca0bf53f9a9310407b5b4cbe632f46bfe6c719bff9db0fbf910ff23f40891940ea97103f2ea83ebf73f9b5bea6db09bfcc8bf23f287c174008defc3eaccd43bfefc4d33e789c03bf1b6bf23fc09c134069dac6bece576abf93b2d8bde066d5be882bf73f37390b40386e383ebc8264bfed97d33e15e6debeb37ff63f87f70c40cc9b9a3cbc727bbfab443fbe01a8b7be0e1af83f9de20840494b443ff4a36dbe3d37193ff879c9be3823e83f0ce801409f1d283f40563cbf79d0293e8e68bbbe2a0cf23f9a0c0640d5395b3f76a6dcbe87a9913e3d26c5beee3b0e405ad3fb3f2523f03ec2314f3f52ffb43eb29295be339f1140e315004092fdac3dd18119bfaab94bbf31147abe838716402b6df93f92fdac3dd18119bfaab94bbf18c378bed1400f40c6d9ff3fa151aabefa9bc4bee57f5cbf16efa9be6a38114068adfb3f450d2dbfde65393fec850bbed63599befc69014028610140003e6a3f86ec1fbdc596cd3ede65a5be7eaefb3f14da0240fab6603f6c1f5abe16b0db3ebecbc9bed1eee53f6ddbf53fb337c13ea3eb6abf66e3fe3d6b49a6be1ceded3f13cafa3f0f133a3f62141bbf89aea53e2e74a5be60cdf63f3d0902408d8c473fc99af3be419ed03e969a89bef4730740b310fa3f09fd283f34322f3f1c8f9e3e6c1d91be30a7014000e6fb3f858b743f3e00e4bd774e8c3e969a89bef4730740b310fa3f858b743f3e00e4bd774e8c3eab8f96be0a59f73fd84200401da83e3fc58501bfbcccde3e426185be63b8fa3f4f2afa3fa951503f207602bf34188f3e9fcea2bef3470340a959f73f45b9c53e64780b3c64216cbf0d52aabe63d80740df5ff93fc86bd53dff5c713e425a77bf969a89bef4730740b310fa3f45b9c53e64780b3c64216cbf0d52aabe63d80740df5ff93fb8a3473ffeb3153fcab3643e9fcea2bef3470340a959f73f21be603f8c3c9b3d6713f23ed3c58bbe0dca0040e874ed3ff8c46b3fce61633e4deba33e43c282be3c210b402de6fe3f760e583ff3a168be67c8f83eb815ddbe94aef23fee380f40437ac33e2c825fbfc7449b3ed431d4be3030f63f32eb0d40f6093c3e0a0ad7be4585633f6504c9becaf5ee3f12ec0b40c1b8b43ee5b36abfea3a3fbe9062ccbe504df83f31ea0c404b977e3f3a0ec83dd0301bbde066d5be882bf73f37390b407d6f1a3d99851dbecac47cbf15e6debeb37ff63f87f70c40a7cf50bf2a5313bfbc4772bdbecbc9bed1eee53f6ddbf53fffbce73ea37c61bf28530e3e770caabe6b3fe73f40c8de3f71040a3f8d8539bf9db7db3e6b49a6be1ceded3f13cafa3f2bfc4b3f905f15bf4caf203efe0967be16bff83f82e2e13f7dfb623fa68f62be8ee9cf3e28b686be429806408df8de3fb79a4f3fd7100e3f02e53d3e5cff90be27a2fa3ff992f33f7b6f743f357920bea345813e426185be63b8fa3f4f2afa3f90aa483f1c4205bfdd55adbea3c364bef78dde3f4e22d03f2e50163ffa53d5be28aa313f4fe51bbeaf85f03f7db0c93f38fb703f1ec1c83de156a53e8aa42fbec09302406603c03feffb483fcde91d3f38f564bdc60521befaabc73f71a9bc3f2d961a3f7407c0be580e343f3e8a8dbd9d52d93f523bb23f7cec643f270e0ebd947be43edf44b3bdc425ec3f296ea43f2bf16a3f3f43cb3e390c433c6c1d91be30a7014000e6fb3fd2c61d3f9a9060be09a041bf0d52aabe63d80740df5ff93f74eb583b2e1f24bf937744bf969a89bef4730740b310fa3f1d4e193dc3c01bbffef04abf16efa9be6a38114068adfb3fd40e0b3f9ccc2dbfb5ecfcbea46aa5bec163ec3fe3c40a40a6931e3f739b1dbfef64f93ecf8ebebefc4dfb3f222d0a40009b493f15f2bd3ea9f6fb3e7f0bc5be8c41f83f58810b40eebf113ec7b7e4bcf34a7d3f3c62c5bee0a7f43f9f3b0840138615be6aba1dbf822446bf01a8b7be0e1af83f9de20840ca260b3f54485d3eada24f3f7eebd1be97bcf53f27720a401f081bbfa8a331bf2974c73e80de89bef68af13fb48207404e744b3e4c08b7be309c693fb6397fbe7540f73f99d90540811c383fe1362f3fff22f53d3899aabee1fefd3ffc710540dc2c063fa2b1583f0d21c03d8e68bbbe2a0cf23f9a0c0640bbc88bbedd1d70bfebe85a3e234294be2c8cef3ffb9905401837cdbe341264bff8c45abe2e74a5be60cdf63f3d090240c2b04f3e91a7c3bcc59a7abffd1387be324cf13f11fa02406ba2f43d1cf182bc56227ebfb04539beadc7e73f95400340da6b533f76f00ebf3613a13d186e83be768df43f05e401404d80923ede8b81be04976c3fd63599befc690140286101405ad00c3f94e5c73ed0fd3c3fde65a5be7eaefb3f14da0240b67b843de7bd3fbe19ed7a3fe6f56bbeb9c5fa3fe30a0040b13a4f3f6f78003f0e0b9c3e426185be63b8fa3f4f2afa3f55b50d3ee8b02a3e7eeb79bf6c1d91be30a7014000e6fb3fa9294d3fc62d173f1d31c2bdab8f96be0a59f73fd842004019d621bfc5f233bf83e5a6be117102be1530e93f064af73ffc8e9c3e81574bbfa36306bf3e8619be19b90940c5f7f63fd4b7303fee9799bd1639383fe4a619bebce10b40be4af33ffb1e81be20d25a3fdb40e8be43c282be3c210b402de6fe3f0c6dabbd74b97e3f88df5d3da0a087be7cdd074098040240b5c8333fc2f92cbe9d0a313fc67042be0ebd07400b55f23f2fa40cbf0981e63ede3334bf969a89bef4730740b310fa3f321207bfb0860c3fe7f625bfe88e42be5b7c05401036f53fc042f73e485157bfed79793ed63599befc690140286101404eda2d3f071f24bff908b73ec67042be0ebd07400b55f23f6860fbbe2697efbea61d3cbf969a89bef4730740b310fa3f1a1905bf9b45cebecbd440bf8571543c5940084064f4e03f0803443f4c5ec4bea43104bf9233b3be81650340ee000640ac70303f118767be1a39303fb1bfa2bec1140740486f04400ceb023fdc91923e306d4f3fbfce45bee27811409873f33f3362623f00784fbcd3f6ee3ed1ae69be8ac715400150f23fef28a03d6575673f020ed73eb29295be339f1140e31500407668b33ee6043c3fd6c9143f18c378bed1400f40c6d9ff3f0ca2523fcce97d3eb8eb023fbc9a61be388e0c403a77ed3fb537493e723b5dbf292aedbe43c282be3c210b402de6fe3fa763693fa40eb0be775a663e969a89bef4730740b310fa3f8db019be30193bbfbc732abf3d26c5beee3b0e405ad3fb3fe54029bf2f5aa2be6c112ebf3bb193bed7311340abcaeb3f77ac53bf8b530b3e0cb40bbf16efa9be6a38114068adfb3f665a0ebf2d09543f73658d3dd1d4c7bdcca61440ba6ed13f762f38be1a8a39bf5b442abfd6e70bbee80d194009a4d23fbada51bf49a7183eac900dbfda838abd615218405c2bd73f5f806a3f4b2287bdb094ca3e2e1cdfbd01421a40ab9cd63fe62c67be4174723f08a5693e7ed2c83bbbba20402131bb3febc7ef3edefad63ea00447bf27de0abf3397e53fdf591540be0750be38735d3ff2deea3e8a2a06bf5c9ee73f7df71340c2db22be98e4703fcff4983ebb9810bf1e04e33fc62617401d50d8bde3a2653ff1bedb3e96a218bfceafe03f7fe1184029c640bc19ee553fc2920c3fd83c00bfe183f63f801608405cbce9beeed43d3ea4c45e3f5ae4dcbe2101f13f09110c403afc71be0cc4493fea7c113f7eebd1be97bcf53f27720a40469faabe72ddae3e7ff9603fe066d5be882bf73f37390b40fa64d1be48f84fbfc2d1d43ede12febe805ce83fe28f1240317aeebd3bc46e3f66caae3ed146f0be9cb7ea3fe5421040edda1bbefd6b5d3f70def43e0ea813bf1588f13fced71a400e8e583e99f14ebf8da30cbf808a1dbf46edeb3f7cbb1c40564c9f3ea15a27bf7e9730bfd1fdf3becc46f33f78e41140cd860c3cbcb46bbf04bdc7be0b88efbeca0bf53f9a931040767143bc813a6fbf3e2bb6bef9db0fbf910ff23f4089194012ca223ded467cbfea2c29bea6db09bfcc8bf23f287c1740784b0abd5e907fbf2de542bd789c03bf1b6bf23fc09c134043fa82bdf1017cbfced027be15e6debeb37ff63f87f70c40a0b50ebee59d73bf1a338cbefe9a10bf6b97ef3feb3a0f408154513f837262bb2c5d133fd83c00bfe183f63f80160840e23d5e3fc2b80cbbdf1efe3e8b5a05bf7e155c3ff2dbd23ed2d761bf7ffaf63d390ce9be74f315bf6f40363f927c183fa0787fbff8ed913c9cd07c3da1fd10bf4a1b6d3fa83e273f786f7bbf95e3203e796ad33d01fb02bfe0c02f3f9ddb443f7a392cbf796e9abec0f32c3f0879efbe70d95d3fb085583f1a263dbf7c5497bc3c712c3f71e6bcbe8ebf4d3f39ba523f333f9ebdfca7e6be6fb1633f6649adbeeb4e5f3f3180643fcbdc9abe364abbbe0453613f9ee4a8bec114433fd54e1a3f4a026f3f78edb6be7ee3d63c6649adbeeb4e5f3f3180643faa57443f318517bfbcd77d3e71e6bcbe8ebf4d3f39ba523f128b613f2284d2bed1906f3ed989c1be2c745c3fb780ad3e73384dbe4483c7be2f1d66bf67e3cfbeecee533f14a9ba3e98dd0b3f0afd79bd36d855bf7bf7f4bee577803f8389be3ef0cf62bf2ba69b3e4248b3bec11206bf4007873fffb5273ff54768bf6321c73e9660233e2ffcd8bed604963f3c140f3fed424cbfbfe3173f3009dabd5936d4be97b5953fda47513f64c659bfe1a2ee3e28f1783e52bbcebe459f833f198f673fe4324fbfcddef33dc639133f370bc3beec9f0b3e5e3a773f994d693fe785213e01aec2be9f1ff4bea9e4d83d388b593f30754d3f11a9b8bdeef616bf5527dabe01b8713e1e1f663f0d5c703f0809bd3bb331b0be48df1fbf1819963eea006f3f8fea79bf64b2593ec23a2cbdc2861abf1ea6ef3dc332593f89fe25bfa24a0ebe8c9d3fbfd0fd24bf69c15a3ef406803f455368bfeb43a23ed31d8d3e993b0abfcd44b63e997d803f31a785be30fe293f065e333fdaafe6be4acfbb3ef49b6a3f474bd03eba03343f5e47153fc38609bf1109cf3e667b693ffd581fbe09cc4e3f1f8c113f0744e2bee66c933e6fc1773f66a5fd3e1398ca3e7df7453fd83af9be59e0853e24754d3fa47809bef7ec17bfa1284bbf9f1ff4bea9e4d83d388b593f8e4f7bbc212095be8ade74bfddc317bfd0288f3ec2b0503f274f3fbf248e19bf226492bed83af9be59e0853e24754d3fffce503fe4a6e1be65e3bfbe6bd8d6be569aa53e9ac15a3febf2773f0d167dbe1c47eb3c1b2a1dbffc28b33e7b4b583f57e15bbf1d4bd33e01469b3e0744e2bee66c933e6fc1773f1508783f6c4f263e34513f3edaafe6be4acfbb3ef49b6a3f966e6c3fb21e8a3ec7858b3e9509dcbe36ca563efdb7803f28db6b3f9de7bc3e464afb3d1e930dbf485f733e1fa2863f826b0d3e66f4cf3efd3e673f9509dcbe36ca563efdb7803f4e4fcd3e7ebee53ed1744c3f336a08bf98e0103fe99a223f8af65dbf582f933ee659d03e9e7e0ebf189b0b3f1940d03eafd113bfe7eec43d5e8e4fbf4a791bbfa1ddee3eb722f53e38cb7abfbf73013efc8d1fbe59a615bf84a0103fd652fe3ec39e7fbf037c4d3d0b89adbc35ef1abf32159c3ecdcd1d3fd6ea4cbfc66f11bf38ad43bec35612bfcea8b83e2b58ee3e3ba7febe99333ebfcb52e5be271bc9be3281e33e1e15ed3e8772773fa9c761be08da05be1946eabe5cb9b13ed016e63eac0a543fad2406bfdb2b4bbe3e4de6bed5a9d63e5c0ebf3e704c093f776cb6be02df43bf573723bf4505d83efcb53a3f9d6376bf67d7823eed5dbb3dc06cdfbe05a1073fd90f213f87127b3fac50943d92af393e3f18cabe9567083ff057f13eb7c9763f522b87beeb0500bd5f80e2be22dc063f86b2c03e91c7c83ed959e8bc0d626bbf94990bbfeb1ad93e322fbb3e8058edbeba2b86be4eaf58bf1946eabe5cb9b13ed016e63e38e301be7d9758bfe48c04bfc06cdfbe05a1073fd90f213ff10d203e855bef3dbe137b3fd711cfbedd83273f6f0e423f6573adbd40dc0fbf65a4523f3eb8b4be699e2d3ffead023fcb107b3fec9a39befa7295bdbaf3c9be7138333fb480b53e1dc8cb3e058d9fbd45006abf06e1f5bec3528f3eaf371d3f56d33cbe3af373bf837176bed7a708bff6b8fc3ee0b54d3ffc2188bef91b553f96e5f83e06e1f5bec3528f3eaf371d3fae204b3f196619bf8e34dabd7766c9bed4c5c63e8ba82b3fa8327e3f0930eabda6f8fc3c54eee1be9acce83e38ee4c3f7f346f3fa855923e6ac0593e54eee1be9acce83e38ee4c3f755dac3ee6cc493f57da033f06870bbfd94f3a3fad68d13e77db41bf21ebd63db20625bfd711cfbedd83273f6f0e423f12ca693f8c17b9be2b68403eb75b91be9698323f142a19bfae1a5e3fe01afdbeaba65c3df547a2be34024c3ff713bdbe8de4333ff0ffbdbec6661b3f9c2fbebea9e4203f725be0beec8b563f518ae1be63c9a43ee4dacebeffbaf03e499b05bf5c38673ff33cc5be1dce413ea10ebabedeae183f5a262ebf3dae673fc880babeb70161be94a0cdbebb3a5e3f713456bf7eac7b3eb79cffbe28b454bf27ebb2beaa163d3f67573ebfc821f43e1df3dbbedb5144bfa4c0e9bed7c2283fc73c3abfe320e13e5f8868be3f745ebf353ce1be23d99d3efe7c91bfe546683fc7d6e7bd754dcf3e184fe4be29e9243e1c4193bfd3f55f3f94b6a4bd7f92f43e24c9c4bef4cf233ef2b5a1bfc79a7b3fabce84bc73353cbe667df7befbdd063eca84acbf7a4d49bef5d0ec3c41e57abf85451abfbe210f3e585ca7bf600635bf4830723d396134bf411d12bfa971a03ee196a9bf3e4419bf6417073ece3f4abfdf350fbfd4a2d63e83c1a5bf55ac18bf1136f83e51c823bf39c0debe8f44d93ea496aabf7d2847beb685b33e49856abf39c0debe8f44d93ea496aabff994613f064ea03d4eb9eebedc67ccbe88c4b73e435e9cbf7fe07f3f1702f83ca120db3b667df7befbdd063eca84acbfa5a2283f7cb08fbdfac43fbf9ae31cbf181a2d3e7e7c9bbfc6327bbf20313a3efc22833d348115bf63a9a93e42659dbf5d087ebf5ec6003dbc18f53d86770ebff861473e63b490bf9aaf2dbf2519933d7b2a3b3f229309bf4fef9f3eb8cf8ebfcbd90fbf4f39adbe333d413f184fe4be29e9243e1c4193bf93ea2d3ed51bf9bd075a7a3f353ce1be23d99d3efe7c91bf8ee1383e6de202bf271a573f74aec2be234f1a3fbd597fbf08d47e3f76c4a33d0f5e563d0b1bc7bee125f93ee3268ebf82d87f3fae3598bc3426f0bc4122e3bebc7d2a3ff2fd8fbf841d653fe0a78c3e20f5b3bef8650fbfb861093ff89498bfc7661cbf35e2d93efee52abf6afd20bfd4311e3f39eb83bf4ab27cbf3a2b083eeab6b6bd1f110fbfced8293f51f68fbf5a49e6be7258ab3e81fc53bfdb6e1bbf61d9e63ed5ec91bf96987dbf44880abe66eda1bc63de10bf58d9ee3ee0c575bf30d225bf75b342bf790e373d47890ebfcdadbe3e67ba85bf076ebebe387631bfe30a1e3f489a10bf1997393f69c487bf25970abfa9254d3f3d48823eea8be0be09163d3ffa8985bff58a6a3fb977c43e1dc0ecbd0867dfbe6278ce3e7b9c85bf13f6333e35f327bf36e53b3fa21decbe48e8f43ec7707abfa326ec3d6d407ebfaab3913c3a3ee2be3027093f11ed98bff8546a3fe83f833e99f89ebe3a3ee2be3027093f11ed98bffcbc9cbd4b011d3f004049bf0867dfbe6278ce3e7b9c85bfd856693facc482be2b17a53e4d940fbfa306273f9ad467bfec2b0ebf2e55493f6b658a3e314a20bf93880c3ffac669bf3b4d7fbf2f1d833d727b16bda530e6be61c52e3f02d868bfc08b633fb5fac83eba03723ed89bcebe2f3c113f23486abfa5597f3fb4bd2e3d0e8469bda21decbe48e8f43ec7707abfcc16693fc595c9bef163013ea530e6be61c52e3f02d868bfd60f54be002b6a3fd2a8b13eea8be0be09163d3ffa8985bfb43822be0cc05e3fc9f1ee3e7b3b13bfc508cb3e91a857bf87ce16bf3eaf46bf8b6666be4b1dddbe7a8ad03e54d358bf5f87363cfc5674bfd1a798be4b1dddbe7a8ad03e54d358bf34bc6a3fc86bbcbef7f91dbe8d5fc0bea624033f2b9038bffc337c3faffd19bec53da9bdbf90f4bea7a6e13e5cd1e2be6af702bfacbf11bfddbe243f746717bfeaa7fb3e3f4300bf381556bfd9ada7beb12be13eff990fbf4d99bd3e61dd1fbf1ec5f6bed2185ebfa616fb3d5db822bfffc6f93ed7b132bfbc637fbf39538dbd552c93bacd9bebbe89ddb63eab5a1cbf42470dbe86fc7cbf4163873dbf90f4bea7a6e13e5cd1e2beb404393f197cf9be55f2fa3ecd9bebbe89ddb63eab5a1cbf254d5a3f337f03bf852bc23da4cd1ebfd0792a3f967f08bf0f877bbf43ccd63d9c6d1d3ebe6812bf02d4253fa3ad2bbff6fe60bf552c3c3ee862e1bed62710bf5609203f7b8641bfd92f35bf21d7343fb52d013ca4c0e9bed7c2283fc73c3abf48670ebf05d430bc37b854bf83d5e7bea0b4253f2cf444bfe4c55bbe105b773f1402123e83d5e7bea0b4253f2cf444bfc803643fdfdce73ead17243d4122e3bebc7d2a3ff2fd8fbf1aeabfbb8961353e91f27bbfafcd0cbffe2c243f0914cebe7b4c3cbfce4210beb5a4293f8ec5e7be6cfb1e3fbfb4a8be8a281dbf561078bec654403ff7bddebe572a553f0a4790becb6b20bf746f4ebd9e15473fa18803bfda406b3f9994b0be3e1658bf13e0f63d0bc1053fc84e11bffc93753fccff0bbf7a5275bfa7ff913e772f9dbcfe8decbe9b3f8f3f711653bf462069bf52fe893e7a58a0be94a0cdbebb3a5e3f713456bf4f7d21bff1702bbe8af541bf963005bf61716e3f207f40bf666a52bfc6b584bce4c011bf8ec5e7be6cfb1e3fbfb4a8be37742c3f8b67bcbef313243ff7bddebe572a553f0a4790beaaee033f4a578fbe1b594f3f09b9e9be2bbb8c3f9aceaabe02a65dbfa28fb73eb2b5b23eb110c2be2fbf763f9c0684befcb710bf9deee73d752b513f36d1e4be46df973f451213bf199d61bfdd7ef13edb1dec3cb110c2be2fbf763f9c0684be949bf83e52d6b4be89b74c3fe68501bf12ba4c3fdbcb92bf667219bf81771a3fe1a506bfe68501bf12ba4c3fdbcb92bfb5df5d3f2f96b03e2b86b8be6ad834bf83a5d03daad661bf4ddf243f2627f23e67ed193fe13138bf35e1803d6ac960bf7924503f987d00be5189113f95a228bfee88ba3d0af177bff191383f12d8d63ed02c0d3fb5d84cbfcad17a3d023e6abfbfd3e0bdc7ae7bbf18c6153e00232bbf099d7e3ca96175bfb216d2bd58a478bf5ff25b3ee13138bf35e1803d6ac960bf03a73a3ab8bf7fbf2157353d2ab942bf38d0663c810286bf8b6993bd47537ebfe490b53d3a01e4becd96473dcb965bbfba6c5d3cea7e7abf67bf523e4d80f8be2ce7fc3c6fa63cbf43ddc2bc3ce17cbf27841dbe723407bfd2424e3df7fc5abfe98d8dbc701a7fbfa192a73d772adabea5b1b03cbce869bff760773de2b375bf2d638c3e269908bf38b8943c92e866bf571bcbbcc44a7bbf37d3413e4b1405bfe45dc33da6695bbfe6ac5cbf3d95d63eb3f8913efbc5f8be8c7f333e1f566ebf7c0e9cbd67297e3f7adbbc3d6b7106bf709fb53dc9cf6cbf1de354bfab2d033fe75a5b3eba8df7bee831013eace555bf70a4093da0464d3fa8b8183f723407bfd2424e3df7fc5abf54d777bf087d2b3ea4b13e3e269908bf38b8943c92e866bf92871e3fb80cc43e897c2f3fec8de6be0ce0bf3d2ed45bbf6628653f71c9bd3e838c7d3e65a5e5be5f3cb23d14c86cbf9f3a6a3f9c95ce3e3a75ef3b3a01e4becd96473dcb965bbfdd09763f1e38423ebba84d3e772adabea5b1b03cbce869bf33d1673fdf66cb3ec882183e0a4b14bf1674863d827e52bf0d7802be551a74bf64cc8b3ee7e629bfcf7f903d3b6358bf281bbcbdcddb7cbf9f58013ec4ca24bf7ec4233dfad63fbf2929ee3cc75873bf18479ebe54c515bf077ef43d4e4355bf7ab53e3fa158e43e4203fe3efae318bf71ce4a3ec93372bf7634e43dbd467e3f32d4013d69f91fbf6a04193e3add52bf611b32beb08d493fd46c173f06840ebfb148d53d8a3767bf4fa5593f0527d43e8e4da63e0a4b14bf1674863d827e52bffd5d5b3f4ccb613e298fee3eac1c29bf087ef43d41f35abfbf4466bf4697db3eca15ab3d50dd25bf9bd2cf3dead76ebfb1e864bf2d4fd33ea7b531bee7e629bfcf7f903d3b6358bf2f607cbf61922a3e55059dbc00232bbf099d7e3ca96175bfbdeb2dbf4d01b63ed355243fd5b450bf2c59bf3c149e47bf5e410b3ef63475bfd59381becd3532bfbef7363e482a82bfb949c8bdd5c57e3f9c72373a11b53fbfedda0d3e8af265bf471649be3ad15c3fe1bbee3e4ec247bf122ad03d4cb169bfd55c57bfbdb1023f8d2936be754c3bbffa43a43df01886bf491048bfe66ccd3ea7a0f4beb5d84cbfcad17a3d023e6abf12925ebfe12cd23e44c88cbe2ab942bf38d0663c810286bf16f74fbf73f9b33ebc3beebe652607bf457ad73dd8a880bf48f74b3eb517753fee1e563e019406bf9f2f123c4fa98bbf309052bba3ea7fbfa779cf3c184fe4be29e9243e1c4193bf6feb313f4e7f193fb22acb3e7c64e2beeeba073e59268ebf1e10933e5c486e3f9c88673e4ec5ccbe108ba23dabac95bf95e65b3f14f5ef3ea71553be380100bf217f803c761da7bf0baa41bb6dde7fbf1e8a02bd6d9420bf147e273b4800a3bf1694363d8dbb7fbf44ac243c82e7c7be01917439217d9cbfdb4512bd13ba7fbf89e4ef3c483ee3bef4e8bc3db87a80bf9f523a3f1dff1f3f2183903e2134cdbecbec2d3c482080bfd8e6903dc55f7ebf8432b33d85451abfbe210f3e585ca7bfefdc0ebf5f3116be9c1551bf380100bf217f803c761da7bf82c6de36cb1d9abe882074bf6d9420bf147e273b4800a3bf845147bf7969773d3be71fbf667df7befbdd063eca84acbfac26c33ebf8e9cbedf5a5fbf82e7c7be01917439217d9cbf08b54d3ff4acb7bdb5a416bf2ac52cbfc5ff163cf72696bf8b24b9bc02c17fbf1fd6193da27011bfab5e203eca818cbffab396be1f9a713ff5391a3efb1821bfcf751b3e3a5b90bf38832bbfa85f353f411663bec906fbbe87781b3ee0508abfbe6db63e0cd1653f53ab843e11bb1fbf1b75e23dd5ab84bf524e463e25276c3f30ffaa3e9ae31cbf181a2d3e7e7c9bbfc79d6abfcdc6ab3e1a3a5fbe2ac52cbfc5ff163cf72696bfa01957bfdbb7aa3e36ecdabe24c9c4bef4cf233ef2b5a1bfbbb4783f97104fbcc95972be86770ebff861473e63b490bf55dd14be723c663f351dd33e2134cdbecbec2d3c482080bfaf1eb13efaab0a3fdd1e443fd5b450bf2c59bf3c149e47bf4c8b99be6807323f032d273f4d80f8be2ce7fc3c6fa63cbf2fc3023d2190203f6638473fc4ca24bf7ec4233dfad63fbf733253bee6bafe3e23b3573fd3799fbed44c7a3cec778bbf39f0923d97977ebf7e409c3d52fccdbe9ecba13da49682bfa95700bfb087083f936c2e3ff607bdbeb1971d3e8b2985bf9b71903ed531753fb80862bd9e47abbecb4a9b3d099089bfd8ae463fe51d013fa8cdc1bed3799fbed44c7a3cec778bbfa8a2453f4556d63e7ae0f4bea6919fbe400ccb3df3cc73bf733f863ea6d8643f921dba3e939db4be32a1213da5766fbfdffb21bf4927e33e2579223fe7938cbeb0ca2f3d660d7dbf7c131d3ec1077bbf4226fa3d939db4be32a1213da5766fbf508ac83de4f37dbf9019a33de7938cbeb0ca2f3d660d7dbfe7994d3fbbbe0d3fc24c61be52cf88be02420c3dedf45ebff508983ef3b0513fcb4afb3e52cf88be02420c3dedf45ebf7f38b8bbf14e7fbf2d0096bd099aebbe74ebd93dd381ad3f60995c3f2353fb3ea183033e7e86e8be79ce6f3dd0d3ac3fc64f7d3f1e038b3c1bfd123e6e30e0be9e8bc03d989c9c3fe1fb7a3f05d7453e27691d3d008712bfa5da043e7fabac3f2cb6643f0f90c23e5962753e758310bff72b7a3d3680aa3fdc1e723f8943243d2e06a53e24e00abf9bb8013d8f60a23f1fa3923dcc390a3fc1b1563f372533bf9f77e23dfcf3a33f1429303f5b1beb3e5cd20f3f202e33bfcce76c3d0fcda43fcbbc4e3fea54923dbede153fa61527bf7bcdc93c4ce99d3fa590603ec9f3d63e3a76613f0a2f03bff8e9df3de4baad3f98625cbf4844f23e968b3f3e77fd08bfe80bf13daacd993f7ea63a3ebe7e723f44fa863e107d17bfabf02c3e310c9c3fb9a20b3db9cb7f3f3e5caabc6e651bbf4d922c3e7d21ad3faf54403d134c783f6d9f743e5fff23bfa5da043e8d01ab3f034c6abfc604ce3e115fafbca7ef1fbf296dfb3dd6ac963fa4e800bfb659563f6e145a3e741125bfa3108c3d37b0b23fbfd060ba7ea26cbf6358c3be6a5c17bfd22b7b3d8cddb43f01f7f4bc940979bf26366bbeda5222bfe184dfb8f2edbc3ff1ccdf3d51703fbfefa427bff0e224bfeec5883d6230a83f893f02be1f6c79bf97553e3e758310bff72b7a3d3680aa3f3229d2bd7ca272bf47969a3ef0e224bfeec5883d6230a83ff9917cbfd8441d3e5d6661bd7e86e8be79ce6f3dd0d3ac3f5e8e6b3c679a7fbfde3f5c3d0af7f4be8a62653c926bbd3fe2f0b2bcf9b871bfac39a8be8c6105bf2254753d87e6ac3f6907aabce22e7fbf30da9dbd8b98f9be312a163eb0a19c3f5e2b583ec6f3793f7bd73c3db354f8be42140c3ed3f1ad3fcc3e7e3dc686783f1a416d3e202e33bfcce76c3d0fcda43f72473a3cbdd07fbf2465143d415b43bff599ec3c3f58b13f5275d63d1d5678bf1f5f60be274641bfeb53673d7434a23fea40dabd05277bbf579c253e0e3d30bff49d083e59a3953f1e0898be2371743f880719bc99943abf587e0c3e5f5fa33f560272be8287673f10e0b53e3fb93fbf7367d73d7d87a13f763b68bfd7b9c83ef9881cbe6f7537bf736db33df492923f1cdb6abf0521a23ec3cf76be274641bfeb53673d7434a23f0b5f78bfd698013ea19553bef50d9bbee1523b3de3f3a03f63d5993c8cac7fbf35ca3f3d3609c5be3791263d9e53973f098ef43ca5397fbfa203933d2bed9cbe96ed253d0fe1923f558e9e3ddd3a7fbf5eea6dbb55032fbf444ddd3d1871813f78e76ebf32e3463e6dc59abed0fd24bf69c15a3ef406803f120d64bf572de83e4c22e7bcc2861abf1ea6ef3dc332593ff02040bf0a2802be010626bf5c27e9be0175e33c8d21893f0d7cfb3d58087ebfd8d1793c4b56c5be0375353d80ff7b3f47784d3e8fb67abf5431cbbc6da3ebbe62ffa53cee25903f9724c83bc8bf7fbf4f8d333d313fe4bec4020d3d9e70a03f18de5d3de3087cbfcfbf2a3e24e00abf9bb8013d8f60a23f49732f3ce1407dbfac31153e76713abfe3c7843c8d9c923ff9b6d7bd3c347abfb7e83b3e31c431bf97fbff3ba67a853f5538a03ddaff7ebf91f5273da61527bf7bcdc93c4ce99d3f61f6a9bc74b57bbf347e393ef2c211bfe78aaa3cba01893f86ec1f3ddd9b7fbf092d203d8c6105bf2254753d87e6ac3f16bb76bf88ff793d0de7843e76713abfe3c7843c8d9c923fb7f871bfa4d11c3ea3a193be313fe4bec4020d3d9e70a03f05b27d3fc20709be08f983bb3609c5be3791263d9e53973f63f83abfa694a53e8d061a3f1566b7beac74e23d7b8d933f4cfa3f3e39e66c3f0ca8a83ec078ddbe41f6ed3dae088b3fcf6335be95591c3f2e92453f370bc3beec9f0b3e5e3a773f810c6e3f0f48803dfc98b9bef9f9bbbe8f9bea3d126a863fb983663f0f9cd33e57d10abe4b56c5be0375353d80ff7b3f50d3583f7182fdbd915b04bf860526bf30261e3e157b883f53f30fbf82e2443f5a929b3e9f1ff4bea9e4d83d388b593f2ef9943eb7ae05bf3f394dbfac4d25bfd2e2893c6e6b6f3f8c0c04bf222fd5be65ab3fbfac4d25bfd2e2893c6e6b6f3f530ffa3c8bdc7fbf0e8d483ca1faefbed367573c97666a3f5adba53de0af7ebfca3c783da1faefbed367573c97666a3f0792573e21b90dbf63444ebf31c431bf97fbff3ba67a853ffa3d72bf29d3183d3e7ba4be2bed9cbe96ed253d0fe1923f4f4d623f5a33cd3e4a7776be1e930dbf485f733e1fa2863ffcc5b7bc9f882a3ff7d73e3f9509dcbe36ca563efdb7803ffe9a023f2027253f979c113f364200bfd8900f3e77548d3f2d2ba23e3dc04e3fe4adfe3e0f55cebe529e143e1fe0883fa5df883e8ab15a3f5242e43e59d412bf3ccf203eb99d8e3f630d0dbd9887673f8dbcd93e6da3ebbe62ffa53cee25903fdc1e7a3fa05355be9e7137bd5c27e9be0175e33c8d21893fde7a0f3eb0db43be44b3783f8550e1bedf4cd53df927933faf476f3f1980b53e4bd4d73cda5222bfe184dfb8f2edbc3f25a66dbedbce393eaba3743f6a5c17bfd22b7b3d8cddb43ff672663f5b239b3adbf8de3ebc251abf5d16d83ddabab73fd9c2543ff494723e31ce003fbd7320bffab7f63d95bdb83f03c947bf6cd5e63e76d1dd3e741125bfa3108c3d37b0b23f4e367bbf5c39083ef0780e3e0af7f4be8a62653c926bbd3fb4731cbd1ca89c3ebb86733f0ceb00bf3b36ab3de52bb43fc81a67bf93a2383ed5f5c73e1ce4edbe2b9fa33dd588b43f2445723ff5e5343e69818a3ec3eef6be7c92ca3dc00db63ff511343df02d403fdfbf283f415b43bff599ec3c3f58b13f2ce093be65e81f3ffdbc393f8707a9be18b1d33dec679a3fbe36493ee16e603f5bd0e03ef50d9bbee1523b3de3f3a03fdf23933ea353353fca0e253f401baf3e6cb4b33f92b4483fe579543f77f50d3fbc9d76bdddb2b13efe1db23f2ff6723f83aa783fd2856f3efff22bbd5ab7cb3edfd1a63fdb13383f827e743f58bc973ea3edd0bb373e843e8d1dc43f9a865d3f2cf5263fed8d293fb7cfbcbe7f28b93e98b79e3fcfe18a3f074b773f583690bda5c87e3ef342d33e96b5953ffe77513f36107b3f6727193e7cd2003e620ac23e07d2b43fd8c49c3fd3ef793f53864fbe651c9b3dedc2b33e63dac43f1bee8b3fe4fb6d3fded42d3ed176a7be4add2a3e895a1a3faeb75d3f31e4043ff88b57bfc87d163e139f3f3e32e4383f00d6863fb98bee3e108f1bbfcda7243f8a1a833e3997323f3718df3ebaf5183ffe974bbfcef8d1bd5594903e6175323f66462d3f75354a3fcc141cbf7c59873d3a23a83ec014433f26751a3f6290503f436914bff01256bce405c13e2b745c3f9cd8ad3e3abd4e3fe41010bf3ba934be223c983ecace493f3bd7763f5d30503f881205bf28f1853e9544ac3eea4e5f3f7aa7643fd20d693f5d46c1be90932d3e5508c33ea7bb963f80402f3eedb9783f68632f3ee84427bec2eeba3eb054753f858007bd7ffa7c3f4f5e1cbe123e47bc8cd4bc3ec597953f9dc286bce66f7b3ff8ba3f3e5b2c87bcc9438d3e30f2403fa8eb50bd7f3f313ff0c137bf422896bdf3fd983e8517ae3f4da92a3dd87d3a3f1ef02d3f6453b3bdb588c33e276f763f97c43e3effa96e3f7dd6a1be8e1d34be5510a63e216f7b3fd6088d3f849f583f18c096be5b69e33ea9b3cd3e459f833ffcbd673f7ff8733f88a00ebed1bc893e8148b13eff40a13fe3add73e2e075c3f25ed013fb55079bdfe44d83ed604963f77450f3fa6626d3f5c2cbb3e3811a5bd5990d23e9eb0953f2254c43e1888683f8767d43e91495abdc36bf43ee477803fc9f8be3efeeb753fd9718c3d1ed889beb17bae3eed68aa3fe3d8633e4ecf6d3f0aefba3ecf2e7bbddeae853e318e3b3fb66f4a3e62fa313fc69836bf7b1db6bdf060593e63e3733f5bca9a3f81feb83e17b8e1be1957523f8632793ebc5f993f138aa93f75d8193f3b33bbbec0f3353f6fa66a3eae29423fde939cbecb51f43e056360bf83e0813dad17c23e2ebf763f5aae83be3cda723f9b8e91beb2180e3efab1913e9598323ffd0819bf7e99953e0abd74bfd976d43cc72cb83e59168b3f05e28dbf9021723f932c6abd39a3a3bee431333ed0dd613f9fd191bfdac7fb3ea61a40bf2b21e2bef210433e8839833ff537b8bf8b55103f22464fbfb4e826be63a0933e5ae6923f758eb6bfe5117c3f3939aebd75131cbeeda9623e9e34aa3f4873b4bfcd63373f3c602e3f7ec61abe082b5f3ecfca3d3ff8c962bfe3c0b63e0d165dbfad49b6bed1fa3b3ecfa4843fccfcf3bf239f493fdcc31bbfa083c7bd9f924f3e77dd9d3fecf0f7bf62af603fc4dee43e4cf630bee568a23e33024c3f24cabcbefc95163fac5035bfded8c73e309ea53e85cea73f3502edbdcb8a4c3fe4d8193f39e9ad3c1a2dbe3e9891973f08aa2ebec34d7e3fd252a93d297da33d3763b33ea8163d3fa42e3ebfac3ecf3ee8a353bf6011c8be3c2ece3eb93a5e3fa00556bfb1513b3fca05febed74befbe00ab873b66614d3fb10c8fc0845b7e3f1f76efbcefc0dfbd7516c13d1661673fa35f6bc0fb7f763f0d1785be2db694bdd1fa3b3ecfa4843fccfcf3bf0fbb5d3f93d8ffbeaf9f2b3c747b0a3e6b6e773f97c919c05e703e3f99e72abf0e1ef93ca43c3a3ec708913f298e1bc00427673f6a52d13e55af07be9f924f3e77dd9d3fecf0f7bf638a423ff7b5213f14f31cbec1720f3e4a3e843f32f440c062dd6c3fda3ab73ed0db00bea387e23dc5cd6a3f88c03fc0f1c7343f9e2335bf7f6dd13c4a2f8e3ed7ecac3ffe44b43f19b3e13eb74f04bf60de3b3f8f0b5f3d0e2da53fdcbbab3f0e1d83beb80345be3d83723f1891803e0c84be3f1418373fb5e7923ee821703f4b1547be081e0b3e3c32bf3fc2c3323f56b6c53de42a793fda3155be2dd28a3e90aaba3f1a51df3e9fb3c23bd7a77c3f15de24beecd4963e3226b43fd806623e0a6b4f3d904e783f5ab173beacf91b3e8203b63fecd17f3e9cf9243e3ac97b3fcb91a7bd5075043ef1c8cb3fbb55673f535e8cbce5f45f3f5edff7bec468103efe47db3fa4cf853ff01772be5267333fc84c2cbfc1388e3ec5cdd33f1c87823f526a163f4274fa3e6d0325bf36e33d3e8609b63f5ae7a9bdb2c7bf3e284e6d3fc73aa73c5048633e22b8b43fb73eb4be0a39023ffd1b5c3f125c363dd534c73e60ca9d3ffc7eadbed50b553fb1a6093fab880a3ed1fb7f3e46eeb43f795221bf8f55123f2e0d523f0e01523be921e53e45df973f35de12bf38ef4a3ff7061c3fe33841bca4d1e93e2bbb8c3f4c64aabe3a29483f92d6d53edafaec3ed918ed3e9a3f8f3f98e052bf75d2673f2162a73e446c8abe694c843e60e8b13f7e1d73bf93f62f3f1084363f91090ebebf6e223d144bda3f7e3f963ff71162bf3d83e03ee3f62abe3244be3cbbc3c63f11bca73fc8667abf9dd63a3ef97acc3db16e01baa167b53fb1b5a33f11482cbf270d7e3dfeaf3c3f3244be3cbbc3c63f11bca73f72ee44bfd70999bdaf71223f126bc23d12a0b43f636fb13ff27afebed99d81beba79543fb16e01baa167b53fb1b5a33fe1037cbf6a291b3ee05eb63d0958cd3e9d52d93f37139e3f3fd06e3fbcd3683d0220b6be3cb3cf3efaabc73fb875af3fadd56c3f1172a8bed2fb413ee12ea13e45a3c03fb17ac03f07acb73da33d05bf4b62593f6b49a93e12afec3fcb27963fc5f6d53e39c8f83e918344bfdef84a3e23edf33f15cf983ff915ddbe1df9213f209024bf6fed1d3efaabc73f82b2bc3f72ed23bf3a2a51beef8c3d3fa9a5873d9d52d93f433fb23f7eb345bff1b3fdbd74831f3fa9a5873d9d52d93f433fb23fccee77bff3825c3ef423003effc4ad3dc325ec3f2d73a43ff52865bf1d39d53e80c222be8c021b3f58d0dd3f68851040045bffbd8bf46fbfce98a6bedb5f303f661fda3fdf491440d1e0f23eccb75bbf7c8048be96e5213f42b8d73f87031540052e2bbd6e3f7ebf035fdfbd14a0313f8630e23fbecb0840d8d5973e9ff669bf7ee58dbe9386123f2b31df3f6bfc0a408cc981bd20f47bbf125629be20480a3f8307e33f989b0540786988bdad867bbfb0fb31beb729333f107de03faefd0e40f521b13eaf2b66bf4f4f89be39c1373feea7e53f49ee0c4097fb6c3f7484a5be2c0b49be9b25383f2686e43fd41c0f406a966d3f065cb1be0df20bbed5b12b3fb0cfe53faac302406404ba3e63fe61bfe57998be56f8313fdb7cec3f82820240bef36a3f521b51be105daebebe34383f379be73fac1c0940072a783f1d1c0fbe37b54ebe47c6283f4c8ddb3f368019405936843e613831bf05822c3f3c30343fcdafe03fbb3116404ac34e3fc48fa0be32a8ff3ea1ce283f03d2df3fb5851940233ab73ecd4b30bcb0076f3f8def303f96bcf53f2e7e0340bcfd7f3f89c666bbd8d4f6bbb733313f2101f13f699d0540661e783f7a72783e26bc2bbdb7a92f3fe0a7f43fafcc004096177d3fc3ddd2bdb03ae0bd74e5373fd8e4df3fd0371340bf3c5e3fc85bfcbe913370bd6c8d383fdea3e23fcf911040d912723f136e99bebdaf013e2787353f1d04e33f9a9013404ccd183f36cd4c3fa6dd793dd6f5343f3297e53fc24411406b006e3c8134d73e1942683fcaac413f0288ea3f93cf11404d1e603f3131dd3ed1d35d3ebf9e3e3f6f82e33fded614401d3a6c3f04f8963e6d157e3e0a3d353f9bb7ea3f465a0a409db56e3f5f45b53e744c933def46363f7f5ce83f6e370d404a5635be12a75f3f8109e8beb8cd433f1f59ee3f4e6f0e4005606c3fa5e4b73e25100b3e79be343f5b9ee73ffd730f408db4adbee9a4623fe4c9a23edb68243f528e064045ec0c400085833ea81b583f06e8f03e1678203f080809406ccb0840952a203f2a30413fbd6d4a3ed02b173f2488084048040e4097fa6c3ec93e433f139d1a3f3a32313f18310940864e07405146183f7531313f464bd13e971d373fa4730640f1a80c4083af303f1af2173f36f3d33e0702283f3ae80240492112404bbb203fd1c4323f43fdaf3ed336363ff0ad0040a4d41340e925453f2c671a3f68ba543e31652e3fbb7cff3ffb6717401575203f00923c3f5616823e26f8293fd3a1fe3fd6471a406992d43dad00753fee9d8a3e2e7d253f77890340725b17401492463ef82c573fcb80013fad84363f3e92fb3fbcdb16400967633f87c5e53e570fc83da27a3b3f575cf53ff1601b404e20673f61437d3e2316b43ed83e3e3f5ab9f33fe62a1740863a7a3f156f373e75e5e43d30c0373f00cf05409419054036997f3f1fc3743be7cd64bda911363f1a880a40e4d3f63f9fbb7f3f6191383d7d89f33b5e37323f5aa7124081f4f83fa03de43ed615483fe669df3e98f6343f2520ff3f7a0d0f4028b06e3ffdfbb83e4ae3413cea23343f82e2004009260a408439733f1fe2993ea328ab3dbe17343f4de501407f0d0b4051887c3f5efb25be061ace3c0ba03e3f3314f63f78020e40a120723fcceea43ebf7e27bd44d73c3fac59f43f49f70b40e738793f6bc146be7142f7bdeebc3c3f7fdbf63fc1090a403f10793faf15683ee13b3bbd0b92433f6203ef3fb871154013de703f7c3ba9be339297bde2a13e3fa54df43f0a5d1540fa7a783fc604763e960a51bc90dc3a3f45edeb3f71e019401b275d3fdd7200bf054d353dae1a3c3f5220ed3fbd471b40921a623fc22c9ebe6ca5b43efe41343f69a802401e4b06404da77e3f39fb8f3d5b8f98bdbf62363fc4a9034076e20740ec0f6e3f2233adbef9aa13beea23343f82e2004009260a40a4e26e3fe44a8dbed4ed6b3e8b87353fc4040140e1cd07400e15653f80efd0be853439be2eda373fa436024042fb07402ac97d3f39d5fabde21e41bd203f363f98f002401661094013736e3f913cbabec41a273cba52383f7db40340ec890a4014d67c3fe2a418be8548463d3e67373ffc4dfb3ff5ab014056337a3f1e36a13c1aca57be3694383f585f004079f3024095c9773faf7b653eb5afe8bd3ae0393fd7f5fa3f62590540bd877d3fe014053e85f044bd8a243d3f1488f13f84d11640550d023f1f254fbf962c973e53a9313f9935ef3f704c1f401d11b73e95461dbddedf6e3ff000303f740bf93fa2371e40bddfb53e50d7f63d7e4e6d3f69580a3f6c850e4030a605408a7a1a3efc23683ffb8bc93efcb41b3fe85a0b40f03e0240afcbfe3d33b7683f249ecb3e84b7023f739713402fac00400ed5fa3d8289703fc5a4a33edc71303f816503406a3efb3fa2627c3f493ece3c188629be2b5a323fc1140740f228f63f2cca743fc15073be36fd2ebedaab0f3f496f1040bb1f09403f9d4b3ed1d5543f99d6043fbf62363fc4a9034076e20740550a753f98e46b3e8f7b33befe41343f69a802401e4b0640d406603fe84a66bdb818f6be8b87353fc4040140e1cd0740af1f743fa7a7943ec8f9a23d203f363f98f002401661094004bf763ff154b13c0ef7873ebc24323fe1fefd3f77f9f83f55d3763f07cb603d0ce784be7c72353fa451fb3f809f1b40798c563f8e3d093f480fcf3ddd8d383f8b41f83fae3303407968663fb6e2debe832babbc3b44333f4d7f0140fde90f40328b6e3f9bd9753ef15b8b3e2534323ffc470140f6a61f4005684a3eff65553f360c043f6b64393fec2ff63f2c43064042412f3f427824bfac4fb0be799a393f504df83fdfdc0440cbe85b3fbfcd01bffda390bd6e8a3d3f0708f33fa27b0e40230d523ff3610ebf1227073e50433f3f4f3ff53ff86b124014fa713f1a0fa53e05e3513daaac2b3f618716409860e43fbe78d23e4d6b5f3f75d6863ea285343fd1400f40b409e93ff1a17d3f691b013e9e594dbd6c68223fa0b80240f3581540a0306d3ed625433f5fb71a3f07b01d3f02ee084087441240f1055a3ebec44d3f6f360e3fdc363c3feb1ced3fdca00c4024bd7d3ea81e74bf37292fbe633a383fcb46f33f24e00b40723546bfcbe014bfa9a47fbed1ab3c3f2853ef3fbf280a401526a63e87ec44bff2e80cbf0e5c363fc90bf53f47860a4029f10cbfa12c46bf7dfa9fbe31763c3f900ff23f5636154066d9393e9ead3ebff75f24bff06c3b3fcb8bf23f19af124096cd243f31ce43bf987bc0bc49b1353f1a6bf23f1cc30e40adf6b7be13586abf93d3393ed2b9313f872bf73faa5c04404b34d23efa8064bf84cf3e3e4fde323fb27ff63f947306405816e4bd11717bbf35ee1abead532f3f4d3fea3f7ac61d401bab7b3e300d3abfb233243f16c62c3f30c1e83f271c1c402819173ed43769bf002ac53e0482363f0d1af83f8d2200402763783fd19b6dbe3a1c8dbd16c8ff3e213de33f69a8fd3ff66196bcb5a97fbf853544bdb9321d3f3723e83ff2e2f83f084a193f62563cbf5b14a2be0a852d3f290cf23fa4affc3f2897533f27a6dcbe4e68b9be0e1c143fed3b0e40063bf23f15c7153f58314f3f72f252bda44cf93ef98b1140c86df93f03a26a3dc6b27c3f2613193e76982b3f329f1140517eed3f95b7f0bee18219bf8bc825bfaaac2b3f618716409860e43f95b7f0bee18219bf8bc825bfa285343fd1400f40b409e93f2ee652bfad9bc4beec7bd5be66041e3f6a3811406490ed3ff8e017bf2867393f8df0b33e1cb62d3ffc6901402206f03f3ecf723f6ddc1fbd48fea0be34212d3f7daefb3f9440f43f5474703fc9285abe7bbd89be01640a3fd0eee53f7093ee3fd92bba3ed0eb6abf7e1a24befd1fec3eee43e33f7bd5f03fec9f35bae1ff7fbf4eb9ecbad22e1e3f1ceded3f4f4bec3f39ac413f74141bbfc2417cbe59ec2a3f5fcdf63fc20cf33ff80d5a3ffd9bf3be8f9060bec0a7d63ee23d1640d9d3e23f05439d3d56097a3fbc2f4d3e34dd273ff37307408df4e63f2099323f98312f3f761a59becb87273f30a70140d892e93f379b643f8ee6e3bdf347dfbe34dd273ff37307408df4e63f379b643f8ee6e3bdf347dfbe34b32b3f0959f73f64ebed3fb432583f078601bfceb033be0291293f62b8fa3f5452e63f50a14a3f817502bfa8b6acbe4bde1a3ff34703404428e93f475ba9becf1d0c3c6d9471bf35ca1a3f62d8074033ebeb3f09cf11bf9a69713ebb9349bf34dd273ff37307408df4e63f475ba9becf1d0c3c6d9471bf35ca1a3f62d8074033ebeb3f5f8f3a3f76b4153ffa6cb6be4bde1a3ff34703404428e93ff0f8773f51219b3d9b4f72be892c163f0dca004034f4dd3fdbfd653f6c5f633e3bffc1be63e1303f3c210b406666e93fe0c3733f5b9b68be171c51bef994393f93aef23f87f907402128f93e26825fbf8959f8bc6b64393fec2ff63f2c4306405f493b3f9c0ad7be4379093ff231383fc9f5ee3f0ad8034036370c3ec1b26abf3015c0be799a393f504df83fdfdc04409997363fc6f5c73decae31bfd2b9313f872bf73faa5c04400d2022bf647b1dbe1f2b42bf4fde323fb27ff63f94730640213f25bfc95013bf5c8f003f01640a3fd0eee53f7093ee3f76c4db3e9c7c61bf44a34cbefd1fec3eee43e33f7bd5f03f9bcb8d3c45b37fbf5b08393d80b9cc3eee33e23f6159dc3fcdb0763d16597cbf81ef203eea8dee3e6a3fe73f371fd83fac11303fb28539bf18332dbdd22e1e3f1ceded3f4f4bec3f8366323f046015bff381d5beddae0f3f16bff83f8c4cd13f74316e3fe78f62bebc8e95be7cffe63edafa0e406e7ded3f16166bbd8caf7c3f4d5d19be5fa7043f42980640f158d23fb4fa393f09110e3fd081cfbe7cd9c33ebb690c403f8fd63f3dc4babdfa8b773fd0b073bee66c1c3f26a2fa3f145fe33fb8d3603f4c7720bedd56e7be0291293f62b8fa3f5452e63f4afeb53e5b4205bf74bd46bf267eb53e4186d63f6a31cd3f56eb823e761633bf48d12a3f53aaf03ef68dde3faeecc33f619a673f6fcad6befa43983de076fa3eae85f03fbd09b93fbc65693f8b29983d68e1cebe5037d93ebf9302407081b33f636b0b3f38e51e3f9b6510bfbdf7923e52f406405cabb63fa39732be23885f3f7508e9bee12ea13e45a3c03fb17ac03f1d42963e70031ebfc3e03a3f3cb3cf3efaabc73fb875af3fc0036e3fe5a5bbbe0ef4103d0958cd3e9d52d93f37139e3f7d4b723ff17292bdf72ba1bedef84a3e23edf33f15cf983f45e179be6d92463f6e0115bf6b49a93e12afec3fcb27963f1439333f0f80c13e66181bbfcb87273f30a70140d892e93f646647bdf28460bead7579bf35ca1a3f62d8074033ebeb3fa5ec02bf371f24bffb7c12bf7cffe63edafa0e406e7ded3f64858ebed9dc20bfc4f539bf34dd273ff37307408df4e63faac500bf7fc01bbf8b251dbfc0a7d63ee23d1640d9d3e23f2b0790becb381ebfd1ec3bbf66041e3f6a3811406490ed3fd4e4943d9dce2dbf02083bbfc953423fc063ec3f020200404b46493f859b1dbfc04859bd3e67373ffc4dfb3ff5ab0140c1176a3f8cf1bd3e69be25bedd8d383f8b41f83fae330340ceae443fe95ee4bcbdb5233fb7a92f3fe0a7f43fafcc00404b7120bf53be1dbf0739f4be0482363f0d1af83f8d2200409962723fae485d3ecf21743e8def303f96bcf53f2e7e0340197f41becba431bf61df313f6ad4433ff68af13f2690f63f0335423f1904b7bed1720b3fd130433f7440f73f5561f23fe6411d3f79372f3fa90cc9bebc24323fe1fefd3f77f9f83fec78e73e4db1583f260590be0a852d3f290cf23fa4affc3fe51b74bd951d70bf1be7ae3ecedb3a3f2c8cef3f8b77f53f9da9e1be221264bf77afe03d59ec2a3f5fcdf63fc20cf33fc73f01bf0bd0c3bc53e45cbf31b9383f314cf13f995cef3fde7513bf2ad582bc5c3951bfec38493fadc7e73f81aae83f9f822a3f04ef0ebf9e3cfdbe322b373f758df43f4f23ed3fddd4543f1f8981be3554fd3e1cb62d3ffc6901402206f03fe422673fe0e4c73e7749383e34212d3f7daefb3f9440f43fc556343fd8b33fbe3f432f3f8436373fb9c5fa3f1d24e83f8a284e3fea77003fca9fa1be0291293f62b8fa3f5452e63f7a070dbff0af2a3ea95851bfcb87273f30a70140d892e93ff021083f222c173fc6671bbf34b32b3f0959f73f64ebed3fe61330bf5cf233bfd28c393ec2063f3f1430e93fa7c6d83fc2b2febd40584bbf523a18bf804f3a3f19b909404678da3fab9b7e3f789e99bd73f2933d285d353fbbe10b4003c0d73ffe68fbbeccd25a3f86122cbe63e1303f3c210b406666e93f0022d4bc6bb97e3fe731c53d8ff3353f7cdd07407e07ee3f68137c3f3dfe2cbebab6313d28812c3f0dbd07409073da3f6a1e61bfd683e63ee6a71ebe34dd273ff37307408df4e63f027253bfcb880c3fab4403bea156303f5a7c05407f99dc3f8194053f095257bfdbd811be1cb62d3ffc6901402206f03fbb663e3fb41f24bf8bc541be28812c3f0dbd07409073da3fd64f5bbf3899efbe19395ebe34dd273ff37307408df4e63fb9f963bf1845cebe176258be53cd3b3f584008408928bc3f1946643e9460c4be1d6e65bfdc71303f816503406a3efb3f590b793f768967be41db4b3d2b5a323fc1140740f228f63f9f216c3f7f8d923e40cb843e0d612d3fe27811407c90db3f3525783f8b764fbc68607bbe2231253f8ac71540b5b8dd3f12c1ad3ed974673f13e9843e76982b3f329f1140517eed3f5b41263f5c043c3f69c8493ea285343fd1400f40b409e93f161b743f42f17d3e3a2d2fbe6933203f388e0c40da71d93fdc2c28bec63b5dbf1382f3be63e1303f3c210b406666e93f58e7533f0a10b0be6a02e3be34dd273ff37307408df4e63f2eab0ebf4b1a3bbf18bcc9be0e1c143fed3b0e40063bf23fb84372bf435aa2be18277fbdaf00113fd7311340e40ade3f7dc27abfb7520b3e26ea173e66041e3f6a3811406490ed3fb6cabbbea608543f03e6d83e07ff113fcca61440881aba3f8e3814bf8d8839bf6a3fbfbe8b300c3fe80d19405c59be3f66a77abfddad183e4e840d3e575f1f3f41521840a4ccbb3f1efe713ff02387bd5f96a3bebcc5163f00421a4006edbe3f761673bc8974723fb128a43e03ee073fbbba2040b4b2a03fe0cc30bea104d73e8b1664bfd6f5343f3297e53fc24411403602203ec9745d3fde12f43e79be343f5b9ee73ffd730f4083c4a73dc3e4703ff71fa83e20791d3fb5c3e63fd1201240faae123e4e976a3fe265bf3ea1ce283f03d2df3fb5851940c4f1193e564f683f0ddec83e2787353f1d04e33f9a9013401ef4553e69a2653ff16dc73e3c30343fcdafe03fbb31164058e5b73e3ee4553f4de7d43ea554193fe183f63f61a30540ef70793eb8cc3d3e5bb6733f96fa0b3ffa6cf33f12b70640b213603ef28c4a3f4830123fb733313f2101f13f699d054008f2513e8cc3493f7a91143f8def303f96bcf53f2e7e0340ba8eae3e85d7ae3e1c39603fd2b9313f872bf73faa5c0440fd3ed0bc05f74fbf2125153fef46363f7f5ce83f6e370d40ae84113e4dc46e3f89bda93e0a3d353f9bb7ea3f465a0a40012e543edc6b5d3fc40cea3ec68f163f5df0ea3f829e0d40434e2f3eedcc603f50bce43e8a243d3f1488f13f84d116400ad857becff24ebf3fb30cbf90dc3a3f45edeb3f71e019405e546cbe135c27bf0f7d38bfdcc8273f028cf13fddda1840121848be557556bfce8a02bf633a383fcb46f33f24e00b40b37982bef6b46bbfc34a97be014e193fc449f53f9f680f40d8cde1bd758b73bf1f5093be0e5c363fc90bf53f47860a4012077dbea53a6fbfbe3583be31763c3f900ff23f56361540421ca6bdf4467cbfade518be4c33223f7133f33f49361540c28032bd2d187ebfdfe6e8bdf06c3b3fcb8bf23f19af1240263869bd5d907fbf509c50bc49b1353f1a6bf23f1cc30e404f0221beeb017cbf3296a1bd16c62c3f30c1e83f271c1c40178c8fbe440e1fbfe74f3bbf4fde323fb27ff63f9473064085df92bedb9d73bfa86ce1bdb4110c3fa945fc3f1dc60640c0e773bd2d6e7cbfa11f1fbeb4110c3fa945fc3f1dc606400df3343e199a5e3f471eec3ee980183fafeaf13fcce20e40ae8e553eddff4f3fb25c0b3f074e203f6a97ef3fe2ae0d4009267e3fb7ce62bba5c2f5bd96fa0b3ffa6cf33f12b706406c81ddbdbd0574bf5f8890be919f173fca39ef3fc34f0e40c3d50cbe54536cbf8ccfb7bea554193fe183f63f61a3054049247a3f9fa70dbbd5cc59be5f39213f1310e73f4a931440ae95a63e78ddd4bef46a593ffd2f153f671fda3f90e41640c1abf7be19b85bbf95772f3e1712eb3e8730e23f828d0e40efc6cfbeb3f669bfa6c502bcc4f3043f107de03f0f6b1340a987dfbed12b66bf3dd2013d0392013f2686e43f6d571440f01e48bf8f59b1bec7c1043f4a0ff83eeea7e53f2ea7124065e151bf6e83a5bea2f8f13ed5a5d33eb0cfe53f1e130940b646f0be6efe61bfbb1cae3c44f8e23e379be73f1de30f406c255bbf7b150fbe13cefe3ed3f3c83edc7cec3f29ef0940930b69bff11851be8b51b83e0272173fcdafe03fc8f2184081c888beff99a0bea442693fc9becf3e96bcf53f067e0a40a0b63fbf29de65bb70a6293fbfb1da3e2101f13f881d0c40cfbe3fbfbb7a783eead41d3fb13dc33ee0a7f43fc84608408a024fbfe5f1d2bd4148143fcdba0c3fd8e4df3f6e5a1740785b2fbf5a5dfcbe7e58093fb129053fdea3e23f207e154095671ebf526899be93e7393f3f6b0f3f1d04e33f25371740096ecebed1d24c3fa46be33ef3b3093f3297e53f98691540a575183f1f2fd73e89422f3fc9b1013f0288ea3fb6f0174081a401bf0e2cdd3e680c3f3fe20f0c3f6f82e33fd5ae19400e4c05bf3b08973e1a194d3fb8c8fb3e7f5ce83f439e12402b3f2fbe22a65f3fd537e9bef104ee3e9bb7ea3f7d501040c14425bf4d4bb53e7f382d3f0e2cee3e1f59ee3fc8c81540239a18bfc1eeb73e9fd2373fdb02053f5b9ee73fad0614403e04ee3e70a4623f535b203c12660a3f528e0640206a0f4037a3fc3d0a1c583f9b8c053f874b023f080809406faf0b408da7aabe5130413f07af103ff3bfe33e183109409d5f0d408f5f2dbeef30313fce9c333f0490f73ea47306402e581240da7372bea2f2173f34e9443f56a4153f3ae80240cae313407e0d73bee1c5323fbede2c3f709e0f3ff0ad0040308717409641debe10651a3f9f502b3f8afe1e3fbb7cff3fd1e11840d8cc97be56913c3f8f9e1b3f8e7c173f3e92fb3fc1d41940317518bf7cc2e53ec2922a3f46e11f3f575cf53fcf051e40f089dfbe3d3d7d3e85705d3fb190123f5ab9f33f2b5a1b40e90427bfb66d373eb5833c3fa632ce3e00cf054099d30c4088b247bf927e733bd02c203f5fea9c3e1b880a40115705405ff83cbfcf8d383d35512c3f8055a83e7ca71240cb7c0540d1d923bda815483f815d1f3f27c7033f2520ff3fc9c31340408a2fbf9cf9b83eb8c3213f1577f33e4de50140bba410405e8f37bfb40526be5c8c2d3fc08fee3e82e2004097fa0f40eda326bf97e1993e2b75323fc79af33e3314f63f559a14401d1d3bbf56f2a43e7f051a3fd32de13e7fdbf63f465511403e1941bf9b1a683e73bd1d3f4d55eb3ead59f43ff3c812405b0e4ebf30b646bef08e0f3f17ff093f6303ef3fc6f51a402dd33fbff83ea9be22e5123f6d740d3fa54df43f37131a4071063bbfbb13763edc9f233feb521c3f46edeb3f53cd1c4081f11cbf3e7200bfaa391c3fc4261f3f5220ed3fbe0d1e4028afd7be132e9ebe6e4a5a3fecc6d93e69a802407a210d40772e4abf38f88f3d02ff1b3fc11ddf3ec4a9034082ab0e402fc449bf6b37adbe35a0033fc08fee3e82e2004097fa0f4050480abf89468dbe8e874b3fea73dd3ea4360240abfc0e40d6db44bf87ddfabd219f203f42f6df3ec40401409e770e40fe5b49bf0befd0be3a4bed3e4250e73e99f0024026c20f40b1a32fbf8942babe8e49213fe86cea3e7db40340e7f71040e7cd33bf1fa718be6c2f323f1863bc3efc4dfb3fe7370a406e2d5ebfb63fa13cdb25fe3e235ecc3ed7f5fa3fe75d0d40f0d244bf9618053e4547203f187ac13e585f0040c25d0b40fac34bbfee81653ee4f40f3fdb73123f1588f13f86e81a404cdf38be54294fbf571f0f3fbea9e83ee85a0b40aa0406409c67313e3eb7683fd108c23ee1a8a03ec114074079780440245653bf655373be2b0b033f0a17b13e816503400f0b0640aa1258bf5c31ce3c7723093fc11ddf3ec4a9034082ab0e40f94754bfb6d46b3e145f023fecc6d93e69a802407a210d40c0e378bf3e8366bd15a2683e42f6df3ec40401409e770e40e5fc27bfa3a7943e414d323f4250e73e99f0024026c20f40b91d0abfa52ab13c7e79573fd47ea83ee1fefd3f9f7b0540630664bf18d6603d7006e73e1a05253fa451fb3f62321d403a500ebfad3b093f6ca2223ff1dac23e8b41f83f7b8c0b40bbf72ebfc0ebdebe0aff153fc257073f4d7f0140441f144099e402bf29d4753eaf3f533fe02cca3e504df83fbff50c400aa92fbfeed501bfe87f053f7cf8d13e3030f63f31f70d4019473dbfc87c24bfb80f4e3e45bff73e0708f33f20c6144072ac05bf88610ebfb183253f281f053f4f3ff53fdafd1740403e2bbf8f10a53e01772b3fca1e763e82871640457bf93f88e804be6b6b5f3f31f6f03e50b6743ed1400f40cde7ff3f734145bf1f19013ea6f31f3f1bb6f13ecb46f33f46f21140ba73d13e39e514bf06ff33bf90ceef3eeb1ced3f332c1340b2e898be981e74bf53101d3dd1ece13e2853ef3f9069114029fa1bbff2ea44bf663345be2145ed3ec90bf53f27a11040e9714d3e7a2f46bf95b019bf27aa0e3f900ff23f89991940716e10bf52a83ebf6a7cb6be91ad083fcc8bf23fc38b1740dc3efdbe5dcd43bf4352d33e6f75023f1a6bf23fa5ab134018f3c63ed8576abf4444d7bd5737d33e872bf73f49450b402f2f39bea68264bf276ed33e33b0dc3eb27ff63f23040d40e7e897bcbf727bbf1b4d3fbe1881b53e0d1af83ffeec0840d79044bf10a76dbeaadd183f546cc73e3723e83f71f30140db3028bf45563cbf4f9e283edb4bb93e290cf23f32170640dc5a5bbf36a6dcbe82e2903e2427c33eed3b0e40a7e9fb3f7f75f0bebb314f3ffd91b43ed18b933e329f1140551e0040d917aabddd8119bf63c34bbf50b6743ed1400f40cde7ff3f5419ab3e429cc4be2a595cbfca1e763e82871640457bf93fd917aabddd8119bf63c34bbf5ff0a73e6a3811409dc0fb3f281d2d3fc365393f6f4b0abe242a973efc690140ce690140906c6abf29f01fbd01c2cc3ee954a33e7eaefb3f6ce30240e2e860bf0c1e5abec8e3da3e98d7c73ed1eee53f42f2f53f1554c1becbeb6abf7680fd3d1666a33e5fcdf63f96120240ffbb47bf899af3bea6e8cf3e354ca43e1ceded3fdedcfa3fa3383abf78141bbff904a53ed09e873ef37307403b20fa3f2e2129bf14322f3f3af59d3ed09e873ef37307403b20fa3f5cab74bf05fce3bd33708b3e351e8f3e30a7014062f6fb3f5cab74bf05fce3bd33708b3e0a88943e0a59f73f584b0040c7da3ebf9c8501bf581fde3e3365833e62b8fa3f5c39fa3f167250bf1f7602bfd85a8e3ec7d7a03ef34703400f6cf73f18e2c4be6f800b3c534e6cbfd09e873ef37307403b20fa3f18e2c4be6f800b3c534e6cbf8657a83e62d807401f73f93f0ee8d1bd085d713e496677bf8657a83e62d807401f73f93f7dbd47bf1ab4153f6549633ee1e0893e0dca0040b184ed3f12ea6bbf3d62633e0f15a33ec7d7a03ef34703400f6cf73fd0f460bf8d3b9b3dfa47f13e99bd803e3c210b40eef4fe3fc14658bf80a068bec804f83ea1d7da3e93aef23f6f450f406bc0c3be3f825fbfdeeb9a3e7cf8d13e3030f63f31f70d4096a83dbe7e09d7bee26f633fe02cca3e504df83fbff50c40d6927ebfb208c83d7b7022bd6dd2c63ec9f5ee3f70f70b40768db4bedbb36abfeade3fbe5737d33e872bf73f49450b40c53d13bd38861dbe0ec97cbf33b0dc3eb27ff63f23040d40c4d6503fbc5213bfe8546cbd98d7c73ed1eee53f42f2f53fb2dde7be8c7c61bfaf7f0d3e4e42a83e6a3fe73f38dbde3f3b360abfa18539bf083adb3e354ca43e1ceded3fdedcfa3f120e4cbf0a6015bfee3a1f3e396a633e16bff83f8aefe13f7d2a63bf869162be4b1bcf3e91eb843e42980640c307df3f22b04fbff7100e3f506b3c3e490f8f3e26a2fa3f59a3f33fc68c74bf387920be4867803e3365833e62b8fa3f5c39fa3f0d8348bf224205bf4d0caebe7064613ef68dde3f372fd03f92a016bfca53d5be1166313f969d183eaf85f03f42b9c93fbd2071bf46c1c83d7f7ba43e06802c3ec09302404b0dc03f53f548bfd3e91d3f85ac6abd6fed1d3efaabc73f82b2bc3f04e81abf7207c0bef6c7333fa9a5873d9d52d93f433fb23f642065bf380d0ebd1babe33effc4ad3dc325ec3f2d73a43f78f26abf3b43cb3e114c283c351e8f3e30a7014062f6fb3f546e1dbf3f8f60be1de841bf8657a83e62d807401f73f93f6432ffba2b1f24bfe47744bfd09e873ef37307403b20fa3f828a13bdb8c01bbf4ef54abf5ff0a73e6a3811409dc0fb3f05d50abfd3cc2dbf046bfdbee23ca33ec063ec3f3ace0a40a0cc1ebf9d9b1dbf57d3f83ef1dac23e8b41f83f7b8c0b40068d13be44b7e4bc433a7d3f1863bc3efc4dfb3fe7370a40b2d449bfa3f1bd3ef73dfb3e1881b53e0d1af83ffeec084018850bbfea485d3e51634f3fb13dc33ee0a7f43fc84608400bef163e61ba1dbf6b1346bfc9becf3e96bcf53f067e0a40cdda1a3f54a331bff201c83e80bc873ef68af13f7b8a0740121d4dbe7208b7bef084693fce017b3e7440f73fcbe00540432a38bff5362f3f6986f23dd47ea83ee1fefd3f9f7b0540843706bfbdb1583f553abe3ddb4bb93e290cf23f32170640b3968b3ee61d70bfdb675b3e1427923e2c8cef3f59a20540c668cd3e301264bf5c0a5abe1666a33e5fcdf63f961202402be94dbe35a0c3bc45b27abf7c02853e324cf13fb00103405d06f1bd05ef82bc22307ebfea20353eadc7e73fca450340e57453bf82f00ebff1119e3d8b60813e768df43f6feb0140a05793be9f8b81be9d756c3fe954a33e7eaefb3f6ce30240420c88bd9ebd3fbe7be57a3f242a973efc690140ce69014045260dbf6ee5c73eb7bd3c3f78e8673eb9c5fa3f89110040165e4fbf7978003f6e4e9b3e3365833e62b8fa3f5c39fa3f23ef0bbefdb02a3e7cfb79bf351e8f3e30a7014062f6fb3fc81e4dbf802d173fbd18c5bd0a88943e0a59f73f584b0040effb213fd3f233bf2952a6beec06fd3d1530e93f5351f73f37159cbe79574bbf158706bfd099153e19b909406300f73f960b31bfe39599bd9ee8373f99bd803e3c210b40eef4fe3fce3bab3d75b97e3f62775e3d0bc8153ebce10b405e53f33fc388813e0bd25a3f3706e8be9e92853e7cdd07403f0c0240261934bfecf92cbec6b8303f31953e3e0dbd0740fc5ff23f29f60c3f9d80e63ee6f333bfd09e873ef37307403b20fa3f525d073ffd860c3f67b925bfd9a83e3e5b7c05400341f53f6a7bf7be485157bfc998783e242a973efc690140ce690140cd032ebf301f24bf616ab63e31953e3e0dbd0740fc5ff23f130bfc3eb597efbe58e43bbfd09e873ef37307403b20fa3f7570053f4e46cebe349840bf7e1a87bc5940084089f3e03fefc643bf995dc4bed68a04bf0a17b13e816503400f0b0640c9c030bf288767bebfe82f3fe1a8a03ec114074079780440364903bf2492923e98314f3f4fef413ee2781140ba7ef33f659862bf74644fbc0229ee3ed18b933e329f1140551e004093efb3befd043c3feba0143f82d3653e8ac715402e5df23f4ab0a1bd6175673fc9fbd63e50b6743ed1400f40cde7ff3f85dd52bfe1eb7d3e968b023fd9d05d3e388e0c40f183ed3f256048be6d3b5dbfd957edbed09e873ef37307403b20fa3f00e61a3e28193bbf44622abf99bd803e3c210b40eef4fe3fcc7d69bf8d0eb0be5bb1643e2427c33eed3b0e40a7e9fb3fee8f293f1c5aa2be74c42dbf52cf913ed73113405adbeb3feceb533f2e530b3eb8530bbf5ff0a73e6a3811409dc0fb3f83520e3f0e09543f80698f3d8b0dc13dcca614404f74d13fe764393e248a39bf4f2f2abfca7f083ee80d1940e4abd23f141b523fd7a8183efc300dbf9392833d61521840332fd73f57ae6abf2b2387bd44bfc93ecd2ed83d01421a40e9a2d63f88c2663e4074723f3c0e6a3e589615bcbbba2040b030bb3f9912efbe6dfad63e3e3b47bff3b3093f3297e53f98691540e6314f3e31735d3f450eeb3edb02053f5b9ee73fad0614407450223e8ae4703f2b1a993e3f6b0f3f1d04e33f2537174092bfd63de1a2653f87d7db3e0272173fcdafe03fc8f21840b0c5303c1aee553f13940c3fa455fe3ee183f63f052508408bf1e83e0fd43d3ec6f95e3fbfb1da3e2101f13f881d0c40c2f3703efec3493f6c98113fc9becf3e96bcf53f067e0a4025d2a93e83ddae3e4820613f5737d33e872bf73f49450b40df03d13e4ff84fbf1131d53eb8c8fb3e7f5ce83f439e1240f73bed3d3ec46e3f57e5ae3ef104ee3e9bb7ea3f7d5010402bfc1a3efd6b5d3fca01f53edb73123f1588f13f86e81a40468e57bec4f14ebfd9bb0cbfeb521c3f46edeb3f53cd1c4000ac9ebebe5a27bf76bb30bf1bb6f13ecb46f33f46f211409c2d01bcbab46bbf03bfc7be2145ed3ec90bf53f27a110409ccb4d3c823a6fbf6628b6be27aa0e3f900ff23f89991940eb9621bdeb467cbf5c3f29be91ad083fcc8bf23fc38b17400ea30a3d5e907fbfaaa542bd6f75023f1a6bf23fa5ab1340ed92833df5017cbfb6b227be33b0dc3eb27ff63f23040d4098340f3ee79d73bfb4128cbef97b0f3f6a97ef3f4b4b0f40a79751bf8dd662bb9afd123fa455fe3ee183f63f052508406c775ebf6a1b0cbb2b55fd3e0e10053f7d155c3f1955d33eb90c623f6ffaf63db93ee8be0797103f481b6d3f8080273f5a637b3f90e3203e1cfdd63d8f93153f6d40363fadc0183f57717f3fbfed913ca409823df186023fdfc02f3f1317453fc1ea2b3f7c6e9abe00422d3f077fee3e6ed95d3f07bc583fa0d73c3f375497bc29c72c3f9544ac3eea4e5f3f7aa7643fe20f9a3e364abbbe1f76613fbbf1bb3e8dbf4d3f10e5523f9c029b3d02a8e6be55ba633f3a23a83ec014433f26751a3f35056fbfafedb6be344ac93cbbf1bb3e8dbf4d3f10e5523f44a661bfef83d2be71f66d3e9544ac3eea4e5f3f7aa7643f9c7444bff88417bf77727c3ee405c13e2b745c3f9cd8ad3ecfda4e3e4883c7bec20566bf7559cf3eeaee533f7e07bb3e4d7c0bbfc1ff79bdb31756bfc36bf43ee477803fc9f8be3ea0f8623f20a69b3ee179b2bef2ab053f3f07873fe0f2273f4e35683f5c21c73e0507253efe44d83ed604963f77450f3f454f4c3fb5e3173fde21d7bdf342d33e96b5953ffe77513fffa9593fe6a2ee3e247d7a3ea9b3cd3e459f833ffcbd673fe0ef4e3fe8def33de997133f49f5c13ee79f0b3e9766773f3c2169bffd85213e1f82c3bef420d93efcb7713e9b50663fd53370bf460bbd3b8d0cb1beac24f33e9ee4d83d9dc2593f5d304dbf41a8b8bd6f5417bf08581f3f1419963e7f496f3f60ef793fd8b1593ef12125bdcf6e243f61c15a3e672c803f3533683faf43a23e90f08d3e6d091a3f10a6ef3dec78593fac55263f9b4a0ebeec513fbf3dac093fc944b63ef79c803f1304853e33fe293f517c333f0902093f0e09cf3ed2b9693f32501e3e0fcc4e3f239e113f64a5e53e47cfbb3e4ad06a3fcad2d0beb403343f0b18153f9c2de13ee36c933ec2f4773ff258febe3298ca3ed5bd453fac24f33e9ee4d83d9dc2593f6e938b3c1e2095bea8dc74bffd4af83e56e0853eb4ad4d3f40ea0a3ee8ec17bff5184bbf684a173fcc288f3eaaf5503f6d703f3f158e19bff4b591befd4af83e56e0853eb4ad4d3f1da350bf47a7e1be83a1c0be61dcd53e539aa53e57f25a3f21f677bf96167dbe072edd3c30ad1c3ff828b33ed792583ff8bd5b3f164bd33ec70d9c3e9c2de13ee36c933ec2f4773fbc1d78bf7f4f263efe8d3d3e64a5e53e47cfbb3e4ad06a3f388e6cbfbb1e8a3eb0ae8a3e5ceada3e31ca563ef1d0803f55e96bbfa2e7bc3e2bf0f73d5ceada3e31ca563ef1d0803fdc08cebe91bee53e1b464c3f2bfe0c3f425f733e3fc2863fea0f0fbe72f4cf3ed02e673fb505083f96e0103fdbd8223f17c75d3f512f933eb023d13eb7340e3f179b0b3f90c1d03e0430143fc1eec43d114b4fbff851153f82a0103fcbdafe3e1ea17f3fa67b4d3d2d019fbcfe261b3f9eddee3ef9aff53e40dd7a3fb373013eb7c51dbee38c1a3f2f159c3e2c141e3f01014d3fc26f11bf643842be0406123fcba8b83e1fddee3e990fff3e8d333ebfd6dee4be457ac83e2f81e33e6e70ed3e2e6377bf0ac861be549c07be47c1e53ed3a9d63ef776bf3e4df308bfba6cb6be4f1d44bf7da8e93e59b9b13e3581e63e44f353bff32406bf3fae4cbedfc7223f4105d83e1c003b3fdd58763f64d7823e2ddebe3d30a5de3e04a1073f9042213f89277bbfd150943dc8e6373e6e75c93e9467083fb2b3f13e08c676bffc2a87be310907bdaaf3e13e21dc063f6619c13e6ef1c7bede59e8bc9b8f6bbf77540b3fe81ad93e0aaebb3e8e1dee3e9a2b86be417958bf7da8e93e59b9b13e3581e63e72d4023e7b9758bf137e04bf30a5de3e04a1073f9042213f8bd621be715bef3d73017b3f482cce3edc83273f6a3d423feb74aa3d3edc0fbf2dae523f700cb43e689e2d3f01d7023f33087bbfe29a39be450499bd206cc93e7038333f6bdcb53e54f3cabea38c9fbd7e2e6abff21cf53ec0528f3e816f1d3f7b433d3e3af373bf8f1b76bebe2f083ff3b8fc3eeaf34d3fc9b0873ef71b553f6423f93e4595c83ed2c5c63e3ed62b3f28367ebff12feabd7785ee3cf21cf53ec0528f3e816f1d3f18144bbf386619bfe217ddbddefee03e98cce83e7c214d3f254d6fbfb155923e3b0d583edefee03e98cce83e7c214d3f4ad5acbee5cc493f18b3033fdd3c0b3fd84f3a3f71e7d13e7226423f19ebd63d77ae24bf482cce3edc83273f6a3d423fe6df69bf7117b9be79be3e3efab1913e9598323ffd0819bff2205ebf8f1afdbed157563d9360be3ea8e4203fea04e0be55b156bf2a8ae1be4406a43ee568a23e33024c3f24cabcbe262b34bfeaffbdbee9141b3fdb77ba3eddae183f00fc2dbf999467bfb180babeada662be551fcf3efdbaf03e396c05bf4c4e67bf063dc5be2a29403e3c2ece3eb93a5e3fa00556bfeb2a7abec89cffbe8ed054bfd834ea3ed5c2283f93073abfcd56e0be058868be49a75ebf3763b33ea8163d3fa42e3ebf9a6ff3beb8f2dbbe3e8944bfc50fe23e21d99d3e576391bfee7568bfc3d6e7bd247ace3e38bac53eefcf233e859fa1bf47857bbf9dce84bc07ff3dbedd25e53e24e9243e1b2793bf582d60bf64b6a4bdb4c6f33e1e82f83ef5dd063e9868acbfd4154b3eabcfec3c44ce7abff19c123fa671a03e9a75a9bf3ca0193f4d17073ef8f949bf20c31a3fb7210f3e3639a7bf5b58353fc92c723dd10e34bf13b20f3fd1a2d63ee5a0a5bfd2f6183ff235f83ecd8223bf71c1df3e8c44d93e437daabf01d3483eb585b33e8d6e6abf71c1df3e8c44d93e437daabf9b5e61bf054ea03d6086efbe384fcd3e85c4b73ef9469cbf2ce17fbf5402f83c2ff3a03b1e82f83ef5dd063e9868acbf5d4b28bf97b08fbd961140bf75561d3f111a2d3ec5589bbf302b7b3f77313a3e06b6863dc0f5153f5fa9a93e36439dbf4cfa7d3f46c5003dbcb6f83d86e00e3ff161473ef29390bf675a2d3f2b1a933d67793b3f6bfa093f4cef9f3e64b08ebffa810f3fa339adbe5f7e413fdd25e53e24e9243e1b2793bf5cb22fbec61bf9bd23467a3fc50fe23e21d99d3e576391bf22693abe72e202bf0405573fa261c33e214f1a3f642d7fbf08da7ebf7ec3a33d16204f3d19f3e33ebb7d2a3f13e48fbf83f464bf8aa78c3e9cc5b4be8de8c73edf25f93e34108ebf00d57fbf0b3598bc29b1febc31d60f3fb761093f507498bf6fb41c3f36e2d93ecc9e2abf82790f3fcdd8293fbdd58fbf130ae73eb558ab3e00c853bfd75a213fd2311e3f93c683bf91bc7c3f9d2b083e791fb3bd9a33113f55d9ee3eec8375bfedcc253f73b342bf29c63b3d05d91b3f5dd9e63e72c991bfc29a7d3fec880abeda8393bc59e80e3fcaadbe3ef39985bf41debd3e487631bf09361e3f29fb103f1797393f7da387bf5c790a3fbc254d3f33c6823ea449e13e07163d3f687085bf867d6abf1a77c43ecf15f0bdfd24e03e5f78ce3e0a8385bfca4b35be35f327bfadd03b3f53ccec3e45e8f43e033b7abf1337ecbd6c407ebfee05903c521fe33e2e27093f4cd398bfb9306abfec3f833e9ecd9fbe521fe33e2e27093f4cd398bf25999f3d4d011d3fff3649bffd24e03e5f78ce3e0a8385bf4a7c69bfa9c482bee242a43e2de30f3fa206273f3d9367bf680c0e3f2a55493fb9e68a3ef299203f91880c3f037e69bf68517f3ff11c833d39380fbd57cfe63e60c52e3f99a368bf31a763bf87fac83e1666703edb3bcf3e2e3c113f17196abfe9527fbff9bd2e3de0c570bd53ccec3e45e8f43e033b7abf6b2569bfbb95c9becb77ff3d57cfe63e60c52e3f99a368bf2b6e533e062b6a3fded8b13ea449e13e07163d3f687085bf4e5f213e12c05e3f7c16ef3ef282133fc208cb3e8d6557bfa0e8163f47af46bf0b5465be6aaddd3e778ad03efda058bf5ed92dbcff5674bf55aa98be6aaddd3e778ad03efda058bf27aa6abfbd6bbcbedfa41fbe59d2c03ea524033f616438bf3d2a7cbf05fe19bee3d3acbdb4c2f43ea5a6e13e1962e2be4fac023fb4bf11bf6ffa243f24c80f3f4999bd3efc9b1fbf74a8f63ed2185ebf9dd7fc3d3a87173fe7a7fb3ebdfcffbedfe1553fe8ada7be81eee13e11ef223ffbc6f93ecb6732bfc3637f3f7c538dbd7bdd293aebf4eb3e87ddb63e0f251cbf25280d3e87fc7cbfede3873db4c2f43ea5a6e13e1962e2bed63d39bfd87bf9bec049fa3eebf4eb3e87ddb63e0f251cbf22585abf267f03bfc110bf3d29f11e3fce792a3f573708bf10757b3fceccd63dce361f3e3d65103f5409203fdf4441bfd42e353f29d7343f84c7153c439c123f00d4253f036b2bbf1632613f7c2c3c3e4b96e0be9053e83e9eb4253f67bf44bf93835b3e0a5b773f5566123ed834ea3ed5c2283f93073abfcfc70e3fc9dc30bc797754bf9053e83e9eb4253f67bf44bf5e0864bfd1dce73e889a1d3d19f3e33ebb7d2a3f13e48fbf4a32f93b8e61353ec9f17bbffee10c3ffd2c243ff093cdbe3dff3b3f064310be47fa293f82cade3e562a553fbce18fbe3311203f786f4ebd7a5e473f33dde73e6bfb1e3f534ba8be06d11c3fa31078be229c403f3d96033fd8406b3ff21cb0be60d9573f7be0f63d2d23063fd973113ffa93753fb0bd0bbf9b54753fa9ff913e3f3e8fbcd918ed3e9a3f8f3f98e052bfa344693f3bfe893e7b849fbe956d053f60716e3f814240bf8fac523f9fb584bc316111bf3c2ece3eb93a5e3fa00556bf4ad5213f31712bbe23ac41bf33dde73e6bfb1e3f534ba8bec6be2cbf6b67bcbe7dc5233f82cade3e562a553fbce18fbee84c04bf47578fbe061d4f3fa4d1e93e2bbb8c3f4c64aabe5a7d5d3f778fb73e097fb33ead17c23e2ebf763f5aae83bed158103fa3eee73d2f6d513fe921e53e45df973f35de12bfbe99613f887ef13ec7eef83cad17c23e2ebf763f5aae83beae55f9be4fd6b4beed7e4c3fd1f0013f10ba4c3f5cae92bf8daf193fb4771a3fd55f06bfd1f0013f10ba4c3f5cae92bfb2b55dbf7c95b03e6450b9be8b24353f73a5d03d5c8461bf672525bf9026f23e6aa2193fc5f8283fdf88ba3d46a477bfedd138bf03d8d63e09d90c3f877d383f24e1803d957560bf956650bf517d00be9d2a113fa5284d3fa4d17a3dc9e069bf544be03dc5ae7bbf26f9153e877d383f24e1803d957560bfe74e4fbabbbf7fbfaf55353d04782b3f8c9c7e3cc31375bf754ed13d59a478bfe8215c3e7818433fa9cf663c30d685bfdb16933d49537ebfe0d3b53dda93e43eb896473de3625bbf166663bce77e7abf30b9523e7a7d073fb9424e3d6abf5abf975c8c3c701a7fbfa3a2a73dc8f6f83efee6fc3ce16d3cbf0d1ac53c3ce17cbf04791dbe1ecada3e7db1b03c02b769bfae5d79bde6b375bf00558c3e99e7083f06b8943c62aa66bf645ac83cc74a7bbf9cde413e785d053fd85dc33d112d5bbf9e8b5c3f3f95d63e5ac1923e8ec2063f649fb53d93926cbfe6c9543fd92d033f5adf5c3ea769f93e867f333e7c1d6ebf67b89b3d63297e3fa623bd3d2b1bf83ee231013e53ad55bfb0fb0dbda1464d3fafb4183f7a7d073fb9424e3d6abf5abf64c1773fce7f2b3e1f75403e99e7083f06b8943c62aa66bfc5d71ebf110cc43e25342f3fc420e73e01e0bf3db19f5bbf074565bfa8c9bd3e6dec7b3e8e47e63e553cb23dcb936cbf5d3b6abfab95ce3ea632ba3bda93e43eb896473de3625bbf1f2176bf5537423e5eea4b3e1ecada3e7db1b03c02b769bf93e267bf5a66cb3e8bdc163eb02e2a3fbf7f903dda1558bfc2a5bb3dcedb7cbf5783013e3490143f0874863df63a52bfd8f8013e591a74bffbe98b3e7107253f5fc4233dfb8b3fbf42abe9bcbb5873bf134e9ebec10b163ff97df43d23ff54bf55ef3ebf4f58e43e7555fd3eaf3e203f6204193e5e9452bf5308313eaf8d493ffd80173f9037193f6ace4a3e2fee71bfb152e4bdb9467e3f2d05013d9dd20e3fa448d53d9cf666bf07cb59bf1b27d43e7587a53e3490143f0874863df63a52bf06945bbf52cc613ebdc7ed3e9e65293ff87df43d49a65abffc3a663f1097db3e5a5bae3d502f263f8bd2cf3d5c8c6ebfddfc643f1c4fd33e271430beb02e2a3fbf7f903dda1558bf41627c3fc1932a3ef9ad8ebc04782b3f8c9c7e3cc31375bfcca02d3f0e02b63ecaa4243f06f5503fe058bf3c1d3f47bf91cb0abef63475bf6fb381be1003403fe4da0d3e3e9b65bf0c3d483e3dd15c3f78e9ee3e9091323fb6f7363eb80182bf4349c83dd5c57e3f9484643a0012483fff29d03d635669bf6771573fc0b1023f85a234becaab3b3fe943a43d4fee85bfb147483f2a6dcd3ecdeaf3bea5284d3fa4d17a3dc9e069bfd8b15e3f442dd23e1efe8bbe7818433fa9cf663c30d685bfdd2c503f8cfab33ebc7eedbedc80073f397ad73d138a80bf0d594cbeb117753ff8c1553e79f8063f3c2f123caa8a8bbf5f9a4f3ba4ea7fbf8785cf3cdd25e53e24e9243e1b2793bf771932bf6a7f193fc588ca3e60a0cd3e078ba23d579595bf6fce5bbf3cf5ef3ef9a554bef831e33ee9ba073e900c8ebf4e4493be6d486e3fcb02673ea87e003ff27e803c4d00a7bfa05c453b6dde7fbf8e8402bd1c0e213f3c7c273bb8dba2bf10a736bd8dbb7fbfc75f233c15cfc83ea37e74395a669cbfff0e123d13ba7fbf9569f03ce6f2e33ee9e8bc3dd86080bf74733abf13ff1f3f92d98f3e1ce8cd3e80ec2d3ce90880bf5d3891bdc45f7ebf90f0b23d20c31a3fb7210f3e3639a7bfec3b0f3fb23016be9bd450bf1c0e213f3c7c273bb8dba2bf2a9a473f016a773d848c1fbfa87e003ff27e803c4d00a7bf101ddd3aad1d9abe752074bf15cfc83ea37e74395a669cbf57704dbf96adb7bd530217bf1e82f83ef5dd063e9868acbf8f5bc2beaf8e9cbe24875fbf1b332d3f46ff163ca2ff95bf6098b83c01c17fbf15001a3dded5113fa45e203ead608cbf3191963e109a713ffbc21a3ea781213fc8751b3e8d3690bf199d2b3f915f353fd0dd61be49cdfb3e81781b3e4b348abff7a9b6be15d1653f1c58843e2b19203f0d75e23d798784bf49e946be23276c3f31d2aa3e75561d3f111a2d3ec5589bbf1fb76a3fb6c6ab3e678e5dbe1b332d3f46ff163ca2ff95bf634b573ff3b7aa3e1d28dabe38bac53eefcf233e859fa1bf059978bfdc084fbc021f74be86e00e3ff161473ef29390bf6d1d143e693c663f193fd33e1ce8cd3e80ec2d3ce90880bfadd0b1be43ac0a3f62f6433f06f5503fe058bf3c1d3f47bf52f3983e4b07323ff34f273fc8f6f83efee6fc3ce16d3cbfca6c08bd5190203f7334473f7107253f5fc4233dfb8b3fbf61aa513e25bbfe3ef9ca573f5a42a03e994c7a3cbf658bbf313793bd96977ebfc3fd9b3dadb4ce3e95cba13d2e7f82bf4208003fe987083fb7a62e3f02c5bd3ead971d3e031485bfd06490bed031753f821564bd5a42a03e994c7a3cbf658bbfe06a45bf9056d63ef593f5bec80cac3ec34a9b3d857c89bfcf8246bfdc1d013feb81c2be533aa03e390ccb3d98a873bf3e9486beb1d8643f1de0b93e4c42b53e21a1213d744d6fbfe9b1213f1e28e33e78c2223f00458d3ea3ca2f3d5bed7cbf5d4c1dbec1077bbf8397f93d4c42b53e21a1213d744d6fbfbed4c8bde3f37dbf0fbea23d00458d3ea3ca2f3d5bed7cbf21804dbfe0be0d3f4ec262be0c65893ef6410c3dc0d55ebf987b98bef6b0513f4805fb3e0c65893ef6410c3dc0d55ebfc47fbc3bf14e7fbfd7fa95bd5629ea3e69ebd93d879cad3f59a85cbfd252fb3eb4f1013e93dede3e948bc03d02b69c3f40007bbf0fd7453e0047163d0717e73e64ce6f3d2beeac3f68607dbf1c0c8b3c8c2f113e66cf113f9eda043ebbccac3f12d264bfab8fc23e0ec2733ee7310a3f81b8013d0f80a23f37b095bdc2380a3fffa9563fe2cd0f3fdd2b7a3dfda0aa3f3f4472bf5035243d632aa43e8775323f8e77e23da41ca43f646a30bf681beb3e33820f3f766b263f3ecdc93c360f9e3f512b62be9ff3d63e9a5c613fab7d323face76c3db9f5a43fdd004fbfc254923dac80153f1457083fdb0bf13dbdec993f31213bbec97e723f83cf863e8876023fece9df3da3d8ad3fae4c5c3f5944f23efb1c413e69ad1a3f46922c3ebe44ad3fd01142bd134c783f7b89743e94d4163fa4f02c3e902e9c3fce7b0bbdbbcb7f3fe4dcaabc4749233f9eda043ec326ab3f524e6a3f2b05ce3eb70ba2bc0d4c1f3f1a6dfb3d21d1963fc5cf003fc459563f46fe5a3e5f54243f94108c3daad5b23f7837c93a81a26cbf1a58c3be758c213f41c0dfb8c412bd3ff16bddbd4b703fbf98b127bf689d163fb62b7b3de1ffb43fc84ef83c970979bfbe276bbee2cd0f3fdd2b7a3dfda0aa3fd30fd13d7fa272bf0dae9a3e742f243fdfc5883dcb55a83f06e9013e1f6c79bfe1903e3e742f243fdfc5883dcb55a83f39987c3ffc451d3ee4395abd0717e73e64ce6f3d2beeac3f1e206dbc669a7fbfef245c3dbea9043f0a54753dc604ad3ffb25ab3ce32e7fbfcbc69dbd6369f33e3162653c5587bd3ff1b7b73cfab871bf8534a8be8846f83e2b2a163efdbd9c3f7b4058becaf3793f564e3b3d33e3f63e3c140c3ef90dae3f31ed7fbdc786783f1a246d3eab7d323face76c3db9f5a43fa0553bbcbdd07fbfd24f143d1a98403fc753673d5260a23f98a9d93d08277bbfaacd253e629f423fad99ec3c9584b13fd1a8d5bd1c5678bff58f60be70e5393f507e0c3eb789a33fec5c713e8187673fff16b63e649a2f3fec9d083e59cb953f0b0a983e2c71743fe95c10bcc20b3f3f6267d73d01b3a13ff94c683fefbac83e56e11abe9bd5363f626db33d98bc923f08f76a3f3121a23ec92475be1a98403fc753673d5260a23f0177783f229a013eeed051be20b4993ed3523b3d7005a13f70849abc8cac7fbfffa63f3d0aad9b3e88ed253dd4f2923f388b9ebddd3a7fbf60ee76bbdfc0c33e2591263df269973f409af5bca4397fbfade7923d09732e3f344ddd3dd398813f890a6f3f24e3463e45ec99be6d091a3f10a6ef3dec78593f5d6c403f102802be8fae25bfcf6e243f61c15a3e672c803f5010643f242de83e272fdabcd3f8e73ed674e33cfe3b893f678afbbd58087ebf213f763c063cc43ef174353d3e2c7c3fce6c4dbe8cb67abff91bcebc2068ea3e37ffa53ca640903f7cb3cabbc8bf7fbfda81333de7310a3f81b8013d0f80a23f62b133bce2407dbfa02c153e43e6e23eb0020d3d7d8aa03fef145fbde3087cbf80a62a3e8cd1393f9ec7843cdfc6923fb10bd73d3d347abfa2193c3e766b263f3ecdc93c360f9e3f2c53a73c73b57bbfcf87393e3830313f93faff3b01a3853f8f5ea0bddaff7ebfcd63273dc82b113fb28aaa3ccd22893f7b3520bddd9b7fbf3de41f3dbea9043f0a54753dc604ad3fc09c763fbdf6793dcec7853e8cd1393f9ec7843cdfc6923f441a723ff9ce1c3ebac592be43e6e23eb0020d3d7d8aa03f8fb17dbf790409beddb9bdbbdfc0c33e2591263df269973f44b23a3fa394a53e845b1a3fc346dc3e37f6ed3dcb218b3f5dfc333e95591c3fb8a6453f9d24b63ea474e23d42a2933f119440be3ce66c3f2c7ca83e49f5c13ee79f0b3e9766773f50e26dbfde47803de070babe063cc43ef174353d3e2c7c3f219758bf6f81fdbdfbbd04bf81d0ba3e869bea3d607f863fec7366bfc19bd33e50740cbed56e253f28261e3ec4a0883fe5cf0f3f8be2443f06159c3e3bc6243f96e2893c7bb66f3faa63043f1d2fd5be436f3fbfac24f33e9ee4d83d9dc2593f783e94beb5ae05bf0a5b4dbf59f0ee3e7c67573c099d6a3fd413a6bddfaf7ebfcea5773d3bc6243f96e2893c7bb66f3f393dfabc8ddc7fbf87a9473c59f0ee3e7c67573c099d6a3fbc1a56be20b90dbfcf5c4ebf3830313f93faff3b01a3853f3c63723f52cf183d2a9fa3be0aad9b3e88ed253dd4f2923f3b3162bf1133cd3e431378be2bfe0c3f425f733e3fc2863f61edac3c9e882a3f7fda3e3f5ceada3e31ca563ef1d0803f1ddd02bf1627253f3861113f3f4eff3ed2900f3e8f718d3fbf9ea2be4dc04e3ff863fe3e0127cd3e4d9e143e83f7883fc54789be87b15a3fcf03e43e1538123f35cf203e0abf8e3f54f5093d8d87673fb0c4d93e2068ea3e37ffa53ca640903f9c197abf7d5255be528a3ebdc10fe03ed54cd53d8441933fb44a6fbfd37fb53eaf41ca3cd3f8e73ed674e33cfe3b893fc33e11bea4db43bedfa2783f758c213f41c0dfb8c412bd3fdbe96b3e4cce393e90be743f1264193f4e16d83dd1ddb73f81fd54bf9d93723e436d003f689d163fb62b7b3de1ffb43fcfa566bf0dba993a2626de3e28b11f3fecb7f63dfae1b83f7f96473f61d5e63e1a87de3e5f54243f94108c3daad5b23ff8257b3fde39083e6642103e6369f33e3162653c5587bd3f0a87153d2ba89c3e128b733fa12c003f2f36ab3d2049b43f36ed663f66a1383e3cc8c83e9f66ec3e209fa33dcaa3b43f876472bf18e6343e07a5893e836ef53e7192ca3dbd29b63f16df38bdec2d403fb4ba283f629f423fad99ec3c9584b13ff836933e97e81f3f69de393f99b9a73e11b1d33d117b9a3f89034abee56e603f66a2e03e20b4993ed3523b3d7005a13f47ba93be9c53353f38ed243ff06b443f9f3c3c3f098c413f6f82433fc6a64d3f2e203c3f68e7483fe2e3333f3200483f48164c3f1c45563fd4b6453fa0c35c3f3013393f4f94543f3943313fa46d603f88966e3f056a593fce3b693f9f554e3fa639713f1e37503f3af4783fd78a363f266d703fd520443f8f4c6c3fde003b3ffbe27b3f2cd43e3f847d683fedb62f3f7aff633fbfd5523f8259653f664b4e3fe202603f711c243f344e4f3f93c9193fd201513f7c611a3fd4825f3ff50f2a3f22ad7c3fcefc1a3fddc96e3f7c451b3f90237b3fa1a11b3f8a8f433f5f7f263f5ff05d3f17d64d3f0b42553ffe0e593fd045573ff25e313f6d38483fdaa9393f2b6d4d3fddec2f3fa9a04e3f2b89303f1c0b5a3fd3d9253f7c7a443f26a9283fa41c703f473a5f3f65aa583fe9d6633fc32d473f24ee0d3fce6f603f34b90c3f55c96e3fd13b0d3fa44a7a3f963df93e40937b3fc749f93e5b9a723f7dd0bb3eecfb5c3fa015983e501d633f04e3b83eadfa6c3fe8bf973e16a75a3f02f5963e51164e3f32ae983eb8fb6f3fc558b63ecdb1753f315cd53ea8c37a3f884cd93e54dc733f52d34e3ef4126e3f9c6b483ecb12653fe6e63b3e33c2573f7f6a083fcb506c3f9144133fe9d6473f3a24113fbad8503fd509e83ec91b6f3f1421dd3e5a5d6a3f87509d3e8e773b3f143dc83eeee7383ff1b9c33e7669333f9cfc323f66dc1c3fec4b163f889f1b3fc2171a3f1e8e263f67982e3f36e80f3f7e71353fa4aa253fc422f63e8448263f3d5ffb3e14e62d3f9d681b3f39ee2c3f58cbfd3ef032333f6761673fda3a3c3fd591673f26c75d3f38d76c3f5c94513f93526c3f5298473f3a02403f34da363f03403d3f1a6e343f87c5303f54893a3f7fc2253f29b0383f0135253ffe463f3f8c30453f6efb2a3f93ac4f3fabb0293f88494c3f6a19213f3831143f17813d3f8c69363fe23e2a3f04e3243fa4c32f3fa2b8133f1059343f78f1be3e39462e3f18ea043fce54403f6517ec3eb3cf433fbc78073f6f7f4e3ff697f53e0308533f6ec3083f1497573fa9deda3ece19593f630bc93ee049473faed4933ed8b7433f0456c63ed4613d3f29d0033fba2f373fc6a7303e14e74c3f92b2e53e58183a3fef37f23e7d06203ff78e123f3e0b123fa0c12a3fe15e053f1268403fd1ae223f92ce483fac8d193fb1c1423fa113123fd2aa723f0b7f4a3fdac6773f6936433fc1a96f3f64903f3f92cf3b3fd2c8133f99465b3f2c7c253f10ca633f7d232e3fa69c6b3f1d1f313fb35c563f6d551e3f30f2523f4c88193ff391743f4ddb333f39097d3fdecc383fbbd24a3fe6550d3f31244f3f32b2143fbd36933e6cca093fb79ba83ed6a6113f34d7a93e9419073f0f44663e3463f93ea67e3e3ebe0f033fd4b6713e0403083ffe9e903ee2c6fd3e2f32913e465df33e85cf863ea471f03e38db2c3e240bf03ed542693e9869eb3e5d6c2a3e5ad1de3eef58c43e9641053fe272c43e3480ff3ee2e8b23eae43fd3ed6c7333e7cf4c63ede5a463e5c6fd33e10251a3e2cbec93e6abca43e724fff3e4b21983e6839f83ec763a63e4a41f73ec9759b3e809cf03e5f079e3e76dde33e7e72ac3e0efbf53e96cb863e8c16e83ec214753ec862e33ea1f48d3ed204da3eafd1923e5661eb3e9c15893e6ec4833ed104923e346e6a3ed1eb6f3e68e6493eb917583ee8167a3e9d85853e242f8b3e412ea13e70b99a3e87a7a73e1ef8a83e3eafb83ea8ccad3e4b74c63e5001b03e2cd4ba3eba9e983e3411b63e70e6b73e5394cb3efeecc73e1288b73e3626cc3e1f11433e7c808e3ebcb2cb3dc4486f3e399bce3d94da3b3eb4e9903e78bbae3ecbbe7b3e92b1a23ebc23733eace8a73e13f08b3ea612c63ecb11723e9410c43e3b36823ee487ca3e3352af3e564dd83e78f1ae3e7aa7ca3e096ec43e8043e03e001ccb3ef62bdd3e7e704e3eacc29e3e8e945d3ea892993ebc23733eace8a73ef67f5e3e7c0da13ec8d15c3eda37a73e0bcf6b3e6e4e9d3eb2d8763e145b993e546e223ebc96b83ef06e453e467ab93e7c9b2e3e868daa3e01dfb53e08ced13e8e59de3eb4cbd73e3c33d93e846bbe3e2177613ea0830e3e0a2b353e5083a93dc1fd403e04093a3e864fbf3d00788c3e15c9f73d3cf39a3e9cfc863ed09b0a3e8e945d3ea892993e7e704e3eacc29e3ec8d15c3eda37a73e0bcf6b3e6e4e9d3ebf2be23d88a5b13e6ebfcc3e6e8db83ecefe303ec874c03eda03953e90bfa43ec808e03e0adda53e18cf403e3e56c03e96214e3e8ecac53eec308e3e42efcd3e63f0a03e7237c83ec672263c84cb0a3e6782fc3c90f35e3ec841b13e88d49c3e0343a63e0053663eebc8813e844dcd3e815d853e9c34dd3eb438733e8c7fd73ec3b7703e0244c93e7139ae3e1270d03e4031a23edc2fcf3e8b878f3e0284cf3ee36c3a3e8eccc33eb4214f3e30f9c73eec18d73e4a99e43e7c2acf3ef472e83eddcd133e5edac03ed0b9fb3d9bca023f616ce13db80aea3e44c3023e8079d03e1ee59b3d185ee93d8bfb0f3ec047763d76738c3d0cab283e6782fc3c90f35e3ec672263c84cb0a3e21fa8f3dd0fb0f3e76fb8c3d882da53efa3bb53db29db73ec9ac7e3decbaef3e0bdf813d05c2023fe2caa93d7e34c43e0f14533df41adb3e4976963d00aef23b7a01913c8010e93d6aa86c3d82e5903ee6321f3d4ef2a33e37e9713db4ccc23e7484c23cbe18ba3e6fa0c03cfcfb9c3e6aa86c3d82e5903e8ca30d3d7c628d3e65ff943eb2151c3ffd83783e4e45223f145f8d3ebbee213fe73a0d3d9641853e656e5e3ed0d5ce3e96214e3e8ecac53e18cf403e3e56c03eed9a403eca3acc3ee36c3a3e8eccc33eb4214f3e30f9c73e5916843ee469393f9cfb4b3e6dff3a3f541f803ef02e3f3f890c4b3e2d96323f00e2863e3198333f20634e3e16db243f7c62953e581b0f3f3545603e62100c3fc0595a3eeecf153f7d05813e6422293ffa7b893e07d12a3f6ac0103edee43b3f7d5c0b3e105b323f8334033eb615233f6538fe3d1e54163fbabffa3d79590b3fc3d2953d0e84403fd894503d3693373fbf29ec3ca81f283f0fe6c03cfa450d3f91f3be3c32e9173fe6321f3d4ef2a33efd1c553c98009c3d7a01913c8010e93d27b32b3d4080b73c4976963d00aef23b21fa8f3dd0fb0f3e5915993ef08d5a3d6abd873e00f45f3c08e4823e80eaad3c3b377d3ec04bf03cb43a793e00a3bd3cb073833e4009093c6283953e406fb13de3fd903ed85bca3d0cc85e3ee0f0343dd2365e3e90e7333dcd77803ee890943dbc7a353ed0c0483dfd4f6e3e681ab43d2e72973e4439113ee09dcc3e40958c3ca4e1e43eb0760d3d8acade3ef0d72b3df069c63ee0c2e53c164bd93e00c49d3d696fe03e10cd9c3dce51df3ea0055a3d0877a73e805c143d51ddcc3e3a41173f69c8c83ef0c2223f3be1d53eb8ea163f52d7ba3e01a3233f494ce03e6b0e183fae83d33e0a4a253f5113bd3ef3ab153f548ca33e5459203f5ed5b13e5016123fee42a33e00571a3fdfe2d93ebce7003f11a7a33e72aa293ffd4eb33e60c6283fc174163fc26bff3ebf28193fbe2aef3efe26103f4ad6f93ef5301c3fc2a0f43e302a1d3f083c043fff3e273fbc5c003fe259223f4049f93e42761e3fe6aaf13eb798133f6c0bff3e3672193f4857f13e817a0b3f3e060f3f546f053f5e120b3f2993063f7d5c0b3fc2fa033f4373093f40a3ec3e9949183f29ec6e3f384f613f677c7b3f669e643fef916d3f5b44643f577b703f30835d3f42787c3f7478543f8e3d733fd07a543f9fc8733fbaca793f9276673fa573743f02617b3fc42e7a3fefe2653f3353783f622d663f1234773f40fa6a3f6045673fde747b3f81fe6c3f5934693fe2ea6b3ffa286f3f300e5a3f70ea7b3fd1225b3f03ce723fcb2d553f2fe1683f1fb76a3fcfc0683fd9466d3f04747b3fc0c56b3f7a376e3f9c8a5c3ffab66c3fd462603f317d7b3f7991613f34836c3f59f5663ffcfc7b3ff914543f8d45673fd3ec733f51667b3f7ea27b3fee26283fc8cd883e4a08223fc8ed273e4d2e2a3f0c69343eae2d283f5a28893e5e2e2a3fa4ee333e7fa01c3f9aed823eb4e5243ff889c33d34d7a93e9419073f0f44663e3463f93efe9e903ee2c6fd3e85cf863ea471f03e2f32913e465df33e38db2c3e240bf03e5d6c2a3e5ad1de3ed542693e9869eb3ee2e8b23eae43fd3ed6c7333e7cf4c63ede5a463e5c6fd33e10251a3e2cbec93e6abca43e724fff3e4b21983e6839f83ec763a63e4a41f73ec9759b3e809cf03e5f079e3e76dde33e7e72ac3e0efbf53ec214753ec862e33e96cb863e8c16e83ea1f48d3ed204da3eafd1923e5661eb3e9c15893e6ec4833ed1eb6f3e68e6493eb917583ee8167a3e9d85853e242f8b3e412ea13e70b99a3e87a7a73e1ef8a83e3eafb83ea8ccad3e3411b63e70e6b73e5394cb3efeecc73e1288b73e3626cc3e1f11433e7c808e3ebcb2cb3dc4486f3e399bce3d94da3b3eb4e9903e78bbae3ebc23733eace8a73ecbbe7b3e92b1a23e13f08b3ea612c63e3b36823ee487ca3ecb11723e9410c43e3352af3e564dd83e78f1ae3e7aa7ca3e096ec43e8043e03e001ccb3ef62bdd3e7e704e3eacc29e3e8e945d3ea892993ebc23733eace8a73ec8d15c3eda37a73ef67f5e3e7c0da13e0bcf6b3e6e4e9d3eb2d8763e145b993e546e223ebc96b83e7c9b2e3e868daa3ef06e453e467ab93e01dfb53e08ced13ec1fd403e04093a3e15c9f73d3cf39a3e864fbf3d00788c3e8e945d3ea892993e7e704e3eacc29e3ec8d15c3eda37a73e0bcf6b3e6e4e9d3ebf2be23d88a5b13e6ebfcc3e6e8db83ecefe303ec874c03eda03953e90bfa43e96214e3e8ecac53e18cf403e3e56c03eec308e3e42efcd3e63f0a03e7237c83ec672263c84cb0a3e6782fc3c90f35e3e815d853e9c34dd3eebc8813e844dcd3eb438733e8c7fd73ec3b7703e0244c93e7139ae3e1270d03e4031a23edc2fcf3e8b878f3e0284cf3ee36c3a3e8eccc33eb4214f3e30f9c73eddcd133e5edac03e616ce13db80aea3e44c3023e8079d03e1ee59b3d185ee93d76738c3d0cab283ec672263c84cb0a3e6782fc3c90f35e3e21fa8f3dd0fb0f3e76fb8c3d882da53efa3bb53db29db73ec9ac7e3decbaef3e0f14533df41adb3ee2caa93d7e34c43e7a01913c8010e93de6321f3d4ef2a33e6aa86c3d82e5903e37e9713db4ccc23e7484c23cbe18ba3e6fa0c03cfcfb9c3e8ca30d3d7c628d3e6aa86c3d82e5903e65ff943eb2151c3f145f8d3ebbee213ffd83783e4e45223fe73a0d3d9641853e656e5e3ed0d5ce3e96214e3e8ecac53eed9a403eca3acc3e18cf403e3e56c03ee36c3a3e8eccc33eb4214f3e30f9c73e5916843ee469393f890c4b3e2d96323f00e2863e3198333f20634e3e16db243fc0595a3eeecf153f7d05813e6422293ffa7b893e07d12a3f7d5c0b3e105b323f8334033eb615233f6538fe3d1e54163fd894503d3693373fbf29ec3ca81f283f91f3be3c32e9173fe6321f3d4ef2a33efd1c553c98009c3d7a01913c8010e93d21fa8f3dd0fb0f3e5915993ef08d5a3d08e4823e80eaad3c6abd873e00f45f3cb43a793e00a3bd3c3b377d3ec04bf03cb073833e4009093c6283953e406fb13de3fd903ed85bca3d0cc85e3ee0f0343dd2365e3e90e7333dcd77803ee890943dbc7a353ed0c0483dfd4f6e3e681ab43d2e72973e4439113ee09dcc3e40958c3c8acade3ef0d72b3da4e1e43eb0760d3df069c63ee0c2e53c164bd93e00c49d3d696fe03e10cd9c3dce51df3ea0055a3d0877a73e805c143d51ddcc3e3a41173f3be1d53eb8ea163f69c8c83ef0c2223f52d7ba3e01a3233f494ce03e6b0e183fae83d33e0a4a253f5113bd3ef3ab153f548ca33e5459203f5ed5b13e5016123fee42a33e00571a3fdfe2d93ebce7003f11a7a33e72aa293ffd4eb33e60c6283fc174163fc26bff3efe26103f4ad6f93ebf28193fbe2aef3ef5301c3fc2a0f43e302a1d3f083c043fe259223f4049f93eff3e273fbc5c003f42761e3fe6aaf13eb798133f6c0bff3e3672193f4857f13e817a0b3f3e060f3f546f053f5e120b3f2993063f7d5c0b3fc2fa033f4373093f40a3ec3e9949183f29ec6e3f384f613fef916d3f5b44643f577b703f30835d3f8e3d733fd07a543f9fc8733fbaca793f9276673fa573743fefe2653f3353783f622d663f1234773f40fa6a3f6045673f5934693fe2ea6b3ffa286f3f300e5a3f03ce723fcb2d553f2fe1683f1fb76a3fcfc0683fd9466d3f7a376e3f9c8a5c3ffab66c3fd462603f34836c3f59f5663f8d45673fd3ec733f4a08223fc8ed273e7fa01c3f9aed823e4d870e3fd01b3e3ead4efe3e50261e3e9f770b3fc8cde93d1e4ef03eb0c7e43daea0013fe823903d6074f13ef061763d6078fd3ea0d2083ddbbe173face89f3ee63f243f5492b53e98a41e3fa6bac03ea969173f207e5e3ede75123f6cc85f3e1937193f7c96373ed2df133f78fdc93d87891e3fa8f3e13d726b163f50a52d3dc5730a3fb05d133d7a17ef3efce1033f889de13e0420f63e58a9f83e92b2f53e3771b23ee010ea3d3c30a03e00fa1d3e50e2a33e2023d93ddc62b63ed81bb53d64ebc13ea8ae9c3d8c65c23e001cdb3d6b63b43ee0d8933dd103af3e88523b3eedb8a13e6c563d3e49f3b73ea0a6163e7bf6f43e8c9ee33e7712013f3e43e83ebc5dbf3e3c32063ebfd5023ff6e8fd3e82ad063f72deef3e9e09fd3e64cd043f8fdfa33e2089b73de7c7a73ee028923d53aee83e54fb243e9608f43e9426653e363ce53e241f5b3e5512f13e5c7c4a3efe80c73e8451493e1422d83ef8666b3e39b3f53ed0949d3e1c45e63e5ad2a13e5d6be73ea6d18c3eb7f1cf3e90c71c3ef699073fe00eb43ed4b6013fa208993e1971f93eb67f853ef99de63e14ce7e3e1ceed33e78eb7c3ee76edf3e20fee13dadc0e83e806cb23d59f90d3f2ee0953eb64a083fb8f9763e3d60be3e603e593e81ced43e342a003e7e18e93e9e59c23ee678fd3e1aa0c43e2daf083f4a3ed63ee5b6cd3e582aaf3d17f1053f94ad4e3ed461153fecbabf3ea704443f1458103ea5bd353fe8e8b13de526363f0c43143e17f3373f48104e3e8048473fa861383ee562543fa00aff3dab264c3fbc210d3e6fba4d3f28052d3e4032613f5245a13e65195e3f54aeb83e287c663ff0f8be3e3ee8753f12f6213fcde86f3f9e28213faad2723faa0b143fadda713fe0490b3fc766773f40db0a3f200d733f740a9a3e7cf2683ff8169e3e94f96b3f42e5c73e2a8d683f5f261e3fb2bc6b3fb075113fcf69623f6a171b3fd3c1623ff294113fa5f85c3f1dae1d3f26c35d3f06d6113f51155f3f54d1583eaf40643fa06a843eeb576a3f2c2d533e2f6e6b3faab9003fd00e603f9ca1f03ed7da673f84b3eb3ed95b663fd2e4063fa5be583fb077033f5a105e3f1ff50b3faab6633f4664e03ecb4b663f04f7333e1ae05a3f8f360e3f4144563ff19c093fdee46b3f266a813ed784703ff856fc3e06f25c3f16a08d3e75e6563f321fe83e0a2e563fa2b7f83e09c55a3fecac363ea5f5573f5ccd5a3e1b2a5a3f50087d3e0adc563f0c7adf3e56d3613f0edcd93e56d64e3f9295073f8eb24e3f86cb0a3fbf654e3f8254823e88f4473f98b0563eff5e2e3f18b3013f20d4353ffacef73e43c83d3f2504073f08e6443faa2dfd3e6dff3a3f0d8d0b3f703e313f44914e3efe653b3f0c7b7a3e6c7c3a3f3aeedc3ed5ce443fc026e33ee4124b3f68d0e83e5f7f4e3fd4d1d93ebad8503f6c26df3e7bdb503fdccc383efc1d6e3f40bae83eab26303f58a8dd3e662d293f12f4df3e774c293f6860bc3e0d382f3fac39b03e3b393f3f0abdae3ebd8c563f60249c3e8997573fe6e8b93e629d4e3f1825b83e99d72d3fecc30a3ed637303f78e4883dd89f303f7253933e151d293fecfda63ea034443ff2608b3e211d323f60d5cb3cf6446b3f0aa2d63e74b76f3f1c622c3e93535b3f94ac033e23665a3fe0abfd3d9ca5603fa814f43d4a9b4a3f8072d43d9c6f483fd0fcaa3d508d4b3f7052b83dafb3453f5018cd3d04004b3f70783a3db2824f3ff0724a3d57784b3f60c5703dc9e8483f509e323d63d4493f3058783dfa475b3f48f9a23df3c85f3f401d963df6255f3fb078aa3d94505a3fd0468e3dc6c05a3f48e2ac3d2fc25c3f0090b33d43e55b3f30a47c3d31b75f3f10f2813d8fc45b3f1044643defae5f3ff05c5f3d3fe54c3fd0c8873d25774c3f688ba43d8acd4f3fc0dd993d6e69593ff0c9c33dabd15f3f3805d23d1093583f3037d83de3a75d3f90a3b93d52d5583fd036be3d7d1f5a3f4843ed3d57af5e3fc0e8eb3d8d275a3f78cef63dcbbc5d3f68ecf23d12844f3f989cd33d0726633f1898053e5fee5b3f64710f3e5d895c3fb842183e11a6643f7009103e508c5c3f64961d3e6764643f14ae173e84bb633f7873b13de606433f80af813dde026d3f189e973dfc6e6a3fe85f8b3d21216e3f602b683dda3b3b3fd86e823d16fa3c3f08ecaa3d75b13d3f20a3353d2848643f10e5843d3bab453f8071293dd8b8723f0853d43da5f57b3f68e6a93df912763f7449053ed21c753f287eac3da186773fa0292d3d4fca403f5049b63d9cc0683f1814cd3dde056a3fa87cef3dea59683f10bfa23dabd0643f985fe63decda6e3ff084de3d57cd6b3fe4540b3e4b94713fc051923d6fb96a3f9032c93d4642633f20d3613d849f543f28ea1c3ebea1543f5876883d6b29543f700bdd3d1215423f408bec3c448a653f6028603d88f1663f00ea3f3d0e2e693f60fd1f3d28ba6a3fa0dbf63c1a51623f40e3ed3c0709613f6013203dfd86453f809faa3c86ca473f1038043d2aac643f2069a93c2bf85d3f80e4723cf6b2493f80c58c3cb5726a3d76c5543ffc0e4f3df437553ffd81773d64b25c3f0f41ba3d8d45533f3a08aa3defc6523f5b6bae3db62c573fd9ec083e890a553f3143033e8c2d543fcd56fe3dbe88563f2c45973d97c6533fd70cba3d26545c3f95b9d93d28615a3f7cb6ce3dc07c523ffa9ae53d3be0523f761bf43dfc3a5c3f143d043f46255d3f4aed013ffc335b3f4dbf043ff2085a3f392a033fd00a603f4546ff3e4d695d3f8c81f53d2f4f533f0d51f53eef015a3f21e6fa3e4302563fd7a4fb3e93a85b3f2dd1993df4db5b3f42c7833d0629543fff76053fd460623fcdb0093fc479603f74ce073f9279643f7bf90d3e6ea15b3f1b13123eccd0543f4e42193ee84d553ff357183e98875c3fd95d203eb262543f79ade43e8c85593fe882ea3e4b3e5e3fde3be23e16855d3f7e1d183e0ef7653fd1790d3eb806663f936e0b3ef08c6f3fa75bee3e5ef2633f2a8ce53ed849653ff434f03ed61e623f9412f23eac3c5d3fc495fb3eb41d5f3f7100053fed22683fb919023f38ef6a3f438d023f221c633fc218f93ea7d4663fae4aa23dee94523f4caa263e18215c3f40eb4b3da8ab5b3fece7433d9c6c5f3f6bc8293d0c5c623f29648d3df4a4643f7563803d59666c3f6369563d4acd673f7ad2583de800713f4fae093ef92d623f3222d13dea6b733f8d26273eb8f6723f33e0fc3e368a6d3fbdaaeb3efdcf693f20b6d43d463a7a3f103d293e69e3643f2d87cc3c04e4633ff0a6db3d9e99643f26ee973d6e4d693f4b2bb43d8979623fcf0b7c3d501a663fbaa0de3d3ab0603f353b5c3d4d9e5e3fb76e743dbd19613f0a4e883d37e3603fc2a6ce3da8574a3f4438b13d492b4e3f27adbe3d9a994d3f29eacc3d98f74c3f58c9e73d42ee4e3ffbdc5a3de6594d3fe664883d520f513fbf315f3d008e513fd900713da394503fcf2d143e2eff4d3f0132f43c5b7b5f3f78ed923ccd025d3ff06b443f9f3c3c3fc6a64d3f2e203c3f098c413f6f82433f68e7483fe2e3333f1c45563fd4b6453f3200483f48164c3fa0c35c3f3013393f4f94543f3943313f9f554e3fa639713f056a593fce3b693fd78a363f266d703fd520443f8f4c6c3f2cd43e3f847d683fedb62f3f7aff633fbfd5523f8259653f664b4e3fe202603f711c243f344e4f3f7c611a3fd4825f3f93c9193fd201513fcefc1a3fddc96e3fa1a11b3f8a8f433f5f7f263f5ff05d3ffe0e593fd045573f17d64d3f0b42553ff25e313f6d38483fdaa9393f2b6d4d3fddec2f3fa9a04e3f2b89303f1c0b5a3fd3d9253f7c7a443f26a9283fa41c703f473a5f3f65aa583fe9d6633fc32d473f34b90c3f55c96e3f24ee0d3fce6f603fc749f93e5b9a723f7dd0bb3eecfb5c3f04e3b83eadfa6c3fa015983e501d633fe8bf973e16a75a3f02f5963e51164e3f884cd93e54dc733f9c6b483ecb12653fe6e63b3e33c2573f7f6a083fcb506c3f9144133fe9d6473f3a24113fbad8503fd509e83ec91b6f3f1421dd3e5a5d6a3f87509d3e8e773b3ff1b9c33e7669333f9cfc323f66dc1c3fc2171a3f1e8e263fec4b163f889f1b3f67982e3f36e80f3fc422f63e8448263f3d5ffb3e14e62d3f6761673fda3a3c3f93526c3f5298473f3a02403f34da363f03403d3f1a6e343f87c5303f54893a3f0135253ffe463f3f7fc2253f29b0383f8c30453f6efb2a3f88494c3f6a19213f93ac4f3fabb0293f3831143f17813d3f18ea043fce54403fbc78073f6f7f4e3f6517ec3eb3cf433ff697f53e0308533f6ec3083f1497573fa9deda3ece19593f630bc93ee049473f92ce483fac8d193fb1c1423fa113123fd2aa723f0b7f4a3fdac6773f6936433fc1a96f3f64903f3f92cf3b3fd2c8133f99465b3f2c7c253f10ca633f7d232e3fa69c6b3f1d1f313fb35c563f6d551e3f30f2523f4c88193ff391743f4ddb333f39097d3fdecc383fbbd24a3fe6550d3f31244f3f32b2143fbd36933e6cca093f34d7a93e9419073fb79ba83ed6a6113f0f44663e3463f93ed4b6713e0403083fa67e3e3ebe0f033ffe9e903ee2c6fd3e85cf863ea471f03e2f32913e465df33e38db2c3e240bf03e5d6c2a3e5ad1de3ed542693e9869eb3eef58c43e9641053fe2e8b23eae43fd3ee272c43e3480ff3ed6c7333e7cf4c63ede5a463e5c6fd33e10251a3e2cbec93e6abca43e724fff3e4b21983e6839f83ec763a63e4a41f73ec9759b3e809cf03e5f079e3e76dde33e7e72ac3e0efbf53ec214753ec862e33e96cb863e8c16e83ea1f48d3ed204da3eafd1923e5661eb3e9c15893e6ec4833ed1eb6f3e68e6493ed104923e346e6a3eb917583ee8167a3e9d85853e242f8b3e412ea13e70b99a3e87a7a73e1ef8a83e3eafb83ea8ccad3e4b74c63e5001b03e2cd4ba3eba9e983e3411b63e70e6b73e5394cb3efeecc73e1288b73e3626cc3e1f11433e7c808e3ebcb2cb3dc4486f3e399bce3d94da3b3eb4e9903e78bbae3ebc23733eace8a73ecbbe7b3e92b1a23e13f08b3ea612c63e3b36823ee487ca3ecb11723e9410c43e3352af3e564dd83e78f1ae3e7aa7ca3e096ec43e8043e03e001ccb3ef62bdd3e7e704e3eacc29e3e8e945d3ea892993ebc23733eace8a73ec8d15c3eda37a73ef67f5e3e7c0da13e0bcf6b3e6e4e9d3eb2d8763e145b993e546e223ebc96b83e7c9b2e3e868daa3ef06e453e467ab93e01dfb53e08ced13e8e59de3eb4cbd73e3c33d93e846bbe3e2177613ea0830e3ec1fd403e04093a3e0a2b353e5083a93d15c9f73d3cf39a3e864fbf3d00788c3e9cfc863ed09b0a3e8e945d3ea892993e7e704e3eacc29e3ec8d15c3eda37a73e0bcf6b3e6e4e9d3ebf2be23d88a5b13e6ebfcc3e6e8db83ecefe303ec874c03eda03953e90bfa43ec808e03e0adda53e96214e3e8ecac53e18cf403e3e56c03eec308e3e42efcd3e63f0a03e7237c83ec672263c84cb0a3e6782fc3c90f35e3ec841b13e88d49c3e0343a63e0053663e815d853e9c34dd3eebc8813e844dcd3eb438733e8c7fd73ec3b7703e0244c93e7139ae3e1270d03e4031a23edc2fcf3e8b878f3e0284cf3ee36c3a3e8eccc33eb4214f3e30f9c73eec18d73e4a99e43e7c2acf3ef472e83eddcd133e5edac03ed0b9fb3d9bca023f616ce13db80aea3e44c3023e8079d03e1ee59b3d185ee93d8bfb0f3ec047763d76738c3d0cab283ec672263c84cb0a3e6782fc3c90f35e3e21fa8f3dd0fb0f3e76fb8c3d882da53efa3bb53db29db73ec9ac7e3decbaef3e0bdf813d05c2023f0f14533df41adb3ee2caa93d7e34c43e4976963d00aef23b7a01913c8010e93de6321f3d4ef2a33e6aa86c3d82e5903e37e9713db4ccc23e7484c23cbe18ba3e6fa0c03cfcfb9c3e8ca30d3d7c628d3e6aa86c3d82e5903e65ff943eb2151c3f145f8d3ebbee213ffd83783e4e45223fe73a0d3d9641853e656e5e3ed0d5ce3e96214e3e8ecac53eed9a403eca3acc3e18cf403e3e56c03ee36c3a3e8eccc33eb4214f3e30f9c73e5916843ee469393f541f803ef02e3f3f9cfb4b3e6dff3a3f890c4b3e2d96323f00e2863e3198333f20634e3e16db243f7c62953e581b0f3fc0595a3eeecf153f3545603e62100c3f7d05813e6422293ffa7b893e07d12a3f6ac0103edee43b3f7d5c0b3e105b323f8334033eb615233f6538fe3d1e54163fbabffa3d79590b3fc3d2953d0e84403fd894503d3693373fbf29ec3ca81f283f0fe6c03cfa450d3f91f3be3c32e9173fe6321f3d4ef2a33efd1c553c98009c3d27b32b3d4080b73c7a01913c8010e93d4976963d00aef23b21fa8f3dd0fb0f3e5915993ef08d5a3d08e4823e80eaad3c6abd873e00f45f3cb43a793e00a3bd3c3b377d3ec04bf03cb073833e4009093c6283953e406fb13de3fd903ed85bca3d0cc85e3ee0f0343dd2365e3e90e7333dcd77803ee890943dbc7a353ed0c0483dfd4f6e3e681ab43d2e72973e4439113ee09dcc3e40958c3c8acade3ef0d72b3da4e1e43eb0760d3df069c63ee0c2e53c164bd93e00c49d3d696fe03e10cd9c3dce51df3ea0055a3d0877a73e805c143d51ddcc3e3a41173f3be1d53eb8ea163f69c8c83ef0c2223f52d7ba3e01a3233f494ce03e6b0e183fae83d33e0a4a253f5113bd3ef3ab153f548ca33e5459203f5ed5b13e5016123fee42a33e00571a3fdfe2d93ebce7003f11a7a33e72aa293ffd4eb33e60c6283fc174163fc26bff3efe26103f4ad6f93ebf28193fbe2aef3ef5301c3fc2a0f43e302a1d3f083c043fe259223f4049f93eff3e273fbc5c003f42761e3fe6aaf13eb798133f6c0bff3e3672193f4857f13e817a0b3f3e060f3f546f053f5e120b3f2993063f7d5c0b3fc2fa033f4373093f40a3ec3e9949183f29ec6e3f384f613fef916d3f5b44643f677c7b3f669e643f42787c3f7478543f577b703f30835d3f8e3d733fd07a543f9fc8733fbaca793f02617b3fc42e7a3f9276673fa573743fefe2653f3353783f622d663f1234773f40fa6a3f6045673f5934693fe2ea6b3fde747b3f81fe6c3ffa286f3f300e5a3f03ce723fcb2d553f70ea7b3fd1225b3f2fe1683f1fb76a3f04747b3fc0c56b3fcfc0683fd9466d3f7a376e3f9c8a5c3f317d7b3f7991613ffab66c3fd462603f34836c3f59f5663ffcfc7b3ff914543f8d45673fd3ec733f51667b3f7ea27b3fee26283fc8cd883e4d2e2a3f0c69343e4a08223fc8ed273eae2d283f5a28893e5e2e2a3fa4ee333e7fa01c3f9aed823eb4e5243ff889c33d34d7a93e9419073f0f44663e3463f93efe9e903ee2c6fd3e2f32913e465df33e85cf863ea471f03e38db2c3e240bf03ed542693e9869eb3e5d6c2a3e5ad1de3ee2e8b23eae43fd3ed6c7333e7cf4c63ede5a463e5c6fd33e10251a3e2cbec93e6abca43e724fff3e4b21983e6839f83ec763a63e4a41f73ec9759b3e809cf03e5f079e3e76dde33e7e72ac3e0efbf53e96cb863e8c16e83ec214753ec862e33ea1f48d3ed204da3eafd1923e5661eb3e9c15893e6ec4833ed1eb6f3e68e6493eb917583ee8167a3e9d85853e242f8b3e412ea13e70b99a3e87a7a73e1ef8a83e3eafb83ea8ccad3e3411b63e70e6b73e5394cb3efeecc73e1288b73e3626cc3e1f11433e7c808e3ebcb2cb3dc4486f3e399bce3d94da3b3eb4e9903e78bbae3ecbbe7b3e92b1a23ebc23733eace8a73e13f08b3ea612c63ecb11723e9410c43e3b36823ee487ca3e3352af3e564dd83e78f1ae3e7aa7ca3e096ec43e8043e03e001ccb3ef62bdd3e7e704e3eacc29e3e8e945d3ea892993ebc23733eace8a73ef67f5e3e7c0da13ec8d15c3eda37a73e0bcf6b3e6e4e9d3eb2d8763e145b993e546e223ebc96b83ef06e453e467ab93e7c9b2e3e868daa3e01dfb53e08ced13ec1fd403e04093a3e864fbf3d00788c3e15c9f73d3cf39a3e8e945d3ea892993e7e704e3eacc29e3ec8d15c3eda37a73e0bcf6b3e6e4e9d3ebf2be23d88a5b13e6ebfcc3e6e8db83ecefe303ec874c03eda03953e90bfa43e18cf403e3e56c03e96214e3e8ecac53eec308e3e42efcd3e63f0a03e7237c83ec672263c84cb0a3e6782fc3c90f35e3eebc8813e844dcd3e815d853e9c34dd3eb438733e8c7fd73ec3b7703e0244c93e7139ae3e1270d03e4031a23edc2fcf3e8b878f3e0284cf3ee36c3a3e8eccc33eb4214f3e30f9c73eddcd133e5edac03e616ce13db80aea3e44c3023e8079d03e1ee59b3d185ee93d76738c3d0cab283e6782fc3c90f35e3ec672263c84cb0a3e21fa8f3dd0fb0f3e76fb8c3d882da53efa3bb53db29db73ec9ac7e3decbaef3ee2caa93d7e34c43e0f14533df41adb3e7a01913c8010e93d6aa86c3d82e5903ee6321f3d4ef2a33e37e9713db4ccc23e7484c23cbe18ba3e6fa0c03cfcfb9c3e6aa86c3d82e5903e8ca30d3d7c628d3e65ff943eb2151c3ffd83783e4e45223f145f8d3ebbee213fe73a0d3d9641853e656e5e3ed0d5ce3e96214e3e8ecac53e18cf403e3e56c03eed9a403eca3acc3ee36c3a3e8eccc33eb4214f3e30f9c73e5916843ee469393f890c4b3e2d96323f00e2863e3198333f20634e3e16db243fc0595a3eeecf153f7d05813e6422293ffa7b893e07d12a3f7d5c0b3e105b323f8334033eb615233f6538fe3d1e54163fd894503d3693373fbf29ec3ca81f283f91f3be3c32e9173fe6321f3d4ef2a33efd1c553c98009c3d7a01913c8010e93d21fa8f3dd0fb0f3e5915993ef08d5a3d6abd873e00f45f3c08e4823e80eaad3c3b377d3ec04bf03cb43a793e00a3bd3cb073833e4009093c6283953e406fb13de3fd903ed85bca3d0cc85e3ee0f0343dd2365e3e90e7333dcd77803ee890943dbc7a353ed0c0483dfd4f6e3e681ab43d2e72973e4439113ee09dcc3e40958c3ca4e1e43eb0760d3d8acade3ef0d72b3df069c63ee0c2e53c164bd93e00c49d3d696fe03e10cd9c3dce51df3ea0055a3d0877a73e805c143d51ddcc3e3a41173f69c8c83ef0c2223f3be1d53eb8ea163f52d7ba3e01a3233f494ce03e6b0e183fae83d33e0a4a253f5113bd3ef3ab153f548ca33e5459203f5ed5b13e5016123fee42a33e00571a3fdfe2d93ebce7003f11a7a33e72aa293ffd4eb33e60c6283fc174163fc26bff3ebf28193fbe2aef3efe26103f4ad6f93ef5301c3fc2a0f43e302a1d3f083c043fff3e273fbc5c003fe259223f4049f93e42761e3fe6aaf13eb798133f6c0bff3e3672193f4857f13e817a0b3f3e060f3f546f053f5e120b3f2993063f7d5c0b3fc2fa033f4373093f40a3ec3e9949183f29ec6e3f384f613fef916d3f5b44643f577b703f30835d3f8e3d733fd07a543f9fc8733fbaca793f9276673fa573743fefe2653f3353783f622d663f1234773f40fa6a3f6045673f5934693fe2ea6b3ffa286f3f300e5a3f03ce723fcb2d553f2fe1683f1fb76a3fcfc0683fd9466d3f7a376e3f9c8a5c3ffab66c3fd462603f34836c3f59f5663f8d45673fd3ec733f4a08223fc8ed273e7fa01c3f9aed823e4d870e3fd01b3e3e9f770b3fc8cde93dad4efe3e50261e3e1e4ef03eb0c7e43daea0013fe823903d6078fd3ea0d2083d6074f13ef061763ddbbe173face89f3e98a41e3fa6bac03ee63f243f5492b53ea969173f207e5e3ede75123f6cc85f3e1937193f7c96373ed2df133f78fdc93d87891e3fa8f3e13d726b163f50a52d3dc5730a3fb05d133d7a17ef3efce1033f58a9f83e92b2f53e889de13e0420f63e3771b23ee010ea3d50e2a33e2023d93d3c30a03e00fa1d3edc62b63ed81bb53d8c65c23e001cdb3d64ebc13ea8ae9c3d6b63b43ee0d8933dedb8a13e6c563d3ed103af3e88523b3e49f3b73ea0a6163e7bf6f43e8c9ee33e7712013f3e43e83ebc5dbf3e3c32063ebfd5023ff6e8fd3e82ad063f72deef3e9e09fd3e64cd043fe7c7a73ee028923d8fdfa33e2089b73d53aee83e54fb243e9608f43e9426653e5512f13e5c7c4a3e363ce53e241f5b3efe80c73e8451493e1422d83ef8666b3e39b3f53ed0949d3e5d6be73ea6d18c3e1c45e63e5ad2a13eb7f1cf3e90c71c3ef699073fe00eb43ed4b6013fa208993e1971f93eb67f853ef99de63e14ce7e3e1ceed33e78eb7c3ee76edf3e20fee13dadc0e83e806cb23d59f90d3f2ee0953eb64a083fb8f9763e3d60be3e603e593e81ced43e342a003ee678fd3e1aa0c43e7e18e93e9e59c23e2daf083f4a3ed63ee5b6cd3e582aaf3d17f1053f94ad4e3ed461153fecbabf3ea704443f1458103ee526363f0c43143ea5bd353fe8e8b13d8048473fa861383e17f3373f48104e3ee562543fa00aff3d6fba4d3f28052d3eab264c3fbc210d3e4032613f5245a13e287c663ff0f8be3e65195e3f54aeb83e3ee8753f12f6213faad2723faa0b143fcde86f3f9e28213fadda713fe0490b3fc766773f40db0a3f200d733f740a9a3e7cf2683ff8169e3e94f96b3f42e5c73e2a8d683f5f261e3fb2bc6b3fb075113fcf69623f6a171b3fd3c1623ff294113fa5f85c3f1dae1d3f26c35d3f06d6113f51155f3f54d1583eeb576a3f2c2d533eaf40643fa06a843e2f6e6b3faab9003fd7da673f84b3eb3ed00e603f9ca1f03ea5be583fb077033fd95b663fd2e4063f5a105e3f1ff50b3faab6633f4664e03ecb4b663f04f7333e1ae05a3f8f360e3f4144563ff19c093fdee46b3f266a813ed784703ff856fc3e06f25c3f16a08d3e75e6563f321fe83e0a2e563fa2b7f83e09c55a3fecac363ea5f5573f5ccd5a3e1b2a5a3f50087d3e0adc563f0c7adf3e56d3613f0edcd93e56d64e3f9295073f8eb24e3f86cb0a3fbf654e3f8254823e88f4473f98b0563eff5e2e3f18b3013f43c83d3f2504073f20d4353ffacef73e08e6443faa2dfd3e6dff3a3f0d8d0b3f703e313f44914e3efe653b3f0c7b7a3e6c7c3a3f3aeedc3ee4124b3f68d0e83ed5ce443fc026e33ebad8503f6c26df3e5f7f4e3fd4d1d93e7bdb503fdccc383efc1d6e3f40bae83eab26303f58a8dd3e774c293f6860bc3e662d293f12f4df3e0d382f3fac39b03e3b393f3f0abdae3ebd8c563f60249c3e629d4e3f1825b83e8997573fe6e8b93e99d72d3fecc30a3ed637303f78e4883dd89f303f7253933e151d293fecfda63ea034443ff2608b3e211d323f60d5cb3cf6446b3f0aa2d63e74b76f3f1c622c3e93535b3f94ac033e9ca5603fa814f43d23665a3fe0abfd3d4a9b4a3f8072d43d508d4b3f7052b83d9c6f483fd0fcaa3dafb3453f5018cd3d04004b3f70783a3d57784b3f60c5703db2824f3ff0724a3dc9e8483f509e323d63d4493f3058783dfa475b3f48f9a23df6255f3fb078aa3df3c85f3f401d963d94505a3fd0468e3dc6c05a3f48e2ac3d2fc25c3f0090b33d43e55b3f30a47c3d31b75f3f10f2813d8fc45b3f1044643defae5f3ff05c5f3d25774c3f688ba43d3fe54c3fd0c8873d8acd4f3fc0dd993d6e69593ff0c9c33d1093583f3037d83dabd15f3f3805d23de3a75d3f90a3b93d52d5583fd036be3d7d1f5a3f4843ed3d57af5e3fc0e8eb3d8d275a3f78cef63dcbbc5d3f68ecf23d12844f3f989cd33d5fee5b3f64710f3e0726633f1898053e5d895c3fb842183e11a6643f7009103e508c5c3f64961d3e6764643f14ae173e84bb633f7873b13de606433f80af813dde026d3f189e973d21216e3f602b683dfc6e6a3fe85f8b3dda3b3b3fd86e823d16fa3c3f08ecaa3d75b13d3f20a3353d2848643f10e5843d3bab453f8071293dd8b8723f0853d43df912763f7449053ea5f57b3f68e6a93da186773fa0292d3dd21c753f287eac3d4fca403f5049b63d9cc0683f1814cd3dde056a3fa87cef3dea59683f10bfa23dabd0643f985fe63decda6e3ff084de3d57cd6b3fe4540b3e4b94713fc051923d6fb96a3f9032c93d4642633f20d3613d849f543f28ea1c3ebea1543f5876883d6b29543f700bdd3d1215423f408bec3c448a653f6028603d88f1663f00ea3f3d28ba6a3fa0dbf63c0e2e693f60fd1f3d1a51623f40e3ed3c0709613f6013203dfd86453f809faa3c86ca473f1038043d2aac643f2069a93c2bf85d3f80e4723cf6b2493f80c58c3cb5726a3d76c5543ffd81773d64b25c3ffc0e4f3df437553f0f41ba3d8d45533f5b6bae3db62c573f3a08aa3defc6523fd9ec083e890a553fcd56fe3dbe88563f3143033e8c2d543fd70cba3d26545c3f2c45973d97c6533f7cb6ce3dc07c523f95b9d93d28615a3ffa9ae53d3be0523f761bf43dfc3a5c3f143d043f46255d3f4dbf043ff2085a3f4aed013ffc335b3f4546ff3e4d695d3f392a033fd00a603f8c81f53d2f4f533f0d51f53eef015a3fd7a4fb3e93a85b3f21e6fa3e4302563f2dd1993df4db5b3f42c7833d0629543fff76053fd460623f74ce073f9279643fcdb0093fc479603f1b13123eccd0543f7bf90d3e6ea15b3f4e42193ee84d553ff357183e98875c3fd95d203eb262543f79ade43e8c85593fde3be23e16855d3fe882ea3e4b3e5e3f7e1d183e0ef7653f936e0b3ef08c6f3fd1790d3eb806663fa75bee3e5ef2633f2a8ce53ed849653ff434f03ed61e623fc495fb3eb41d5f3f9412f23eac3c5d3f7100053fed22683f438d023f221c633fb919023f38ef6a3fc218f93ea7d4663fae4aa23dee94523f4caa263e18215c3f40eb4b3da8ab5b3fece7433d9c6c5f3f29648d3df4a4643f6bc8293d0c5c623f7563803d59666c3f7ad2583de800713f6369563d4acd673f4fae093ef92d623f8d26273eb8f6723f3222d13dea6b733fbdaaeb3efdcf693f33e0fc3e368a6d3f20b6d43d463a7a3f103d293e69e3643f2d87cc3c04e4633ff0a6db3d9e99643f26ee973d6e4d693f4b2bb43d8979623fcf0b7c3d501a663fbaa0de3d3ab0603f353b5c3d4d9e5e3f0a4e883d37e3603fb76e743dbd19613fc2a6ce3da8574a3f27adbe3d9a994d3f4438b13d492b4e3f29eacc3d98f74c3f58c9e73d42ee4e3ffbdc5a3de6594d3fe664883d520f513fbf315f3d008e513fd900713da394503fcf2d143e2eff4d3f0132f43c5b7b5f3f78ed923ccd025d3f0000803f000000000000000000000000000000000100000002000000030000000000803f000000000000000000000000000000000100000003000000040000000000403f0000803e0000000000000000000000000100000002000000050000000000403f0000803e0000000000000000000000000100000002000000050000006666263f3333b33e0000000000000000060000000000000003000000040000000000403f0000803e0000000000000000000000000100000002000000040000000000003f0000003f0000000000000000010000000200000005000000040000000000003f0000003f0000000000000000010000000200000005000000040000000000803f000000000000000000000000000000000400000000000000000000000000803f000000000000000000000000000000000400000006000000000000000000803f000000000000000000000000000000000400000006000000000000000000803f000000000000000000000000000000000400000000000000000000000000003f0000003f0000000000000000040000000000000006000000030000000000803f000000000000000000000000000000000300000004000000060000000000003f0000003f0000000000000000040000000000000003000000060000007b142e3f0ad7a33e0000000000000000000000000600000004000000030000000000003f0000003f0000000000000000040000000000000006000000030000000000803f0000000000000000000000000000000004000000060000000000000014ae473fb047613e0000000000000000000000000600000004000000030000000000803f000000000000000000000000040000000700000003000000060000000000003f0000003f0000000000000000030000000400000008000000070000000000003f0000003f0000000000000000030000000400000008000000070000000000803f000000000000000000000000040000000300000000000000000000000000003f0000003f0000000000000000030000000400000007000000090000000000003f0000003f000000000000000003000000040000000a000000080000000000803f000000000000000000000000000000000300000004000000070000000000803f000000000000000000000000040000000700000003000000060000000000403f0000803e0000000000000000000000000600000003000000040000000000803f000000000000000000000000000000000100000004000000060000000000803f000000000000000000000000000000000300000004000000060000006666263f3333b33e00000000000000000600000000000000040000000300000085ebd13e85ebd13eec51383e000000000400000000000000060000000300000085ebd13e85ebd13eec51383e00000000040000000000000006000000030000000000803f000000000000000000000000000000000700000003000000040000000000803f000000000000000000000000040000000700000003000000060000000000803f000000000000000000000000000000000400000001000000000000000000403f0000803e0000000000000000000000000100000005000000020000009a99593f9999193e0000000000000000030000000800000007000000090000000000003f0000003f0000000000000000070000000300000009000000080000000000003f0000003f00000000000000000700000003000000090000000b0000000000803f0000000000000000000000000700000008000000090000000b0000009a99593f9a99193e000000000000000007000000080000000900000003000000f6285c3f285c0f3e0000000000000000070000000c00000009000000030000000000803f0000000000000000000000000c000000070000000d00000000000000e17a543f7b142e3e0000000000000000070000000c00000009000000030000000000803f0000000000000000000000000c0000000700000000000000000000000000803f0000000000000000000000000c0000000700000000000000000000000000803f0000000000000000000000000c000000070000000d00000000000000e17a543f7b142e3e0000000000000000070000000c000000090000000b000000713d403f31eacb3db69ea23d0000000007000000030000000a00000008000000b9b8c43ec3c8a13e5f37793e00000000070000000900000008000000030000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f00000000000000000c0000000d000000000000000000000099e8bd3e18c08c3e19296e3e00000000030000000800000007000000090000000000803f000000000000000000000000030000000700000008000000040000000000803f00000000000000000000000003000000070000000800000004000000cdcc4c3fcccc4c3e000000000000000007000000080000000900000003000000e17a543f7c142e3e0000000000000000070000000800000009000000030000000000803f0000000000000000000000000e0000000000000000000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f00000000000000000d000000100000000c000000000000000000003f0000003f00000000000000000d000000100000000c000000000000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f0000000000000000100000000f00000000000000000000000000003f0000003f0000000000000000100000000f00000000000000000000000000003f0000003f00000000000000000d000000100000000c000000000000000000003f0000003f0000000000000000100000000f00000000000000000000000000003f0000003f0000000000000000010000000200000005000000000000000000803f000000000000000000000000000000000400000001000000000000000000003f0000003f000000000000000001000000110000000000000002000000c49ccf3e4057b43e9b00733e00000000000000000100000002000000050000000000803f000000000000000000000000000000000100000002000000030000000000803f000000000000000000000000000000000100000002000000030000000000803f00000000000000000000000000000000030000000400000006000000cdcc4c3fcccc4c3e0000000000000000040000000000000007000000030000000000803f000000000000000000000000000000000300000004000000070000000000403f0000803e0000000000000000000000000100000005000000040000000000003f0000003f0000000000000000010000000200000005000000040000000000003f0000003f0000000000000000010000000200000005000000040000000000803f000000000000000000000000030000000700000008000000040000000000803f00000000000000000000000000000000020000000300000004000000cdcc4c3fcccc4c3e0000000000000000040000000000000007000000030000000000803f000000000000000000000000030000000700000004000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000003f0000003f0000000000000000070000000300000008000000040000000000803f000000000000000000000000070000000800000003000000040000000000003f0000003f0000000000000000070000000300000008000000040000003e0a573f0ad7233e0000000000000000070000000800000009000000030000003e0a573f0ad7233e0000000000000000070000000800000009000000030000003e0a573f0ad7233e000000000000000007000000080000000900000003000000d7a3703f8ec2753d0000000000000000070000000c00000003000000080000000000803f0000000000000000000000000c000000070000000000000000000000d7a3703f8ec2753d0000000000000000070000000c0000000a000000030000000000003f0000003f000000000000000007000000030000000a000000080000000000003f0000003f00000000000000000c0000000d00000000000000000000000000803f00000000000000000000000007000000080000000a000000030000000000003f0000003f0000000000000000100000000f00000000000000000000000000003f0000003f00000000000000000d000000100000000c000000000000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f0000000000000000010000001100000005000000040000000000003f0000003f0000000000000000010000000200000005000000000000000000003f0000003f0000000000000000010000000200000005000000000000000000003f0000003f0000000000000000010000001100000005000000000000000000003f0000003f0000000000000000010000000200000005000000000000000000003f0000003f0000000000000000010000000200000005000000000000000000003f0000003f0000000000000000010000001100000005000000000000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001500000016000000000000000000803f000000000000000000000000130000001500000016000000000000000000803f00000000000000000000000013000000120000001400000015000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000160000000000803f00000000000000000000000013000000140000001500000017000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f00000000000000000000000013000000120000001400000015000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000130000001500000016000000000000000000803f000000000000000000000000130000001500000016000000000000000000803f00000000000000000000000013000000150000001600000000000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f00000000000000000000000013000000120000001400000015000000ffff3f3f0200803e0000000000000000130000001500000014000000120000000000803f000000000000000000000000130000001500000016000000000000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000000000000000803f000000000000000000000000130000001500000016000000000000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001400000000000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000000000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000403f0000803e0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000003f0000003f0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000120000001400000005000000150000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000120000001400000005000000150000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000120000001400000005000000150000000000003f0000003f0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000120000001400000015000000050000000000003f0000003f0000000000000000120000001400000015000000050000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000050000001200000001000000020000000000003f0000003f0000000000000000050000001200000001000000020000000000003f0000003f0000000000000000050000001200000002000000150000000000003f0000003f0000000000000000050000001200000015000000020000000000003f0000003f0000000000000000050000001200000015000000020000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000803f000000000000000000000000150000000500000012000000140000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f00000000000000000000000015000000120000001400000013000000ffff3f3f0200803e000000000000000013000000150000001400000012000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001500000016000000000000000000803f0000000000000000000000001300000015000000160000000000000077be5f3f09d7a33d7a6a3c3d00000000150000001700000013000000120000000000803f0000000000000000000000001300000012000000140000001500000077be5f3f09d7a33d7a6a3c3d0000000015000000170000001300000012000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001400000013000000160000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001200000014000000130000001f856b3f09d7a33d0000000000000000150000001700000014000000130000001f856b3f09d7a33d0000000000000000150000001700000014000000130000000000803f000000000000000000000000170000001200000014000000130000000000803f0000000000000000000000001700000012000000140000001300000077be5f3f09d7a33d7a6a3c3d00000000150000001700000013000000120000000000803f0000000000000000000000001700000012000000140000001300000077be5f3f09d7a33d7a6a3c3d00000000150000001700000013000000120000000000803f000000000000000000000000160000001400000013000000150000000000803f000000000000000000000000130000001500000016000000000000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000170000000000803f00000000000000000000000013000000140000001500000016000000ffff3f3facaaaa3dacaaaa3d0000000013000000120000001400000015000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000130000001200000014000000150000000000803f00000000000000000000000013000000150000001600000000000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000130000001500000016000000000000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000000000000000803f000000000000000000000000130000001500000016000000000000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001400000015000000000000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000160000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000403f0000803e0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000003f0000003f0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000120000001400000005000000150000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000120000001400000005000000150000000000003f0000003f0000000000000000120000001400000015000000050000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000003f0000003f0000000000000000050000001200000001000000020000000000003f0000003f0000000000000000050000001200000002000000150000000000003f0000003f0000000000000000050000001200000015000000020000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000003f0000003f0000000000000000020000000500000001000000120000000000803f000000000000000000000000150000000500000012000000140000000000003f0000003f0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f00000000000000000000000015000000120000001400000013000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000403f0000803e0000000000000000150000001400000012000000050000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000000500000012000000140000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000001200000014000000000000000000803f000000000000000000000000150000000000000000000000000000000000803f000000000000000000000000130000001400000015000000160000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001400000015000000160000000000803f0000000000000000000000001300000015000000160000000000000077be5f3f09d7a33d7a6a3c3d00000000150000001700000013000000120000000000803f00000000000000000000000013000000120000001400000015000000ffff3f3facaaaa3dacaaaa3d00000000130000001200000014000000150000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000130000001400000015000000170000000000803f000000000000000000000000130000001200000014000000150000000000803f000000000000000000000000150000001300000000000000000000000000803f000000000000000000000000150000001300000016000000000000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001200000014000000130000000000803f000000000000000000000000150000001400000013000000000000000000803f000000000000000000000000150000001400000013000000160000000000803f000000000000000000000000150000001400000013000000170000000000803f000000000000000000000000150000001200000014000000130000000000803f0000000000000000000000001700000012000000140000001300000077be5f3f09d7a33d7a6a3c3d00000000150000001700000013000000120000000000803f000000000000000000000000060000000300000004000000000000000000803f000000000000000000000000060000001800000003000000040000000000803f000000000000000000000000060000000300000004000000000000000000803f000000000000000000000000060000001800000003000000040000000000803f000000000000000000000000060000000300000004000000000000000000803f0000000000000000000000000600000003000000040000000000000014ae473fb047613e0000000000000000000000000600000004000000030000007b142e3f0ad7a33e00000000000000000000000006000000040000000300000014ae473fb047613e0000000000000000000000000600000004000000030000000000803f000000000000000000000000060000000300000004000000000000000000003f0000003f0000000000000000040000000000000006000000030000000000803f0000000000000000000000000600000003000000040000000000000085ebd13e85ebd13eec51383e00000000040000000000000006000000030000000000803f000000000000000000000000060000000300000004000000000000006666263f3333b33e0000000000000000060000000000000004000000030000006666263f3333b33e0000000000000000060000000000000003000000040000000000403f0000803e0000000000000000000000000600000003000000040000000000803f00000000000000000000000019000000180000001a000000000000000000803f000000000000000000000000190000001800000006000000000000006666263f3333b33e0000000000000000190000001800000006000000040000006666263f3333b33e0000000000000000190000001800000006000000040000000000803f000000000000000000000000190000001800000006000000000000000000803f000000000000000000000000190000001800000000000000000000006666263f3333b33e0000000000000000190000001800000006000000040000006666263f3333b33e0000000000000000180000001900000006000000040000006666263f3333b33e0000000000000000180000001900000006000000040000006666263f3333b33e0000000000000000190000001800000006000000040000006666263f3333b33e0000000000000000180000001900000006000000040000000000803f000000000000000000000000190000001800000006000000000000006666263f3333b33e0000000000000000180000001900000006000000040000006666263f3333b33e0000000000000000180000001900000006000000040000006666263f3333b33e0000000000000000180000001900000006000000040000006666263f3333b33e0000000000000000180000001900000006000000040000006666263f3333b33e0000000000000000190000001800000006000000040000006666263f3333b33e0000000000000000180000001900000006000000040000000000803f000000000000000000000000190000001800000000000000000000000000803f000000000000000000000000190000001800000000000000000000000000803f000000000000000000000000190000001800000000000000000000000000003f0000003f0000000000000000180000000600000003000000040000000000003f0000003f0000000000000000180000000600000003000000040000000000803f000000000000000000000000180000000600000003000000040000000000003f0000003f0000000000000000180000000600000003000000040000000000803f000000000000000000000000180000001900000006000000040000000000803f000000000000000000000000180000000600000003000000040000000000803f000000000000000000000000180000000600000003000000040000000000803f000000000000000000000000180000000600000003000000040000006666263f3333b33e0000000000000000180000000600000003000000040000000000803f000000000000000000000000180000001900000006000000040000000000003f0000003f0000000000000000180000000600000003000000040000000000003f0000003f0000000000000000180000000600000003000000040000000000003f0000003f0000000000000000180000000600000003000000040000006666263f3333b33e0000000000000000180000000600000003000000040000000000803f000000000000000000000000180000000600000003000000040000000000003f0000003f0000000000000000180000000600000003000000040000000000803f000000000000000000000000060000001800000003000000040000000000803f000000000000000000000000060000001800000003000000040000000000803f000000000000000000000000060000001800000003000000040000000000803f000000000000000000000000180000001900000006000000040000000000803f000000000000000000000000180000001900000006000000040000000000803f000000000000000000000000180000001900000006000000040000000000803f000000000000000000000000180000001900000006000000030000000000803f000000000000000000000000180000001900000006000000040000000000803f000000000000000000000000180000001900000006000000040000000000803f000000000000000000000000060000001800000003000000040000000000803f000000000000000000000000060000001800000003000000040000009a99593f9a99193e00000000000000000700000008000000090000000300000099e8bd3e18c08c3e19296e3e00000000030000000800000007000000090000000000003f0000003f0000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000003f0000003f000000000000000009000000080000000700000003000000e17a543f7c142e3e000000000000000007000000080000000900000003000000cdcc4c3fcccc4c3e0000000000000000070000000800000009000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f00000000000000001c0000001b00000009000000000000000000003f0000003f00000000000000001c0000001b00000009000000000000000000003f0000003f00000000000000001c0000001b00000009000000000000000000003f0000003f00000000000000001c0000001b00000009000000000000000000803f0000000000000000000000001b0000001c00000009000000000000000000803f0000000000000000000000001b0000001c00000009000000070000000000803f0000000000000000000000001b0000001c00000009000000070000000000803f0000000000000000000000001b0000001c00000009000000070000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f00000000000000001c0000001b00000009000000000000000000003f0000003f00000000000000001c0000001b00000009000000000000000000803f0000000000000000000000001b0000001c00000009000000070000000000003f0000003f00000000000000001c0000001b00000009000000080000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f00000000000000001c0000001b00000009000000000000000000803f0000000000000000000000001b0000001c00000009000000080000000000803f000000000000000000000000090000001b00000008000000070000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f0000000000000000090000001b00000008000000070000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f0000000000000000090000001b00000008000000070000000000003f0000003f0000000000000000090000001b00000008000000070000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f0000000000000000090000001b0000001c000000080000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f0000000000000000090000001b00000008000000070000000000003f0000003f0000000000000000090000001b00000008000000070000000000803f0000000000000000000000001b0000001c00000009000000080000000000003f0000003f0000000000000000090000001b0000001c000000080000000000803f0000000000000000000000001b0000001c00000009000000080000000000803f0000000000000000000000001b0000001c00000009000000080000000000803f0000000000000000000000001b0000001c00000009000000080000000000803f000000000000000000000000090000001b00000008000000070000000000803f000000000000000000000000090000001b00000008000000070000000000803f000000000000000000000000090000001b00000008000000070000000000803f000000000000000000000000090000001b00000008000000070000000000003f0000003f0000000000000000090000001b0000001c000000080000000000803f000000000000000000000000090000001b00000008000000070000000000003f0000003f0000000000000000090000001b00000008000000070000000000803f000000000000000000000000090000001c00000008000000070000000000803f000000000000000000000000090000001c0000001b000000080000000000803f000000000000000000000000090000001c0000001b000000080000000000803f000000000000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000803f000000000000000000000000090000000800000007000000030000000000803f000000000000000000000000090000000800000007000000030000000000803f000000000000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000803f000000000000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000803f000000000000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000803f000000000000000000000000090000000800000007000000030000000000803f000000000000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000001b00000008000000070000000000003f0000003f0000000000000000090000000800000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000803f000000000000000000000000080000000900000007000000030000000000803f000000000000000000000000080000000900000007000000030000000000803f000000000000000000000000080000000900000007000000030000003e0a573f0ad7233e000000000000000007000000080000000900000003000000e17a543f7c142e3e0000000000000000070000000800000009000000030000000000803f000000000000000000000000080000000900000007000000030000000000003f0000003f0000000000000000090000000800000007000000030000000000803f000000000000000000000000080000000900000007000000030000003e0a573f0ad7233e0000000000000000070000000800000009000000030000009a99593f9999193e0000000000000000030000000800000007000000090000003e0a573f0ad7233e0000000000000000070000000800000009000000030000009a99593f9999193e0000000000000000030000000800000007000000090000000000003f0000003f0000000000000000090000001b00000008000000070000000000003f0000003f0000000000000000090000001b00000008000000070000000000003f0000003f00000000000000001d0000001e00000008000000090000000000003f0000003f00000000000000001d0000001e0000001c00000008000000ee7c3f3f032b073e8ec2f53d000000001c0000001d0000001f000000090000000000003f0000003f00000000000000001d0000001e0000001c00000000000000ee7c3f3f032b073e8ec2f53d000000001c0000001d0000001f0000001e0000000000003f0000003f00000000000000001d0000001e0000001c00000008000000cdcc4c3fcdcc4c3e00000000000000001c0000001d00000000000000000000000000003f0000003f00000000000000002000000021000000080000001f0000000000803f000000000000000000000000210000001c00000008000000200000000000003f0000003f00000000000000002000000021000000080000001f000000cdcc4c3fcdcc4c3e00000000000000001c000000200000000800000009000000c520303fcdcc4c3e4260e53d000000001c000000200000001f000000090000000000003f0000003f00000000000000002000000021000000080000001f000000cdcc4c3fcdcc4c3e00000000000000001c00000020000000080000001f000000cdcc4c3fcdcc4c3e00000000000000001c00000020000000080000001f000000125a1d3fb5a4ad3e9ea1bf3c000000002000000021000000080000001f0000000000003f0000003f00000000000000002000000021000000080000001f000000c520303fcdcc4c3e4260e53d000000001c000000200000001f000000090000000000003f0000003f00000000000000002000000021000000080000001f000000cdcc4c3fcdcc4c3e00000000000000001c00000020000000080000001f0000000000003f0000003f00000000000000002000000021000000080000001f000000cdcc4c3fcdcc4c3e00000000000000001c0000002000000008000000090000000000003f0000003f00000000000000001f0000002200000008000000090000000000003f0000003f00000000000000001f00000022000000080000001d0000000000803f00000000000000000000000022000000080000001f000000090000000000003f0000003f00000000000000001f00000022000000080000000900000085eb513feb51383e00000000000000001c0000001f000000080000001d0000000000003f0000003f00000000000000001f00000022000000080000001d00000085eb513feb51383e00000000000000001c0000001f000000080000001d0000000000003f0000003f00000000000000001f0000002200000008000000090000000000003f0000003f00000000000000001f00000022000000080000001d000000f6285c3f295c0f3e00000000000000001c0000001f000000080000001d0000000000003f0000003f00000000000000001f00000022000000080000001d000000ee7c3f3f032b073e8ec2f53d000000001c0000001d0000001f0000001e0000000000803f0000000000000000000000001e0000001d0000000000000000000000cdcc4c3fcdcc4c3e00000000000000001c0000001d00000008000000090000000000003f0000003f00000000000000001d0000001e00000008000000090000000000003f0000003f00000000000000001d0000001e0000000800000009000000cdcc4c3fcdcc4c3e00000000000000001c0000001d000000090000001f0000000000003f0000003f00000000000000001d0000001e0000001c00000000000000cdcc4c3fcdcc4c3e00000000000000001c0000001d000000000000000000000084a70f3f637f8a3e478f233e000000001c000000200000001f000000090000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f00000000000000001c0000001b00000009000000000000000000803f0000000000000000000000001c000000090000001b000000230000000000803f0000000000000000000000001c000000090000001b000000230000000000803f0000000000000000000000001c0000001b00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c0000001b00000000000000000000006666663fcdcccc3d00000000000000001c00000020000000080000001f000000ae47613f8fc2f53d00000000000000001c0000002300000020000000090000000000003f0000003f00000000000000001c0000001b00000009000000000000000000803f0000000000000000000000001c0000001b00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f00000000000000001c0000001b00000009000000000000000000803f0000000000000000000000001c0000001b00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c000000090000001b00000008000000ead06f3f33b4323d4fed8a3c000000001c0000001b000000090000001d0000000000803f0000000000000000000000001c000000090000001b000000080000000000803f0000000000000000000000001c00000009000000080000001d0000000000003f0000003f00000000000000001c0000001b00000009000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f00000000000000001c0000001b00000009000000000000000000003f0000003f00000000000000001c0000001b0000000900000008000000ae47613f8fc2f53d00000000000000001c0000002300000020000000090000000000803f0000000000000000000000001e0000001d00000000000000000000000000803f000000000000000000000000210000001c00000008000000200000000000803f00000000000000000000000022000000080000001f00000009000000ae47613f8fc2f53d00000000000000001c000000230000000000000000000000ae47613f8fc2f53d00000000000000001c000000230000000800000020000000ae47613f8fc2f53d00000000000000001c000000230000001b00000008000000ae47613f8fc2f53d00000000000000001c000000230000000900000024000000ae47613f8fc2f53d00000000000000001c0000002300000000000000000000000000003f0000003f0000000000000000230000002400000008000000090000000000003f0000003f0000000000000000230000002400000008000000200000000000003f0000003f00000000000000002300000024000000090000001c0000000000003f0000003f0000000000000000230000002400000008000000200000000000003f0000003f00000000000000002300000024000000090000001c0000000000803f0000000000000000000000002400000008000000230000001c0000000000803f0000000000000000000000002400000008000000230000001c0000000000003f0000003f0000000000000000250000002600000000000000000000000000003f0000003f000000000000000025000000260000000000000000000000ae47213fa470bd3e000000000000000019000000250000001a000000000000000000003f0000003f0000000000000000270000002800000026000000250000000000003f0000003f000000000000000027000000280000002600000025000000cac3123ff163ac3eea51b83d00000000190000002500000027000000000000000000003f0000003f0000000000000000290000002a00000028000000270000000000003f0000003f0000000000000000290000002a0000002700000019000000560e4d3fae47e13da245b63d000000001900000029000000270000002a0000000000003f0000003f0000000000000000250000002600000027000000280000006666663fcccccc3d0000000000000000190000002500000027000000000000006666663fcdcccc3d0000000000000000190000002700000000000000000000000000003f0000003f0000000000000000270000002800000000000000000000000000003f0000003f00000000000000002700000028000000290000002a000000bd52563feb51b83d2a18953d00000000190000002900000027000000000000000000803f00000000000000000000000028000000270000002a000000000000000000803f000000000000000000000000280000002600000027000000000000000000803f000000000000000000000000280000000000000000000000000000000000003f0000003f00000000000000002700000028000000290000002a0000000000003f0000003f0000000000000000270000002800000026000000250000000000003f0000003f00000000000000002700000028000000290000002a0000000000003f0000003f0000000000000000250000002600000000000000000000000000803f000000000000000000000000260000000000000000000000000000000000003f0000003f000000000000000025000000260000002700000028000000ae47213fa470bd3e0000000000000000190000002500000027000000000000000000003f0000003f0000000000000000250000002600000000000000000000000000003f0000003f0000000000000000290000002a00000027000000190000000000803f0000000000000000000000002a0000000000000000000000000000000000003f0000003f0000000000000000290000002a00000019000000000000000ad7633fae47e13d000000000000000019000000290000002a000000270000000000003f0000003f0000000000000000290000002a00000019000000000000000000003f0000003f0000000000000000290000002a00000019000000000000000ad7633fae47e13d0000000000000000190000002900000000000000000000000000003f0000003f0000000000000000290000002a00000019000000000000000000803f0000000000000000000000002b0000001900000000000000000000000000003f0000003f00000000000000001a0000002b00000019000000000000000000003f0000003f00000000000000001a0000002b00000019000000000000000000803f000000000000000000000000190000001800000029000000000000000000803f000000000000000000000000190000001800000000000000000000000000803f000000000000000000000000190000001800000006000000000000003333333f9a99993e0000000000000000190000001a00000025000000000000003333333f9a99993e0000000000000000190000001a00000018000000000000000000803f00000000000000000000000019000000250000001a00000000000000ae47213fa470bd3e000000000000000019000000250000000000000000000000cac3123ff163ac3eea51b83d00000000190000002500000027000000000000000ad7633fae47e13d000000000000000019000000290000000000000000000000ac693e3fa92c833e000000000000000019000000290000000000000000000000560e4d3fae47e13da245b63d000000001900000029000000270000002a00000021d2563fa059083e534c6e3c00000000190000002700000025000000290000000000003f0000003f0000000000000000250000002600000027000000280000000ad7633fae47e13d000000000000000019000000290000000000000000000000ae47213fa470bd3e0000000000000000190000002500000000000000000000000000003f0000003f00000000000000001a0000002b00000019000000000000000000003f0000003f00000000000000001a0000002b0000001900000000000000b072483fb81e053e0f2db23d0000000019000000250000001a000000180000000000803f00000000000000000000000019000000180000001a000000000000003333333f9a99993e0000000000000000190000001a00000018000000000000003333333f9a99993e0000000000000000190000001a00000018000000000000000000803f000000000000000000000000190000002900000018000000270000000000803f000000000000000000000000190000001800000006000000000000000000803f000000000000000000000000190000001800000029000000000000000000803f00000000000000000000000019000000180000002900000000000000bed87e3f3ba1933b000000000000000019000000180000000000000000000000bed87e3f3ba1933b000000000000000019000000180000000000000000000000ac693e3fa92c833e0000000000000000190000002900000000000000000000000000003f0000003f00000000000000001a0000002b00000019000000000000000000803f000000000000000000000000190000001800000000000000000000000000803f000000000000000000000000190000001800000000000000000000003e0a573f0ad7233e0000000000000000190000002500000018000000270000003333333f9a99993e0000000000000000190000001a00000018000000000000000000803f000000000000000000000000190000002900000018000000270000000000803f00000000000000000000000019000000250000001a000000000000003333333f9a99993e0000000000000000190000001a00000025000000000000000000803f000000000000000000000000190000002b000000250000001a0000000000803f000000000000000000000000280000000000000000000000000000000000803f000000000000000000000000280000002600000027000000000000000000803f000000000000000000000000280000002700000000000000000000000000803f000000000000000000000000280000002700000000000000000000000000803f00000000000000000000000028000000270000002a000000000000000000803f000000000000000000000000260000000000000000000000000000003e9d5a3f3568153ebc460b390000000026000000250000002800000000000000142e653f5e8fd63d000000000000000026000000250000000000000000000000198c603f379ffb3d0000000000000000260000002500000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000003f0000003f00000000000000001a0000002b00000019000000000000000000803f0000000000000000000000002b0000001900000000000000000000000000803f0000000000000000000000000000000003000000040000002c0000000000403f0000803e0000000000000000000000001100000004000000010000000000803f0000000000000000000000000000000003000000040000002c0000000000403f0000803e0000000000000000000000001100000004000000010000000000403f0000803e000000000000000000000000110000000400000001000000b81e453f20856b3e0000000000000000000000002c00000004000000030000000000003f0000003f0000000000000000110000002d00000004000000000000000000003f0000003f0000000000000000110000002d00000000000000010000000000803f00000000000000000000000000000000040000002c000000000000000000803f00000000000000000000000000000000040000002c000000000000000000003f0000003f000000000000000004000000000000002c000000030000000000803f0000000000000000000000000000000003000000040000002c0000005c8f023f48e1fa3e00000000000000002c00000000000000040000000300000052b8de3e52b8de3eb81e053e0000000004000000000000002c000000030000000000803f00000000000000000000000000000000040000002c00000000000000483a293f2e157a3ecee0c13d00000000000000002c00000004000000030000000000803f000000000000000000000000040000002c00000003000000070000000000003f0000003f00000000000000000300000004000000070000000a0000000000003f0000003f00000000000000000300000004000000070000000a0000000000003f0000003f000000000000000003000000040000000a000000070000000000803f000000000000000000000000000000000300000004000000070000000000803f000000000000000000000000040000002c00000003000000070000000000803f00000000000000000000000000000000040000002c00000000000000dde21b3fddaa9d3e3e12aa3d00000000000000002c00000004000000030000000000803f0000000000000000000000000000000003000000040000002c000000b81e453f20856b3e0000000000000000000000002c00000004000000030000000000003f0000003f000000000000000004000000000000002c000000030000006666263f3333b33e0000000000000000000000002c00000004000000030000000000803f000000000000000000000000000000002c00000003000000040000000000803f000000000000000000000000040000002c00000003000000070000000000803f000000000000000000000000000000000400000000000000000000000000403f0000803e0000000000000000000000001100000001000000000000000000003f0000003f000000000000000007000000030000000a0000000b000000cdcc4c3fcccc4c3e000000000000000007000000030000000a0000000b000000cdcc4c3fcdcc4c3e0000000000000000070000000a0000000b00000003000000f6285c3f285c0f3e0000000000000000070000000c0000000a00000003000000e17a543f7b142e3e0000000000000000070000000c0000000a000000030000000000803f0000000000000000000000000c000000070000000d000000000000000000803f0000000000000000000000000c0000000700000000000000000000000000803f0000000000000000000000000c000000070000000000000000000000874cbe3e1484a73e68607c3e00000000070000000b0000000a000000030000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f00000000000000000c0000000d0000000000000000000000e17a543f7c142e3e0000000000000000070000000a0000000b000000030000000000803f000000000000000000000000030000000a00000007000000040000000000803f000000000000000000000000030000000a00000007000000040000000000803f0000000000000000000000000a0000000b0000000700000003000000cdcc4c3fcccc4c3e0000000000000000070000000a0000000b000000030000000000803f0000000000000000000000000e0000000000000000000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f00000000000000000d000000100000000c000000000000000000003f0000003f00000000000000000d000000100000000c000000000000000000003f0000003f00000000000000000c0000000d00000000000000000000000000003f0000003f0000000000000000100000000f00000000000000000000000000003f0000003f0000000000000000100000000f000000000000000000000014ae473fb047613e0000000000000000110000002d0000000000000000000000d3c2f53ea81ea53e2175033e00000000110000000000000001000000020000000000803f000000000000000000000000000000002c00000003000000040000000000803f000000000000000000000000000000002c00000003000000040000000000803f0000000000000000000000000000000003000000040000002c0000000000803f00000000000000000000000000000000030000000400000007000000cdcc4c3fcccc4c3e0000000000000000040000000000000007000000030000000000403f0000803e0000000000000000000000001100000004000000010000000000003f0000003f0000000000000000110000002d00000005000000040000000000003f0000003f0000000000000000110000002d00000004000000000000000000803f000000000000000000000000030000000a00000007000000040000000000003f0000003f000000000000000007000000030000000a000000040000003333f33e3333f33ecccc4c3d0000000007000000030000000a000000040000000000803f000000000000000000000000070000000a00000003000000040000009a99593f9999193e0000000000000000070000000a0000000b000000030000009a99593f9999193e0000000000000000070000000a0000000b000000030000009a99593f9999193e0000000000000000070000000a0000000b00000003000000d7a3703f8ec2753d0000000000000000070000000c000000030000000a0000000000003f0000003f0000000000000000110000002d00000005000000000000000000003f0000003f0000000000000000110000002d00000005000000000000000000003f0000003f0000000000000000010000001100000005000000000000000000003f0000003f0000000000000000110000002d00000005000000000000000000003f0000003f00000000000000002d0000001100000005000000000000000000003f0000003f0000000000000000010000001100000005000000000000000000003f0000003f00000000000000002d0000002e00000000000000000000000000003f0000003f00000000000000002d0000002e00000000000000000000000000003f0000003f00000000000000002e0000002d00000000000000000000000000003f0000003f00000000000000002d0000002e00000000000000000000000000003f0000003f00000000000000002d0000002e00000000000000020000000000003f0000003f00000000000000002d0000002e00000005000000000000000000003f0000003f00000000000000002d0000002e00000005000000120000000000003f0000003f00000000000000002d0000002e00000005000000120000000000003f0000003f00000000000000002d0000002e00000005000000120000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000032000000310000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000032000000310000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000032000000310000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000003333333f9a99993e000000000000000030000000330000002f000000000000003333333f9a99993e000000000000000030000000330000002f000000000000003333333f9a99993e000000000000000030000000330000002f000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f00000000000000000000000030000000330000002f000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000200003ffdffff3e00000000000000003000000033000000340000002f0000000200003ffdffff3e0000000000000000300000003300000034000000000000000000803f000000000000000000000000300000003300000000000000000000000200003ffdffff3e0000000000000000300000003300000034000000000000000200003ffdffff3e00000000000000003000000033000000340000002f0000000000803f0000000000000000000000003000000033000000340000002f0000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000003333333f9a99993e000000000000000030000000330000002f000000000000003333333f9a99993e000000000000000030000000330000002f000000000000000000003f0000003f000000000000000034000000330000002f000000300000000000003f0000003f00000000000000003400000033000000000000002f0000003333333f9a99993e000000000000000030000000330000002f000000000000000000003f0000003f00000000000000003400000033000000000000002f0000000200003ffdffff3e0000000000000000300000003300000034000000000000000000003f0000003f0000000000000000340000003300000030000000000000000000003f0000003f0000000000000000340000003300000030000000000000000200003ffdffff3e00000000000000003000000033000000340000002f0000000000803f000000000000000000000000300000002f00000000000000000000000000003f0000003f00000000000000002e0000003400000000000000000000000000003f0000003f00000000000000002e0000003400000000000000000000000000003f0000003f00000000000000002e0000003400000000000000000000000000003f0000003f00000000000000002e0000003400000000000000000000000000003f0000003f00000000000000002e0000003400000000000000000000000000003f0000003f00000000000000002e0000002d00000000000000000000000000003f0000003f00000000000000002d0000002e00000000000000000000000000003f0000003f00000000000000002d0000002e00000000000000000000000000003f0000003f00000000000000002d0000002e00000000000000020000000000003f0000003f00000000000000002d0000002e00000000000000000000000000803f00000000000000000000000030000000330000002f000000000000000200003ffdffff3e0000000000000000300000003300000034000000000000000200003ffdffff3e0000000000000000300000003300000034000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f00000000000000000000000030000000330000002f000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000032000000310000000000803f0000000000000000000000002f0000003000000032000000310000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f00000030000000310000000000000084c04a3f192fdd3dcbcccc3d00000000300000002f000000320000000000000084c04a3f172fdd3dcacccc3d00000000300000002f00000032000000000000000000803f0000000000000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f0000000000000000000000002f0000003000000032000000310000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000032000000310000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000032000000310000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000032000000310000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000032000000310000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000000000000000000006766663fcbcccc3d000000000000000030000000320000002f000000000000006766663fcbcccc3d000000000000000030000000320000002f000000000000000000803f000000000000000000000000320000002f00000030000000310000000000803f000000000000000000000000320000002f000000300000003100000084c04a3f172fdd3dcacccc3d00000000300000002f00000032000000000000000000803f000000000000000000000000320000002f000000300000003100000084c04a3f192fdd3dcbcccc3d00000000300000002f00000032000000000000000000803f000000000000000000000000310000002f00000032000000300000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f0000000000000000000000002f0000003000000032000000310000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000032000000310000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000003333333f9a99993e000000000000000030000000330000002f000000000000000000803f000000000000000000000000300000002f00000000000000000000003333333f9a99993e000000000000000030000000330000002f000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f00000000000000000000000030000000330000002f000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000200003ffdffff3e00000000000000003000000033000000340000002f0000000000803f000000000000000000000000300000003300000000000000000000000200003ffdffff3e0000000000000000300000003300000034000000000000000200003ffdffff3e0000000000000000300000003300000034000000000000000000803f0000000000000000000000003000000033000000340000002f0000000200003ffdffff3e00000000000000003000000033000000340000002f0000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000003333333f9a99993e000000000000000030000000330000002f000000000000000000003f0000003f00000000000000003400000033000000000000002f0000003333333f9a99993e000000000000000030000000330000002f000000000000000000003f0000003f000000000000000034000000330000002f000000300000000000003f0000003f0000000000000000340000003300000030000000000000000000803f0000000000000000000000003000000033000000340000002f0000000000803f000000000000000000000000300000002f00000000000000000000000000003f0000003f00000000000000002e0000003400000005000000000000000000003f0000003f00000000000000002e0000003400000012000000000000000000003f0000003f00000000000000002e0000003400000000000000050000000000003f0000003f00000000000000002d0000002e00000005000000000000000000003f0000003f00000000000000002d0000002e00000005000000120000000000003f0000003f00000000000000002d0000002e00000005000000120000000000803f00000000000000000000000030000000330000002f000000000000000200003ffdffff3e0000000000000000300000003300000034000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f00000000000000000000000030000000330000002f000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000500000012000000140000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000003300000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000001500000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f000000000000000000000000300000000000000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000032000000310000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f00000030000000310000000000000084c04a3f192fdd3dcbcccc3d00000000300000002f00000032000000000000000000803f0000000000000000000000002f0000003000000000000000000000007b142e3f0ad7a33e00000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f0000000000000000000000002f0000003000000031000000000000000000803f0000000000000000000000002f0000003000000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000031000000000000000000803f000000000000000000000000300000002f00000032000000310000000000803f000000000000000000000000300000002f00000000000000000000000000803f000000000000000000000000320000002f000000300000003100000084c04a3f192fdd3dcbcccc3d00000000300000002f00000032000000000000000000803f0000000000000000000000002c0000000300000004000000000000000000803f0000000000000000000000002c0000000300000004000000000000000000803f0000000000000000000000002c0000003500000003000000040000000000803f0000000000000000000000002c0000003500000003000000040000000000803f0000000000000000000000002c000000030000000400000000000000483a293f2e157a3ecee0c13d00000000000000002c00000004000000030000000000803f0000000000000000000000002c0000000300000004000000000000005c8f023f48e1fa3e00000000000000002c0000000000000004000000030000000000803f0000000000000000000000002c000000030000000400000000000000483a293f2e157a3ecee0c13d00000000000000002c000000040000000300000052b8de3e52b8de3eb81e053e0000000004000000000000002c000000030000000000803f0000000000000000000000002c0000000300000004000000000000006666263f3333b33e0000000000000000000000002c00000004000000030000000000803f0000000000000000000000002c000000030000000400000000000000b81e453f20856b3e0000000000000000000000002c0000000400000003000000b81e453f20856b3e0000000000000000000000002c0000000400000003000000dde21b3fddaa9d3e3e12aa3d00000000000000002c00000004000000030000000000803f000000000000000000000000360000003500000037000000000000000000403f0000803e000000000000000036000000350000002c000000040000009ed34d3fcde7463e2b609b3a0000000036000000350000002c000000000000000000403f0000803e000000000000000036000000350000002c000000040000000000803f000000000000000000000000360000003500000000000000000000000000803f00000000000000000000000036000000350000002c000000000000000000403f0000803e000000000000000036000000350000002c000000040000000000003f0000003f000000000000000035000000360000002c000000040000000000003f0000003f000000000000000035000000360000002c000000040000000000403f0000803e000000000000000036000000350000002c000000040000009ed34d3fcde7463e2b609b3a0000000036000000350000002c000000000000000000003f0000003f000000000000000035000000360000002c000000040000000000003f0000003f000000000000000035000000360000002c000000040000000000003f0000003f000000000000000035000000360000002c000000040000000000003f0000003f000000000000000035000000360000002c000000040000000000003f0000003f000000000000000035000000360000002c000000040000000000403f0000803e000000000000000036000000350000002c000000040000000000003f0000003f000000000000000035000000360000002c000000040000000000803f000000000000000000000000360000003500000000000000000000000000803f000000000000000000000000360000003500000000000000000000000000803f000000000000000000000000360000003500000000000000000000006666263f3333b33e00000000000000002c0000003500000003000000040000006666263f3333b33e00000000000000002c0000003500000003000000040000006666263f3333b33e00000000000000002c0000003500000003000000040000000000803f000000000000000000000000350000002c00000003000000040000000000803f00000000000000000000000035000000360000002c0000000400000009ec2a3faa6f873e05e2393d000000002c0000003500000004000000000000000000803f000000000000000000000000350000002c00000003000000040000006666263f3333b33e0000000000000000350000002c0000000300000004000000b00c333fcfe9603efce2653d000000002c0000003500000004000000000000000000803f00000000000000000000000035000000360000002c000000040000006666263f3333b33e00000000000000002c0000003500000003000000040000006666263f3333b33e00000000000000002c0000003500000003000000040000006666263f3333b33e00000000000000002c0000003500000003000000040000006666263f3333b33e0000000000000000350000002c0000000300000004000000b00c333fcfe9603efce2653d000000002c0000003500000004000000000000006666263f3333b33e00000000000000002c0000003500000003000000040000000000803f0000000000000000000000002c0000003500000003000000040000000000803f0000000000000000000000002c0000003500000003000000040000000000803f0000000000000000000000002c0000003500000003000000040000000000803f00000000000000000000000035000000360000002c000000040000000000803f00000000000000000000000035000000360000002c000000040000000000803f00000000000000000000000035000000360000002c000000030000000000803f00000000000000000000000035000000360000002c000000040000000000803f00000000000000000000000035000000360000002c000000040000000000803f00000000000000000000000035000000360000002c000000040000000000803f0000000000000000000000002c0000003500000003000000040000000000803f0000000000000000000000002c000000350000000300000004000000cdcc4c3fcdcc4c3e0000000000000000070000000a0000000b000000030000000000003f0000003f00000000000000000b0000000a0000000700000003000000e17a543f7c142e3e0000000000000000070000000a0000000b000000030000000000003f0000003f00000000000000000b0000000a0000000700000003000000cdcc4c3fcdcc4c3e00000000000000000b0000000a0000000700000003000000cdcc4c3fcccc4c3e0000000000000000070000000a0000000b000000030000000000003f0000003f00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f000000000000000039000000380000000b000000000000000000003f0000003f000000000000000039000000380000000b000000000000000000003f0000003f000000000000000039000000380000000b000000000000000000803f00000000000000000000000038000000390000000b000000000000000000003f0000003f000000000000000039000000380000000b000000000000000000803f000000000000000000000000380000000b00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f000000000000000039000000380000000b000000000000000000003f0000003f000000000000000039000000380000000b000000000000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f000000000000000039000000380000000b0000000a0000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f000000000000000039000000380000000b000000000000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f0000000000000000380000000a000000070000000b0000000000003f0000003f0000000000000000380000000a000000070000000b0000000000803f000000000000000000000000380000000b00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f0000000000000000380000000a000000070000000b0000000000003f0000003f0000000000000000380000000a000000070000000b0000000000003f0000003f0000000000000000380000000a00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f0000000000000000380000000a000000070000000b0000000000003f0000003f0000000000000000380000000a000000070000000b0000000000803f000000000000000000000000380000000b00000039000000070000000000003f0000003f0000000000000000380000000a00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000803f000000000000000000000000380000000b00000039000000070000000000803f0000000000000000000000000a0000000b00000038000000070000000000803f0000000000000000000000000a0000000b00000038000000070000000000803f0000000000000000000000000a0000000b00000038000000070000000000803f0000000000000000000000000a0000000b00000038000000070000000000003f0000003f0000000000000000380000000a00000039000000070000000000803f0000000000000000000000000a0000000b00000038000000070000000000003f0000003f0000000000000000380000000a000000070000000b0000000000803f0000000000000000000000000a0000000b00000039000000070000000000803f0000000000000000000000000a0000000b00000039000000380000000000803f0000000000000000000000000a0000000b00000039000000380000000000803f0000000000000000000000000a0000000b0000000700000003000000cdcc4c3fcdcc4c3e00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b0000000700000003000000cdcc4c3fcdcc4c3e00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000803f0000000000000000000000000a0000000b0000000700000003000000cdcc4c3fcdcc4c3e00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000003f0000003f00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000003f0000003f00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000003f0000003f00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000003f0000003f0000000000000000380000000a000000070000000b0000000000003f0000003f00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000003f0000003f00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000009a99593f9999193e0000000000000000070000000a0000000b000000030000000000803f0000000000000000000000000a0000000b0000000700000003000000cdcc4c3fcccc4c3e0000000000000000070000000a0000000b000000030000000000003f0000003f00000000000000000b0000000a00000007000000030000000000803f0000000000000000000000000a0000000b00000007000000030000009a99593f9999193e0000000000000000070000000a0000000b00000003000000cdcc4c3fcccc4c3e000000000000000007000000030000000a0000000b0000009a99593f9999193e0000000000000000070000000a0000000b00000003000000cdcc4c3fcccc4c3e000000000000000007000000030000000a0000000b0000000000003f0000003f0000000000000000380000000a000000070000000b0000000000003f0000003f0000000000000000380000000a000000070000000b0000000000003f0000003f00000000000000003a0000003b0000000a0000000b0000000ad7233fcdcc4c3e09d7233e00000000390000003c0000003a0000000b0000000000003f0000003f00000000000000003a0000003b000000390000000a0000000000003f0000003f00000000000000003a0000003b00000039000000000000000000003f0000003f00000000000000003a0000003b000000390000000a0000000ad7233fcdcc4c3e09d7233e00000000390000003c0000003a0000003b000000cdcc4c3fcccc4c3e0000000000000000390000003a00000000000000000000000000003f0000003f00000000000000003d0000003e0000000a0000003c0000000000003f0000003f00000000000000003d0000003e0000000a0000003c0000000000003f0000003f00000000000000003f000000400000000a0000003d000000cdcc4c3fcccc4c3e0000000000000000390000003d0000000a0000000b000000c1091c3fcfcc4c3e2e0c433e00000000390000003c0000003d0000000b0000000000003f0000003f00000000000000003d0000003e0000000a0000003c000000870afc3e3208b23eabb6ff3d000000003d0000003c000000390000003e000000cdcc4c3fcccc4c3e0000000000000000390000003d000000070000000a0000000000003f0000003f00000000000000003d0000003e000000390000000a0000000000003f0000003f00000000000000003d0000003e0000000a0000003c000000c1091c3fcfcc4c3e2e0c433e00000000390000003c0000003d0000000b0000000000003f0000003f00000000000000003d0000003e0000000a0000003c000000cdcc4c3fcccc4c3e0000000000000000390000003d0000000a0000003c0000000000003f0000003f00000000000000003d0000003e0000000a0000003c000000cdcc4c3fcccc4c3e0000000000000000390000003d0000000a0000000b0000000000003f0000003f00000000000000003c000000410000000a0000003a0000000000003f0000003f00000000000000003c000000410000000a0000000b0000000000803f000000000000000000000000410000000a0000003c0000000b0000000000003f0000003f00000000000000003c000000410000000a0000003a0000000000003f0000003f00000000000000003c00000041000000390000000a000000cdcc4c3fcccc4c3e0000000000000000390000003c000000070000000a0000000ad7233fcdcc4c3e09d7233e00000000390000003d0000003c0000003a0000000000003f0000003f00000000000000003c000000410000000a0000000b0000000000003f0000003f00000000000000003c000000410000000a0000003a000000cdcc4c3fcccc4c3e0000000000000000390000003c0000000a0000003a0000000000003f0000003f00000000000000003c000000410000000a0000003a0000000ad7233fcdcc4c3e09d7233e00000000390000003c0000003a0000003b0000000000803f0000000000000000000000003b0000003a00000000000000000000000000003f0000003f00000000000000003a0000003b0000000a0000000b000000cdcc4c3fcccc4c3e0000000000000000390000003a0000000a0000000b0000000000003f0000003f00000000000000003a0000003b000000390000000a000000cdcc4c3fcccc4c3e0000000000000000390000003a0000000b000000000000000000003f0000003f00000000000000003a0000003b0000003900000000000000cdcc4c3fcccc4c3e0000000000000000390000003a00000000000000000000000000803f000000000000000000000000390000000b0000000a0000003a0000000000803f000000000000000000000000390000000000000000000000000000000000003f0000003f000000000000000039000000380000000b000000000000000000803f000000000000000000000000390000000b000000380000003f0000000000803f000000000000000000000000390000000b000000380000003f0000000000803f000000000000000000000000390000003800000000000000000000000000803f000000000000000000000000390000000000000000000000000000000000803f000000000000000000000000390000003800000000000000000000000000803f000000000000000000000000390000000b0000000a0000003c000000cdcc4c3fcdcc4c3e0000000000000000390000003f0000003d0000000b0000000000003f0000003f000000000000000039000000380000000b000000000000000000803f000000000000000000000000390000000000000000000000000000000000803f000000000000000000000000390000003800000000000000000000000000803f000000000000000000000000390000003800000000000000000000000000003f0000003f000000000000000039000000380000000b000000000000000000803f000000000000000000000000390000000000000000000000000000000000803f000000000000000000000000390000000b000000380000000a0000000000803f000000000000000000000000390000000b000000380000003a0000000000803f000000000000000000000000390000000b000000380000000a0000000000803f000000000000000000000000390000000b0000000a0000003a0000000000003f0000003f000000000000000039000000380000000b000000000000000000803f000000000000000000000000390000000000000000000000000000000000003f0000003f000000000000000039000000380000000b000000000000000000003f0000003f000000000000000039000000380000000b0000000a000000cdcc4c3fcdcc4c3e0000000000000000390000003f0000003d0000000b0000000000803f0000000000000000000000003b0000003a00000000000000000000000000003f0000003f00000000000000003f000000400000000a0000003d0000000000803f000000000000000000000000410000000a0000003c0000000b00000085eb513feb51383e0000000000000000390000003f0000000000000000000000cdcc4c3fcdcc4c3e0000000000000000390000003f0000000a0000003d000000e17a543f7b142e3e0000000000000000390000003f000000380000000a00000085eb513feb51383e0000000000000000390000003f00000000000000000000000000803f000000000000000000000000390000000b0000003f000000400000000000003f0000003f00000000000000003f000000400000000a0000000b0000000000003f0000003f00000000000000003f000000400000000a0000003d0000000000003f0000003f00000000000000003f000000400000000b000000390000000000003f0000003f00000000000000003f000000400000000a0000003d0000000000003f0000003f00000000000000003f000000400000000b000000390000000000803f000000000000000000000000400000000a0000003f000000390000000000803f000000000000000000000000400000000a0000003f000000390000000000003f0000003f0000000000000000420000004300000000000000000000000ad7633fae47e13d0000000000000000360000004200000037000000000000000000003f0000003f0000000000000000420000004300000000000000000000000000003f0000003f000000000000000044000000450000004300000042000000e470263fba74133ea1c2d83d00000000360000004500000044000000420000000000003f0000003f0000000000000000440000004500000043000000420000000000003f0000003f000000000000000046000000470000004500000044000000cc7f483f8ec2f53d163fc63d00000000360000004400000046000000470000000000003f0000003f000000000000000046000000470000004400000036000000e76d2c3f4b50fc3d8fc2f53d00000000360000004500000042000000440000000000003f0000003f0000000000000000420000004300000044000000450000000000003f0000003f0000000000000000440000004500000000000000000000000c98443ffe9d6d3e89ffe73600000000440000003600000000000000000000000000003f0000003f00000000000000004400000045000000460000004700000011c74a3fad47e13dcd7fc83d00000000360000004400000046000000000000000000803f000000000000000000000000450000004400000047000000000000000000803f000000000000000000000000450000000000000000000000000000000000803f000000000000000000000000450000004400000000000000000000000000003f0000003f0000000000000000440000004500000043000000420000000000003f0000003f0000000000000000440000004500000046000000470000000000003f0000003f0000000000000000440000004500000046000000470000000000003f0000003f0000000000000000420000004300000000000000000000000000003f0000003f0000000000000000420000004300000044000000450000000000803f000000000000000000000000430000000000000000000000000000000ad7633fae47e13d0000000000000000360000004200000044000000000000000000003f0000003f0000000000000000420000004300000000000000000000000000003f0000003f0000000000000000460000004700000044000000360000000000003f0000003f0000000000000000460000004700000036000000000000000000803f000000000000000000000000470000000000000000000000000000000000003f0000003f000000000000000046000000470000003600000000000000ae47613f8fc2f53d0000000000000000360000004600000047000000440000000000003f0000003f000000000000000046000000470000003600000000000000ae47613f8fc2f53d0000000000000000360000004600000047000000000000000000003f0000003f0000000000000000460000004700000036000000000000000000803f000000000000000000000000480000003600000000000000000000000000003f0000003f0000000000000000370000004800000036000000000000000000003f0000003f0000000000000000370000004800000036000000000000000000803f000000000000000000000000360000003500000046000000000000000000803f00000000000000000000000036000000350000002c000000000000000000803f00000000000000000000000036000000350000000000000000000000da8d223fcbcc4c3ecbfb283e000000003600000037000000420000000000000085eb513feb51383e000000000000000036000000370000003500000000000000452e453ff3dd693eaf04b33a0000000036000000420000003700000044000000e470263fba74133ea1c2d83d00000000360000004500000044000000420000000000803f00000000000000000000000036000000420000000000000000000000ae47613f8fc2f53d000000000000000036000000460000000000000000000000cc7f483f8ec2f53d163fc63d00000000360000004400000046000000470000004cab423fd052753e00000000000000003600000046000000000000000000000051fa553f19800b3e6ac4a73c00000000360000004400000046000000420000000000003f0000003f000000000000000042000000430000004400000045000000ae47613f8fc2f53d0000000000000000360000004600000000000000000000000000803f000000000000000000000000360000004200000000000000000000000000003f0000003f000000000000000037000000480000003600000000000000cdcc4c3fcccc4c3e0000000000000000360000003700000035000000420000000000003f0000003f0000000000000000370000004800000036000000000000000000803f0000000000000000000000003600000035000000370000000000000085eb513feb51383e00000000000000003600000037000000350000000000000085eb513feb51383e0000000000000000360000003700000035000000000000000000803f000000000000000000000000360000004600000035000000440000000000803f000000000000000000000000360000003500000046000000000000009ed34d3fcde7463e2b609b3a0000000036000000350000002c000000000000000000803f000000000000000000000000360000003500000000000000000000000000803f000000000000000000000000360000003500000046000000000000000000803f000000000000000000000000360000003500000000000000000000004cab423fd052753e0000000000000000360000004600000000000000000000000000003f0000003f0000000000000000370000004800000036000000000000000000803f000000000000000000000000360000003500000000000000000000000000803f000000000000000000000000360000003500000000000000000000000000803f0000000000000000000000003600000044000000350000004200000085eb513feb51383e0000000000000000360000003700000035000000000000000000803f00000000000000000000000036000000460000003500000044000000452e453ff3dd693eaf04b33a00000000360000004200000037000000440000004365f93ec33bc53e72bff93d0000000036000000420000003700000048000000da8d223fcbcc4c3ecbfb283e00000000360000003700000042000000000000000000803f000000000000000000000000450000000000000000000000000000000000803f000000000000000000000000450000004400000000000000000000000000803f000000000000000000000000450000004400000000000000000000000000803f000000000000000000000000450000004400000000000000000000000000803f000000000000000000000000450000004400000047000000000000000000803f000000000000000000000000430000000000000000000000000000000000803f000000000000000000000000430000004200000045000000000000000000803f000000000000000000000000430000004200000000000000000000000000803f000000000000000000000000430000004200000000000000000000000000803f000000000000000000000000470000000000000000000000000000000000003f0000003f0000000000000000370000004800000036000000000000000000803f00000000000000000000000048000000360000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0.00048974156, y: 1.2556452, z: -0.98787117} + m_Extent: {x: 0.81574905, y: 1.255752, z: 3.4824367} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh.meta new file mode 100644 index 0000000000..e37d2c31f1 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d6ae91d34ee0faf43b66ebde9c9768d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab new file mode 100644 index 0000000000..c87266f86e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab @@ -0,0 +1,295 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4919704491745833379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4173649190654784598} + - component: {fileID: 309059706326713193} + - component: {fileID: 4489810492412735681} + - component: {fileID: 74926328127229082} + m_Layer: 0 + m_Name: box03_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4173649190654784598 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4919704491745833379} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &309059706326713193 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4919704491745833379} + m_Mesh: {fileID: 4300000, guid: d6ae91d34ee0faf43b66ebde9c9768d8, type: 2} +--- !u!137 &4489810492412735681 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4919704491745833379} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 64a2917c15df2734e86993dcdd0cc5d7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: d6ae91d34ee0faf43b66ebde9c9768d8, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &74926328127229082 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4919704491745833379} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 309059706326713193} + _skinnedMeshRenderer: {fileID: 4489810492412735681} + BoneNames: + - Bip01 Spine2 + - Bip01 Neck + - Bip01 Neck1 + - Bip01 Spine + - Bip01 Spine1 + - Bip01 Neck2 + - Bip01 L UpperArm + - Bip01 Pelvis + - Bip01 L Thigh + - Bip01 L Calf + - Bip01 R Thigh + - Bip01 R Calf + - Bip01 Tail + - Bip01 Tail1 + - Bip01 Tail4 + - Bip01 Tail3 + - Bip01 Tail2 + - Bone01 + - Bip01 Neck3 + - Bip01 Ponytail1 + - Bip01 Neck4 + - Bip01 Head + - Bone22 + - Bone18 + - Bip01 L ForeArm + - Bip01 L Hand + - Bip01 L Finger0 + - Bip01 L HorseLink + - Bip01 L Foot + - Bip01 L Toe0 + - Bip01 L Toe01 + - Bip01 L Toe1 + - Bip01 L Toe2 + - Bip01 L Toe21 + - Bip01 L Toe11 + - Bip01 L Toe3 + - Bip01 L Toe31 + - Bip01 L Finger1 + - Bip01 L Finger11 + - Bip01 L Finger2 + - Bip01 L Finger21 + - Bip01 L Finger3 + - Bip01 L Finger31 + - Bip01 L Finger01 + - Bip01 R UpperArm + - Bone03 + - Bone04 + - Bone08 + - Bone07 + - Bone26 + - Bone24 + - Bone06 + - Bone05 + - Bip01 R ForeArm + - Bip01 R Hand + - Bip01 R Finger0 + - Bip01 R HorseLink + - Bip01 R Foot + - Bip01 R Toe0 + - Bip01 R Toe01 + - Bip01 R Toe1 + - Bip01 R Toe2 + - Bip01 R Toe21 + - Bip01 R Toe3 + - Bip01 R Toe31 + - Bip01 R Toe11 + - Bip01 R Finger1 + - Bip01 R Finger11 + - Bip01 R Finger2 + - Bip01 R Finger21 + - Bip01 R Finger3 + - Bip01 R Finger31 + - Bip01 R Finger01 + - Bone12 + - Bone16 + - Bone23 + - Bone25 + - Bone27 + - Bone14 + - Bone21 + - Bone28 + - Bone09 + - Bone11 + - Bone17 + - Bone19 + - Bone15 + - Bone13 + - Bone10 + - Bone20 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab.meta new file mode 100644 index 0000000000..2ee34915f3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/双头龙/双头龙/box03_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a8207239ebf8f6146992057f2ed90856 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅.meta new file mode 100644 index 0000000000..caa09c6da0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c55f2d3e116406444a58c0cc2a74337d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.meta new file mode 100644 index 0000000000..a2792d3726 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 69660e23169de93428932fa0def2347d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab new file mode 100644 index 0000000000..99c53de7e9 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab @@ -0,0 +1,1594 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &93132523010306436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3311799867113407777} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3311799867113407777 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 93132523010306436} + serializedVersion: 2 + m_LocalRotation: {x: 0.021268956, y: 0.5856064, z: -0.029410986, w: 0.8097826} + m_LocalPosition: {x: 0.5931175, y: 0.30088603, z: -0.35830384} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2391483215313115738} + m_Father: {fileID: 1440067888165676573} + m_LocalEulerAnglesHint: {x: -7.8879347, y: 95.21932, z: -1.4514945} +--- !u!1 &513900283184326801 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7743262243223000939} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7743262243223000939 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 513900283184326801} + serializedVersion: 2 + m_LocalRotation: {x: 2.433055e-10, y: -0.05870285, z: -0.0000000027833535, w: 0.9982755} + m_LocalPosition: {x: 1.8541062, y: -0.000000029517231, z: -0.000005193055} + m_LocalScale: {x: 0.9999997, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6841001811210473896} + m_LocalEulerAnglesHint: {x: -2.582576, y: 4.6483235, z: -5.309776} +--- !u!1 &705801866334362144 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2069560216960047773} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2069560216960047773 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705801866334362144} + serializedVersion: 2 + m_LocalRotation: {x: 0.00446651, y: 0.1314991, z: 0.033651378, w: 0.9907349} + m_LocalPosition: {x: 1.4735129, y: -0.000000017229468, z: 0.00000037625432} + m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1692214556260403582} + m_LocalEulerAnglesHint: {x: 8.713039, y: -5.9071374, z: 16.753115} +--- !u!1 &802362429279003427 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8040547009151250873} + - component: {fileID: 7454600052479572726} + - component: {fileID: 2838479697884116115} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &8040547009151250873 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 802362429279003427} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1615012260662424317} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7454600052479572726 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 802362429279003427} + m_Mesh: {fileID: 0} +--- !u!137 &2838479697884116115 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 802362429279003427} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &1026858664166664992 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6290615395800145239} + m_Layer: 0 + m_Name: Bone29 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6290615395800145239 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026858664166664992} + serializedVersion: 2 + m_LocalRotation: {x: -0.001954992, y: 0.01363769, z: -0.1418869, w: 0.98978704} + m_LocalPosition: {x: 1.1362773, y: 0.000000015428212, z: -0.00000029802322} + m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7692334582160866748} + m_LocalEulerAnglesHint: {x: 0.00000025558418, y: 1.5787894, z: -12.8922615} +--- !u!1 &1603994578876140142 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3419250810964342168} + m_Layer: 0 + m_Name: Bone18 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3419250810964342168 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1603994578876140142} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000005401671, y: -0.061052233, z: -0.000000070314854, w: 0.9981346} + m_LocalPosition: {x: 0.29744625, y: 0.00000019418073, z: -0.00000024028128} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2429473792824466932} + m_LocalEulerAnglesHint: {x: 0.000000013030032, y: 11.665634, z: -0.0000015347717} +--- !u!1 &1749522747060377106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1113060386113443596} + m_Layer: 0 + m_Name: Bone22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1113060386113443596 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749522747060377106} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000014664266, y: 0.5866269, z: 0.0000002000006, w: 0.80985737} + m_LocalPosition: {x: 0.3099784, y: 0.037295826, z: -0.18310136} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1248623916900205639} + m_Father: {fileID: 6841001811210473896} + m_LocalEulerAnglesHint: {x: 4.4247847, y: 57.600235, z: -14.117935} +--- !u!1 &1881978280424107918 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7987867441471085684} + m_Layer: 0 + m_Name: Bone25 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7987867441471085684 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1881978280424107918} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000001862367, y: -0.74645823, z: 3.2178645e-11, w: 0.6654324} + m_LocalPosition: {x: 0.35767183, y: 0.037658926, z: 0.20229633} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3525468008996841836} + m_Father: {fileID: 9086559381721846622} + m_LocalEulerAnglesHint: {x: -0.0000031344919, y: -96.56896, z: -0.16083427} +--- !u!1 &2071252159346412236 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2027892915076474699} + m_Layer: 0 + m_Name: Bone02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2027892915076474699 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2071252159346412236} + serializedVersion: 2 + m_LocalRotation: {x: -0.00084466476, y: -0.035796132, z: 0.023574905, w: 0.99908066} + m_LocalPosition: {x: 0.9812802, y: -0.00000004470349, z: 0.00000023841858} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5133730405816617801} + m_Father: {fileID: 1440067888165676573} + m_LocalEulerAnglesHint: {x: 0.000000050825715, y: -4.1039553, z: 1.456995} +--- !u!1 &2411368173532663259 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 562166241899808318} + m_Layer: 0 + m_Name: Bone40 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &562166241899808318 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2411368173532663259} + serializedVersion: 2 + m_LocalRotation: {x: -0.7022815, y: 0.082467064, z: -0.082467094, w: 0.7022815} + m_LocalPosition: {x: 0.38313627, y: -0.16370833, z: -0.24279054} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2429473792824466932} + m_Father: {fileID: 8583549427217217436} + m_LocalEulerAnglesHint: {x: -73.79314, y: 90.00001, z: -90.00001} +--- !u!1 &2556618786174849734 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2574131398918919428} + m_Layer: 0 + m_Name: HH_FX + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2574131398918919428 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2556618786174849734} + serializedVersion: 2 + m_LocalRotation: {x: 0.5206316, y: 0.4749994, z: 0.47807795, w: 0.52417535} + m_LocalPosition: {x: 0.9553422, y: -0.03297869, z: -0.011380876} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8583549427217217436} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2592667717954953693 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6502068923202021086} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6502068923202021086 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2592667717954953693} + serializedVersion: 2 + m_LocalRotation: {x: -0.019578252, y: 0.6945622, z: 0.019564094, w: 0.7189} + m_LocalPosition: {x: 0.3257185, y: 0.5174821, z: 0.00904638} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1440067888165676573} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2682112996461763981 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9030820716021729200} + m_Layer: 0 + m_Name: Bone07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9030820716021729200 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2682112996461763981} + serializedVersion: 2 + m_LocalRotation: {x: -0.0001632711, y: -0.014487234, z: 0.011268015, w: 0.9998316} + m_LocalPosition: {x: 0.56314164, y: 0.00000006888525, z: 0.0000000398154} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3752356557968190369} + m_LocalEulerAnglesHint: {x: -4.5138927, y: -1.7622414, z: 1.2954131} +--- !u!1 &3255010521008520681 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 447841618042947096} + m_Layer: 0 + m_Name: Bone03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &447841618042947096 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3255010521008520681} + serializedVersion: 2 + m_LocalRotation: {x: 0.000092038405, y: -0.0075745517, z: -0.012149959, w: 0.9998975} + m_LocalPosition: {x: 0.76154274, y: -0.000000047963113, z: -0.00000010731674} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1232277296298073937} + m_Father: {fileID: 5133730405816617801} + m_LocalEulerAnglesHint: {x: -0.00000008817969, y: -0.8680519, z: 5.6820073} +--- !u!1 &3470365208454660410 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7692334582160866748} + m_Layer: 0 + m_Name: Bone28 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7692334582160866748 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3470365208454660410} + serializedVersion: 2 + m_LocalRotation: {x: 0.011221037, y: -0.61770767, z: 0.014281752, w: 0.7861981} + m_LocalPosition: {x: 0.4486275, y: -0.012770328, z: 0.082779996} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6290615395800145239} + m_Father: {fileID: 1692214556260403582} + m_LocalEulerAnglesHint: {x: 3.8450532, y: -69.33779, z: -4.9701147} +--- !u!1 &3493070472828449547 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2087282242707922397} + m_Layer: 0 + m_Name: "\u5929\u9E45" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2087282242707922397 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3493070472828449547} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1615012260662424317} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3707217265294258297 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9086559381721846622} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9086559381721846622 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3707217265294258297} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.01727578, z: -0, w: 0.9998508} + m_LocalPosition: {x: 0.85469276, y: -0.00000004510366, z: 0.00000011920929} + m_LocalScale: {x: 0.99999964, y: 1.0000001, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1692214556260403582} + - {fileID: 7987867441471085684} + m_Father: {fileID: 2448431139592081150} + m_LocalEulerAnglesHint: {x: 4.572703, y: 36.68473, z: 9.098354} +--- !u!1 &4230501943741815389 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3525468008996841836} + m_Layer: 0 + m_Name: Bone26 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3525468008996841836 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4230501943741815389} + serializedVersion: 2 + m_LocalRotation: {x: -0.035480812, y: 0.103144, z: -0.16682927, w: 0.97993386} + m_LocalPosition: {x: 1.2389338, y: -0.000000048762438, z: -0.00000047683716} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7987867441471085684} + m_LocalEulerAnglesHint: {x: -6.7863216, y: -2.2548246, z: -2.9024441} +--- !u!1 &4275934238851610039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1248623916900205639} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1248623916900205639 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4275934238851610039} + serializedVersion: 2 + m_LocalRotation: {x: -0.0036394172, y: 0.019776667, z: -0.18094984, w: 0.98328674} + m_LocalPosition: {x: 1.0659597, y: -0.000000018343767, z: 0.0000002384186} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1113060386113443596} + m_LocalEulerAnglesHint: {x: 0.000000756641, y: 2.3044462, z: -18.379309} +--- !u!1 &4418193499189943672 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3752356557968190369} + m_Layer: 0 + m_Name: Bone06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3752356557968190369 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4418193499189943672} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000025320332, y: 0.014488132, z: -0.000000007450581, w: 0.9998951} + m_LocalPosition: {x: 1.0442289, y: 0.00000008149073, z: 0.0000003576278} + m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9030820716021729200} + m_Father: {fileID: 8583549427217217436} + m_LocalEulerAnglesHint: {x: -0.000000040777817, y: 1.6602731, z: 3.7430239} +--- !u!1 &4822691857149600470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1148918605443890215} + m_Layer: 0 + m_Name: Bone19 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1148918605443890215 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4822691857149600470} + serializedVersion: 2 + m_LocalRotation: {x: 6.933507e-10, y: 0.71315956, z: 0.0000000025266624, w: 0.7010018} + m_LocalPosition: {x: 0.44689825, y: -0.01670838, z: -0.1342707} + m_LocalScale: {x: 1, y: 1.0000002, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7554238088914956925} + m_Father: {fileID: 2391483215313115738} + m_LocalEulerAnglesHint: {x: 0.0000021598348, y: 90.98513, z: -15.305536} +--- !u!1 &5006439675230739666 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5133730405816617801} + m_Layer: 0 + m_Name: Bone33 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5133730405816617801 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5006439675230739666} + serializedVersion: 2 + m_LocalRotation: {x: 0.0022515673, y: 0.025647666, z: 0.08742299, w: 0.9958386} + m_LocalPosition: {x: 0.6349591, y: -0.00000002240995, z: 0.00000012577948} + m_LocalScale: {x: 1.0000002, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 447841618042947096} + m_Father: {fileID: 2027892915076474699} + m_LocalEulerAnglesHint: {x: -0.000000070799324, y: 2.9506412, z: -4.2653046} +--- !u!1 &5095283740555152130 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7554238088914956925} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7554238088914956925 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5095283740555152130} + serializedVersion: 2 + m_LocalRotation: {x: 0.0749505, y: -0.009099781, z: -0.20609371, w: 0.97561526} + m_LocalPosition: {x: 1.2631967, y: -0.00000002621305, z: 0.00000023841864} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1148918605443890215} + m_LocalEulerAnglesHint: {x: 8.219561, y: -2.8118324, z: -0.012647644} +--- !u!1 &5315219584795313993 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1440067888165676573} + m_Layer: 0 + m_Name: Bone01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1440067888165676573 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5315219584795313993} + serializedVersion: 2 + m_LocalRotation: {x: -0.026110232, y: -0.71908617, z: -0.025211563, w: -0.69397247} + m_LocalPosition: {x: 0.001, y: -0.068, z: 0.36} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2027892915076474699} + - {fileID: 8583549427217217436} + - {fileID: 3311799867113407777} + - {fileID: 2448431139592081150} + - {fileID: 6502068923202021086} + m_Father: {fileID: 1615012260662424317} + m_LocalEulerAnglesHint: {x: -0.0009874845, y: -87.96312, z: -25.21675} +--- !u!1 &6098158079057030243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1692214556260403582} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1692214556260403582 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6098158079057030243} + serializedVersion: 2 + m_LocalRotation: {x: 0.0030442388, y: -0.1675816, z: -0.017905757, w: 0.9856909} + m_LocalPosition: {x: 1.386167, y: 0.00000014909891, z: 0.00000010786063} + m_LocalScale: {x: 1.0000004, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2069560216960047773} + - {fileID: 7692334582160866748} + m_Father: {fileID: 9086559381721846622} + m_LocalEulerAnglesHint: {x: 3.050325, y: -28.491402, z: -1.3345054} +--- !u!1 &6996960980186182598 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2391483215313115738} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2391483215313115738 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6996960980186182598} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.015647708, z: -9.3132246e-10, w: 0.9998776} + m_LocalPosition: {x: 0.6925212, y: 0.00000002916931, z: 0.000000029802322} + m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6841001811210473896} + - {fileID: 1148918605443890215} + m_Father: {fileID: 3311799867113407777} + m_LocalEulerAnglesHint: {x: 9.044273, y: -26.962406, z: 14.386587} +--- !u!1 &7098050858993852010 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1232277296298073937} + m_Layer: 0 + m_Name: Bone35 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1232277296298073937 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7098050858993852010} + serializedVersion: 2 + m_LocalRotation: {x: -0.0015422365, y: 0.009680441, z: -0.1573248, w: 0.98749834} + m_LocalPosition: {x: 0.87682855, y: -0.00000011943575, z: -0.000000016308148} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 447841618042947096} + m_LocalEulerAnglesHint: {x: -0.0000010823468, y: 1.1232924, z: -3.8288152} +--- !u!1 &7418630647384901822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8583549427217217436} + m_Layer: 0 + m_Name: Bone05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8583549427217217436 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7418630647384901822} + serializedVersion: 2 + m_LocalRotation: {x: 0.09974067, y: 0.9948571, z: 0.00048174523, w: 0.017632125} + m_LocalPosition: {x: 0.0150383385, y: 0.063207455, z: -0.01808688} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3752356557968190369} + - {fileID: 2769866551816704717} + - {fileID: 562166241899808318} + - {fileID: 2574131398918919428} + m_Father: {fileID: 1440067888165676573} + m_LocalEulerAnglesHint: {x: 0.1495774, y: 177.95314, z: -0.43365568} +--- !u!1 &7490511987347934151 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2429473792824466932} + m_Layer: 0 + m_Name: Bone41 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2429473792824466932 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7490511987347934151} + serializedVersion: 2 + m_LocalRotation: {x: -0.019247647, y: 0.19329855, z: 0.061896414, w: 0.97899646} + m_LocalPosition: {x: 0.8814661, y: -0.00000019371507, z: 0.00000007450581} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3419250810964342168} + m_Father: {fileID: 562166241899808318} + m_LocalEulerAnglesHint: {x: 0.22569486, y: -7.8434772, z: 7.362644} +--- !u!1 &7733100121660700356 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2769866551816704717} + m_Layer: 0 + m_Name: Bone04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2769866551816704717 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7733100121660700356} + serializedVersion: 2 + m_LocalRotation: {x: -0.70264083, y: 0.07934616, z: -0.07934624, w: 0.70264095} + m_LocalPosition: {x: 0.39158124, y: -0.15354298, z: 0.26615962} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8295371176008414134} + m_Father: {fileID: 8583549427217217436} + m_LocalEulerAnglesHint: {x: -74.30224, y: 89.99998, z: -89.99998} +--- !u!1 &8149329808726149451 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1615012260662424317} + - component: {fileID: 1758006789367461386} + m_Layer: 0 + m_Name: "\u5929\u9E45" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1615012260662424317 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8149329808726149451} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8040547009151250873} + - {fileID: 1440067888165676573} + - {fileID: 1645744677177537794} + - {fileID: 8056245342061317421} + m_Father: {fileID: 2087282242707922397} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &1758006789367461386 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8149329808726149451} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 0} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &8677570790375833020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2448431139592081150} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2448431139592081150 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8677570790375833020} + serializedVersion: 2 + m_LocalRotation: {x: 0.023122696, y: 0.63664335, z: 0.027977208, w: -0.7703038} + m_LocalPosition: {x: 0.6194849, y: 0.29896817, z: 0.42915356} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9086559381721846622} + m_Father: {fileID: 1440067888165676573} + m_LocalEulerAnglesHint: {x: -2.393788, y: -109.47526, z: 0.99766713} +--- !u!1 &8689732444860584927 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8295371176008414134} + m_Layer: 0 + m_Name: Bone31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8295371176008414134 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8689732444860584927} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000059604645, y: 0.20755416, z: -0.000000059604645, w: 0.97822356} + m_LocalPosition: {x: 0.85784125, y: 0.0000000745058, z: -0.00000010430814} + m_LocalScale: {x: 0.9999998, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8278596829083747677} + m_Father: {fileID: 2769866551816704717} + m_LocalEulerAnglesHint: {x: -0.0000005850747, y: -6.238237, z: -0.000008505475} +--- !u!1 &8706512264294223592 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8278596829083747677} + m_Layer: 0 + m_Name: Bone27 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8278596829083747677 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8706512264294223592} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000055583854, y: -0.09573848, z: 0.000000051378745, w: 0.9954065} + m_LocalPosition: {x: 0.32162234, y: -0.00000020785654, z: 0.00000014994293} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8295371176008414134} + m_LocalEulerAnglesHint: {x: -0.000000004377568, y: 0.9804073, z: 0.0000000037224848} +--- !u!1 &9165156166738242266 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6841001811210473896} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6841001811210473896 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9165156166738242266} + serializedVersion: 2 + m_LocalRotation: {x: -1.7914475e-10, y: 0.12991291, z: 0.0000000037150494, w: 0.9915255} + m_LocalPosition: {x: 1.6715027, y: 0.00000004124632, z: 0.00000038175313} + m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7743262243223000939} + - {fileID: 1113060386113443596} + m_Father: {fileID: 2391483215313115738} + m_LocalEulerAnglesHint: {x: 0.0000008537736, y: 14.929125, z: -21.819256} +--- !u!1001 &3409407164390048357 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1615012260662424317} + m_Modifications: + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 1440067888165676573} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 8583549427217217436} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 3311799867113407777} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 2391483215313115738} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 2027892915076474699} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 1440067888165676573} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 7554238088914956925} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 1148918605443890215} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 1248623916900205639} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 6841001811210473896} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 1113060386113443596} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 3752356557968190369} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 7743262243223000939} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 9030820716021729200} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 7987867441471085684} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 2448431139592081150} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 2769866551816704717} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 9086559381721846622} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 1692214556260403582} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 7692334582160866748} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 2069560216960047773} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 6290615395800145239} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 3525468008996841836} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 8295371176008414134} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 5133730405816617801} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 1232277296298073937} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 447841618042947096} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 562166241899808318} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 2429473792824466932} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 8278596829083747677} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 3419250810964342168} + - target: {fileID: 835120886371207967, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 1440067888165676573} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4990772548856392807, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + propertyPath: m_Name + value: "\u767D\u5929\u9E45\u7FC5\u8180_0" + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 1920466132406985204, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} +--- !u!4 &1645744677177537794 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4145134445227947879, guid: ed40150e28f884a4d9119b1d62b68ca6, type: 3} + m_PrefabInstance: {fileID: 3409407164390048357} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9112264691254485856 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1615012260662424317} + m_Modifications: + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 1440067888165676573} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 8583549427217217436} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 3311799867113407777} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 2391483215313115738} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 2027892915076474699} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 1440067888165676573} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 7554238088914956925} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 1148918605443890215} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 1248623916900205639} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 6841001811210473896} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 1113060386113443596} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 3752356557968190369} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 7743262243223000939} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 9030820716021729200} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 7987867441471085684} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 2448431139592081150} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 2769866551816704717} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 9086559381721846622} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 1692214556260403582} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 7692334582160866748} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 2069560216960047773} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 6290615395800145239} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 3525468008996841836} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 8295371176008414134} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 5133730405816617801} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 1232277296298073937} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 447841618042947096} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 562166241899808318} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 2429473792824466932} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 8278596829083747677} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 3419250810964342168} + - target: {fileID: 6400966380356475155, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 1440067888165676573} + - target: {fileID: 8878649691877917833, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + propertyPath: m_Name + value: "\u767D\u5929\u9E45_0" + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 2247561146141477150, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} +--- !u!4 &8056245342061317421 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1276994800527814221, guid: 6f0d1a03ad2049641a90c175041f91ff, type: 3} + m_PrefabInstance: {fileID: 9112264691254485856} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab.meta new file mode 100644 index 0000000000..da87aeb822 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d7a978604f9e83b40b807d49cdbb9850 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat new file mode 100644 index 0000000000..52c4640223 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u767D\u5929\u9E45_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 099d752e1130bf94281592a5382eb89f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 099d752e1130bf94281592a5382eb89f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2630657448003360294 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat.meta new file mode 100644 index 0000000000..9df80656e0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 543cfc82119f0bf4080b2adba0bd514d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh new file mode 100644 index 0000000000..84493fbe22 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh @@ -0,0 +1,725 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u767D\u5929\u9E45_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 1530 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 286 + localAABB: + m_Center: {x: -0.71359193, y: -0.7703135, z: 0.03972292} + m_Extent: {x: 3.2166853, y: 0.6763401, z: 0.6694259} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: -0.979482 + e01: 0.19847243 + e02: -0.034986824 + e03: 0.0015520504 + e10: 0.1984385 + e11: 0.9801032 + e12: 0.004475816 + e13: -0.06485302 + e20: 0.035178963 + e21: -0.0025587392 + e22: -0.9993776 + e23: -0.018442925 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.31240034 + e01: -0.022722535 + e02: -0.94967896 + e03: -0.51872677 + e10: 0.07254348 + e11: 0.9973651 + e12: -0.00000006307959 + e13: -0.3431202 + e20: 0.9471768 + e21: -0.06889299 + e22: 0.31322563 + e23: -0.42882818 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.2826087 + e01: -0.02055564 + e02: -0.9590153 + e03: -1.1972363 + e10: 0.07254347 + e11: 0.997365 + e12: -0.00000006471064 + e13: -0.34312007 + e20: 0.95648855 + e21: -0.06957028 + e22: 0.28335527 + e23: -0.46652004 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.996326 + e01: 0.04716694 + e02: 0.07148667 + e03: -0.9776748 + e10: -0.047046006 + e11: 0.998887 + e12: -0.0033755642 + e13: 0.046165314 + e20: -0.07156626 + e21: -0.000000008829831 + e22: 0.9974359 + e23: 0.07022633 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03544104 + e01: 0.07254328 + e02: 0.99673545 + e03: 0.6791928 + e10: -0.0025587494 + e11: 0.99736536 + e12: -0.07249815 + e13: 0.9355203 + e20: -0.99936855 + e21: 0.000019010156 + e22: 0.03553331 + e23: 0.011907518 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.91216075 + e01: -0.33822 + e02: -0.23145257 + e03: -0.6726635 + e10: -0.27974144 + e11: 0.92654973 + e12: -0.25149462 + e13: -0.9025257 + e20: 0.29951307 + e21: -0.16465642 + e22: -0.9397773 + e23: -1.5290742 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9612062 + e01: 0.069913425 + e02: -0.266825 + e03: 0.3604681 + e10: 0.072543465 + e11: 0.99736476 + e12: -0.00000006119286 + e13: -0.32641163 + e20: 0.26612204 + e21: -0.019356478 + e22: -0.9637457 + e23: -1.6381797 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.91524583 + e01: -0.29036438 + e02: -0.2793096 + e03: -0.71127975 + e10: -0.27103522 + e11: 0.9566696 + e12: -0.10640344 + e13: -0.6780482 + e20: 0.29810324 + e21: -0.021682598 + e22: -0.95428795 + e23: -3.1669397 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.026654966 + e01: -0.0019388129 + e02: -0.9996431 + e03: -2.6517184 + e10: 0.07254346 + e11: 0.99736476 + e12: -0.000000057734663 + e13: -0.34312007 + e20: 0.9970094 + e21: -0.072517596 + e22: 0.026725382 + e23: -1.1898291 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9390171 + e01: 0.068299994 + e02: -0.3370201 + e03: 0.03328768 + e10: 0.072543904 + e11: 0.9973645 + e12: 0.00000010692758 + e13: -0.3804159 + e20: 0.3361323 + e21: -0.024448676 + e22: -0.94149786 + e23: -3.1279457 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9800901 + e01: 0.19846326 + e02: -0.0060169487 + e03: -1.041705 + e10: 0.19843851 + e11: 0.98010343 + e12: 0.004475811 + e13: -0.06485313 + e20: 0.0067854426 + e21: 0.003192716 + e22: -0.9999716 + e23: -0.048645243 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.14332403 + e01: -0.0104247555 + e02: -0.9896216 + e03: -4.6142235 + e10: 0.07254344 + e11: 0.99736464 + e12: -0.0000000633534 + e13: -0.34312 + e20: 0.9870139 + e21: -0.07179056 + e22: 0.14370264 + e23: -0.65352637 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9747611 + e01: 0.22051062 + e02: -0.034877114 + e03: -1.6066363 + e10: 0.22046271 + e11: 0.97538173 + e12: 0.0052631767 + e13: -0.028651841 + e20: 0.03517901 + e21: -0.0025587515 + e22: -0.9993776 + e23: -0.0021272073 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99141043 + e01: 0.072110586 + e02: 0.109116904 + e03: 0.45411178 + e10: 0.07254371 + e11: 0.99736494 + e12: 0.000000001466701 + e13: -0.38077903 + e20: -0.10882954 + e21: 0.007915765 + e22: -0.99402976 + e23: 1.7220625 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.18780515 + e01: -0.013660085 + e02: 0.9821117 + e03: -0.53373516 + e10: 0.07254373 + e11: 0.99736524 + e12: 0.0000000040318864 + e13: -0.3431203 + e20: -0.97952384 + e21: 0.071246006 + e22: 0.1883012 + e23: 0.50468963 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9990687 + e01: -0.025096143 + e02: -0.035103977 + e03: -0.39998558 + e10: -0.035179086 + e11: 0.0025588244 + e12: 0.99937767 + e13: 0.2846025 + e20: -0.02499069 + e21: 0.99968207 + e22: -0.0034393442 + e23: -0.0005230592 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22153217 + e01: -0.016113233 + e02: 0.97502065 + e03: -1.4050348 + e10: 0.07254372 + e11: 0.99736506 + e12: 0.0000000037958037 + e13: -0.34312022 + e20: -0.9724514 + e21: 0.07073159 + e22: 0.22211726 + e23: 0.45642316 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.11484757 + e01: -0.028061867 + e02: 0.992987 + e03: -2.4694378 + e10: 0.068417646 + e11: 0.99700373 + e12: 0.036088523 + e13: -0.43309456 + e20: -0.9910247 + e21: 0.07208253 + e22: -0.11258382 + e23: 1.353205 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.98945075 + e01: 0.07196798 + e02: 0.12573172 + e03: 0.54070985 + e10: 0.072543666 + e11: 0.997365 + e12: 0.00000019862212 + e13: -0.31406507 + e20: -0.12540065 + e21: 0.009121241 + e22: -0.99206465 + e23: 3.1487703 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15195177 + e01: 0.02186248 + e02: 0.9881466 + e03: -4.179231 + e10: 0.05824137 + e11: 0.99781984 + e12: -0.031032566 + e13: -0.14986297 + e20: -0.98667073 + e21: 0.062266458 + e22: 0.15034695 + e23: 0.2777848 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9663073 + e01: -0.21138644 + e02: 0.14685465 + e03: -0.5663959 + e10: -0.20726703 + e11: 0.9773394 + e12: 0.042987116 + e13: -0.49303767 + e20: -0.15261404 + e21: 0.011100645 + e22: -0.98822397 + e23: 3.131167 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.91866875 + e01: -0.26834592 + e02: 0.2898952 + e03: -0.92487496 + e10: -0.23726234 + e11: 0.9615633 + e12: 0.1382105 + e13: -0.7885011 + e20: -0.31584102 + e21: 0.058188416 + e22: -0.947027 + e23: 1.4997704 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9028438 + e01: -0.42887363 + e02: -0.030683046 + e03: -1.1492437 + e10: -0.03517917 + e11: 0.0025586807 + e12: 0.99937755 + e13: 0.28460228 + e20: -0.42852816 + e21: 0.90336126 + e22: -0.017397556 + e23: -0.51124215 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.97521615 + e01: 0.2204238 + e02: 0.01915353 + e03: -1.5813779 + e10: -0.22033186 + e11: 0.97540116 + e12: -0.006817027 + e13: 0.32669193 + e20: -0.020184949 + e21: 0.0024279307 + e22: 0.9997934 + e23: -0.012878116 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9929134 + e01: -0.11776313 + e02: 0.01597812 + e03: -3.1507974 + e10: 0.11779499 + e11: 0.9930373 + e12: -0.0010693895 + e13: -0.7463809 + e20: -0.015740858 + e21: 0.0029439442 + e22: 0.99987173 + e23: -0.040647034 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9798644 + e01: 0.1966691 + e02: 0.03445351 + e03: -2.3500934 + e10: -0.19658034 + e11: 0.9804694 + e12: -0.0059816167 + e13: 0.26966715 + e20: -0.03495694 + e21: -0.00091171806 + e22: 0.9993884 + e23: 0.022618214 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99880713 + e01: -0.033977766 + e02: -0.03507198 + e03: -0.39410478 + e10: -0.035179034 + e11: 0.0025586314 + e12: 0.99937767 + e13: -0.22434764 + e20: -0.033866864 + e21: 0.99941975 + e22: -0.0037508835 + e23: 0.0077679874 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9076175 + e01: -0.41152605 + e02: 0.08292703 + e03: -1.1989535 + e10: 0.09406291 + e11: -0.0068419767 + e12: 0.9955424 + e13: -0.05848748 + e20: -0.40912452 + e21: 0.9113729 + e22: 0.04491921 + e23: -0.48637673 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.96796966 + e01: -0.24883337 + e02: -0.033436414 + e03: -1.5413439 + e10: -0.035179105 + e11: 0.0025588193 + e12: 0.9993774 + e13: 0.28460258 + e20: -0.24859273 + e21: 0.9685431 + e22: -0.011230637 + e23: -0.221527 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.95071423 + e01: -0.2973832 + e02: 0.087783314 + e03: -1.5445225 + e10: 0.09406282 + e11: -0.0068421294 + e12: 0.9955424 + e13: -0.058487862 + e20: -0.29545724 + e21: 0.95473474 + e22: 0.034477606 + e23: -0.3003747 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03544104 + e01: 0.07254328 + e02: 0.99673545 + e03: 0.6791928 + e10: -0.0025587494 + e11: 0.99736536 + e12: -0.07249815 + e13: 0.9355203 + e20: -0.99936855 + e21: 0.000019010156 + e22: 0.03553331 + e23: 0.011907518 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: -2.1788063, y: -1.334103, z: -0.6818286} + m_Max: {x: -0.32616672, y: -0.1946227, z: 0.6436869} + - m_Min: {x: -1.2316678, y: -1.3914576, z: -0.65545774} + m_Max: {x: -0.7176068, y: -0.681628, z: 0.26665777} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -2.1888475, y: -1.2226542, z: -0.35389823} + m_Max: {x: -0.9565093, y: -0.30653515, z: 0.7864247} + - m_Min: {x: 0.06536853, y: -0.5149393, z: -1.0887632} + m_Max: {x: 1.3220067, y: 0.60664666, z: 0.95905864} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -3.4656377, y: -0.9908196, z: -0.60524493} + m_Max: {x: -2.3759518, y: -0.1946229, z: 0.56585747} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -4.221714, y: -0.8065096, z: -0.1586456} + m_Max: {x: -3.7488964, y: -0.11884125, z: 0.3887606} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -1.1345961, y: -1.2409655, z: -0.1261397} + m_Max: {x: -0.6880405, y: -0.7389687, z: 0.86983854} + - m_Min: {x: -2.3409414, y: 0.40516013, z: -1.2679085} + m_Max: {x: -1.4511468, y: 0.7435148, z: -0.9386363} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -2.7435827, y: 0.3341809, z: -2.7152882} + m_Max: {x: -2.4152334, y: 0.6957813, z: -2.320025} + - m_Min: {x: -3.4549847, y: -0.6926889, z: -0.32571986} + m_Max: {x: -2.2208097, y: 0.29284266, z: 0.46496746} + - m_Min: {x: -6.994643, y: -1.697895, z: -0.12000786} + m_Max: {x: -5.484019, y: -1.188622, z: 0.39984918} + - m_Min: {x: -5.5621195, y: -0.43908614, z: 0.0026556347} + m_Max: {x: -3.5041692, y: 0.759933, z: 0.5217599} + - m_Min: {x: -2.2790246, y: -0.697939, z: -1.306358} + m_Max: {x: -1.3935977, y: -0.25854424, z: -1.0025212} + - m_Min: {x: -2.813653, y: -0.30741426, z: -2.6764185} + m_Max: {x: -2.4698458, y: 0.053776126, z: -2.306384} + - m_Min: {x: -3.6420846, y: 0.26697618, z: -2.1858141} + m_Max: {x: -3.2433176, y: 0.7232082, z: -1.9229416} + - m_Min: {x: -3.518876, y: -0.31850383, z: -2.4047918} + m_Max: {x: -3.1404386, y: 0.13837773, z: -2.124011} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000400010003000700060005000500080007000a0009000500050006000a000d000c000b000b000f000e000e0010000b001300120011001400030001000100150014000300140010001800170016001b001a001900190012001b001e001d001c001c0009001e001e0009000a000a001f001e001a001b002000200021001a001f000a002200220021001f00210022001a002500240023002300260025002800270024002400250028002b002a00290029002c002b002f002e002d00310030002b002b00320031002f002d003300330034002f0012003500110038003700360018003a0039003900170018003b0035001200120019003b003b0019003c003c003d003b000d001400150015003e000d0014000d000b000b00100014003f0007000800080040003f004200410040004000080042004300420008000800050043004500040044004400460045000700470018004900440048004800370049004a000100020002004b004a004d004c002a002a0030004d0029002a004e00510050004f004f004e0051004d005300520052004c004d0055005400530053004d005500560002000000000057005600570000005800580059005700590058005a00050009001c001c00430005005b000d003e003e005c005b000c000d005b005b005d000c000c005d005e005e005f000c006200610060006000630062006100650064006400600061006600640065006500670066006a006900680068006b006a004d0030003100310055004d00500051006c006c006d00500029004e004f004f006e0029006f002c00290029006e006f00700033002d002d002e0070005a0071004000400041005a004b0002005600560072004b001100350073007300740011004c0052006c006c0051004c00760075006800680069007600660020001b001b00640066006000640013001300110060001b001300640006001600220022000a0006001b0012001300160017003c003c0022001600170039003d003d003c00170006000700180018001600060073000e0074000e000f0074005f005e006200620063005f000400450077007700580004003800360078007800470038003a0018004700470078003a00470007003f003f00380047002b0030002a0079001d001e001e007a0079001f007a001e0066007b0020007a001f00210021007c007a00660067007d007d007b006600210020007b007b007c0021001a0022003c003c0019001a0044004900710071007e00440049003f004000400071004900370038003f003f00490037000300480004005a007f007e007e0071005a007f005a0058007e0080004600460044007e007f007700800080007e007f0077007f0058000400480044004e002a004c004c0051004e00810079007a007a008200810085008400830083008600850024005300540054002300240082007a007c007c00870082008600830088008800750086002700520053005300240027007b007d00890089008a007b008c008b006b006b0068008c006d006c008d008d008e006d007c007b008a008a0087007c0088008c0068006800750088006c005200270027008d006c00860090008f008f008500860075007600900090008600750069006a0091009100920069007600690092009200280076002c002e002f002f002b002c0070002e002c002c006f0070002b002f003400340032002b0090002500260026008f009000760028002500250090007600920091008e008e008d00920027002800920092008d0027000000010004000400580000007400630060006000110074000f005f006300630074000f000c005f000f000f000b000c0095009400930093009600950097009500960096009800970094009a0099009900930094009a0097009800980099009a0093009c009b009b0096009300980096009b009b009d009800930099009e009e009c00930098009f009e009e00990098009d009f0098009b009c00a000a000a1009b00a300a2009d009d009b00a300a100a0009c009c009e00a100a3009e009f009f00a200a300a2009f009d004800030037003700030010001000360037009e00a400a100a300a4009e009b00a400a300a100a4009b00a700a600a500a700a900a800ac00ab00aa00aa00ad00ac00ae00ad00aa00aa00af00ae00b200b100b000b000b400b300b300b500b000b800b700b600ba00b900a700a700a800ba00ba00a800b400bd00bc00bb00bf00b800be00be00c000bf00c100af001c001c001d00c100c100c200ae00ae00af00c100c000c400c300c300bf00c000c200c400c500c500ae00c200c500c400c000c600260023002300c700c600c800c600c700c700c900c800cc00cb00ca00ca00cd00cc00d000cf00ce0031003200cc00cc00d1003100cf00340033003300ce00cf00d200b800b600d500d400d300bc00bd00d600d600d700bc00d800be00b800b800d200d800d800da00d900d900be00d800b100db00b900b900ba00b100ba00b400b000b000b100ba00dd00dc00ab00ab00ac00dd004200ab00dc00dc00410042004300aa00ab00ab0042004300e000df00de00de00a900e000e100ac00bc00e300d500e200e200de00e300e500e400a600a600a700e500e600d100cd00cd00e700e600cd00ca00e800e900e8004f004f005000e900e600e700ea00ea00eb00e6005500e600eb00eb005400550056005700a500a500a600560057005900ec00ec00a5005700ec0059005a00aa0043001c001c00af00aa005b005c00db00db00b1005b00b2005d005b005b00b100b200b200ed005e005e005d00b2006200ef00ee00ee00610062006100ee00f000f00065006100f100670065006500f000f1006a006b00f200f200f3006a00e600550031003100d100e60050006d00f400f400e9005000ca006e004f004f00e800ca006f006e00ca00ca00cb006f007000d000ce00ce00330070005a004100dc00dc00f5005a00e400720056005600a600e400b600f700f600f600d200b600e700e900f400f400ea00e700f800f300f200f200f900f800f100f000bf00bf00c300f100ee00b600b700b700f000ee00b700bf00f000ad00ae00c500c500bb00ad00b800bf00b700bb00c500d900d900bd00bb00bd00d900da00da00d600bd00ad00bb00bc00bc00ac00ad00b300f600f700b500b300f700ed00ef00620062005e00ed00a900ec00fa00fa00e000a900d400e100fb00fb00d300d400d700fb00e100e100bc00d700e100d400dd00dd00ac00e100d100cc00cd007900fc00c100c1001d007900fc00c200c100fd00f100c300fc00fe00c400c400c200fc00f100fd007d007d006700f100c400fe00fd00fd00c300c400c000be00d900d900c500c000de00ff00f500f500e300de00e300f500dc00dc00dd00e300d500e300dd00dd00d400d500e200a800a9005a00f500ff00ff0000015a005a000001ec00ff00de00df00df000101ff000001ff0001010101fa0000010001fa00ec00e200a900de00e800e900e700e700cd00e80081000201fc00fc0079008100850004010301030184008500c700230054005400eb00c70002010501fe00fe00fc0002010401f9000601060103010401c900c700eb00eb00ea00c900fd000701890089007d00fd000801f2006b006b008b0008016d008e0009010901f4006d00fe00050107010701fd00fe000601f900f200f20008010601f4000901c900c900ea00f400040185008f008f000a010401f90004010a010a01f800f900f3000b01910091006a00f300f800c8000b010b01f300f800cb00cc00cf00cf00d000cb0070006f00cb00cb00d0007000cc00320034003400cf00cc000a018f0026002600c6000a01f8000a01c600c600c800f8000b0109018e008e0091000b01c90009010b010b01c800c900a500ec00a900a900a700a500f700b600ee00ee00ef00f700b500f700ef00ef00ed00b500b200b000b500b500ed00b2000e010d010c010c010f010e01110110010d010d010e0111010f010c011201120113010f011301120110011001110113010c010d011401140115010c0110011601140114010d0110010c0115011701170112010c0110011201170117011801100118011601100114011a0119011901150114011b011401160116011c011b011a0117011501150119011a011b011c011801180117011b0118011c011601a800e200d500d500d300b400b400a800d5001d0117011a011d011b0117011d0114011b011d011a011401 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 286 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 18304 + _typelessdata: 4cece23fdd327dbf5319693e9f98aa3e196b58bf94c2d53ecdd8ec3fd0d946bf6d02de3eea9e0b3e982c1dbf4e08473f06fa0040ce5c5fbf9d05443e83dbf13e2f1854bf41fd993e0a36bb3ff12843bfe184d93eb561173e280089be9ebe733f3cfdc83ff20e72bf5f0db43e4774a83e19f9d6be9289583f8416bf3bdaf894bfc282a83e7a8e0cbe045648bfdf741b3f8b01dcbb87e182bf5cc9d63ea1ffc8bd96daf6be6ede5e3f8c5ef43e39fc8abf8eabee3e16aea8bd4a31c7be21e36a3fb480e63ebcfca2bf819ca73ea04f44be8a2d46bfa1711a3f7abfccbea63b8ebfd8ffaf3e93ffe4bd562d51bff3c7103f9a46c8be39ac78bf31dbda3e7137edbd20d2e8bea310623f3009a33f200703bf352ea83e734f6d3e2af9673fa028b53e1d54b43f7a2bdbbe7039303e0c2b373e915a743f214e743ec06bd53fe8e0f7be57e14f3ef35e503e036d6b3f1203ac3e8aa8823f92ecdfbe08cd1d3f40345a3ecc1e7a3f565996b9c753853f409de6be0b07c03e31db103e8bec773f6713523e3f36ab3f353318bf78cb0a3f47c7ab3e9977483e9ce56b3ff1271cbb9f22d0bebb2de63e6fe4a1bda1bb7e3f88a3763d35c051be9fadf4be496cf73e4931c8bede0c5b3f0b98ad3e34448abe06f3e6be40b5cb3ed4ea0cbe701b6d3f0fb9b33e9937cd3f96461cbf19a6ee3e30a3193e47301b3f6bf1473ffe2ff03fc15428bf8e5adf3e0265803ec75a483f0eda113fcd4743bd7e0153bf34be0b3fc29aa2bd2235f0be7c29613f64701dbd681f3fbf3e5d0c3f1b013bbd4ae958bf4575073fa32d583e4e264abf06d60e3f64333d3cf57e08bf1c8e583f101abdbe89e11cbf0a25053f33a602bfd0d7ad3e09444a3f802a0abfe09034bf6d01f03e6bf1bfbedab00f3e70986a3fda7be6befa5e02bf1dd9e23e0813a9be32b8323f7fa1223fd36ec7be564999bfbeddce3d8617d5bd55de7dbf23649b3db85836bfe6439abfba82e73d4b8113be42907cbf428b9d3d30bb2fbf3de78cbf2b10913e5a4563bedd7733bf877d2d3fa65121bf73476fbf3a54c23ed01581be17d5c1be5bfc633fddc120bfe6980dbfa083bb3ec7afb9be21270f3f5ed93e3fed242dbfafec42bf6c19dc3e4384a3be6a41603c7291723f06aee2bed26a52bf72ccf33ee62e33beabcbd2be9ef4643f7a4330c0ba911ebf2971123e9e22d83d72f77dbfb22f8c3dcee930c0109615bf54058d3ed5c41f3d4daf33bf0d12363f88be27c08bad0abf6912853e3b134e3e5d4432bf085c303f749028c0e7f412bf5cae0a3efb73853d03d37ebf23a08f3d337b33c048b2c2bee5f8be3e8d3b123e53c32c3d62257d3fed6226c0c90ccebee0659d3eec8c883e2c59cebd2760753fd12f59c086a3a4be7774573ea2e57bbeaf772c3f6e65323f8c0352c0ab3ed4be14068f3e373a67be4724ad3d7472783fd9b265c039b3ecbe5e38893e886a91bd2e65e8be6e62633fcf2067c0997ac8be748e5d3e581b2bbe5e98533f7999093fa9567ac0ea71ecbe78236a3ec66e20bff798383fa146973e68a077c0063fe1bef186623eed4c49be92db673f4a4ec03ed49577c0c440f1beb6e7833e9efb14beb55ef9bdbf597b3f3ae852c0e5fff6be9c52853eb5976abd85743fbf6a4f293f3c9b53c037a805bfe94b1f3e52768ebdd9a87ebf2757993d8d3c65c0308804bfc0ff283e41ef1ebd471b7fbf655c973daa897bc01f95f2beff69323e592957bfa19509bffb4f8d3df1cc77c02c57ffbe1e25323ebdbb82bdddc27ebf89fb983d9dcc2dbd9cccd2bef287173f26b56ebeb0b2783f8426323dc94c833f4ac7e8be34c9203ffe6f353e2fe4e1be0b37613f49418a3f63cc3dbfd05b033fa3b3c93d0d8b27bed9497b3fcdcd4e3f925b37bfdde4083f5954db3d1b1ab4bec3106e3fd9e14ebd35393abfbbaa2b3fcda851bd008570bfca5fad3e51236b3e977e32bfc78a353fe8970c3efac560bf6cc1ea3e3cb380bee2b909bfc8ae263f52d744bfe1c6db3e829af23ef1709fbed5b742bf233f0b3f78e2cabe347cccbe1aa4533fb59146be500038bf9a41343f184bc0be6e2b4ebf9fd3ea3e8f0ffa3f556d13bf9972393e74199c3e99d86f3f242f2f3e0b5f563faf0990bf340ffc3e39da0ebd703395befbb9743f443d4d3f5523adbf0ee1a73e1febc73d8ef054bfece20b3f92a7553ff22bb9bf10db9a3db993313ec9907bbf47d8853d1bb6fd3e3ba7b2bfa3f4ab3db8c868be427b78bf513ba13d1923993db119a2bfdb51b73d42d266bebc9878bfc728a13d987cc53f052986bf6367e53e7109743ee941e5be459f5c3fb72bd33f8d187cbf67b6a53e5f71033fbfec333f0414fc3e46a7d43f6e4c85bf86dfb73e95df0a3fc79af9be40242f3fb5fa103fe55637bf5d03083f03424f3dba5bdfbec2fd653f3185bc3fc16866bf7ac4e73e1f47823ec922a83d2eae763f6a4a903fc15e88bf5069003fff47023ea1ccb2be48a96d3fa7320440cd4437bf227f113f548bd73eaf2e5bbfa65d993e3c711340f22d1fbfec0b753ea7cd223fddc540bfacf52c3e0be04ac09367c2bea647b13ec01d9cbeb8c4503e47286e3fe7bf4ac00b19fdbe0259893e1b5148be530035bf18f92d3f3eee54c02d1796bef4fe673ecd400dbfccbab53eca33413f9fe755c0455585be021a0d3e96b232bfc72d373fbc4adfbc1ad94ec0dbc312be455c003edcfa9dbec60d733faa186ebda8634fc08ddd3fbef0a67a3ef29dbdbeff491c3f3c39333f97453fc0dccababe0b06ca3edd66b7bd92de8ebd62587e3f7d7f40c0038c0bbfcb098a3e92ee09be9f9f33bf8a1d333ffc3040c0a49115bf23e2183e474a39be40fc7abff24f9f3d00fa49c0a47c0abf5c391b3e541073be9bdc77bf239aa13d09060340f24262bfd3bc0abc810c183f60bb4dbf0b12193d5c12e53f68ab86bf8bff533c10a1bc3eb0956dbf42025f3defd2c73f9cf581bf4076363e26b39e3ed3bf5bbf6e48d13ed90dce3f024291bf02b3cf3cb340a93e782b71bf21b2683d7a388d3f992ca5bf0201603df508bd3e3b816dbff7cc5e3defe6d73f39b3f7bea2dfcabc3a6a843edf74763fe954a2bd6312fe3f946a12bf9d2dedbc5b27903e0ccc743ffe08a3bd7b69b43fcddad5bef185a1bca8fe453e765f7a3fe9db9fbdc261853f82e3b5be217237bc42f1ef3da27c7d3fa71f9cbdd737843f1e32c3be642d323e253bba3d3768783f555d653e0bec26bce16fbcbe97075c3e61c1e4bccdac7a3f41cb4d3e931b1ebc86f0a7be2060c63cb60d4dbd7f097f3f5ad990bd447e1c3ff843a5be7736e63a54e1893cff467f3f35dc95bd09de163fac0cb5be639f453e098e263dea2e7a3f2104553e02e6b2bec3f7c4bef2697e3e4ac71abe9af7743f47ec7d3eb01da0be7042bcbedd281b3d0a164abe4a6d7a3f6c7083bd7ca00ebfea97e9be788c6e3e731292be91e76c3f906f7f3ecc8bfbbe6dccc7bed8e23b3dd4b397be4f0a743fdc0771bdb8aadebf799ceabe54b15d3e5760fe3dd62d373fecfb2f3f2a8919c07eb9a1bedbb95f3e0d7a6e3e2497373fb127283f13b418c0648d94be4cffd83d85c3683e917b783f283ba1bdcdfcddbf9503dabec1c2bd3d9052193e17587c3f7cd49dbd980c3ec0961117be580f8a3eaf2d8ebd22a42d3f55443b3f7bd43dc02375c0bd4800e63d711a55bcc64f7f3f0eb593bdc4755ac08f6097bed651123e8717d6be192d683f6c7751bdfb6e67c04b71c5bee467203edbae9bbe7e6b733f112d6fbdcc8a77c0e363debea2332d3ea91b81beb33a773f032c7bbdf12c893fcab39ebf740fa93e31373d3ed2bb58bf9889ff3e043a164091701fbf8f321cbd4164283f88a740bf5d8b003d0456fb3e090ec0becd49273ffdf2913c744d7f3fec9992bddbef0f3fe150cdbe7a79db3e1a483a3d8e477f3f4022743dbc9adfbfdc150fbf11b2893e856534bd7e1ea1bcb8b37f3fbd1c1cc06927e1be0359883e52ecbc3dc504033e97cb7c3f0b29d43fbae682bf733d703ee2130d3f973d943e0e5948bf56c41f3fc45824bf2bfa2f3fb206673eba964abf3275113fba9571bfdbca8ebf5a00eb3d295705bfb78f59bfa69aa43d57f75fbffb7d68bfb5c0a33efd01b6be26dcf2be602d4e3f1af149bf110a04bfe6b88e3e65df5dbe90424d3f2f930e3fd60a51bf00e93fbf26eec33eaf917fbe96591d3ef9c1743f4a623cbfcfd2febe608b7f3d57684abe32697a3f2f6883bd4f39bf3f9b9b99bf2fcfa53e962c9d3e2c0e6fbf3a273c3ea41ec13ff3ee8bbfe0133a3e4596f23e88e823bf96c81abfd89ed43f46ae8cbfe9e4973e76ef023f1d304abfd857adbec9d196bfaf5b75bf8da9e43d19d103bf997c5abf95b5a43d86188fbf7eab5ebfcc37733e699e93beaa06f8bee371533f86188fbf7eab5ebfcc37733e29c64bbe37a934bf63132e3fc9d196bfaf5b75bf8da9e43d3bdc9dbea8aa72bf81bea33d3696debf638746bfbc39f23dd8c28abefe9375bf09b9a23d28c6dfbfe09136bff4e8693eb3cc30be582b20bf65c0423fda528dbfc51c39bf037aaa3e2e4c25bed4f8bb3d318c7b3fda528dbfc51c39bf037aaa3e7fea4bbd1c4d913d61097f3fb2258abf2e0501bf2cb7993d151bacbdca797e3f580c8ebd2f658cbf62960cbf3d19583e9e9339bee052213f6548413fb2258abf2e0501bf2cb7993d41dfed3d93847d3f74119cbd2f658cbf62960cbf3d19583eed59ef3d1f6d533f56350d3fa2422ec0905922bee3e2843e55423b3e4c323e3f10d5243f5a512dc0aeeffdbd00b0d73dd5fca83ee0c7703f913aa4bd9f891dc01d3716bf455b053eca3f61be00eb78bf3cf3a03d2d181dc0be520ebfa8a06c3e18e6adbd44eb10bfd0e8513ff8b722c002cc5ebe9593d93d327dea3e2da2623fb54ea5bd618423c0bd6978bec3687b3e9fd3c73e278d103fcd2a3a3f98d1f83f56df8cbf0a4fb43e37dc78bcb2df593eac1b7a3f46a7d43f6e4c85bf86dfb73eac3e79bd0a8cb0be3dcb6f3fb72bd33f8d187cbf67b6a53e81e1763e91036b3f1b2fa13e86a4fa3fc39788bfe27ba63ed36ecd3e380b643f0b685abe0b29d43fbae682bf733d703efd85353e1a640c3f9c3451bf5faaf83f27ee8ebfa4bb7b3ebcb22dbd38ca1abe4ad37cbf61fbf63f4f0c91bf5d49a53eeb7a8cbeb9a866bf1308ac3ed89ed43f46ae8cbfe9e4973e9c7440be2dc176bfbd3641be31a80640843b9bbfd8beab3e8d97bd3e44b46d3f9318dabc86790640b8169cbf5e1ffa3eecd84cbe9ee876bf539c303e09510640f82f9fbfc4b5013e76c19c3e3ad7623fb12bb2beef39054056db9ebfb88baa3eb518b1be41256ebfe9aefa3d8f0b0540e0e6a1bf2ed2083e1e8cbfbe82506bbf38c7fb3db08b1e40fa88adbfc590073ff23e773ed422783fc4e53f3dc1ba1840d8c1a4bf09dad63e9ef877bed39074bf6f752d3eb0f91d408964b2bfa822953d8a6fc23d442ac7bef0946abf455b1840e94ca7bffd2a3b3eeb2d643f6f2ed7be5f192ebeaf322040c017abbfe0ae9f3ef87a483f92f91ebf7573063d04f2e03fb9a582bfdeda53be7d4a9d3e0e0966bfa06ea0beff12004052c066bffe0e52be398de83e4f9e5dbfa37357be84d7e83f133f57bf3089e4bee982ac3d687b38bf9c2c30bf8d66b73f5ac252bff124d3beff0da73df171cebeac5569bf29edc53fbd987ebfd57ea4be188a8a3e391a0abfff1e4cbf6d9e3bbc0c8099bf11b420beeb0334be1c875cbfbcf3f3be256fdd3eb7a0a7bfbddc2ebe4e636bbe9c2c5abf979bf0be7bc0e53e1b7792bf5c6dacbe997514be456804bfb0ee57bfcb96febca54389bf030988be07b120be773a1abfce5648bf7badd4bec1ae82bf47ee81be72cd33be7eb913bf39304cbf1dbed5bef3d592bfc3ed19be20d316befac363bf303eddbe20fe9f3f687c0fbf682aaebe4f584e3eb620583fca45febe185ed33f5d5804bf961a7ebe1ab3323e163e5c3fb238f5bedc99b23f7150e9bec47554bef96b203ecdb6683f39b4c5be54167a3f88f206bfc2031ebf3e88543ec837773f13cf1fbe2745a63f2d6e2cbfee2a0bbfba7f893e018b703d1c2376bfa5e5813f785901bf55dac1be1e1af93d90886d3fda7db4be8a4503bda339efbe16fec4be4cadb4bd3ced793fd27c4abea81f97be19a200bfa7e29dbed0d52abe33cc5d3fb7faf0be39ab71be10ac0abf7767c9bef834d6be20b54c3fc38adcbe6412ec3fec2d39bf40a2efbe11ce523eded2303fb17531bf65e3c83f4bff2dbf5f55f8be2d1cbb3d00e3f83e067e5ebfd2b2a7bd4dee64bfe016d5be56420ebee74b17bf096c4bbf5a6d333eb1f45cbf0e1ee7be9b623abd266426bf9e3342bf8ffe95bde65b51bf8a66dcbeeee7a0bd3c286abf13ffcabeb2d3cdbe82ff2dbf6215ccbee50e11bf7eb6653ee0f74abf4e97f4be11cf10bf70e6a9beb577c1be31c1193f146234bf655e11bf184f43bf1421a5bea0fae0be7234073c90f365bf11f732bf843690bf385793bdcf0488be47604abfc9420dbf4d8c26bf7ffb79bf2b9747be9ffa9fbeb08800bf2c704ebfd53f26bfbdd618bf2acd72bedba8d5be730ce53ed5804abf687b33bfb1e54fbf1a6388bec76ac5be1887f9bddd226abfc32bf1be7f3f61bf3bbfa3becb4471be062b09bf5a904fbfde5128c0dd630fbfdd41e53b6d621f3eda284abf9beb17bfa08531c0da911abf1660023c204ffdbbb82c4cbfe66a1abfdd3927c06dccdbbe2b0c7cbd039a4b3e2d6e75be2c4573bf7e9734c090e1d4be5588ebbdfb34943da3e5d0bd75fd7dbf9b7c59c0ec8ca9becef6a03d099d98be7e2d113ff18f44bfa16567c08fe1ccbebd2bc93d44ea55be7fb03d3f016223bf692e66c08d9af4be2a01653d1d6506be91c313bf06554ebfea9c52c0090edebe4ac3833cdaa696be927663bdf74074bf6f977ac09196f0be1192f03d985226bf9b8a2c3f5c06b4be1ff977c0b19af7beb68eb23defff5abe160086be39ef70bf29dc77c08411e5be5ffcf23d96bc68be6ec5573f37bff9be5e6553c01201ffbe9bb93a3d29d2ccbd61d955bf4f610abfe8fda7bdaa4bfcbec28b05bfa75e76bef0c6743fa8f32abed52d7b3f29c40bbf466920bf1f51ef3d248f10bf6e2651bf398e453fb2494abf9268f6beacda2f3dd057f7be50e05fbf61c1853ffe3750bf0678f3beb98df33c08d49bbe88bc73bf418cc0bdb00551bfc5950dbf1dab8fbded747abf426547be0bea3a3ee32b4bbf10841dbf5562df3d0a906fbfb7a6abbe518396bed50c20bfdc0b0cbf4f7b4dbf8867b83ece68f3bec2b6b0be476554bfc747cfbe863ae7be384003bfe2ed3abf0b3a75be71e04fbf3eca13bfd447cebe1e7c5cbfc48c9ebe832cf83fcd261bbf13166fbe650d933e3f96663f2bd9a6beeb92483fabe9b1bf05143dbe6b1c813d6d0e67bf9f11dabef1684e3f8c2f98bfcbbec3bead7fcebdeb51dabef21d66bfe9a0c13fb00e8ebf3f9eccbee06e373e0ba411bfb97a4dbf938ed13ffca28bbf3477a4beb295fd3ed38715bf279f24bf8a5cd03f55cc83bf1f5196beb390f23eda201f3fb1b31fbfccf2073f14d349bf69f0ebbe843c30bc7ed40fbffac153bfa28bb83f61ae76bfc861d7be99c13d3ea96573bd161b7bbfde178c3f35f690bf325ed7be0042813d7bfdf5be85ef5fbfcb3112405c6529bfea389ebea354203f8ad545bf4168d2bd108801407f194dbfc9741abfe76bce3ed98464bf22674ebe634a4bc05afa02bfac3afa3c894175be58ff4bbfe0fd0dbf62ce4bc061a6d1bea4c180bda4e9bdbe11d48c3dd1156dbfdc5255c0c7869cbe1b8d5c3df2031bbfefc77a3e16d841bfd7e94fc0fc0751be81c06c3c8912d8beae36013f46ca40bf957440c0682ccebee68900be5ffb22be775659beb7d376bfd90d41c0951910bff6c3ce3c658238be44754bbf3a5e14bffc60c63fd9ea84bf9dac0ebe6ec6913e1bfa68bfa2359abe3890823f82bed0be0f2142be97228f3d71616d3f8052bcbe381cc0bc2256cabe54ec21be34df40bd1ea2703f0c0cadbe9876133f20fcc2be485139be71b5aa3c9acb6f3f29f3b2be6b6cbabedf5ed4bea9d928be355e31be6168693f82b0bebea6e111bfabeaf6be3724ffbd322a9dbe468d613f6d40b8be85c3dfbf8797f3be26c1c8bc22bc923d56a31b3f1e6d4abfb7081ac026e2a9beef9df3b99e943a3ebf081d3f75b944bf12be3ec0fec52dbe145c0fbdfacefebde0d2103f3cae50bf33a9863f72d9a3bf4ba463be17171d3e3d2c69bf8334c4bed80de43ebcb5efbe5b1920bfec00913cf83d7f3f863f99bda759083fc35fecbea642cfbe2290133d86537a3fde3153be8dc71cc07914ecbe3164dcbc1fe1b03c669b88bc9be77fbf5e1be1bf733c15bf0b9a7abdec49eabd719b27befdd77abfc62dd23f0af586bf03954dbe2f7f1a3fdf2ccb3ecb0c313f1ac7133f18e33cbf373421bf8781413ee0c95dbfa6b0ecbe21fe63bfdebb70bff1e9fabd536fd1bef87f15bfdb7f33bf19cc4dbf53ee0bbf864614be20ea84be45c4363f047b26bfa27356bf80fb4abf47aa58bee173a2be2ad7763ccfbd72bfce9abc3f0bf89ebf55d580be5a97983ee9be73bf0a418bbdf5b5bf3f39d18ebf25ea02be67c4043f566c0cbf40e6273f7b20d23fecc891bfc19f80be01c5093f08333cbf550fd33ed14f90bfd5a563bf2debf2bc9ad9afbeece718bf288a39bfd14f90bfd5a563bf2debf2bc98bd78bed4ab4bbfc7140ebfeacee0bfb6cd3abfc7e19c3a2f1964be7a6b3abf5ded25bff7808fbf890942bf818d15be1d746cbe2ba54ebd17bf78bff7808fbf890942bf818d15bedf98f6bda8c196bd14707dbfec968dbf017a11bfa86c52bdfe0c73bec6e9033f8cd052bfec968dbf017a11bfa86c52bdb33d963d67a03c3f600e2cbfa4f12ec00cbd38be4d6027bd704b083ef81d243fe47e41bfcc8f1dc0232612bf01edd23c3e120fbe38a32dbf0bae38bffa2224c0ee5986be3feedabc4a88ab3e2930e73efab353bfb9bbf53f1a3093bf7ac9a6bec6a1aebd45f88d3d14737ebf5cc6f73f81768ebf29229cbe7649d23ef602693f75795a3d8a5cd03f55cc83bf1f5196beaba65a3e79915c3fc3c6ebbe938ed13ffca28bbf3477a4befc1a00be0ce2f3be39cd5ebf7a8df63f4c4193bf49a45fbe4a70e73c5e21d6bb71e47f3fc62dd23f0af586bf03954dbe464d6d3e0aef283f38f8363f1c30f43f5fc496bfb60695bec5e895be284f70bf704d3abe7b20d23fecc891bfc19f80be053f2dbebeec6cbf9183ad3e7a3305405031a1bf20d29bbe5aa2bb3e54b36b3f176209be4b54044020dfa4bfe193e8be30bb53be836e7abf411288bccdd00540eb3ca1bfff5fbfbdf29da63ee0ee6c3f4154463e3dcb03407fb8a4bf4cbb97be55a1b2be1ab76fbfbc491c3de5850440120aa4bfa341c4bddc17c1be8ae56cbf4bbe1b3df7321c402f24b7bfaa6900bfa7216e3ee078733f035a50be3bdf1640835cacbff411cbbea7927ebeaaf177bf535543bcd3931740637daabf226723be223c673f2baccabe1c95293e37b51d40d87cb3bf782837bdc650253e8f7881be1735743f41d31e406ab6b0bf5b2d95be5a33483f2f8c1fbfd436083b1ee0913ecf693a3fb70ad23ee5b74c3fbb2b933e957d4f3fafebe73e685a323f1287b43ef0332e3f1bd7073f581e843ea65f163f2ea9923eb726fd3ee09cc93eefc9db3ec0b2ba3e28b7213f78b53c3e47ad2c3f340b543ed0f11d3fbf2b423f19902d3f408a4e3fc361193ff01a583f9e5d263f7afb233f7bd7343fd7f7313f52260d3f4cc3343f7211533f1c0ed73e05154d3fb092b73e9e235a3f4049b13ed579003fb1df433f516ae73ebf99543fa969233f76379f3e448a293f3485a63eca8a193f0ef1bf3e2235453f6e88993e10404a3fc8f8703e3d48573fcaa3933e4486113f4c4d023e1992273f1891c13d2714323f2415063e6daa3a3f2cb3183e06f6603f604e703e295d4e3f34d03c3e04e33c3f8451793e85608d3e5878af3eeaaf673ec846a03eea053f3ed2c6c13ecd756a3e1a6acc3ecea6333e72db963e062b0e3ee23eba3e5d867f3e4099df3dd2c3883e848e163e1215a23eb035bb3d700b963ef081963d68ecb33ea0b0e03c7616ad3e30ba033d098aaf3e4003313db3d1993ec46d243e1bd4b63e2cf52c3e48e0bf3e302ac93d6ec4b33e40a13a3cca15be3ed00d143dd61f413f6a6ac93ee143213fd120253f1349fc3ed060173f570a093fe450073f64af333fa036c23e97712b3f2061d83ed02a3f3f54afbb3ef1103a3fb631963e2ded383facadb83e66f90a3f984b693fe9f2e63e8eaefa3e0ad7bb3ee2c6ed3e2dce883eb094dd3e1ec1ad3e8c139f3ef60be63eac184e3e9030b43ea391233fd84aa83e3e94283f89eba83e27f8263f32e90f3f6a87ef3e65ffcc3e36ce2a3f95efd93e7c260f3f8a77e83e8e56613fb9519c3e15696e3f9888773e7c413b3e86e58f3e68804b3e11905f3e28d8ff3dab3d3c3e180bc33d18cf003ea0f1fd3dd9b53d3ee851213ee083573eb80f693ee1b8843ee0d97e3e5a7fa33e1c7d8c3e53ceaf3e48c8603ea1b94e3e76fe4d3ff9d6573e2c2a363fde74933e6283293f9eee5c3e5489263f0724713e404c0a3f28b62a3f8203683f85271c3f02287a3f9f003a3f2104583ffb3d4d3f520e423fa036423f0b42393f51a5663f0e33e43e1a51763ffe48f13eeaec603f76a5253f4966553f0b7d1c3f18086a3f4a43ad3e7a557b3f9e09bd3e986c6c3fba6e8a3e3fac7b3f2c639b3e37154e3d9982253f3598963d8605d73e2337de3ccc59d73e8ffa903c9f02243f18eb1b3e240a4d3e23a3a33d38f5313e45126d3e1043ab3d36958d3ef03f6b3d6939a83ea018a03ce4a2aa3ec85a0b3f9e0c3e3eddef6c3fe125383f118e053fa29c463f42ce113f1695ae3d3dd4263f3fe6e33d340dda3e9fe8a23e9aec273f0d18203f6ad8033f38f73b3f68b8883df913453fc885c33dbb096e3f6c43453e0ad8563f648d0a3e2bf77a3f1866613e14249e3e4e291f3f96928d3e3a74223f7556a33edd43263f4af04e3f80725b3cdc81563f80a5e53cb1f9183e664b623f0343363e3a1e633fa510283e9300293fbce7003ebe6b283f863a643f606b6f3da078c43d46b4613f4ed47a3f20f2dd3dae2a733f40d7b73da06b023c6cb0603f8fa01d3d5da4603f0e6bea3df8fa8a3e05994e3d2602853ebde3443e8e1aeb3e57b4193ebaa1e13e5085243dec14b33e3399bb3d56d0b43e1f64453fe9f1693f4702313f0dd07c3faa7e2d3fa013793fb074423f6534663f0ed8293f380d743f22523f3f4a23623fe541423f6172663fc9032d3fbe0b793f577a593fd387523f122e643f28425e3f325c503fc412463fe883593f80d9513f9e40503f5009463f6d387c3fe1b74d3fdad2763f5637453f5ef9613f9bac2d3f1626693fa5ab343f7d79713f0cca3c3f1ee0913ecf693a3fbb2b933e957d4f3fb70ad23ee5b74c3fafebe73e685a323f1287b43ef0332e3f1bd7073f581e843eefc9db3ec0b2ba3eb726fd3ee09cc93ea65f163f2ea9923e47ad2c3f340b543e28b7213f78b53c3ed0f11d3fbf2b423fc361193ff01a583f19902d3f408a4e3f9e5d263f7afb233f52260d3f4cc3343f7bd7343fd7f7313f7211533f1c0ed73e9e235a3f4049b13e05154d3fb092b73e516ae73ebf99543fd579003fb1df433fa969233f76379f3eca8a193f0ef1bf3e448a293f3485a63e2235453f6e88993e3d48573fcaa3933e10404a3fc8f8703e2714323f2415063e6daa3a3f2cb3183e06f6603f604e703e295d4e3f34d03c3e04e33c3f8451793eea053f3ed2c6c13eeaaf673ec846a03e062b0e3ee23eba3ecea6333e72db963e5d867f3e4099df3d700b963ef081963d1215a23eb035bb3dd2c3883e848e163e68ecb33ea0b0e03c098aaf3e4003313d7616ad3e30ba033db3d1993ec46d243ed61f413f6a6ac93ee143213fd120253f570a093fe450073f1349fc3ed060173f64af333fa036c23e97712b3f2061d83ed02a3f3f54afbb3ef1103a3fb631963e2ded383facadb83e66f90a3f984b693f0ad7bb3ee2c6ed3ee9f2e63e8eaefa3e9030b43ea391233f89eba83e27f8263fd84aa83e3e94283f32e90f3f6a87ef3e65ffcc3e36ce2a3f95efd93e7c260f3fb9519c3e15696e3f8a77e83e8e56613f86e58f3e68804b3e9888773e7c413b3e11905f3e28d8ff3dd9b53d3ee851213ee083573eb80f693ee1b8843ee0d97e3ede74933e6283293fa036423f0b42393f51a5663f0e33e43e4966553f0b7d1c3f18086a3f4a43ad3e986c6c3fba6e8a3e37154e3d9982253f3598963d8605d73e18eb1b3e240a4d3ee4a2aa3ec85a0b3fe125383f118e053fa29c463f42ce113f3fe6e33d340dda3e1695ae3d3dd4263f9fe8a23e9aec273f0d18203f6ad8033ff913453fc885c33dbb096e3f6c43453e0ad8563f648d0a3e14249e3e4e291f3f96928d3e3a74223f7556a33edd43263fdc81563f80a5e53cb1f9183e664b623fbce7003ebe6b283f863a643f606b6f3da078c43d46b4613fae2a733f40d7b73d8fa01d3d5da4603f0e6bea3df8fa8a3e57b4193ebaa1e13e3399bb3d56d0b43e1f64453fe9f1693fb074423f6534663faa7e2d3fa013793f4702313f0dd07c3f22523f3f4a23623f0ed8293f380d743fe541423f6172663fc9032d3fbe0b793f577a593fd387523f122e643f28425e3f325c503fc412463fe883593f80d9513f9e40503f5009463f6d387c3fe1b74d3fdad2763f5637453f1626693fa5ab343f5ef9613f9bac2d3f7d79713f0cca3c3f0000803f00000000000000000000000000000000160000000f0000000a0000000000803f0000000000000000000000000a000000000000000c0000000000000058904b3f33ce0c3edce0893d000000000a000000000000000c00000000000000928f223fdce0ba3e0000000000000000000000000a00000000000000000000002be0043f7142843e70fa633e000000000f000000000000000a00000000000000ccb0663f9f79ca3d000000000000000004000000030000000000000000000000b3535d3f32b10a3e0000000000000000040000000300000000000000000000001f35f93e7b64a03ecccc4c3e0000000004000000000000000100000000000000f872143f101ad73e000000000000000004000000000000000000000000000000ad10003fa7deff3e000000000000000003000000040000000000000000000000eb51383f2a5c8f3e0000000000000000040000000100000003000000000000009ab1683f3173ba3d0000000000000000000000000a0000000000000000000000f274223f1b16bb3e0000000000000000000000000a00000000000000000000004384023f7af7fa3e00000000000000000a0000000000000000000000000000000000803f000000000000000000000000000000000000000000000000000000000000803f0000000000000000000000000000000000000000000000000000000030bd7e3f4068a13b0000000000000000000000000a00000000000000000000002aa6473f5767613e00000000000000000100000004000000000000000000000091c46d3f2fed2e3d9093e93c000000000100000004000000030000000000000048e13a3f703d8a3e000000000000000001000000040000000300000000000000c335013f7a94fd3e0000000000000000000000000a00000000000000000000000000803f0000000000000000000000000a000000000000000c000000000000000814353f6fe47a3ec92d433d00000000010000000400000003000000000000009fb76d3ff209803dc7c8113c00000000010000000400000003000000000000007238133fb78dd93ef863323700000000010000000400000000000000000000000000803f0000000000000000000000000100000003000000040000000000000049ea223fdba2b63e9924e23b0000000003000000040000001700000000000000410e163f7fe3d33e0000000000000000030000000400000000000000000000000300003ffbffff3e00000000000000000300000004000000000000000000000014ae473fa1ff3a3e3c20193d000000000400000003000000170000000000000014ae473fa5f13d3e31580d3d00000000040000000300000017000000000000005b05293f2540853e90d4a23d000000000300000004000000170000000000000037803e3f7b3a223e5289c73d0000000003000000040000001700000000000000ef4d323fd1b2243e7415123e00000000030000001700000004000000000000005d67063f4731f33e0000000000000000030000000400000000000000000000000000803f000000000000000000000000180000001900000000000000000000000000803f000000000000000000000000180000001900000000000000000000002f8b043fa1e9f63e00000000000000001800000019000000000000000000000050ad053f61a5f43e0000000000000000180000001900000000000000000000000000803f000000000000000000000000180000001900000000000000000000000000003f0000003f0000000000000000190000001800000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000000000000000000000000000000000000000803f000000000000000000000000000000000000000000000000000000009a4d6a3f3493ad3d0000000000000000000000000400000000000000000000009ad07f3f7c973d3a0000000000000000010000000400000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f00000000000000000000000001000000030000000400000000000000b8f57f3f223c20394b4c893600000000010000000400000003000000000000000000803f0000000000000000000000000a000000000000000c0000000000000046531a3f7559cb3e000000000000000000000000040000000000000000000000f872143f101ad73e000000000000000004000000000000000000000000000000f872143f101ad73e000000000000000004000000000000000000000000000000f872143f101ad73e000000000000000004000000000000000000000000000000812e7b3f60ec973c7fe090390000000004000000030000000000000000000000302f483fbaa5073e113baf3d000000000f000000000000000a00000000000000fce92d3fd7c0243e9811233e000000000f000000000000000a000000160000009c45533f41f1ad3d5e5cac3d000000000f000000000000000a0000001600000056c0313f547f9c3e00000000000000000000000004000000000000000000000081d90f3fedda933e25e4183e00000000000000000a0000000f00000000000000241d133fb9c5d93e00000000000000000f0000000000000000000000000000000000803f0000000000000000000000000a0000000c00000000000000000000000000003f0000003f00000000000000000a0000000c000000000000000000000022fc7f3f946077380000000000000000180000001900000000000000000000000eed7f3fb58d97390000000000000000180000001900000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000007900723f6ef85f3d000000000000000018000000190000000000000000000000f0f2743ff9d0303d0000000000000000180000001900000000000000000000005346733fd39a4b3d00000000000000001800000019000000000000000000000005bf7f3fe4f6813a0000000000000000180000001900000000000000000000000000523f9b5ecf3d65a1a03d000000000a000000000000000c000000000000003c220c3f0503e73ecc5ab83a000000000a000000000000001a0000001b000000eee3c43eeecea43e244d963e00000000000000000a0000000f000000000000005c20043f5db0f53ea8ba833b00000000000000000a0000001a00000000000000b763763f94c4193d0000000000000000000000000400000000000000000000008a19073febccf13e00000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a000000000000000c0000000000000051b51d3f5e95c43e0000000000000000000000000a00000000000000000000000000803f000000000000000000000000000000000000000000000000000000000000803f00000000000000000000000000000000000000000000000000000000fc591a3fe84bcb3e59e6753500000000040000000100000003000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f00000000000000000000000000000000000000000000000000000000b32c7e3f4ba6e93b000000000000000000000000040000000000000000000000ee35bf3ea28cb63e703d8a3e0000000003000000040000000100000000000000ec32003f299aff3e0000000000000000040000000300000000000000000000008143393ff7d8833e76009a3c0000000003000000040000001700000000000000aac32c3fad78a63e0000000000000000030000000400000000000000000000000000003f0000003f0000000000000000170000001900000000000000000000006b66053f2933f53e000000000000000019000000180000000000000000000000c51a073f76caf13e000000000000000019000000180000000000000000000000a021003fc1bcff3e000000000000000019000000170000000000000000000000360c6a3f519eaf3d000000000000000018000000190000000000000000000000e410673fdd78c73d0000000000000000180000001900000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f00000000000000000000000018000000000000000000000000000000758c6c3fb8264a3de923da3c00000000000000000f00000004000000000000000000003f0000003f00000000000000000a0000000c00000000000000000000000000003f0000003f00000000000000000100000000000000000000000000000052b81e3f5c8fc23e0000000000000000000000000100000000000000000000000000003f0000003f000000000000000017000000190000000000000000000000efd2033f235af83e0000000000000000190000001800000000000000000000002cca183fd5544d3e9b2f4c3e000000000f000000000000000a000000160000000000803f0000000000000000000000000000000001000000040000000000000026d7be3e0758ac3ed4d0943e00000000030000001700000004000000000000005372fe3e6c45c53e0521f13d00000000030000001700000004000000000000007e201a3f5c65c93e216a963b0000000003000000170000000400000000000000e281173fe099c93e8c4b6c3c0000000003000000170000000400000000000000dc20263fc040a53e8bd8e73c000000000300000017000000040000000000000026ab473fb8f3213ec77e7d3d000000000f000000000000000a00000000000000dc59da3e36a0b13ede0b683e000000000f000000000000000a00000000000000e13b4d3f9de9bc3db87fba3d000000000f000000000000000a00000016000000b2970e3f74d0e23e4b23a135000000001700000003000000190000000000000062a9003f3cadfe3e00000000000000001700000003000000000000000000000062a9003f3cadfe3e000000000000000017000000030000000000000000000000b2970e3f74d0e23e4b23a13500000000170000000300000019000000000000000000003f0000003f0000000000000000170000001900000000000000000000000000003f0000003f000000000000000017000000190000000000000000000000a2ac123fbda6da3e000000000000000017000000030000000000000000000000a2ac123fbda6da3e0000000000000000170000000300000000000000000000002bfe1a3fa503ca3ecd88133400000000170000000300000019000000000000002e871d3f0ae7c43e18a7a93800000000170000000300000019000000000000002bfe1a3fa503ca3ecd88133400000000170000000300000019000000000000002e871d3f0ae7c43e18a7a93800000000170000000300000019000000000000000000803f000000000000000000000000180000001900000000000000000000000000803f00000000000000000000000018000000190000000000000000000000d159143f5d4cd73e000000000000000019000000180000000000000000000000b5cb133f9768d83e0000000000000000190000001800000000000000000000000000003f0000003f0000000000000000190000001800000000000000000000000000003f0000003f0000000000000000190000001800000000000000000000001f02153f38cec93e281c9a3c00000000160000000f0000000a000000000000009c45533f41f1ad3d5e5cac3d000000000f000000000000000a00000016000000fce92d3fd7c0243e9811233e000000000f000000000000000a0000001600000000c50d3f35adcc3e31e8153d00000000160000000f0000000a000000000000002cca183fd5544d3e9b2f4c3e000000000f000000000000000a000000160000004dc2053f7fcfd53e5a83363d00000000160000000f0000000a0000000000000076bc063f2e4de73e0afd873c00000000160000000f0000000a00000000000000e13b4d3f9de9bc3db87fba3d000000000f000000000000000a00000016000000d0cdff3ed0cdff3e70c0483a00000000160000001c0000000a000000000000003442173f997bd13e0000000000000000160000001c0000000000000000000000940d043f3e06d83ed2f47e3d00000000160000001c0000000a00000000000000582e093fb683ed3ed6cc7c3900000000160000001c0000000a0000000000000096370b3fb322d53e1171233d00000000160000001c0000000a000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c00000000000000000000000000000039ff7f3fda9c07377b9d7c36000000001c0000000c00000016000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000000a0000001b000000000000001a000000d1464f3f5470fc3d2159893d000000000a000000000000000c000000000000000000803f0000000000000000000000000a000000000000000c0000000000000040c3233f8079b83e0000000000000000000000000a00000000000000000000005617b63e7448ad3e35a09c3e00000000000000001a0000000a00000000000000b8a26d3f3cea923d000000000000000004000000030000000000000000000000f872143f101ad73e00000000000000000400000000000000000000000000000014ab303fd7a99e3e0000000000000000040000000000000000000000000000007ab8683f333cba3d0000000000000000040000000300000000000000000000003078013f9f0ffd3e0000000000000000030000000400000000000000000000007fa1003f03bdfe3e000000000000000003000000040000000000000000000000bd5e6b3f150aa53d0000000000000000000000000a000000000000000000000056f4033f5517f83e00000000000000000a00000000000000000000000000000028f9223fb00dba3e0000000000000000000000000a00000000000000000000000000803f000000000000000000000000000000000a00000000000000000000000000803f000000000000000000000000000000000a00000000000000000000000000803f00000000000000000000000000000000000000000000000000000000a4703d3fb81e853e00000000000000000e00000004000000000000000000000098f40e3fe9e0723eb94c513e000000000e0000000400000003000000000000003c5b463f96aa653e097a683a000000000e0000000400000003000000000000000000803f0000000000000000000000000a000000000000000c000000000000004f47013f6271fd3e0000000000000000000000000a000000000000000000000082d9573f8705163e3347293c000000000e0000000400000003000000000000009012403fc0b57f3e00000000000000000e0000000400000000000000000000002eae773f011b013d3544803a000000000e0000000400000003000000000000000000803f0000000000000000000000000e00000003000000040000000000000044a2dd3e7b14ae3e8192683e00000000030000000e0000000400000000000000d849313f2e59983e2164223c000000000300000004000000170000000000000014ae473f9d493a3e4ff81b3d00000000040000000300000017000000000000002f172d3f34fb643e1f50cd3d0000000003000000040000001700000000000000e0e4443f5d93fb3da545dd3d00000000030000001700000004000000000000002e21343f913f4c3e6f77c63d00000000030000001700000004000000000000000a740c3fed17e73e000000000000000003000000040000000000000000000000e1bf033f3d80f83e0000000000000000180000001900000000000000000000000000803f000000000000000000000000180000001900000000000000000000000b43013fe979fd3e0000000000000000180000001900000000000000000000000000803f000000000000000000000000180000001900000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f000000000000000000000000000000000a00000000000000000000003174473f3e2f623e0000000000000000000000000400000000000000000000000000803f0000000000000000000000000000000000000000000000000000000086ff7f3fc1cdf43600000000000000000e0000000400000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000300000004000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000a000000000000000c00000000000000f872143f101ad73e0000000000000000040000000000000000000000000000001d1c103fc6c7df3e000000000000000004000000000000000000000000000000f59e0f3fc1498a3ea8f02c3e000000001a000000000000000a000000000000007fd9403fd6c4fd3dc56bfb3d000000001a000000000000000a0000001b000000c1660e3f235e643ed806623e000000001a000000000000000a000000000000003931063f8e9df33e000000000000000000000000040000000000000000000000aaac2a3f6155a93eaca5283b00000000000000000a0000001a00000000000000251f5d3f6e830b3e0000000000000000000000001a00000000000000000000000000003f0000003f00000000000000000a0000000c00000000000000000000000000803f0000000000000000000000000a0000000c0000000000000000000000cdf47f3fff3333390000000000000000180000001900000000000000000000002fff7f3f5fa850370000000000000000180000001900000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f00000000000000000000000018000000000000000000000000000000032d713fd82f6d3d000000000000000018000000190000000000000000000000ef7c743f1531383d0000000000000000180000001900000000000000000000004f0edd3ec4469e3eecaa843e000000001a000000000000000a000000000000000000803f000000000000000000000000000000000000000000000000000000004e41133f647dd93e0000000000000000040000000e000000000000000000000048597b3f06d7943c000000000000000000000000040000000000000000000000c5d7c33ecbeab13e703d8a3e0000000003000000040000000e00000000000000a427413f7690643eca87b63c000000000300000004000000170000000000000064cd043f3765f63e00000000000000001900000017000000000000000000000096500b3fd55ee93e0000000000000000190000001800000000000000000000003355693f6756b53d0000000000000000180000001900000000000000000000004e01553fba7ffa3db0eb3a3d00000000000000001a00000004000000000000000000803f000000000000000000000000000000000e00000000000000000000003433333f9999993e0000000000000000000000000e0000000000000000000000c0c60b3f7f72e83e0000000000000000190000001800000000000000000000000000003f0000003f000000000000000017000000190000000000000000000000066d1f3fa766413e0355403e000000001a000000000000000a0000001b0000000000803f000000000000000000000000000000000e0000000000000000000000b1a1f73e0d16cc3e0521f13d0000000003000000170000000400000000000000d03c163fb2bed23eb4aec73a0000000003000000170000000400000000000000c0c2123f031fd73e87dfd63b00000000030000001700000004000000000000006df9563f2144ef3df1e0313d000000001a000000000000000a000000000000002132253f90d65b3eea600f3e000000001a000000000000000a00000000000000f9d8543f84b4a93db981a73d000000001a000000000000000a0000001b00000098cf013fcf60fc3e00000000000000001700000003000000000000000000000098cf013fcf60fc3e0000000000000000170000000300000000000000000000000000003f0000003f00000000000000001700000019000000000000000000000051c0103f5e7fde3e00000000000000001700000003000000000000000000000051c0103f5e7fde3e0000000000000000170000000300000000000000000000007d441c3fe072c73e16ae043800000000170000000300000019000000000000007d441c3fe072c73e16ae043800000000170000000300000019000000000000000000803f000000000000000000000000180000001900000000000000000000007cf8173f080fd03e0000000000000000190000001800000000000000000000000200003ffbffff3e0000000000000000180000001900000000000000000000005f2c0f3ffc7ed03ef6b4e53c000000001b0000001a0000000a00000000000000747c073f1d5ed13ebf01513d000000001b0000001a0000000a00000000000000c1660e3f235e643ed806623e000000001a000000000000000a000000000000007fd9403fd6c4fd3dc56bfb3d000000001a000000000000000a0000001b00000044c8f23e44c8f23ee6f4223d000000001a0000001b0000000a00000000000000066d1f3fa766413e0355403e000000001a000000000000000a0000001b000000d0bc0c3f9fdbdb3e5a77883c000000001b0000001a0000000a00000000000000f9d8543f84b4a93db981a73d000000001a000000000000000a0000001b00000045d6ff3efeafff3e843c703a000000001b0000001d0000000a0000001a000000c42e073f77a2f13e00000000000000001b0000001d000000000000000000000022d00e3f64b0c93ebb7a453d000000001b0000001d0000000a000000000000009d08083f2fbbef3e0f5d9839000000001b0000001d0000000a0000001a0000007374163f260bc43e3cbff03c000000001b0000001d0000000a000000000000000000803f0000000000000000000000001d0000000000000000000000000000000000803f0000000000000000000000001d00000000000000000000000000000018ff7f3f29e658371a906635000000001d0000000c0000001b0000000a0000000000803f0000000000000000000000001d0000000000000000000000000000000000803f0000000000000000000000001d000000000000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: -0.71359193, y: -0.7703135, z: 0.03972292} + m_Extent: {x: 3.2166853, y: 0.6763401, z: 0.6694259} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh.meta new file mode 100644 index 0000000000..4cb5ad8a50 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 760686c437fc7264eb4bcf255f3b7d52 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab new file mode 100644 index 0000000000..8dac35b34f --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab @@ -0,0 +1,177 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8878649691877917833 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1276994800527814221} + - component: {fileID: 1795784118019805244} + - component: {fileID: 6400966380356475155} + - component: {fileID: 2247561146141477150} + m_Layer: 0 + m_Name: "\u767D\u5929\u9E45_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1276994800527814221 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8878649691877917833} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1795784118019805244 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8878649691877917833} + m_Mesh: {fileID: 4300000, guid: 760686c437fc7264eb4bcf255f3b7d52, type: 2} +--- !u!137 &6400966380356475155 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8878649691877917833} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 543cfc82119f0bf4080b2adba0bd514d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 760686c437fc7264eb4bcf255f3b7d52, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &2247561146141477150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8878649691877917833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 1795784118019805244} + _skinnedMeshRenderer: {fileID: 6400966380356475155} + BoneNames: + - Bone05 + - Bone09 + - Bone10 + - Bone02 + - Bone01 + - Bone20 + - Bone19 + - Bone23 + - Bone11 + - Bone22 + - Bone06 + - Bone12 + - Bone07 + - Bone25 + - Bone14 + - Bone04 + - Bone15 + - Bone16 + - Bone28 + - Bone17 + - Bone29 + - Bone26 + - Bone31 + - Bone33 + - Bone35 + - Bone03 + - Bone40 + - Bone41 + - Bone27 + - Bone18 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab.meta new file mode 100644 index 0000000000..09d8dc3e3e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6f0d1a03ad2049641a90c175041f91ff +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat new file mode 100644 index 0000000000..b3bba249ac --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2497708018203932640 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u767D\u5929\u9E45\u7FC5\u8180_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 362caf21a52c09d4d89401c077b5bc1b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 362caf21a52c09d4d89401c077b5bc1b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.015 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat.meta new file mode 100644 index 0000000000..4e05ef131c --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 59963ac09cc838147a57fa35d0c02aae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh new file mode 100644 index 0000000000..5d7d233cce --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh @@ -0,0 +1,725 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u767D\u5929\u9E45\u7FC5\u8180_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 576 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 145 + localAABB: + m_Center: {x: 0.896441, y: -0.69349754, z: 0.053733587} + m_Extent: {x: 1.7817793, y: 0.53218293, z: 5.7816257} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: -0.979482 + e01: 0.19847243 + e02: -0.034986824 + e03: 0.0015520504 + e10: 0.1984385 + e11: 0.9801032 + e12: 0.004475816 + e13: -0.06485302 + e20: 0.035178963 + e21: -0.0025587392 + e22: -0.9993776 + e23: -0.018442925 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.31240034 + e01: -0.022722535 + e02: -0.94967896 + e03: -0.51872677 + e10: 0.07254348 + e11: 0.9973651 + e12: -0.00000006307959 + e13: -0.3431202 + e20: 0.9471768 + e21: -0.06889299 + e22: 0.31322563 + e23: -0.42882818 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.2826087 + e01: -0.02055564 + e02: -0.9590153 + e03: -1.1972363 + e10: 0.07254347 + e11: 0.997365 + e12: -0.00000006471064 + e13: -0.34312007 + e20: 0.95648855 + e21: -0.06957028 + e22: 0.28335527 + e23: -0.46652004 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.996326 + e01: 0.04716694 + e02: 0.07148667 + e03: -0.9776748 + e10: -0.047046006 + e11: 0.998887 + e12: -0.0033755642 + e13: 0.046165314 + e20: -0.07156626 + e21: -0.000000008829831 + e22: 0.9974359 + e23: 0.07022633 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03544104 + e01: 0.07254328 + e02: 0.99673545 + e03: 0.6791928 + e10: -0.0025587494 + e11: 0.99736536 + e12: -0.07249815 + e13: 0.9355203 + e20: -0.99936855 + e21: 0.000019010156 + e22: 0.03553331 + e23: 0.011907518 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.91216075 + e01: -0.33822 + e02: -0.23145257 + e03: -0.6726635 + e10: -0.27974144 + e11: 0.92654973 + e12: -0.25149462 + e13: -0.9025257 + e20: 0.29951307 + e21: -0.16465642 + e22: -0.9397773 + e23: -1.5290742 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9612062 + e01: 0.069913425 + e02: -0.266825 + e03: 0.3604681 + e10: 0.072543465 + e11: 0.99736476 + e12: -0.00000006119286 + e13: -0.32641163 + e20: 0.26612204 + e21: -0.019356478 + e22: -0.9637457 + e23: -1.6381797 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.91524583 + e01: -0.29036438 + e02: -0.2793096 + e03: -0.71127975 + e10: -0.27103522 + e11: 0.9566696 + e12: -0.10640344 + e13: -0.6780482 + e20: 0.29810324 + e21: -0.021682598 + e22: -0.95428795 + e23: -3.1669397 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.026654966 + e01: -0.0019388129 + e02: -0.9996431 + e03: -2.6517184 + e10: 0.07254346 + e11: 0.99736476 + e12: -0.000000057734663 + e13: -0.34312007 + e20: 0.9970094 + e21: -0.072517596 + e22: 0.026725382 + e23: -1.1898291 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9390171 + e01: 0.068299994 + e02: -0.3370201 + e03: 0.03328768 + e10: 0.072543904 + e11: 0.9973645 + e12: 0.00000010692758 + e13: -0.3804159 + e20: 0.3361323 + e21: -0.024448676 + e22: -0.94149786 + e23: -3.1279457 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9800901 + e01: 0.19846326 + e02: -0.0060169487 + e03: -1.041705 + e10: 0.19843851 + e11: 0.98010343 + e12: 0.004475811 + e13: -0.06485313 + e20: 0.0067854426 + e21: 0.003192716 + e22: -0.9999716 + e23: -0.048645243 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.14332403 + e01: -0.0104247555 + e02: -0.9896216 + e03: -4.6142235 + e10: 0.07254344 + e11: 0.99736464 + e12: -0.0000000633534 + e13: -0.34312 + e20: 0.9870139 + e21: -0.07179056 + e22: 0.14370264 + e23: -0.65352637 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9747611 + e01: 0.22051062 + e02: -0.034877114 + e03: -1.6066363 + e10: 0.22046271 + e11: 0.97538173 + e12: 0.0052631767 + e13: -0.028651841 + e20: 0.03517901 + e21: -0.0025587515 + e22: -0.9993776 + e23: -0.0021272073 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99141043 + e01: 0.072110586 + e02: 0.109116904 + e03: 0.45411178 + e10: 0.07254371 + e11: 0.99736494 + e12: 0.000000001466701 + e13: -0.38077903 + e20: -0.10882954 + e21: 0.007915765 + e22: -0.99402976 + e23: 1.7220625 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.18780515 + e01: -0.013660085 + e02: 0.9821117 + e03: -0.53373516 + e10: 0.07254373 + e11: 0.99736524 + e12: 0.0000000040318864 + e13: -0.3431203 + e20: -0.97952384 + e21: 0.071246006 + e22: 0.1883012 + e23: 0.50468963 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9990687 + e01: -0.025096143 + e02: -0.035103977 + e03: -0.39998558 + e10: -0.035179086 + e11: 0.0025588244 + e12: 0.99937767 + e13: 0.2846025 + e20: -0.02499069 + e21: 0.99968207 + e22: -0.0034393442 + e23: -0.0005230592 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22153217 + e01: -0.016113233 + e02: 0.97502065 + e03: -1.4050348 + e10: 0.07254372 + e11: 0.99736506 + e12: 0.0000000037958037 + e13: -0.34312022 + e20: -0.9724514 + e21: 0.07073159 + e22: 0.22211726 + e23: 0.45642316 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.11484757 + e01: -0.028061867 + e02: 0.992987 + e03: -2.4694378 + e10: 0.068417646 + e11: 0.99700373 + e12: 0.036088523 + e13: -0.43309456 + e20: -0.9910247 + e21: 0.07208253 + e22: -0.11258382 + e23: 1.353205 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.98945075 + e01: 0.07196798 + e02: 0.12573172 + e03: 0.54070985 + e10: 0.072543666 + e11: 0.997365 + e12: 0.00000019862212 + e13: -0.31406507 + e20: -0.12540065 + e21: 0.009121241 + e22: -0.99206465 + e23: 3.1487703 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15195177 + e01: 0.02186248 + e02: 0.9881466 + e03: -4.179231 + e10: 0.05824137 + e11: 0.99781984 + e12: -0.031032566 + e13: -0.14986297 + e20: -0.98667073 + e21: 0.062266458 + e22: 0.15034695 + e23: 0.2777848 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9663073 + e01: -0.21138644 + e02: 0.14685465 + e03: -0.5663959 + e10: -0.20726703 + e11: 0.9773394 + e12: 0.042987116 + e13: -0.49303767 + e20: -0.15261404 + e21: 0.011100645 + e22: -0.98822397 + e23: 3.131167 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.91866875 + e01: -0.26834592 + e02: 0.2898952 + e03: -0.92487496 + e10: -0.23726234 + e11: 0.9615633 + e12: 0.1382105 + e13: -0.7885011 + e20: -0.31584102 + e21: 0.058188416 + e22: -0.947027 + e23: 1.4997704 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9028438 + e01: -0.42887363 + e02: -0.030683046 + e03: -1.1492437 + e10: -0.03517917 + e11: 0.0025586807 + e12: 0.99937755 + e13: 0.28460228 + e20: -0.42852816 + e21: 0.90336126 + e22: -0.017397556 + e23: -0.51124215 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.97521615 + e01: 0.2204238 + e02: 0.01915353 + e03: -1.5813779 + e10: -0.22033186 + e11: 0.97540116 + e12: -0.006817027 + e13: 0.32669193 + e20: -0.020184949 + e21: 0.0024279307 + e22: 0.9997934 + e23: -0.012878116 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9929134 + e01: -0.11776313 + e02: 0.01597812 + e03: -3.1507974 + e10: 0.11779499 + e11: 0.9930373 + e12: -0.0010693895 + e13: -0.7463809 + e20: -0.015740858 + e21: 0.0029439442 + e22: 0.99987173 + e23: -0.040647034 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9798644 + e01: 0.1966691 + e02: 0.03445351 + e03: -2.3500934 + e10: -0.19658034 + e11: 0.9804694 + e12: -0.0059816167 + e13: 0.26966715 + e20: -0.03495694 + e21: -0.00091171806 + e22: 0.9993884 + e23: 0.022618214 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99880713 + e01: -0.033977766 + e02: -0.03507198 + e03: -0.39410478 + e10: -0.035179034 + e11: 0.0025586314 + e12: 0.99937767 + e13: -0.22434764 + e20: -0.033866864 + e21: 0.99941975 + e22: -0.0037508835 + e23: 0.0077679874 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9076175 + e01: -0.41152605 + e02: 0.08292703 + e03: -1.1989535 + e10: 0.09406291 + e11: -0.0068419767 + e12: 0.9955424 + e13: -0.05848748 + e20: -0.40912452 + e21: 0.9113729 + e22: 0.04491921 + e23: -0.48637673 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.96796966 + e01: -0.24883337 + e02: -0.033436414 + e03: -1.5413439 + e10: -0.035179105 + e11: 0.0025588193 + e12: 0.9993774 + e13: 0.28460258 + e20: -0.24859273 + e21: 0.9685431 + e22: -0.011230637 + e23: -0.221527 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.95071423 + e01: -0.2973832 + e02: 0.087783314 + e03: -1.5445225 + e10: 0.09406282 + e11: -0.0068421294 + e12: 0.9955424 + e13: -0.058487862 + e20: -0.29545724 + e21: 0.95473474 + e22: 0.034477606 + e23: -0.3003747 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03544104 + e01: 0.07254328 + e02: 0.99673545 + e03: 0.6791928 + e10: -0.0025587494 + e11: 0.99736536 + e12: -0.07249815 + e13: 0.9355203 + e20: -0.99936855 + e21: 0.000019010156 + e22: 0.03553331 + e23: 0.011907518 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: -1.8718481, y: -0.78033096, z: -1.015549} + m_Max: {x: -0.35387424, y: -0.28818437, z: 1.1177459} + - m_Min: {x: -1.7296553, y: -1.0839745, z: -0.4259115} + m_Max: {x: -0.5769898, y: -0.6816281, z: 1.7271545} + - m_Min: {x: -4.3380566, y: -1.008439, z: -0.3000009} + m_Max: {x: -2.3212698, y: -0.6975908, z: 1.928129} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.06536847, y: 0.16151518, z: 0.08619791} + m_Max: {x: 0.06536847, y: 0.16151518, z: 0.08619791} + - m_Min: {x: -2.3124535, y: -2.5201595, z: -2.6516938} + m_Max: {x: -1.6671367, y: -1.9418495, z: -1.8985825} + - m_Min: {x: -1.7352309, y: -0.9720775, z: -3.6309566} + m_Max: {x: -0.30533957, y: -0.6808823, z: -2.7388291} + - m_Min: {x: -3.3177733, y: -2.2104337, z: -7.0428476} + m_Max: {x: -1.8800098, y: -1.5198033, z: -5.177855} + - m_Min: {x: -7.7369957, y: -0.99120355, z: -1.5470489} + m_Max: {x: -4.5591717, y: -0.68057436, z: 0.59584224} + - m_Min: {x: -2.1558142, y: -0.900931, z: -6.5298567} + m_Max: {x: -0.9583531, y: -0.747296, z: -5.9284062} + - m_Min: {x: -3.4594998, y: -0.5299531, z: -0.7013141} + m_Max: {x: -2.988748, y: -0.20501837, z: 0.67957574} + - m_Min: {x: -10.407469, y: -0.75921357, z: -0.3768953} + m_Max: {x: -8.957188, y: -0.5387261, z: 1.3554149} + - m_Min: {x: -4.3481884, y: -0.31745487, z: -0.5868798} + m_Max: {x: -3.8898044, y: -0.025537191, z: 0.7923729} + - m_Min: {x: -1.3382269, y: -1.2177693, z: 2.1621969} + m_Max: {x: -0.06467548, y: -0.91650116, z: 3.2434437} + - m_Min: {x: -1.7241691, y: -1.1814626, z: -0.6290385} + m_Max: {x: -1.0547411, y: -0.8202635, z: 0.64508724} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -3.8012764, y: -1.3609301, z: -1.6433564} + m_Max: {x: -2.2580023, y: -0.8940026, z: 0.5070088} + - m_Min: {x: -7.109416, y: -1.7304552, z: 0.10138166} + m_Max: {x: -4.1307945, y: -1.2061007, z: 2.5257182} + - m_Min: {x: -0.34234327, y: -1.4136837, z: 6.177484} + m_Max: {x: 0.6516775, y: -1.1606174, z: 6.8363447} + - m_Min: {x: -9.922289, y: -1.15562, z: -1.7684913} + m_Max: {x: -7.902529, y: -0.9986013, z: 0.30746928} + - m_Min: {x: -2.3553872, y: -2.1415346, z: 6.181758} + m_Max: {x: -1.2570822, y: -1.5772884, z: 6.2585235} + - m_Min: {x: -2.5410395, y: -2.377803, z: 1.5164969} + m_Max: {x: -2.1895165, y: -1.947125, z: 2.6816616} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000600050004000400070006000500060008000800090005000c000b000a0001000e000d000d0000000100040005000f000f00100004000f0005000900090011000f00130012000d000d000e0013000f0015001400140010000f0015000f001100180017001600160019001800040010000e000e0001000400140013000e000e00100014001400150019001900160014001b001a001700170018001c001c001b0017001600130014001f001e001d000a002100200020000c000a001e001f002000200021001e00230022000c000c0020002300250024002200220023002500250027002600270029002800280026002700280029002a002b0024002500250026002b00260028002c002c002b00260020001f002d002d0023002000250023002d002d00270025000400010002000200070004000d002f002e002e0000000d001a001b003000300031001a003300320031003100300033002e0035003400340036002e002f003700350035002e002f000d001200380038002f000d002f0038003900390037002f003c003b003a003d0030001b003f003e003d003800310032003200390038001a0031003800380012001a0012001600170017001a00120012001300160000002e0036003600030000001c003b003d003d001b001c004200410040004000430042004200430044004400450042004700460041004100420047004700420048004500480042002c0028002a002a001c002c003c003f003d003d003b003c003d003e003300330030003d004b004a00490049004c004b004f004e004d004d0050004f0050005200510051004f0050005500540053004c0049005600560057004c004d0059005800580050004d0058005a0052005200500058005b005700560056005c005b00580059005d005d005e0058005a0058005e00610060005f005f00620061004d004c005700570059004d005d005900570057005b005d005d005f00600060005e005d006400630062006200630065006500610062005b005f005d0068006700660053005400690069006a00530068006a0069006900670068006b006900540054006c006b006d006b006c006c006e006d0070006d006f0070006f00710071007200700072007100730074006f006d006d006e0074006f0074007500750071006f0069006b0076007600670069006d007000760076006b006d004d004e004b004b004c004d0056004900770077007800560064007a0079007900630064007b0079007a007a007c007b0077007e007d007d007f007700780077007f007f008000780056007800810081005c005600780080008200820081007800850084008300790086006300880087008600810082007c007c007a00810064005c00810081007a0064005c006400620062005f005c005b005c005f0049004a007e007e00770049006500630086008600850065008a0089004000400041008a008a008c008b008b0089008a008d008a004100410046008d008a008d008e008e008c008a00750065007300730071007500840085008600860087008400860079007b007b00880086008f00450044008c0090008b00 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 145 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 9296 + _typelessdata: 37337d3ff99bedbed883773f7695813e8f83773f18730a3d3548f13ec7babfbe5cf46e3f116da23d83297f3fbf34803c0256fb3e0c0ec0becd49273f11d3453deea27f3fdd35b83c8aa8823f98ecdfbe08cd1d3fb3f0853e1cd6753fd678c63d313730bc09f8cebe59d15f3f4bc64bbe3fdb7a3fe3d85b3ccb4f4dbe719e04bf7c7c673fce116ebfa1e6b83ef5438d3d4bb380bee4b909bfc9ae263f6f783fbf4b0c283fa295c93d13cd2dbd9fccd2bef387173fd37b5bbec70c7a3fb261f0bab79146be510038bf9a41343f9df276bfc71f4ebe533c2e3e33132dbeaa882cbf6905753f079b7ebf8888c2bddac92fbde7e14ebd37393abfbbaa2b3f4195623d86977abf868f493eb79146be510038bf9a41343f539396bce0f47bbfc54c343e33132dbeaa882cbf6905753f83338e3ddd9a7bbffa0a2f3e3f9e623fbfb7e5be185bbf3f6466263e31937c3fa848573c8894dd3ecb15c6beeef5a93fbdd313bcd1e77f3fa5e5d13c5c6957be850c04bf1935993f2bc130bf5216383f5c24a1bd3816ad3b0446d3be3b5b973f7e124abec4f67a3fc50c823b6e706ebe956f26bf07669b3fc1b976bf1ef6063e8c746dbe31ff223f9881d5be108d2240ae91603da2997f3f9305303ca275a63d60d7cbbe9c480640e9f02d3bf1ee7f3f90a9b93c354032bec727e2be00a60040efe2abbe6e0b713f16f0dbbcc775c6bea0831dbf2b12f33f922837bfd40a313fbf2ccbbd5fd24abe8104e9beb8ee1f40afe35bbe3eed793fb3cee33cf06edcbd23f0e6beb7a7494003950dbe62887d3f55c404bc6211f2be0a5d18bfb28049408c7bd1be8a8d693fd1e888bcaf65f0bee49a1dbfb8aa1e40c1d809bf6f7e573ff6511dbd9c4a273fddacd4befafc4d407ed0983d41407f3f92fd87bc7cc12f3ee6f6d3bede4e664052e15cbd86917f3f23d5afbcf25fc6beb27c03bf4fe97240384733bec5957b3f83cc73bd8aa8823f98ecdfbe08cd1d3f9b48e63e533164bf1de765bd56c41f3fc65824bf2bfa2f3fcb22913e08f672bf1fd80c3e7ef17e3fd909f2becd907a3f1e868f3e6c8f74bf0516c03d30b39d3ed11722bfea4d813fffa1263e672579bf3538263e4f236b3e9a7e32bfc78a353fcf6bf43d101b7abfd117353e6e706ebe956f26bf07669b3f2e8ec23d28407ebf14d78a3d0186a53e6c4316bf551e9f3f4b24073ec8987cbf2738c23dc775c6bea0831dbf2b12f33f4656943d5e1d7fbf6ccc263d256135bd429215bfda0b0340bc9f123e19ed7cbf4ab16d3d9a0bb3bd185014bfad56214074152d3e6fce7bbf184b803df959233f9237dcbedc98224012c22a3e01097cbf5da15d3d4920bfbdcadd03bf4f3d4940fcf31f3eccac7cbfc8b5193dc420c73e5123f4be28494d408197a83d4e0d7fbfe253cbbc0136bfbc50ef02bf0b3167404aa4df3d6d4a7ebfba69183daf65f0bee49a1dbfb8aa1e402577b73dc8e97ebf2948ad3c6211f2be0a5d18bfb28049403a000c3e0c187dbffd377f3dfc0b633f4493efbea018be3f8b3a363e2d0c7bbf30fba63dfc64ac3fdc8d17bfc28e843f3435e33e5c66653faefc1abc3822993f513506bf2677d53f4924d53ee3c2683fdedb6abbbb98623fc4cedfbec9337c40e3fdf93d47107e3f4b2556bc926b9e3f28c101bf6f4e544068586e3ef1c2783ffc8822bd1829eb3fcbdb32bf3d2c5c40f1b0ad3ec3f26f3fbeb0a3bdb747d03f727d0fbfc2a4924065da4f3e35857a3f4fea0abdc65ddb3f2d125ebf7d57253f489c113fe03d523f39d737bd15dedc3f455455bf87688b3ffe18053f95a95a3f365232bc4036ab3f363318bf78cb0a3f85a9f43e2fd9603fb527723c6ac0cf3fe8f243bf2844e73ffd9cff3e19ae5d3feaa6f6bc5101953fa5fe07bfc5612440ee078f3eb1b3753feff9e6bc203ed53f19b13ebfdb40294008a6dc3e9da0663ffefe53bd7005f5beab2f25be212ab940a4f11e3e997d783f25053cbe02fed8bedad1c5bef89294401a6af4b977777d3f9eb30fbe4b800f3dedcc6fbe43bbba40cac4873dd9dc7d3f7484e2bd4cb1c43e188abbbe10568e40b428633d1e057f3f97638abd3bd3a03f5b37eabe30e3a3403c281b3ed1887c3fbc7080bd1c0e1c3f3ceeaabe6d0eb640ca1e193e29c27c3f48ec58bd6312fe3f946a12bf9d2dedbc9ef2ed3d48847d3ff9119cbd8be615402af71dbf172c1dbdb905ba3c683e7f3fc54496bd185f134070e31dbfcf1d733e23736c3c3e247d3fc1e0173e8d0ffa3f556d13bf9a72393ebb6aa83d48007a3f2aa84b3eff2ff03fc35428bf8f5adf3e08d996bcdf2a683fbb84d73ea7320440cd4437bf227f113ffd041bbe4bc16c3f8eacb23ef6672b40c9141abf79a252bd688b43bd8b107f3fbc0891bd3b802740a27f20bf6be8c83e78e1d3bc231f7f3fd604a13de64a0f4058c72fbf836a2a3f50d6e6bd2bb27b3fba1b133e11b06b3f69a61abf06ff74bff2fa7a3e0553733f7aa543be54167a3f8bf206bfc1031ebfd8237f3e1d516f3f508981bed60de43ebfb5efbe5b1920bfd4c9293dc00c7c3ff8172ebeaee5cf3e360802bfd47f66bfd541953df3ca7b3f512729bebf3790bd80bf06bf77bd4dbf9e6451be38fb773fd74510be23fea7bdad4bfcbec18b05bf55f15fbea6c4773f3090febd608396bed70c20bfdc0b0cbf40a241bfae9e233f63930ebe52be85be606f24bfe1a94dbfc7316fbfc04bb43eb0a45fbd0d3a75be72e04fbf3fca13bfcc2379bf741260be57bc90bdcf556ebebced4dbfb5d155bf90107dbf2f4da9bd7864013e488cc0bdb20551bfc6950dbf40ab3d3d73507fbf0feb67bdcf556ebebced4dbfb5d155bf96eb7e3d65607fbfa9f800bd0d3a75be72e04fbf3fca13bfe7a4d2bc87cc7fbfbefff6bcc199473f0a292abfb98fbcbf19d61f3e5c37793f75232bbec002ae3e12ba13bf447fa4bf49aa82bc83467c3f76452dbec35f95be97b12ebf7ac28bbf80d52fbfb2f8393f14e4b73c71f59bbddc4e14bfecca8dbf77034fbe746f783fb2e706bee21fa1bea85251bf833b8bbfd01572bf74f42c3ead488e3e885b85bdaaa132bf363701c0882a86bba8657c3f6e242bbed665ea3ede7e48bf89731fc0fbdd473da7707c3f40ad22be9373a0be48133abf2a31f4bf60f6acbe89f16f3fa905b0bd608404bf02a661bfe201e1bf7ad035bf22cb333f5974463d4b5abebef7884fbf5bbd18c0417d62bea68c763fcd231dbe0bed23bffa1b77bf00c714c0eee909bf445b573fb5843bbd46e430bf385985bfbf3a3fc0f1c0d2be8540683f7837b1bd52c2a7be80c266bf685d42c0d4da11bea7587b3fbf7600be94b2a5bd96506ebfff3f60c0e0236bbd82be7d3ff17af4bd0569da3e9c3b61bfbe694ac01a55903dae147d3f7a4508bed9e826bf860d87bf283d69c040b233beff5e7b3fbf6a91bd54167a3f8bf206bfc1031ebf0b15ea3e184e60bf7c2f1c3ef7386d3f9d4a1dbf58cf77bf22498e3ed7d375bf8829d33c1ac7133f1ae33cbf363421bf694b8e3e76de75bff4cb97bca2db743ecc3046bf045e6dbf5c981f3e57bf7cbf69a6fdbc09ea3a3ee62b4bbf0f841dbfc081e43d742d7ebfc7c42abd085f733eeb2043bf451a95bf0623053e6f9f7dbfe3e4223de21fa1bea85251bf833b8bbf58b7c23d9d357ebf2e5e8f3d724a3ebe24be5fbfd175f7bf7042133ed7997cbf9b989a3d608404bf02a661bfe201e1bf0091983d54087ebfda59ca3d295086be9ff66fbf567a19c0cd4b2d3e9db27bbfe83c8c3d1e1deb3e1bd84bbfba611fc032992b3eeb9a7bbfde149e3d0f0ca0be50c376bf316d41c08a08223e479c7bbfa7ddc13d75b5273e470b70bf6ef447c06440b63d9b8e7bbf12aa263eb43e8dbe2ca183bf96565fc00728e43db5227dbf2d2dcb3d0bed23bffa1b77bf00c714c0ff6dbe3d9a217dbf4131ef3d46e430bf385985bfbf3a3fc0ce580c3eb6ea7cbfc913933d453b483fd1ac2ebf1afababf2a09353e71a87bbfc0c4473d5afca23f2f123ebf090d84bfbd9ee03e5ec0623fbd3d1bbe35038a3f3a1c44bf1cccd3bf9857d23e69e5653ff62221be65541b3f97e380bff3de78c0c5cdf03d77b67b3fbe950ebe4c5b803fb8d37cbf977152c034806b3e504e773f7843f1bd15afa63f19e39cbf15d191c0c0a14c3e39df783f4fa5fabd3bebcb3f7c6099bfa8245bc0acadad3e6aef6f3f5520a5bda08bd53f75e675bf8f1122bfb5f9103f16f1503fadceeabd2845a63f2e6e2cbfef2a0bbf5933f13e3c4e5d3f909233be0703d33f00ad7dbf2bc589bff3d5033f5c14583f811919bef664bf3fa17483bfb7c2e4bfc8c7fd3eeccd5b3f90eb05be92817b3fc72e67bffa9522c02f2a8d3ec0ca733f6fd705be1148bd3f2d6490bf7daf27c03f98db3e818c653fb08de0bd87a562bf10737ebf0fecb4c09eb7263eec777c3fcecbf43c0793c0bea1b289bfe44ab7c0fafc8c3dba327f3fef711fbd9db03fbf319986bf18e48fc05ad18e3babfe7f3f9a3398bba90e913d95fa80bf6da78bc07629613db5c37e3f1d79a6bd21d0543eb2fe93bf1f84b3c04f5e173ea7dc7b3f7a01cfbd73d0643fd39099bf7979a2c04d1c1a3eb0ff7b3fea50bbbd812cf83fcd261bbf10166fbed5ee803d13e66f3f48c8afbe74211240180c28bf6a9a9dbeea1399baa8f7743fa5af94be6512ec3fee2d39bf3fa2efbec52558bd2c2a563f82980bbf108801407f194dbfca741abf1dbf38be0d8b5d3f2158efbe1c8325400bc830bf6b8af6be816a15bd528f793f072a61be09260c402d8549bff14437bfeab202be74e0733fa4508dbecfd8ec3fd2d946bf6d02de3eac620cbfba6bd03dbe7b543f86d7e83f153f57bf2f89e4becd2d1bbfe44887bcf88f4bbf00000000000000003545483ff5f3523fa0705c3f22b8393ff41b693f512f413f8faa563ff6d45e3f6000693fbc95293f77816e3f221a223fb1f7773ffed9253fee60743fd6722f3f45c37a3f7f3d213f2a25713fc2021d3f5e66743f98a82e3f0935783fe611263f03986e3fc105223fbb08393f9e4e3c3ff6ed4f3ff78c2f3f65f2613fabd81c3f691e5c3f0091223fc117653fb7da183fc442133f18b9183fc7192a3f47c1153f4233343f02d7123fe0d13c3fb7db0c3fb3241b3f12a6053f73ea043fc402e33e16b2083f6c6ec93e6465213f36defc3e0ed8f53edc01033f82cfd93efcabce3e5feddf3ee84a943efd66563f7c975e3f4415623f7cd34c3fcde8473f33c3523f5d1a5f3fb6c0363fff9c6a3f4cb13e3fdccb613f3ed21c3fb51b513f66152e3fb7aa3a3f52320f3fc55f2a3fb4a4153f6a291b3f9345053f8593133fb5a9183f1a47053fb4b5e43eba3af63e0e59033fb8c0d93e8e8acf3e03841f3f0634ff3e7343073f68dfcd3ea4a4393f58da3c3f32383a3fcf31603fac251f3f90724d3f8527993e2cd3d73e736eb73e08910f3ff28a8b3eb3d4213f92166d3d347ee73e6108443f47a6793fd28a2b3f3e75723f76a94d3f9b096d3ff492023fc437653fe0caf13e102f2b3f59c1cb3e0650443f2ce2593e0038cfbb2436aa3e20bb473e9faff83de088433d31f6883e1468913e44680a3c2e8ba63eafa7f03c78932d3e39839a3c6b4b683fa568a53c1328423f0400273e58fe483f5305033e901e6f3f610f9b3e4ead743fa3b3b23e26fc5e3f833a803c3eed213fc885673e37c6233f6238c83e32a5463f3545483ff5f3523f8faa563ff6d45e3ff41b693f512f413fa0705c3f22b8393f6000693fbc95293fee60743fd6722f3fb1f7773ffed9253f77816e3f221a223f45c37a3f7f3d213f2a25713fc2021d3f5e66743f98a82e3f03986e3fc105223f0935783fe611263fbb08393f9e4e3c3ff6ed4f3ff78c2f3f65f2613fabd81c3f691e5c3f0091223fc117653fb7da183fc7192a3f47c1153fc442133f18b9183f4233343f02d7123fe0d13c3fb7db0c3fb3241b3f12a6053f6465213f36defc3e16b2083f6c6ec93e73ea043fc402e33e82cfd93efcabce3e0ed8f53edc01033f5feddf3ee84a943efd66563f7c975e3fcde8473f33c3523f4415623f7cd34c3f5d1a5f3fb6c0363fff9c6a3f4cb13e3fb51b513f66152e3fdccb613f3ed21c3fc55f2a3fb4a4153fb7aa3a3f52320f3f6a291b3f9345053f8593133fb5a9183f1a47053fb4b5e43eba3af63e0e59033fb8c0d93e8e8acf3e03841f3f0634ff3e7343073f68dfcd3ea4a4393f58da3c3f32383a3fcf31603fac251f3f90724d3f8527993e2cd3d73e736eb73e08910f3f92166d3d347ee73ef28a8b3eb3d4213f6108443f47a6793f76a94d3f9b096d3fd28a2b3f3e75723ff492023fc437653fe0caf13e102f2b3f59c1cb3e0650443f2ce2593e0038cfbb9faff83de088433d2436aa3e20bb473e31f6883e1468913eafa7f03c78932d3e44680a3c2e8ba63e5305033e901e6f3f0400273e58fe483f610f9b3e4ead743fa3b3b23e26fc5e3fc885673e37c6233f6238c83e32a5463f610f9b3e4ead743f610f9b3e4ead743f0000000000000000b81e053f91c2f53e000000000000000000000000010000000000000000000000a3703d3fb91e853e0000000000000000010000000000000000000000000000000000003f0000003f0000000000000000010000000000000000000000000000000000803f000000000000000000000000000000000100000000000000000000000000803f000000000000000000000000010000000200000000000000000000000000803f000000000000000000000000010000000200000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000300000004000000000000000000803f000000000000000000000000010000000200000000000000000000000000803f000000000000000000000000010000000400000000000000000000000000803f000000000000000000000000010000000300000004000000000000000000803f000000000000000000000000010000000200000000000000000000008fc2f53e540ead3e6f18be3d00000000050000000600000001000000020000005c8f023fcfe57f3ec3dc753e00000000060000000100000002000000000000005c8f023f47e1fa3e0000000000000000010000000200000006000000000000005c8f023f47e1fa3e0000000000000000010000000200000000000000000000005c8f023f47e1fa3e0000000000000000010000000200000006000000000000001e85eb3e28d49a3e734d733e00000000070000000800000002000000010000001851da3ef385c93eeb51383e000000000600000002000000080000000100000085eb513feb51383e00000000000000000200000008000000010000000000000085eb513feb51383e00000000000000000200000008000000010000000000000085eb113ff628dc3e000000000000000002000000080000000100000000000000b88d063f703d8a3e3d4e513e0000000009000000080000000200000001000000ec51383f295c8f3e00000000000000000800000002000000010000000900000085eb113ff628dc3e0000000000000000020000000800000001000000000000005c8f023f47e1fa3e0000000000000000090000000700000001000000020000005c8f023f47e1fa3e0000000000000000080000000900000001000000020000000000803f000000000000000000000000080000000100000002000000000000000000803f000000000000000000000000000000000100000000000000000000000000803f00000000000000000000000000000000010000000000000000000000b81e053f91c2f53e0000000000000000000000000100000000000000000000007b142e3f0ad7a33e0000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000005c8f023f47e1fa3e0000000000000000010000000200000006000000000000005c8f023f48e1fa3e00000000000000000600000001000000000000000000000085eb513feb51383e00000000000000000200000008000000010000000000000085eb513feb51383e00000000000000000200000008000000010000000000000085eb113ff628dc3e0000000000000000020000000800000001000000000000001e85eb3e28d49a3e734d733e0000000007000000080000000200000001000000b88d063f703d8a3e3d4e513e00000000090000000800000002000000010000000000803f000000000000000000000000090000000100000002000000080000000000803f0000000000000000000000000800000002000000010000000000000085eb113ff628dc3e000000000000000002000000080000000100000000000000ec51383f295c8f3e0000000000000000080000000200000001000000090000008fc2f53e540ead3e6f18be3d00000000050000000600000001000000020000000156ce3e5c8fc23e46355e3e00000000000000000500000001000000000000001d85eb3e46b6b33e2468c53d00000000050000000600000001000000020000006566e63e9fefc73ef753233e00000000070000000800000009000000020000000000803f000000000000000000000000070000000100000002000000080000000000803f000000000000000000000000070000000100000002000000080000009999193fcecccc3e0000000000000000070000000800000001000000020000008fc2353fe27a943e000000000000000000000000010000000a0000000000000014ae473fb047613e0000000000000000050000000100000000000000000000000000803f000000000000000000000000000000000a00000001000000000000001d85eb3e47b6b33e2568c53d00000000050000000600000001000000020000001e85eb3e28d49a3e734d733e00000000070000000800000002000000010000001e85eb3e28d49a3e734d733e00000000070000000800000002000000010000000000803f0000000000000000000000000b000000010000000200000008000000723d0a3f1d85eb3e0000000000000000080000000b00000001000000020000000000803f0000000000000000000000000b000000020000000800000001000000723d0a3f1d85eb3e0000000000000000080000000b0000000100000002000000723d0a3f1d85eb3e0000000000000000080000000b00000001000000020000000000803f0000000000000000000000000b0000000200000008000000010000000000803f0000000000000000000000000a000000000000000c000000000000000000003f0000003f00000000000000000a0000000c00000000000000000000000000003f0000003f00000000000000000a0000000c00000000000000000000000000803f0000000000000000000000000a000000000000000c000000000000000000803f0000000000000000000000000a000000000000000c000000000000000000803f0000000000000000000000000a0000000c00000000000000000000000000803f0000000000000000000000000c0000000a00000000000000000000000000803f0000000000000000000000000c0000000a00000000000000000000003e0a173f85ebd13e00000000000000000a0000000c00000000000000000000009f89f03e05e7cc3eb81e053e000000000d000000000000000e000000000000000000803f000000000000000000000000000000000f0000000e000000040000000000803f000000000000000000000000000000000e000000000000000000000014ae073fd8a3f03e0000000000000000000000000e00000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000006ab07f3fc82c9f3a00000000000000000e00000010000000000000000000000086ff7f3f2acff43600000000000000000e0000000400000000000000000000006ab07f3fc82c9f3a00000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000d0000000e0000001000000000000000402cb43e6e1bad3e52b89e3e00000000100000000e0000000d000000000000005c8f023f48e1fa3e0000000000000000100000000e00000000000000000000005c8f023f48e1fa3e0000000000000000100000000e00000000000000000000005c8f023f48e1fa3e0000000000000000100000000e0000000000000000000000cdcc4c3fcccc4c3e000000000000000010000000110000000e00000000000000b81e053f90c2f53e000000000000000011000000100000000e00000000000000cdcc4c3fcccc4c3e000000000000000010000000110000000e0000000d000000cdcc4c3fcccc4c3e000000000000000010000000110000000e00000000000000b81e053f90c2f53e000000000000000011000000100000000e00000000000000b81e053f90c2f53e000000000000000011000000100000000e000000000000000000803f00000000000000000000000011000000120000000e00000010000000e17a543f7b142e3e000000000000000012000000110000000e000000100000007b142e3f0ad7a33e000000000000000012000000110000000e0000001300000060bae93e633bbf3e7b142e3e0000000014000000120000001100000010000000b884dc3e84ebd13e891f233e00000000110000001200000013000000100000000000803f000000000000000000000000000000000f0000000e000000040000009f89f03e05e7cc3eb81e053e000000000d000000000000000e000000000000000000803f000000000000000000000000000000000000000000000000000000000000403f0000803e00000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000005c8f023f48e1fa3e0000000000000000100000000e00000000000000000000005c8f023f48e1fa3e0000000000000000100000000e0000000000000000000000cdcc4c3fcccc4c3e000000000000000010000000110000000e0000000d000000cdcc4c3fcccc4c3e000000000000000010000000110000000e00000000000000b81e053f90c2f53e000000000000000011000000100000000e00000000000000b81e053f90c2f53e000000000000000011000000100000000e00000000000000e17a543f7b142e3e000000000000000012000000110000000e00000010000000e17a543f7b142e3e00000000000000001200000011000000100000000e0000000000803f000000000000000000000000120000000e0000001000000013000000b81e053f90c2f53e000000000000000011000000100000000e000000000000000000803f00000000000000000000000011000000120000000e000000100000000000803f0000000000000000000000000d0000000e00000010000000000000008e8e143f4c4c903e302d0d3e0000000015000000000000000d0000000e000000ae47213fa470bd3e0000000000000000150000000d0000000e0000001000000048e13a3f703d8a3e000000000000000011000000130000000e000000100000000000803f000000000000000000000000140000000e000000100000001100000048e13a3f703d8a3e000000000000000011000000130000000e000000100000000000803f000000000000000000000000140000000e0000001000000011000000ae47213f32f6573e18eb223e0000000000000000150000000d0000000e0000000000803f000000000000000000000000000000000a0000000e000000150000003e0a573f0ad7233e000000000000000015000000000000000e000000000000000000803f000000000000000000000000150000000e0000001000000000000000b81e053f90c2f53e000000000000000011000000100000000e00000000000000b81e053f90c2f53e000000000000000011000000100000000e000000000000000000803f000000000000000000000000130000000e00000010000000110000000000803f00000000000000000000000013000000100000000e0000001100000090c2353fe17a943e00000000000000001300000011000000100000000e00000090c2353fe17a943e000000000000000013000000110000000e000000100000000000803f00000000000000000000000013000000100000000e000000110000000000803f00000000000000000000000013000000100000000e000000110000000000803f0000000000000000000000000a000000000000000c000000000000000000003f0000003f00000000000000000a0000000c00000000000000000000000000803f0000000000000000000000000a000000000000000c000000000000000000803f0000000000000000000000000a0000000c00000000000000000000000000803f0000000000000000000000000c0000000a00000000000000000000003e0a173f85ebd13e00000000000000000a0000000c00000000000000000000000000803f0000000000000000000000000a000000000000000c000000000000000000803f0000000000000000000000000a000000000000000c00000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0.896441, y: -0.69349754, z: 0.053733587} + m_Extent: {x: 1.7817793, y: 0.53218293, z: 5.7816257} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh.meta new file mode 100644 index 0000000000..961521f776 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 54fc2fdf3db0a7042baabd4fadee320a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab new file mode 100644 index 0000000000..06f3b3342b --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab @@ -0,0 +1,177 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4990772548856392807 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4145134445227947879} + - component: {fileID: 4131041517606556422} + - component: {fileID: 835120886371207967} + - component: {fileID: 1920466132406985204} + m_Layer: 0 + m_Name: "\u767D\u5929\u9E45\u7FC5\u8180_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4145134445227947879 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4990772548856392807} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4131041517606556422 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4990772548856392807} + m_Mesh: {fileID: 4300000, guid: 54fc2fdf3db0a7042baabd4fadee320a, type: 2} +--- !u!137 &835120886371207967 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4990772548856392807} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 59963ac09cc838147a57fa35d0c02aae, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 54fc2fdf3db0a7042baabd4fadee320a, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &1920466132406985204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4990772548856392807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 4131041517606556422} + _skinnedMeshRenderer: {fileID: 835120886371207967} + BoneNames: + - Bone05 + - Bone09 + - Bone10 + - Bone02 + - Bone01 + - Bone20 + - Bone19 + - Bone23 + - Bone11 + - Bone22 + - Bone06 + - Bone12 + - Bone07 + - Bone25 + - Bone14 + - Bone04 + - Bone15 + - Bone16 + - Bone28 + - Bone17 + - Bone29 + - Bone26 + - Bone31 + - Bone33 + - Bone35 + - Bone03 + - Bone40 + - Bone41 + - Bone27 + - Bone18 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab.meta new file mode 100644 index 0000000000..28e913db68 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/天鹅/天鹅/白天鹅翅膀_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ed40150e28f884a4d9119b1d62b68ca6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰.meta new file mode 100644 index 0000000000..b1349d25fc --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 041e9c4b9ec302d4aab61534da5fc48e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.meta new file mode 100644 index 0000000000..54c1f7f557 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 34ac4762ed9d13c4f8f1fe3d1fa255f2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab new file mode 100644 index 0000000000..1f6cca4aa1 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab @@ -0,0 +1,2194 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &46812474533021303 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 825189239911685691} + m_Layer: 0 + m_Name: Bone29 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &825189239911685691 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 46812474533021303} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000006764802, y: 0.99203765, z: -0.00000031457938, w: -0.12594181} + m_LocalPosition: {x: -0.33538643, y: -0.19712223, z: -0.02164991} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2476246627884478342} + - {fileID: 906943065991608164} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: 1.2750984, y: -89.08512, z: -82.097115} +--- !u!1 &116210018905473146 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3001914932307626247} + m_Layer: 0 + m_Name: Bone25 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3001914932307626247 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 116210018905473146} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000030325356, y: -0.072591044, z: 0.000000030395015, w: 0.9973618} + m_LocalPosition: {x: 0.59136015, y: 0, z: 0.00000004672946} + m_LocalScale: {x: 1, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8457375258512450912} + m_Father: {fileID: 5488942187576626486} + m_LocalEulerAnglesHint: {x: -3.2999778, y: 11.259941, z: 9.836424} +--- !u!1 &377069621197778463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8457375258512450912} + m_Layer: 0 + m_Name: Bone26 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8457375258512450912 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 377069621197778463} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000036559529, y: -0.1079986, z: -0.000000058111272, w: 0.9941511} + m_LocalPosition: {x: 0.3858903, y: -0.000000023226502, z: -0.000000028987415} + m_LocalScale: {x: 0.9999999, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3001914932307626247} + m_LocalEulerAnglesHint: {x: -1.8108377, y: 8.745196, z: 0.32241634} +--- !u!1 &431552958026254287 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4436040010275179092} + m_Layer: 0 + m_Name: HH_FX01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4436040010275179092 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431552958026254287} + serializedVersion: 2 + m_LocalRotation: {x: -0.0023607218, y: -0.73319095, z: -0.0030794127, w: 0.68001175} + m_LocalPosition: {x: 0.13291521, y: -0.0017406711, z: 0.0009525088} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4158120114136228625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &565939608303503903 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 123600229327834738} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &123600229327834738 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 565939608303503903} + serializedVersion: 2 + m_LocalRotation: {x: -0.0038633368, y: 0.000566334, z: -0.00036096192, w: 0.9999923} + m_LocalPosition: {x: -0.0653047, y: 0.57669836, z: 0.25946933} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7780658886133851006} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &588386680201374072 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 361124076575856728} + m_Layer: 0 + m_Name: Bone07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &361124076575856728 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588386680201374072} + serializedVersion: 2 + m_LocalRotation: {x: -0.70282507, y: -0.28748655, z: 0.07769686, w: 0.6460276} + m_LocalPosition: {x: 0.7236796, y: -0.000000014901161, z: -0.0000004768372} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4934920055323589803} + m_Father: {fileID: 6131575363276249195} + m_LocalEulerAnglesHint: {x: -64.47335, y: -94.40924, z: 91.95293} +--- !u!1 &977295962198268887 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5990395000216618186} + m_Layer: 0 + m_Name: "\u7F6E\u5FC3" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5990395000216618186 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 977295962198268887} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 150070622580865715} + - {fileID: 5601447386149041732} + - {fileID: 5488942187576626486} + - {fileID: 6942591785592752124} + - {fileID: 825189239911685691} + - {fileID: 5900727021365759865} + - {fileID: 5760824902612714187} + - {fileID: 6131575363276249195} + m_Father: {fileID: 7780658886133851006} + m_LocalEulerAnglesHint: {x: -90, y: -90, z: 0} +--- !u!1 &1015227322301054680 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5579338761718854520} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5579338761718854520 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1015227322301054680} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000027705383, y: 0.06448441, z: -0.00000008869012, w: 0.9979188} + m_LocalPosition: {x: 0.3908155, y: 0.000000076992904, z: 0.00000004220857} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6863290347788715395} + m_LocalEulerAnglesHint: {x: -0.00000072644207, y: 57.3945, z: -2.908514e-13} +--- !u!1 &1582457669521293328 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5449707876568794880} + m_Layer: 0 + m_Name: Bone28 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5449707876568794880 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582457669521293328} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000104487356, y: 0.14761324, z: -0.000000023398936, w: 0.98904514} + m_LocalPosition: {x: 0.3064913, y: 0.0000000142296805, z: -0.000000029802322} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1489585606293117976} + m_LocalEulerAnglesHint: {x: -0.000011126787, y: 16.977283, z: -5.084598e-13} +--- !u!1 &1857202103035177922 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4431888454371395771} + m_Layer: 0 + m_Name: Bone43 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4431888454371395771 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1857202103035177922} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000048268692, y: 0.002496998, z: -0.00000007890463, w: 0.9999969} + m_LocalPosition: {x: 1.7758021, y: -0.00000084313797, z: -0.000000050764754} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5861019074363501770} + m_Father: {fileID: 7181731779464794330} + m_LocalEulerAnglesHint: {x: -0.0000000018407809, y: 0.28613088, z: 12.288433} +--- !u!1 &1886963337527920466 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 264877819035554715} + m_Layer: 0 + m_Name: HH_FX03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &264877819035554715 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1886963337527920466} + serializedVersion: 2 + m_LocalRotation: {x: 0.69782037, y: 0.6987151, z: -0.11256468, w: -0.11033218} + m_LocalPosition: {x: 1.4797269, y: 0.09161215, z: -0.03175791} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2884793408706470868} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2243755441945157802 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1684108480238399565} + m_Layer: 0 + m_Name: Bone22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1684108480238399565 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2243755441945157802} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.061099418, z: -0.000000028827346, w: 0.9981317} + m_LocalPosition: {x: 0.58672214, y: 0, z: -0.000000110361725} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6271824840804072066} + m_Father: {fileID: 6942591785592752124} + m_LocalEulerAnglesHint: {x: 1.728913, y: 7.805591, z: -4.9833927} +--- !u!1 &2330913568395614483 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8887994708776301257} + m_Layer: 0 + m_Name: HH_FX05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8887994708776301257 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2330913568395614483} + serializedVersion: 2 + m_LocalRotation: {x: 0.033424053, y: 0.90966374, z: -0.076309636, w: 0.406905} + m_LocalPosition: {x: 1.8045611, y: 0.012103647, z: -0.02522423} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2523643383468624973} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2745846143298822667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7372554572727142312} + m_Layer: 0 + m_Name: Bone41 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7372554572727142312 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2745846143298822667} + serializedVersion: 2 + m_LocalRotation: {x: -0.6837561, y: -0.17852058, z: -0.18021525, w: 0.6842007} + m_LocalPosition: {x: 0.9298758, y: -0.00000002203409, z: -0.00000014493709} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7181731779464794330} + m_Father: {fileID: 8232556193514776913} + m_LocalEulerAnglesHint: {x: -89.85761, y: 81.612885, z: -89.990814} +--- !u!1 &2955898751299539598 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5488942187576626486} + m_Layer: 0 + m_Name: Bone24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5488942187576626486 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2955898751299539598} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000012085543, y: 0.00000004529337, z: -0.7372773, w: 0.6755902} + m_LocalPosition: {x: -0.16276106, y: -0.7095404, z: 0.82333404} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3001914932307626247} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: -0.0000037987743, y: 109.85741, z: -4.999995} +--- !u!1 &2994566873150587615 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7773802933515517253} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7773802933515517253 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2994566873150587615} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000028741635, y: 0.08048142, z: -0.00000005217958, w: 0.99675614} + m_LocalPosition: {x: 1.0489986, y: 0.000000017638257, z: -0.0000001266599} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5810355029250254489} + - {fileID: 4207466313938304233} + m_Father: {fileID: 8291772609912120190} + m_LocalEulerAnglesHint: {x: 1.4357727, y: -3.0578084, z: -1.6095327} +--- !u!1 &3010127237781485258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 150070622580865715} + m_Layer: 0 + m_Name: Bone18 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &150070622580865715 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3010127237781485258} + serializedVersion: 2 + m_LocalRotation: {x: 0.31357884, y: 0.31357878, z: -0.6337731, w: 0.63377315} + m_LocalPosition: {x: 0.19064681, y: -0.8306489, z: -0.007990065} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6863290347788715395} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: -0.000005205145, y: 142.65065, z: 0.000005205145} +--- !u!1 &3019456185489898214 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2394338845866183413} + m_Layer: 0 + m_Name: Bone06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2394338845866183413 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3019456185489898214} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000059604645, y: 0.058969904, z: 0.00000023841858, w: 0.99825984} + m_LocalPosition: {x: 1.0605825, y: 0.000000029802319, z: -0.00000011920932} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 391908660901569857} + m_LocalEulerAnglesHint: {x: 5.7550187, y: 5.1628366, z: -7.654957} +--- !u!1 &3096936664270689471 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2523643383468624973} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2523643383468624973 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3096936664270689471} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003871015, y: 0.080135845, z: 0.00000013658476, w: 0.9967839} + m_LocalPosition: {x: 1.0399063, y: 0.00000028486082, z: -0.00000031292447} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2523935550374816203} + - {fileID: 8887994708776301257} + m_Father: {fileID: 6233562143975378088} + m_LocalEulerAnglesHint: {x: -0.99835634, y: 1.1538317, z: 1.0076002} +--- !u!1 &3275087230908827383 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4207466313938304233} + m_Layer: 0 + m_Name: HH_FX07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4207466313938304233 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3275087230908827383} + serializedVersion: 2 + m_LocalRotation: {x: -0.037303027, y: 0.90865237, z: 0.08300629, w: 0.407516} + m_LocalPosition: {x: 1.7928715, y: 0.00820526, z: -0.019916395} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7773802933515517253} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3302862815283122194 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2523935550374816203} + m_Layer: 0 + m_Name: Bone40 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2523935550374816203 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3302862815283122194} + serializedVersion: 2 + m_LocalRotation: {x: -0.74443394, y: -0.007950253, z: 0.040343817, w: 0.66642886} + m_LocalPosition: {x: 1.8793533, y: 0.00000047208366, z: 0.0000005508773} + m_LocalScale: {x: 0.99999976, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2523643383468624973} + m_LocalEulerAnglesHint: {x: -83.19259, y: -143.776, z: 150.04362} +--- !u!1 &3395509986130591723 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8232556193514776913} + m_Layer: 0 + m_Name: Bone04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8232556193514776913 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3395509986130591723} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000029802322, y: -0.07229826, z: 0.000000029802322, w: 0.9973831} + m_LocalPosition: {x: 0.7236755, y: 0.000000022351742, z: -0.00000017881396} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7372554572727142312} + m_Father: {fileID: 6131575363276249195} + m_LocalEulerAnglesHint: {x: -2.7459195e-13, y: 1.708002, z: -2.1929915e-14} +--- !u!1 &3497751718313119423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8370896144008285913} + m_Layer: 0 + m_Name: Bone32 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8370896144008285913 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3497751718313119423} + serializedVersion: 2 + m_LocalRotation: {x: 0.06413318, y: -0.73544776, z: -0.24224311, w: 0.62954104} + m_LocalPosition: {x: 1.4654356, y: 0.00000003166497, z: -0.000000029802326} + m_LocalScale: {x: 1, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2476246627884478342} + m_LocalEulerAnglesHint: {x: -24.40017, y: -94.661545, z: -7.2615614} +--- !u!1 &3522016044715381947 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 277249943062190204} + m_Layer: 0 + m_Name: HH_FX06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &277249943062190204 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3522016044715381947} + serializedVersion: 2 + m_LocalRotation: {x: -0.030501572, y: 0.9385023, z: 0.085739225, w: 0.33306453} + m_LocalPosition: {x: 0.84372795, y: 0.0032825598, z: -0.04148205} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8291772609912120190} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3582607871428121062 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7775313925126294547} + m_Layer: 0 + m_Name: HH_FX + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7775313925126294547 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3582607871428121062} + serializedVersion: 2 + m_LocalRotation: {x: -0.0028452498, y: -0.6083074, z: -0.0026382382, w: 0.79369205} + m_LocalPosition: {x: -1.1466541, y: -0.0017407471, z: 0.21997157} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5760824902612714187} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3590331469300928766 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5900727021365759865} + m_Layer: 0 + m_Name: Bone34 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5900727021365759865 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3590331469300928766} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000007779118, y: -0.13417774, z: -0.000000010727896, w: 0.9909573} + m_LocalPosition: {x: 0.36800373, y: -0.19712225, z: -0.021650234} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6338095983193868535} + - {fileID: 2369889773981972559} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: 1.3727734, y: 90.9787, z: 98.030396} +--- !u!1 &3819515530577640933 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5601447386149041732} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5601447386149041732 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3819515530577640933} + serializedVersion: 2 + m_LocalRotation: {x: 0.3162278, y: 0.31622776, z: -0.63245547, w: 0.6324556} + m_LocalPosition: {x: -0.18245547, y: -0.8233321, z: -0.00067334174} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7007075544077889120} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: -0.000005205145, y: 143.1301, z: 0.000005205145} +--- !u!1 &3826160128824277752 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3617960686016027574} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3617960686016027574 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3826160128824277752} + serializedVersion: 2 + m_LocalRotation: {x: -0.024566963, y: -0.15675089, z: -0.08362168, w: 0.9837851} + m_LocalPosition: {x: 0.7236769, y: -0.000000007450581, z: -0.0000002384186} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8291772609912120190} + m_Father: {fileID: 6131575363276249195} + m_LocalEulerAnglesHint: {x: -4.275529, y: -2.3399258, z: -9.048323} +--- !u!1 &4473267157667932503 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3553587260600660944} + m_Layer: 0 + m_Name: HH_FX04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3553587260600660944 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4473267157667932503} + serializedVersion: 2 + m_LocalRotation: {x: 0.027201416, y: 0.93934584, z: -0.0787427, w: 0.33269966} + m_LocalPosition: {x: 0.84297514, y: -0.0088943355, z: -0.04158619} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6233562143975378088} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4535187419891627230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3959275469396994142} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3959275469396994142 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4535187419891627230} + serializedVersion: 2 + m_LocalRotation: {x: 0.024566289, y: -0.15674113, z: 0.08362184, w: 0.9837867} + m_LocalPosition: {x: 0.72367823, y: -0.000000007450581, z: -0.00000035762793} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6233562143975378088} + m_Father: {fileID: 6131575363276249195} + m_LocalEulerAnglesHint: {x: 4.2753587, y: 11.805609, z: 9.048398} +--- !u!1 &4579721703382472322 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6863290347788715395} + m_Layer: 0 + m_Name: Bone19 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6863290347788715395 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4579721703382472322} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000014901161, y: -0.007050097, z: -0.000000022351742, w: 0.9999752} + m_LocalPosition: {x: 0.3497551, y: 0.000000029802322, z: 0.00000014901161} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5579338761718854520} + m_Father: {fileID: 150070622580865715} + m_LocalEulerAnglesHint: {x: -0.00000008011313, y: -95.66529, z: 8.663041e-14} +--- !u!1 &4615387848564314755 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7349711104367969313} + m_Layer: 0 + m_Name: HH_FX02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7349711104367969313 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4615387848564314755} + serializedVersion: 2 + m_LocalRotation: {x: -0.12346785, y: -0.12586999, z: 0.69597405, w: 0.6960838} + m_LocalPosition: {x: 1.5096831, y: 0.08723723, z: 0.03542782} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3244499109966307577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4709031356292245995 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7780658886133851006} + m_Layer: 0 + m_Name: Box01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7780658886133851006 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4709031356292245995} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5990395000216618186} + - {fileID: 123600229327834738} + m_Father: {fileID: 7220442534328498233} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4759288680997806250 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2369889773981972559} + m_Layer: 0 + m_Name: Bone38 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2369889773981972559 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4759288680997806250} + serializedVersion: 2 + m_LocalRotation: {x: -0.15717061, y: 0.64068025, z: -0.073831536, w: 0.7479139} + m_LocalPosition: {x: 0.3847322, y: 0.000000016211635, z: -0.000000019557776} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5900727021365759865} + m_LocalEulerAnglesHint: {x: -5.597078, y: 98.21377, z: -8.935879} +--- !u!1 &4770701691137417197 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8291772609912120190} + m_Layer: 0 + m_Name: Bone13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8291772609912120190 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4770701691137417197} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000029802319, y: -0.22231682, z: -0.000000017695127, w: 0.9749745} + m_LocalPosition: {x: 1.4597114, y: -0.00000013504177, z: 0.0000004768372} + m_LocalScale: {x: 0.9999996, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7773802933515517253} + - {fileID: 277249943062190204} + m_Father: {fileID: 3617960686016027574} + m_LocalEulerAnglesHint: {x: -3.1674325, y: -2.3422306, z: 2.6028373} +--- !u!1 &4801839407719388371 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6131575363276249195} + m_Layer: 0 + m_Name: Bone03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6131575363276249195 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4801839407719388371} + serializedVersion: 2 + m_LocalRotation: {x: 0.46706682, y: 0.46706688, z: -0.5308941, w: 0.53089416} + m_LocalPosition: {x: 9.326975e-10, y: -0.3776435, z: -0.02148497} + m_LocalScale: {x: 1.0000006, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8232556193514776913} + - {fileID: 391908660901569857} + - {fileID: 361124076575856728} + - {fileID: 3959275469396994142} + - {fileID: 3617960686016027574} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: -0.000009812638, y: 172.68094, z: -0.000001545594} +--- !u!1 &4840368844568795178 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6338095983193868535} + m_Layer: 0 + m_Name: Bone35 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6338095983193868535 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4840368844568795178} + serializedVersion: 2 + m_LocalRotation: {x: 0.07216541, y: -0.15633166, z: 0.15794247, w: 0.9723204} + m_LocalPosition: {x: 0.3847322, y: 0.000000016211642, z: 0.000000023515899} + m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2884793408706470868} + - {fileID: 3899865924442891382} + m_Father: {fileID: 5900727021365759865} + m_LocalEulerAnglesHint: {x: 10.814918, y: -16.80446, z: 26.784533} +--- !u!1 &5134820250184545246 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5861019074363501770} + m_Layer: 0 + m_Name: Bone44 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5861019074363501770 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5134820250184545246} + serializedVersion: 2 + m_LocalRotation: {x: 0.7058511, y: 0.044599697, z: 0.044632446, w: 0.70554465} + m_LocalPosition: {x: 1.8043222, y: -0.00000031599268, z: 0.000000032269966} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4431888454371395771} + m_LocalEulerAnglesHint: {x: 73.715836, y: 90.08317, z: 90.08382} +--- !u!1 &5682146156461152211 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6233562143975378088} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6233562143975378088 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5682146156461152211} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000024214383, y: -0.22287486, z: -0.00000006146728, w: 0.9748471} + m_LocalPosition: {x: 1.4598193, y: 0.00000024773183, z: 0.00000045821082} + m_LocalScale: {x: 1.0000002, y: 0.99999994, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2523643383468624973} + - {fileID: 3553587260600660944} + m_Father: {fileID: 3959275469396994142} + m_LocalEulerAnglesHint: {x: 4.3445783, y: 4.902593, z: -3.1372817} +--- !u!1 &5743829695913260242 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 906943065991608164} + m_Layer: 0 + m_Name: Bone33 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &906943065991608164 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5743829695913260242} + serializedVersion: 2 + m_LocalRotation: {x: 0.15639837, y: -0.6359799, z: -0.07545357, w: 0.75191474} + m_LocalPosition: {x: 0.4094456, y: 0.000000007610694, z: -0.000000044703484} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 825189239911685691} + m_LocalEulerAnglesHint: {x: 5.560718, y: -97.493835, z: -8.958417} +--- !u!1 &6212002837149000182 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5760824902612714187} + m_Layer: 0 + m_Name: Bone01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5760824902612714187 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6212002837149000182} + serializedVersion: 2 + m_LocalRotation: {x: 0.5619425, y: 0.56194246, z: 0.42920938, w: -0.4292093} + m_LocalPosition: {x: -0.000000031874375, y: -0.35129136, z: 0.7290534} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4158120114136228625} + - {fileID: 7775313925126294547} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: -0.0000052565183, y: -10.397718, z: 6.0915425e-14} +--- !u!1 &6222610489059843783 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6942591785592752124} + m_Layer: 0 + m_Name: Bone21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6942591785592752124 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6222610489059843783} + serializedVersion: 2 + m_LocalRotation: {x: -0.0026809226, y: -0.0029256907, z: -0.6755848, w: 0.7372716} + m_LocalPosition: {x: 0.168044, y: -0.7048842, z: 0.8186777} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1684108480238399565} + m_Father: {fileID: 5990395000216618186} + m_LocalEulerAnglesHint: {x: 0.039627474, y: 109.68959, z: 4.9998636} +--- !u!1 &6354719051033037714 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3244499109966307577} + m_Layer: 0 + m_Name: Bone31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3244499109966307577 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6354719051033037714} + serializedVersion: 2 + m_LocalRotation: {x: 0.07616509, y: -0.105481446, z: -0.15605304, w: 0.9791425} + m_LocalPosition: {x: 1.4654355, y: 0.000000050291426, z: 0.00000005960465} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7349711104367969313} + m_Father: {fileID: 2476246627884478342} + m_LocalEulerAnglesHint: {x: 11.057938, y: -15.680815, z: -33.91772} +--- !u!1 &6733251689874526350 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5078845253946326424} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5078845253946326424 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6733251689874526350} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000004653643, y: 0.025070887, z: 0.00000007372476, w: 0.9996857} + m_LocalPosition: {x: 0.37027586, y: 0.00000008688862, z: -0.00000013774866} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7007075544077889120} + m_LocalEulerAnglesHint: {x: -0.00000028477524, y: 47.873215, z: -6.3458494e-13} +--- !u!1 &6778693487725206673 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8074070859803641957} + m_Layer: 0 + m_Name: "\u706B\u51E4\u51F0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8074070859803641957 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6778693487725206673} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7220442534328498233} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6842747193308086226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 391908660901569857} + m_Layer: 0 + m_Name: Bone05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &391908660901569857 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842747193308086226} + serializedVersion: 2 + m_LocalRotation: {x: -0.64752865, y: 0.074004054, z: -0.2840892, w: 0.7032236} + m_LocalPosition: {x: 0.72367966, y: -0.000000007450581, z: -0.00000041723257} + m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2394338845866183413} + m_Father: {fileID: 6131575363276249195} + m_LocalEulerAnglesHint: {x: -65.07489, y: 85.542015, z: -88.00296} +--- !u!1 &7214387086660083422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5012366262316624552} + - component: {fileID: 302241225743352957} + - component: {fileID: 1863139048136398638} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &5012366262316624552 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7214387086660083422} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7220442534328498233} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &302241225743352957 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7214387086660083422} + m_Mesh: {fileID: 0} +--- !u!137 &1863139048136398638 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7214387086660083422} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &7629163303681686017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1489585606293117976} + m_Layer: 0 + m_Name: Bone27 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1489585606293117976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7629163303681686017} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000014332723, y: 0.9531568, z: 0.00000008590548, w: -0.30247656} + m_LocalPosition: {x: 0.20519322, y: -0.000000008812863, z: 0.16471767} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5449707876568794880} + m_Father: {fileID: 4158120114136228625} + m_LocalEulerAnglesHint: {x: -0.0000038057246, y: -149.64458, z: -0.000017850067} +--- !u!1 &7647417948917665934 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4934920055323589803} + m_Layer: 0 + m_Name: Bone08 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4934920055323589803 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7647417948917665934} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000029802319, y: -0.04710815, z: 0.00000026822087, w: 0.9988898} + m_LocalPosition: {x: 1.0597259, y: 0, z: 0.00000020861623} + m_LocalScale: {x: 1, y: 0.9999998, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 361124076575856728} + m_LocalEulerAnglesHint: {x: -5.6532574, y: -3.8268967, z: -7.7299147} +--- !u!1 &7723479897251071284 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6271824840804072066} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6271824840804072066 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7723479897251071284} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000072694037, y: -0.11956069, z: 0.00000006234437, w: 0.99282694} + m_LocalPosition: {x: 0.39447558, y: 0.000000022700878, z: 0.0000000054715206} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1684108480238399565} + m_LocalEulerAnglesHint: {x: 2.855722, y: 19.491575, z: -0.22205202} +--- !u!1 &7970133343310473917 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2884793408706470868} + m_Layer: 0 + m_Name: Bone36 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2884793408706470868 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7970133343310473917} + serializedVersion: 2 + m_LocalRotation: {x: -0.07648897, y: 0.12948726, z: -0.1558946, w: 0.97625786} + m_LocalPosition: {x: 1.475557, y: -0.00000008568168, z: -0.00000008940695} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 264877819035554715} + m_Father: {fileID: 6338095983193868535} + m_LocalEulerAnglesHint: {x: -9.162501, y: 18.169739, z: -34.037983} +--- !u!1 &8034423915804690626 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2476246627884478342} + m_Layer: 0 + m_Name: Bone30 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2476246627884478342 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8034423915804690626} + serializedVersion: 2 + m_LocalRotation: {x: -0.06873402, y: 0.1514606, z: 0.15946572, w: 0.973091} + m_LocalPosition: {x: 0.40944567, y: -0.0000000221916, z: 0} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3244499109966307577} + - {fileID: 8370896144008285913} + m_Father: {fileID: 825189239911685691} + m_LocalEulerAnglesHint: {x: -10.447935, y: 16.263573, z: 26.945803} +--- !u!1 &8070781385975025807 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4158120114136228625} + m_Layer: 0 + m_Name: Bone02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4158120114136228625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8070781385975025807} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000029802322, y: -0.16827415, z: 0.000000029802322, w: -0.9857403} + m_LocalPosition: {x: 0.46374145, y: -0.000000014901161, z: 0.0000006854535} + m_LocalScale: {x: 0.9999996, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1489585606293117976} + - {fileID: 4436040010275179092} + m_Father: {fileID: 5760824902612714187} + m_LocalEulerAnglesHint: {x: -0.00000012923962, y: 14.517575, z: 1.2173015e-14} +--- !u!1 &8454942509330758257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7181731779464794330} + m_Layer: 0 + m_Name: Bone42 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7181731779464794330 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8454942509330758257} + serializedVersion: 2 + m_LocalRotation: {x: -0.0001630783, y: -0.0037323008, z: 0.043619115, w: 0.99904126} + m_LocalPosition: {x: 1.4861733, y: -0.00000053644186, z: -0.00000017881393} + m_LocalScale: {x: 0.99999964, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4431888454371395771} + m_Father: {fileID: 7372554572727142312} + m_LocalEulerAnglesHint: {x: -0.000015651744, y: -0.4280906, z: -2.978162} +--- !u!1 &8639217128976196856 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7007075544077889120} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7007075544077889120 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8639217128976196856} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000044703484, y: -0.007904559, z: -0.00000009685755, w: 0.99996877} + m_LocalPosition: {x: 0.36583978, y: 0.000000014901161, z: 0.000000059604645} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5078845253946326424} + m_Father: {fileID: 5601447386149041732} + m_LocalEulerAnglesHint: {x: -0.00000010727296, y: -86.04839, z: 1.7093461e-13} +--- !u!1 &8735130801647868236 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7220442534328498233} + - component: {fileID: 691043556831149363} + m_Layer: 0 + m_Name: "\u706B\u51E4\u51F0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7220442534328498233 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8735130801647868236} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5012366262316624552} + - {fileID: 7780658886133851006} + - {fileID: 4848571071481368004} + m_Father: {fileID: 8074070859803641957} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &691043556831149363 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8735130801647868236} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: ffa6242ab1b79ff4a8ef34e7c6932e88, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &8750674692978711630 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5810355029250254489} + m_Layer: 0 + m_Name: Bone39 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5810355029250254489 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8750674692978711630} + serializedVersion: 2 + m_LocalRotation: {x: -0.66634095, y: 0.0451129, z: -0.013431797, w: 0.74416006} + m_LocalPosition: {x: 1.8839655, y: 0.00000012072918, z: 0.0000006444753} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7773802933515517253} + m_LocalEulerAnglesHint: {x: -80.61678, y: 31.0599, z: -37.056995} +--- !u!1 &8974707772874439423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3899865924442891382} + m_Layer: 0 + m_Name: Bone37 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3899865924442891382 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8974707772874439423} + serializedVersion: 2 + m_LocalRotation: {x: -0.06743311, y: 0.74355763, z: -0.24134533, w: 0.6199415} + m_LocalPosition: {x: 1.4755567, y: -0.000000007450581, z: -0.000000111758695} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6338095983193868535} + m_LocalEulerAnglesHint: {x: 26.452044, y: 92.034, z: -4.8049088} +--- !u!1001 &2197951655855599683 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7220442534328498233} + m_Modifications: + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 7780658886133851006} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 6942591785592752124} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 1684108480238399565} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 5760824902612714187} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 6131575363276249195} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 4158120114136228625} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 1489585606293117976} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 6271824840804072066} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 8232556193514776913} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 361124076575856728} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 7773802933515517253} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 5810355029250254489} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 150070622580865715} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 6863290347788715395} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 5579338761718854520} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 6338095983193868535} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 5900727021365759865} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 2369889773981972559} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 2884793408706470868} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 3899865924442891382} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 4934920055323589803} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 5488942187576626486} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 3001914932307626247} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 8457375258512450912} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 391908660901569857} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 825189239911685691} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 5601447386149041732} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 7007075544077889120} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 5078845253946326424} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 2476246627884478342} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 906943065991608164} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 3244499109966307577} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[31]' + value: + objectReference: {fileID: 8370896144008285913} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[32]' + value: + objectReference: {fileID: 2394338845866183413} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[33]' + value: + objectReference: {fileID: 5449707876568794880} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[34]' + value: + objectReference: {fileID: 7181731779464794330} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[35]' + value: + objectReference: {fileID: 4431888454371395771} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[36]' + value: + objectReference: {fileID: 2523643383468624973} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[37]' + value: + objectReference: {fileID: 5861019074363501770} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[38]' + value: + objectReference: {fileID: 7372554572727142312} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[39]' + value: + objectReference: {fileID: 6233562143975378088} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[40]' + value: + objectReference: {fileID: 8291772609912120190} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[41]' + value: + objectReference: {fileID: 3959275469396994142} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[42]' + value: + objectReference: {fileID: 2523935550374816203} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[43]' + value: + objectReference: {fileID: 3617960686016027574} + - target: {fileID: 599540543168837306, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: 'm_Bones.Array.data[44]' + value: + objectReference: {fileID: 7780658886133851006} + - target: {fileID: 2682173606997645345, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_Name + value: "\u5996\u65CF\u98DE\u884C\u517D\u51E4\u51F0new_0" + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 1161985903585071733, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} +--- !u!4 &4848571071481368004 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6757973198582644103, guid: 4ab9d320382a2f74992e169a5bd889f5, type: 3} + m_PrefabInstance: {fileID: 2197951655855599683} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab.meta new file mode 100644 index 0000000000..753d5f0b24 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5c09e2e6af540944f90d2cbde9923ad4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat new file mode 100644 index 0000000000..748f74a907 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6433582310394161340 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u5996\u65CF\u98DE\u884C\u517D\u51E4\u51F0new_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: ba59a334650b1b4468de6c158635bf72, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ba59a334650b1b4468de6c158635bf72, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat.meta new file mode 100644 index 0000000000..03059ad35c --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6febc189e3cc4cd4980ed24ea6a05965 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh new file mode 100644 index 0000000000..7dfd5af848 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh @@ -0,0 +1,977 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u5996\u65CF\u98DE\u884C\u517D\u51E4\u51F0new_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 3630 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 859 + localAABB: + m_Center: {x: 0, y: -2.2472634, z: -2.6491158} + m_Extent: {x: 3.4965708, y: 2.8547373, z: 4.340832} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 0.08715325 + e01: -0.9961632 + e02: 0.007936438 + e03: -0.72332263 + e10: 0.9961948 + e11: 0.087156005 + e12: -0.00000003166497 + e13: -0.10596965 + e20: -0.0006916765 + e21: 0.00790624 + e22: 0.9999685 + e23: -0.8129628 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.08641813 + e01: -0.9877614 + e02: 0.12984389 + e03: -1.3994213 + e10: 0.9961949 + e11: 0.08715595 + e12: -0.000000027685699 + e13: -0.10596975 + e20: -0.0113166375 + e21: 0.12934977 + e22: 0.9915346 + e23: -0.64710605 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0 + e01: 0.26311743 + e02: 0.964764 + e03: -0.61093354 + e10: 1 + e11: -0.00000011920929 + e12: 0.000000029802322 + e13: -0.0000000317303 + e20: 0.00000014901163 + e21: 0.964764 + e22: -0.26311746 + e23: 0.5307399 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0 + e01: -0.12739418 + e02: -0.9918517 + e03: -0.06941949 + e10: 1 + e11: 0.000000059604645 + e12: 0 + e13: 0.000000021576609 + e20: 0.0000001192093 + e21: -0.99185234 + e22: 0.12739421 + e23: -0.3718295 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011821918 + e01: -0.07184328 + e02: 0.9974166 + e03: -1.1898865 + e10: 1 + e11: -0.00000017274988 + e12: 0.00000009490867 + e13: -0.00000010569914 + e20: 0.00000018929751 + e21: 0.99741614 + e22: 0.07184322 + e23: 0.1441596 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011945666 + e01: 0.63382244 + e02: -0.7734794 + e03: 1.1279483 + e10: 1 + e11: 0.00000009296789 + e12: -0.00000010778309 + e13: 0.00000020663693 + e20: -0.000000009435581 + e21: -0.7734788 + e22: -0.6338227 + e23: 0.8212205 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.08126096 + e01: -0.92881334 + e02: 0.36152813 + e03: -1.8962374 + e10: 0.996195 + e11: 0.087156095 + e12: -0.00000004445469 + e13: -0.10596955 + e20: -0.03150933 + e21: 0.3601524 + e22: 0.93236154 + e23: -0.20272356 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00000008095012 + e01: -0.2691055 + e02: -0.96311027 + e03: -0.8384285 + e10: 1 + e11: 0.00000012986759 + e12: 0.00000004656766 + e13: 0.00000006666269 + e20: 0.00000017310245 + e21: -0.96311104 + e22: 0.26910543 + e23: -0.25356355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.50449413 + e01: -0.36489543 + e02: -0.7825191 + e03: -0.74993265 + e10: 0.00000012484043 + e11: 0.9063079 + e12: -0.4226185 + e13: 0.11338717 + e20: 0.86341506 + e21: 0.21320859 + e22: 0.45722672 + e23: 0.43818635 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.12928282 + e01: -0.6676127 + e02: -0.73319817 + e03: -3.2910113 + e10: 0.9848076 + e11: -0.000000033527613 + e12: -0.17364824 + e13: -0.12837246 + e20: 0.115929835 + e21: -0.74450976 + e22: 0.65746975 + e23: 0.3814954 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.21331346 + e01: -0.6279931 + e02: -0.74841326 + e03: -5.1605473 + e10: -0.0000003685583 + e11: 0.7660454 + e12: -0.6427872 + e13: -0.18545681 + e20: 0.97698367 + e21: -0.13711505 + e22: -0.16340767 + e23: -0.52608263 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0 + e01: -0.60667336 + e02: -0.7949513 + e03: -0.51028425 + e10: 1.0000001 + e11: 0 + e12: 0.00000008940697 + e13: -0.19064684 + e20: -0.000000029802322 + e21: -0.7949513 + e22: 0.6066733 + e23: -0.6554781 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000000044912483 + e01: -0.6178218 + e02: -0.7863184 + e03: -0.86919606 + e10: 1.0000001 + e11: -0.0000000038069405 + e12: 0.000000035815106 + e13: -0.1906469 + e20: 3.1739233e-10 + e21: -0.7863183 + e22: 0.6178217 + e23: -0.6432867 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000021801779 + e01: -0.51148427 + e02: -0.8592929 + e03: -1.1667415 + e10: 1.0000001 + e11: -0.0000001498615 + e12: -0.00000007908565 + e13: -0.19064723 + e20: -0.000000072199214 + e21: -0.8592928 + e22: 0.5114841 + e23: -0.80010086 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.78187156 + e01: 0.2845778 + e02: 0.55470043 + e03: -0.56635755 + e10: -0.3420201 + e11: 0.93969256 + e12: 0.00000013411045 + e13: 0.43794703 + e20: -0.52124774 + e21: -0.1897187 + e22: 0.8320502 + e23: 0.28062907 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.96399266 + e01: -0.000000042137465 + e02: 0.26592883 + e03: -0.34899548 + e10: 3.8608577e-10 + e11: 0.9999999 + e12: 0.00000015705436 + e13: 0.19712222 + e20: -0.26592886 + e21: -0.0000001512966 + e22: 0.9639928 + e23: 0.11873345 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.4107811 + e01: -0.31183133 + e02: -0.8567501 + e03: -0.2958815 + e10: 0.00000010430813 + e11: 0.93969256 + e12: -0.34202006 + e13: 0.21282195 + e20: 0.9117341 + e21: 0.14049529 + e22: 0.3860079 + e23: -0.67710567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9478838 + e01: -0.00000013981303 + e02: 0.31861648 + e03: -2.0804296 + e10: 0.000000107377666 + e11: 0.9999999 + e12: 0.00000021748477 + e13: -0.2227888 + e20: -0.3186163 + e21: -0.0000000891416 + e22: 0.9478836 + e23: -0.24928597 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.4264571 + e01: -0.2699433 + e02: -0.8632875 + e03: 0.029264092 + e10: 0.087155856 + e11: 0.96225 + e12: -0.25783387 + e13: -0.1474954 + e20: 0.9002992 + e21: 0.034714717 + e22: 0.4338857 + e23: -2.1017504 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.5835124 + e01: -0.34321 + e02: -0.73601586 + e03: -1.7603881 + e10: -0.00000021729991 + e11: 0.9063083 + e12: -0.4226182 + e13: 0.113388136 + e20: 0.81210405 + e21: 0.24660322 + e22: 0.5288415 + e23: 0.60655123 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0871557 + e01: -0.9961947 + e02: -0.00000007902031 + e03: -0.72102594 + e10: 0.99619484 + e11: -0.08715571 + e12: -0.000000050457807 + e13: 0.100301266 + e20: 0.00000004337872 + e21: -0.0000000831173 + e22: 1 + e23: -0.8233341 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0862371 + e01: -0.9856959 + e02: 0.144799 + e03: -1.417773 + e10: 0.9961951 + e11: -0.08715567 + e12: -0.000000048821555 + e13: 0.10030137 + e20: 0.012620097 + e21: 0.144248 + e22: 0.98946106 + e23: -0.6246248 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.08151559 + e01: -0.93172735 + e02: 0.3538921 + e03: -1.8957168 + e10: 0.9961953 + e11: -0.087155804 + e12: -0.000000026749682 + e13: 0.1003012 + e20: 0.03084375 + e21: 0.35254535 + e22: 0.9352863 + e23: -0.22274631 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.495396 + e01: -0.3671152 + e02: -0.7872795 + e03: -0.7544948 + e10: -0.000000113578125 + e11: 0.9063077 + e12: -0.42261854 + e13: 0.11338709 + e20: 0.86866754 + e21: -0.20936358 + e22: -0.44898102 + e23: -0.43028405 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9682776 + e01: -0.000000054981378 + e02: 0.24987806 + e03: -0.3193373 + e10: -0.00000021345616 + e11: 1 + e12: -0.00000060710977 + e13: 0.19712214 + e20: -0.24987803 + e21: -0.00000064118865 + e22: -0.96827745 + e23: -0.10476895 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00000017881396 + e01: -0.6000001 + e02: -0.8000002 + e03: -0.49453795 + e10: 1 + e11: 0.00000011920929 + e12: 0.00000011920929 + e13: 0.18245557 + e20: 0.000000029802322 + e21: -0.8 + e22: 0.59999996 + e23: -0.65826166 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000000015153006 + e01: -0.61257195 + e02: -0.7904149 + e03: -0.87067634 + e10: 1 + e11: -0.000000069340444 + e12: 0.000000019368642 + e13: 0.18245533 + e20: -0.000000060901144 + e21: -0.7904148 + e22: 0.6125719 + e23: -0.64457804 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00000013298857 + e01: -0.57218164 + e02: -0.8201273 + e03: -1.2070823 + e10: 1 + e11: 0.000000093005134 + e12: 0.00000008299129 + e13: 0.1824555 + e20: 0.000000035156162 + e21: -0.8201272 + e22: 0.5721816 + e23: -0.7059717 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.7954731 + e01: 0.2895285 + e02: 0.53235006 + e03: -0.5680293 + e10: 0.34202003 + e11: 0.9396928 + e12: -0.00000051409006 + e13: 0.43553948 + e20: -0.5002456 + e21: 0.18207385 + e22: -0.8465246 + e23: -0.2619286 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.4070601 + e01: -0.3124023 + e02: -0.8583162 + e03: -0.2902525 + e10: -0.00000036507845 + e11: 0.9396925 + e12: -0.34202078 + e13: 0.21282196 + e20: 0.9134017 + e21: -0.13922264 + e22: -0.3825115 + e23: 0.6718769 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.94048417 + e01: 0.0000000055671947 + e02: 0.33983856 + e03: -2.0771503 + e10: -0.00000015667322 + e11: 1.0000001 + e12: -0.0000005063433 + e13: -0.22716288 + e20: -0.3398386 + e21: -0.0000005466601 + e22: -0.94048405 + e23: 0.16469221 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.425857 + e01: -0.26996708 + e02: -0.8635764 + e03: -0.003407061 + e10: -0.08715601 + e11: 0.9622501 + e12: -0.25783467 + e13: -0.16203076 + e20: 0.9005837 + e21: -0.034534972 + e22: -0.4333102 + e23: 2.089741 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.59422284 + e01: -0.33991224 + e02: -0.7289437 + e03: -1.7517946 + e10: 0.0000000467696 + e11: 0.906308 + e12: -0.42261818 + e13: 0.11338797 + e20: 0.8043009 + e21: -0.25112957 + e22: -0.53854847 + e23: -0.64098877 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000018862835 + e01: 0.83205074 + e02: -0.5547004 + e03: 0.5458684 + e10: 1 + e11: 0.0000002679627 + e12: 0.000000015656461 + e13: 0.00000002968141 + e20: 0.00000015587264 + e21: -0.5546999 + e22: -0.83205116 + e23: 1.0252914 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0049751163 + e01: -0.6427791 + e02: -0.76603544 + e03: -3.1956673 + e10: -0.00043550387 + e11: 0.76604414 + e12: -0.64278835 + e13: -0.3697241 + e20: 0.9999878 + e21: 0.0035315342 + e22: 0.0035312779 + e23: 0.019420316 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000018864952 + e01: -0.6427888 + e02: -0.7660434 + e03: -4.971504 + e10: -0.00043540695 + e11: 0.7660442 + e12: -0.6427885 + e13: -0.369724 + e20: 1.0000001 + e21: 0.00032138935 + e22: -0.00029427023 + e23: -0.0054072603 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.12907158 + e01: -0.6689649 + e02: -0.732001 + e03: -3.2812438 + e10: 0.98480815 + e11: -0.000000067055225 + e12: 0.17364813 + e13: 0.12837227 + e20: -0.116164565 + e21: -0.7432945 + e22: 0.6588019 + e23: 0.3878263 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000000015946615 + e01: -0.5411936 + e02: -0.84089786 + e03: -6.768439 + e10: 1.0000006 + e11: -0.00000015686165 + e12: 0.00000018494487 + e13: -0.0051183193 + e20: -0.00000018530906 + e21: -0.84089905 + e22: 0.5411937 + e23: -0.48657823 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0024775795 + e01: -0.7071048 + e02: -0.70710415 + e03: -1.6651657 + e10: 0.000000008108763 + e11: 0.7071073 + e12: -0.70710677 + e13: -0.6468384 + e20: 0.99999714 + e21: -0.0017519421 + e22: -0.0017518476 + e23: -0.0041255895 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.10885554 + e01: -0.77911896 + e02: -0.6173518 + e03: -2.137237 + e10: 0.984808 + e11: -0.00000031664968 + e12: 0.17364798 + e13: 0.1283717 + e20: -0.13529265 + e21: -0.62687665 + e22: 0.76728237 + e23: 0.9070442 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.10900809 + e01: -0.7784138 + e02: -0.6182152 + e03: -2.1381724 + e10: 0.9848077 + e11: 0.0000000018626451 + e12: -0.17364815 + e13: -0.12837207 + e20: 0.13517018 + e21: -0.62775266 + e22: 0.7665873 + e23: 0.90456533 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15683104 + e01: -0.4293149 + e02: -0.8894334 + e03: -0.85923636 + e10: 0.9848079 + e11: -0.00000020302832 + e12: 0.17364803 + e13: 0.12837219 + e20: -0.07454985 + e21: -0.90315527 + e22: 0.4227926 + e23: -0.11177777 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.19899452 + e01: -0.629932 + e02: -0.75072384 + e03: -5.15391 + e10: -0.00000013759029 + e11: 0.7660453 + e12: -0.6427875 + e13: -0.18297455 + e20: 0.9800012 + e21: 0.12791122 + e22: 0.15243857 + e23: 0.4498802 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.15682971 + e01: -0.4293329 + e02: -0.8894252 + e03: -0.85923755 + e10: 0.9848077 + e11: -0.000000024214387 + e12: -0.17364807 + e13: -0.1283721 + e20: 0.07455289 + e21: -0.9031466 + e22: 0.4228102 + e23: -0.11176124 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: 0.17400795, y: -0.08703336, z: -0.11028558} + m_Max: {x: 0.62724924, y: 0.122807845, z: 0.114961386} + - m_Min: {x: -0.035466433, y: -0.08703337, z: -0.114405155} + m_Max: {x: 0.43734944, y: 0.12280785, z: 0.08714235} + - m_Min: {x: 0.35569185, y: -0.23746476, z: -0.17912018} + m_Max: {x: 0.4727826, y: 0.23069166, z: 0.2577774} + - m_Min: {x: -1.0784729, y: -0.49543157, z: -0.84944785} + m_Max: {x: 1.0094687, y: 0.4954316, z: 0.61304593} + - m_Min: {x: -0.17376757, y: -0.23069157, z: -0.46643686} + m_Max: {x: 0.5261425, y: 0.23069167, z: 0.20075473} + - m_Min: {x: 0.27751744, y: -0.12456504, z: -0.05232984} + m_Max: {x: 0.34878415, y: 0.23746487, z: 0.09615618} + - m_Min: {x: -0.038795114, y: -0.03794103, z: -0.10012734} + m_Max: {x: 0.73633957, y: 0.07415907, z: 0.07042503} + - m_Min: {x: 0.60061, y: -0.6435853, z: -0.37454847} + m_Max: {x: 0.95251966, y: 0.6435851, z: 0.80144715} + - m_Min: {x: 1.1070143, y: -0.29676425, z: -0.024482042} + m_Max: {x: 1.1433328, y: 0.054217815, z: 0.07734442} + - m_Min: {x: -0.34141707, y: -0.55290365, z: -0.34601852} + m_Max: {x: 2.3817058, y: -0.017968267, z: 0.4358348} + - m_Min: {x: 0.23815393, y: -0.4502111, z: -0.48821163} + m_Max: {x: 2.3497586, y: 0.19465011, z: 0.15488201} + - m_Min: {x: 0.27056253, y: -0.046818912, z: -0.06081295} + m_Max: {x: 0.3711084, y: 0.06274538, z: 0.12833506} + - m_Min: {x: 0.014374137, y: -0.07364545, z: -0.028595984} + m_Max: {x: 0.39567232, y: 0.038469866, z: 0.08629465} + - m_Min: {x: -0.023247838, y: -0.13968387, z: -0.18541473} + m_Max: {x: 0.39770138, y: 0.1478437, z: 0.18502301} + - m_Min: {x: 0.1059013, y: -0.7245523, z: -1.7592596} + m_Max: {x: 1.5690088, y: 0.14412495, z: 0.2233477} + - m_Min: {x: -0.19861464, y: -0.53034353, z: -1.2423397} + m_Max: {x: 0.5872694, y: 0.11256363, z: 0.30319872} + - m_Min: {x: 0.2231111, y: -0.17502259, z: -0.75338244} + m_Max: {x: 1.6201355, y: 0.30966255, z: 0.6530694} + - m_Min: {x: 0.05155492, y: -0.16671433, z: -1.3153652} + m_Max: {x: 1.6907504, y: 0.25383943, z: -0.0042603314} + - m_Min: {x: 0.7169456, y: -0.07784314, z: -0.5709747} + m_Max: {x: 1.9405795, y: 0.2676236, z: 0.90715885} + - m_Min: {x: -0.07143223, y: -0.36997908, z: -0.5571801} + m_Max: {x: 1.3080504, y: 0.70763904, z: -0.17828941} + - m_Min: {x: 0.168912, y: -0.1284767, z: -0.1099602} + m_Max: {x: 0.62392676, y: 0.0813645, z: 0.111682475} + - m_Min: {x: -0.044481397, y: -0.12847671, z: -0.11351699} + m_Max: {x: 0.42981076, y: 0.08136452, z: 0.08792585} + - m_Min: {x: -0.039829135, y: -0.07982812, z: -0.104563236} + m_Max: {x: 0.73511136, y: 0.032272086, z: 0.06640023} + - m_Min: {x: 1.1072106, y: -0.29676414, z: -0.08935127} + m_Max: {x: 1.1424576, y: 0.05421798, z: 0.012851149} + - m_Min: {x: -0.15338655, y: -0.53034306, z: -0.29908115} + m_Max: {x: 0.63940907, y: 0.11256364, z: 1.2405634} + - m_Min: {x: 0.2805372, y: -0.0709368, z: -0.056907237} + m_Max: {x: 0.38103044, y: 0.038627476, z: 0.13207507} + - m_Min: {x: 0.008015931, y: -0.046661332, z: -0.021691501} + m_Max: {x: 0.38931102, y: 0.06545396, z: 0.09258354} + - m_Min: {x: -0.011112452, y: -0.15603532, z: -0.18199569} + m_Max: {x: 0.41292822, y: 0.13149223, z: 0.1758371} + - m_Min: {x: 0.13094628, y: -0.7269592, z: -0.2247794} + m_Max: {x: 1.5749298, y: 0.14171714, z: 1.7332296} + - m_Min: {x: 0.26008612, y: -0.17502195, z: -0.87195635} + m_Max: {x: 1.6203244, y: 0.309663, z: 0.7435466} + - m_Min: {x: 0.058791637, y: -0.1710884, z: -0.020795122} + m_Max: {x: 1.6985848, y: 0.24946459, z: 1.301601} + - m_Min: {x: 0.68300986, y: -0.020255834, z: -0.92009616} + m_Max: {x: 1.9064875, y: 0.25308868, z: 0.3412664} + - m_Min: {x: -0.07791102, y: -0.36997882, z: 0.17544103} + m_Max: {x: 1.3058612, y: 0.707639, z: 0.5464154} + - m_Min: {x: 0.33304566, y: -0.1856222, z: -0.0075262785} + m_Max: {x: 0.58741677, y: 0.18562245, z: 0.17998165} + - m_Min: {x: -0.20590973, y: -0.30171686, z: -0.24252139} + m_Max: {x: 2.5007372, y: 0.2701637, z: 0.22747722} + - m_Min: {x: -0.7189412, y: -0.36296603, z: -0.2827498} + m_Max: {x: 2.0331345, y: 0.2520031, z: 0.27349088} + - m_Min: {x: -0.3320155, y: 0.01796861, z: -0.34790924} + m_Max: {x: 2.3903232, y: 0.5529049, z: 0.43229112} + - m_Min: {x: -0.042532444, y: -0.37126917, z: -0.18514514} + m_Max: {x: 1.8418489, y: 0.36054263, z: 0.360466} + - m_Min: {x: 0.53699946, y: -0.19586396, z: -0.17230374} + m_Max: {x: 1.3530619, y: 0.2662437, z: 0.17924342} + - m_Min: {x: -0.049468994, y: -0.023279577, z: -0.2941469} + m_Max: {x: 0.7900071, y: 0.37309533, z: 0.2355932} + - m_Min: {x: -0.04914975, y: -0.3730946, z: -0.2933743} + m_Max: {x: 0.7901113, y: 0.02327995, z: 0.23635352} + - m_Min: {x: 1.4081038, y: -0.023279354, z: -0.20834015} + m_Max: {x: 1.5054117, y: 0.23141885, z: 0.20431603} + - m_Min: {x: 0.2519803, y: -0.4477279, z: -0.12820551} + m_Max: {x: 2.3610559, y: 0.19713357, z: 0.49198666} + - m_Min: {x: 1.4081095, y: -0.23141831, z: -0.20837042} + m_Max: {x: 1.5054094, y: 0.023279801, z: 0.20428756} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 020001000000010002000300060005000400090008000700080009000a000d000c000b000d000b000e000f000400050004000f001000100011000400110010001200130009000700090013001400090005000600090014000f00170016001500160017001800190012001000120019001a0019001b001a001b0019001c001d000f00140019000f001e001f001d0014001d002100200020001e001d001e002000220024000c0023000c0024000b0025000b0024000b0026000e0026000b002500080024002300240008000a00240027002500270024000600250028002600280025002700060024000a000100030029002c002b002a0004002d0027002d000400110027002d002800010017002e002e000000010000002e002f003100300000003000310032003500340033003400350036003300300035003000330000002c003800370038002c0030003a002a0039002a003a003b00350030003b0036003b003a003b00360035003000320038003c003300340033003c00020002000000330000002f0031001800010029000100180017003d0002003c0002003d0003003e00290003002a0030002c0030002a003b002c0037002b0039002a002b000f0019001000090006000a0009000f0005003e0003003f00220019001e00190022001c00180029003e00270006000400420041004000410042004300460045004400410044004000440041004600490048004700480049004a004d004c004b004c004d004e004b004f004d0052005100500051005200530054005100530056004f0055005900580057004a005000480050004a0052004d005a004e005c0052005b0052005c0053005f005e005d005b005f005c005e0056005500620061006000610062006300650063006400630065006600660068006700680066006500690067006800670069006a0054006000510060005400620068005e0069005e0068005d005e00550069006d006c006b006400630062004d006e005a006f005a006e005a007000580070005a006f005700580070007300720071005700700074006f00740070007100760075007600710077007700720078007200770071007900750076007c007b007a007f007e007d007e007f007900790080007e0080007900760080007a007e007a0080007c008300820081008200830084008400850082008800870086008700880089008900810087008100890083008b0075008a0075008b00710075008c008a008c00750079007f008c0079006f006e008d0081008f008e008f0081008200900082008500820090008f0086009200910092008600870087008e0092008e00870081009500940093009700950096009a009900980099009a009b009e009d009c009d009e009f00a1009e00a0009e00a100a200a500a400a300a400a5009a00a6009a0098009a00a600a4009f00a200a700a2009f009e00a800a200a100aa00a900a400aa00a400a600a800a700a200ad00ac00ab00ac00ad00ae00b000ab00af00ab00b000ad00b300b200b100b200b300b400b100ac00ae00ac00b100b200b500ae00ad00b500b100ae00b600b500ad00b600ad00b000b600b300b100b600b100b500b900b800b700b800b900ba00bc00b800bb00b800bc00b700bf00be00bd00be00bf00c000bd00ba00b900ba00bd00be00c100b900b700c100bd00b900c200c100b700c200b700bc00c200bf00bd00c200bd00c100c500c400c300c400c500c600c800c300c700c300c800c500cb00ca00c900ca00cb00cc00c600ca00c400ca00c600c900cd00c600c500cd00c900c600ce00cd00c500ce00c500c800ce00cb00c900ce00c900cd009b009400cf0094009b009a00d1009700d000d400d300d2009500d4009600d400950093008e008f00d50092008e00d500cf009400950094009c0093009c0094009e009700cf00950099009700d10098009900d1009d009f00d300d4009d00d3009600ab00ac00ab009600d400ab00d200af00d200ab00d400d000b200b400b200d0009700b2009600ac009600b2009700ba00d600b800d600ba00d700d600bb00b800bb00d600d800d900be00c000be00d900da00da00ba00be00ba00da00d700db00c300c400c300db00dc00c300dd00c700dd00c300dc00cc00de00ca00de00cc00df00de00c400ca00c400de00db00e00020001f002000e000e1001b00e300e200e3001b001c001c00e400e300e4001c002200e4002000e5002000e40022002000e100e5005d005c005f00450046006c00730071008b00590057004a0059004a00490056005e005f004f0056006e006e0056005f004d004f006e00e800e700e600e700e800e900ea00e900e800ea00ec00eb00ec00ea00e800ef00ee00ed00f000e800e600e800f000f100ec00f300f200f300ec00f400eb00f600f500eb00f200f600f200eb00ec00f700e700e900e700f700f800f900e900ea00e900f900f700fa00f500f600f500fa00fb00fe00fd00fc00f100f000ff00fc00ed00fe00e8000001f4000001e800f100f4000101f3000101f4000001e800f400ec00010100010201050104010301040105010601f500ea00eb00ea00f500f900e600e700ef00fc00f000ef000701f000fc000801f800f700f800080109010a01f80009010d010c010b0110010f010e010f011001110112010f0111010f01120113011601150114010c01f8000a0117010e011601f500fb00f900130112010601f9000801f7000801f90018011b011a0119010d01ed00ee00ed000d010b01fe000b011c010b01fe00ed001d01fe001c01150116011e0120010e011f011f01130119010e01200116010701fc00fd00ed00fc00ef00fd00fe001d01f100ff002101ff00f0000701ef00f000e600ee00ef00e700f800ee00e700ee00f8000d010c010d01f8000e01170110011f010e010f01160114011701160120011e0115011e01220113011f010f0121010001f100020100012101190113011b0106011b01130123011b01050123011a011b01f900fb00180105011b0106012401880086006a00690055006d0045006c002701260125012801260127012a01270129012c0127012b012f012e012d012d0130012f0130012d0131013101320130013201310133012d012e013401360134013501340136012d013801350137013501380136013b013a0139013a013b013c013b013d012f013d013b0139012e012f013d0140013f013e013f0140014101420141014001410142013d012e013d0142011e000f001d00450144014301440145014601490148014701070008004a014b014a0108004c010c000d000e004c010d00480149014d014e014d014901490111004e0112004e01110007004a0113004f0113004a01470148014a014d014f014a01170051015001510117001500520112001a00120052014e0152011b0053011b0052011a004f014d01540155014d015201570154015601540157014f0156015501580155015601540159010c004c010c005901230059014c015a014c0126005a0126004c010e00080059014b0159010800230059015b0147015b0159015a015a0128005b0128005a0126004b01590147015c01430144015f015e015d0149012d0011002d0049015b0128002d005b012e00170044012e004601600146012e0044016301620161016201630146016601650164016501660167016701620146016201670166015d016801620168015d0169016b015f016a015f016b016c016a016201660164016a0166016a0164016b016801610162016d016701450167016d016501670146014501630160014601500144011700440150015c013d004501430145013d006d0143015c016e015f0162016a0162015f015d015e0169015d015e015f016c014e0152014d014b0147014a0148014d014a013d0043016e015801520153015201580155016e015c015001490147015b0170016f014200430042006f01730172017101700173016f0171016f01730149007501740175014900470076014c004e004c00760177017601790178017c017b017a017b017c017d017a017b017e01800179017f0181015800590074017d017c017d01740175014e005a00760182017c017a017c018201830186018501840182018401830180017f018501880161008701630087016100890163006600630089018a0166008b0189018b01660067008c0167006a0067008c018b017b0188017e0187017e0188018b018501860185018b018c018c01800185016b008d016d00870163008a015a008e0176018e015a008f015a0090018f0190015a005800900158008101930192019101940190018101900194018f019301960195019601930197019501920193019201950198019601970199019c019b019a019f019e019d0199019d019e019901a0019601a00199019e019e019c01a0019a01a0019c01a301a201a101a401a101a201a201a501a401a801a701a601a901a601a701a701a301a901a101a901a301ab019701aa019301aa019701ab01ac01970199019701ac019901ac019d01ad018e018f01a301ae01a201ae01a301af01a501a201b001ae01b001a201b201b101a801a701a801b101a701af01a301af01a701b101b501b401b301b701b301b601ba01b901b801b901ba01bb01be01bd01bc01bd01be01bf01c101be01c001be01c101c201c501c401c301ba01c301c401c601ba01c401ba01c601bb01c701c001bc01be01bc01c001c101c001c801c401ca01c901c601c401c901c001c701c801cd01cc01cb01cc01cd01ce01cf01ce01cd01ce01cf01d001d301d201d101d401d101d201d301cc01d201cc01d301cb01cd01cb01d501cb01d301d501cd01d501d601cf01cd01d601d301d101d601d501d301d601d901d801d701d801d901da01db01d801da01d801db01dc01df01de01dd01e001dd01de01df01d701de01d701df01d901da01d901e101d901df01e101da01e101e201db01da01e201df01dd01e201e101df01e201e501e401e301e401e501e601e701e601e501e601e701e801eb01ea01e901ec01e901ea01e301ea01eb01ea01e301e401e501e301ed01e301eb01ed01e501ed01ee01e701e501ee01eb01e901ee01ed01eb01ee01b801b401ba01b401b801ef01f101b601f001f401f301f201b701f201b301b501b301f201f501ae01af01f501af01b101b301b401ef01b401bf01be01bf01b401b501b301ef01b601f001b601b901f001b901bb01f301bc01bd01f301bd01f201b701ce01f201ce01b701cc01d001f401ce01f201ce01f401f101d201b601d201f101d401d201b701b601b701d201cc01d801f601d701f701d701f601d801dc01f601f801f601dc01e001de01f901fa01f901de01de01d701fa01f701fa01d701e401e601fb01fc01fb01e601e801fd01e601fc01e601fd01ea01fe01ec01ff01ec01fe01ea01e401fe01fb01fe01e40157015601e0000002e00056011b000102530101021b00e2005301020258010202530101020202560158015601020203020302040256018401820186018d0171017201aa0193019101740181015900490074015900840185017f018e017f01790184017f018e018e017901760107020602050206020702080207020502090209020a0207020a0209020b020e020d020c02100207020f02070210020802120211020a0213020a021102150214020b020b0212020a0212020b0214021702060216020602170205021802050217020502180209021402150219021a02190215021d021c021b021e0210020f021b020e021d0207021f020f021f02070213021102200213021f02130220020a021302070221021f022002240223022202250222022302150209021802090215020b020c02060208020c0210021d021d02100226022802160227021602280217022702160229022c022b022a022f022e022d022e022f02300232022e0231022e0232022d02350234023302290216022b0233023002360218021a0215022502320231021802280237022802180217023a02390238022a020e022c020e022a020d021b022c020e022c021b023b023b021b023c023d02330234023f0230023e023a0231023f0233023e0230021c021d0226020c021d020e023c021b021c0240021e020f02260210021e02080210020c0206020c020d0216020d022a020d021602060216022a022b022f02360230022e0230023f023602350233023d023e02330241023d0234022e023f0231020f021f02400240021f022102380231023a0231023802250222023802420238023902420237021a021802250238022202a801a601430280018c016a008d0172016d0025014402270127014402450229012701460246022701450248022e01470248024a0249024a024802470249024c024b024c0249024a024d022e0148024e024d0248024d024e024f0250024f024e024f0250025102540253025202530254025502540256025502560254024702560247022e01590258025702580259025a025b025702560257025b0259025b0256022e0154014d0155015d025c02fd0060025f025e025e02fd0060025e025f02ff006002fd0061026202ff005f02fd005c02610262026402630263026402020162026302ff001c026602650269026802670267021c0269026a02680269026b021c02670268026a026c026b0266021c026e026d026c026f026d026e026a026e026c021d0170025c02600207015f02070160027002070171025f0260026102700262025f027102700261025c0262022101640221017202640262027102210166027302650268022602670273026702260268027402260273026b026702740268026c0266026b0273026d0275026c026d026f027502750274026c027702760241004100430077024600790278024100760279027902460041007a026b006c0078026c0046007a026c0078027b0277026f0143006f0177027d0271017c027b026f017d0271017d026f016b007a028d018d017c0271018d017a027c022f017f027e0280027f022f017f02800231013201310180023101320133017f0234017e02340181023501810234017f023501380137013801350181023a013b0182023b013a013c0183023b012f013b01830282027e0283022f013f0184023e0184023f0141014101420184024201410183027e0242018302850247027e028602850249028502860247024c0249024b0249024c0286024d0285027e024d028702850287024d024f024f025002870250024f02510253025402520254025302880289025402880254028902470289027e02470258028a0257028a0258025a0257025b0289025b0257028a025b027e0289028d028c028b028c028f028e028f028c028d028d028b0290028f028d02910291028d0290028b028c02920293028c028e028c029302940292028c02950295028c02960296028c0294029902980297029c029b029a029c029702980297029c029a0298029d029c02a0029f029e029f028f029e028f029f028e02a102a0029e0291029e028f02a1029e029102a2029f02a00293029f02a3029f0293028e02a4029f02a202a5029f02a402a3029f02a5029902980297029c029b029a029c029702980297029c029a0298029d029c02a802a702a602ab02aa02a902a802a902a702a902a802ab02a9029d02a702ad02ac028b02af02ad02ae02ad02af02ac028b02ac029002ac02af029102ac0291029002ad028b029202ad029302ae029302ad029402ad0292029502ad0295029602ad02960294029802990297029b02b0029a029702b0029802b00297029a029d029802b002b202a002b102af02b202b102b202af02ae02a002a102b102b1029102af02b102a1029102b202a202a002b2029302a3029302b202ae02b202a402a202b202a502a402b202a302a5029802990297029b02b0029a029702b0029802b00297029a029d029802b002b302a802a602aa02ab02b402b402a802b302a802b402ab029d02b402b302b702b602b502b602b702b802bb02ba02b902bc02ba02bb02bd02ba02bc02bb02b902be02bf02b502b602b502bf02c002b802ba02bd02ba02b802b702c302c202c102c202c302c402bc02c602c502bb02c602bc02c702c602bb02be02c702bb02c102c802c302c802c102c902c602c402c502c402c602c202ca02b702b502b702ca02cb02ba02cc02b902ba02bc02cc02ba02cd02bc02b902cc02be02b502bf02ca02bf02b502c002ba02cb02cd02cb02ba02b702c202ce02c102ce02c202cf02c602bc02d002c602cc02bc02c602c702cc02c702be02cc02c802c102ce02c102c802c902cf02c602d002c602cf02c202b702b602b502b602b702b802bb02ba02b902bc02ba02bb02bd02ba02bc02bb02b902be02bf02b502b602b502bf02c002b802ba02bd02ba02b802b702c302c202c102c202c302c402bc02c602c502bb02c602bc02c702c602bb02be02c702bb02c102c802c302c802c102c902c602c402c502c402c602c202ca02b702b502b702ca02cb02ba02cc02b902ba02bc02cc02ba02cd02bc02b902cc02be02b502bf02ca02bf02b502c002ba02cb02cd02cb02ba02b702c202ce02c102ce02c202cf02c602bc02d002c602cc02bc02c602c702cc02c702be02cc02c802c102ce02c102c802c902cf02c602d002c602cf02c202d302d202d102d402d102d202d702d602d502d802d502d602d102d402d902da02d902d402dc02db02d702d602d702db02df02de02dd02e002dd02de02dd02e002e102e402e302e202e502e202e302e802e702e602e902e602e702ec02eb02ea02ed02ea02eb02ee02ec02ea02f102f002ef02f102ef02f202f302f202ef02f602f502f402f702f402f502f902f702f802f502f802f702f402f702fa02fb02fa02f702fc02fb02f902f702f902fb02fe02f302fd02ef02fd02f302fd02ef02f00201030003ff020203ff020003ff02020303030403030302030703060305030803050306030903070305030a03f002f1020b030a03f202f102f2020a03f6020c03f5020d03f5020c03f5020d03f802f902f8020d03fb020d03fa020c03fa020d0310030f030e031303120311030a030b03fd02fe02fd020b03f0020a03fd020103ff02140315031403ff02040315030303ff0203031503080316030503170305031603050317030903d3021803d2021903d2021803d8021a03d502d702d5021a031d031c031b031e031b031c0320031f03dd02df02dd021f03e1022003dd02e402e202210322032103e202e9022303e602e802e6022303ed022403ea022503ea022403ea022503ee02df02d302de02d102de02d302d602d402d802d202d802d4022603de02d902d102d902de02db02da02d602d402d602da02ed02eb02e402e302e402eb02e702e802e502e202e502e802df021f03d3021803d3021f031a03d8021903d2021903d8022603d9021f0318031f03d902db021a03da021903da021a03ed02e402240321032403e40223032203e802e202e8022203fe02f602f302f402f302f602f202f302fa02f402fa02f302080306030103000301030603fe020b03f6020c03f6020b03f202fa020b030c030b03fa020803010316031403160301032903280327032b0329032a0327032a0329032e032d032c032f032c032d033203310330033403320333033003330332033703360335033803350336033603370339033a03390337033c0337033b0335033b03370337033c033a033d033a033c03320334033e033f033e033403310332033e03420341034003430340034103450342034403400344034203480347034603490346034703460349034a03300331034b0330034b0333034c0333034b034e034d033603380336034d033a034e033903360339034e034d034e033b033c033b034e03510350034f035403530352033f034c033e034b033e034c033e034b0331035603400355034303550340034003560344034503440356035803570346034803460357034a0358034603270328035903270359032a035a032a0359033503380334033f0334033803350334033b0333033b0334034103470343034803430347034d034c0338033f0338034c034d033b034c0333034c033b03550343035703480357034303 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 859 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 54992 + _typelessdata: 15da783e906aa7bf76f6693f4fa4adbeebe407be6d6b6e3f6c04263e2f1061bf3e5d6f3fb373bd3ef63441be8bdf683f2365ad3ecc7c9fbf58ee4c3f8d3f323f577195bdf1cb36bf4863aa3eb3d942bf2a59313facec463f19f361bd488420bf3cecb43df0d432be9f75af3f7968433fcebb0d3f1b73aa3e9e20d93dd80d66be293caf3f4248763f4f4b98bd1871863e6b82793d9c9286be91bcba3f54d36e3f7820693cb93ab83eed6e3c30daefb3be5bc6ae3f000000001ef87fbfa31c7e3ce21a543082cec5bedbadb73f63103c333fc87fbf91ea28bde20fa33d48caa7be1f00ae3f1a23533f288701bfe04c813ed3e3513dce80a8be25beb93fe858603f457aebbe9a86123e7c18693cb43ccdbee3abd53fbf89773fb558d4bceddf813ef77e8630da8ed2be1f22d03fce3a7d3388156fbf1a07b7be24a59230a204f3be31d8d73f28184334a9e278bf47bc6f3ed4e08e30ec75cabe2b8ad83fce9840337bc0953e22ce743f2d79033e508357bebbfd9c3f0b86743fe7104b3e821a613ee0d77f3d004ac1bd1d3d993fa36d393fcb6d283f890e533e78a72430e06fcfbdc1f9b03fcc2fbfb22d7e683f6d51d63e4355d62f00344abd47a6993f0a60b9b117317e3ff3fcf23d5b93a4b040ffc6be577ea43f9793e8b10df164bfaf19e53e122dc63d5e7fbfbe339aa13f478f643ffcf88abe780bb83e5b93a4b040ffc6be577ea43f00000000707720bf2a77473f122dc63d5e7fbfbe339aa13fb53b013f302d1bbf57561d3fe7c5b1b096461fbfdb728c3fdf2aae349d4c2dbf626c3c3f382a0f3e69e50abfbf5d823fb35f4b3f26b7cbbd4d62193ff578f53de0b5dabd25da853f6515353fa955333f234dc13d19ef5a2f00da47bd43f3813f00000000e7f27e3ffa66b93d4da205b1ff69a9bb52d5363f64554a3291277f3f074ea6bd2ae4153ec85f06be10c3443f81c1483f4e971e3f4dd910bdc28d213ed88e92be795e933f6100733f6090b5bd098c9a3e1e250e3ee8e641be39868c3f9445743f3c1b643ef78e4c3e382a0f3e69e50abfbf5d823f5803643fc64cdabeb49b213ed1ae643e6096d7beeefe663f78b3693f4f296abe531fad3e38f60e3e67e50abfbf5d823f1d2b643f9a7c83bead57bf3e8fcc643e183382be6a7b553f103a703f638ba03e7ac7143e2b2b73301033c4be5fe6c53f0000000026da7dbf475e04be3151383d7effa9bedd5dc73f5dcc743f8f0a89be72f4f13da750bd3c20959bbe47cccc3f7a125d3fb384a73e7e71c43e871b813000ad99be5103d13f01d325b3176d133fc749513fb2bc013d28206cbee7d8be3ffe17513f7acbcb3e0dd9d53e24896b3010bd79be23aac93fa2f37eb272464b3fc19c1b3f7c17913ec01831bf3cf5463f61a6653f9356873ee54db53e22af9d3e466506c00e76753f1629783f2b4b00be8d4858be9deb993e5c4917c05712923f4ec7673e870d79bf29af443d7955923e1e7106c03d3b863f7c2457bfdcbcd73de718083fc2905330e0f850be2be1c03ffbfcbdb2cb41433fd18f253f2f7b0c3140114cbfa0a43d3faa60bf32cd1b01bf090f5d3f1a5c073ecb95a5bf40f34d3fe28332bf26d577be56b62c3f53bf8a3eb2cadabf7e5f763f4396463eb13ed83d4eae793fb15d243e9703abbfaa9f363f9d5968bf1159d7bdcb15d03e966a5a3e6627d4bf0e05573f30536abf0b62bebd209dc83ee91fa73ef95aa6bf58c3373f6d167a3f4fcb173e58961dbeb15d243e9703abbfaa9f363fa73b4e3d3ff73ebeaf2d7bbfd235a63e6667d2bf7e79573fd21f083f136f87be6df64dbf966a5a3e6627d4bf0e05573f55f9723cc65f84bdbb6f7fbf4d0f883e1e0207c08ec6763f722d79bf4adfac3c6ad5693ef8656c3e820eddbf5cf2483f383779bf6a0504bdc5d7673e4d0f883e1e0207c08ec6763fe396913b94c2f9bece785fbff8656c3e820eddbf5cf2483f6475463dc43b9abe14cb73bfa772a13e6f9bdabff069493f2519743fa9a48ebc970a9abe1a5c073ecb95a5bf40f34d3f80be45bd4775143e5dfe7cbf2f7b0c3140114cbfa0a43d3ffe2ec33b933e31be9d217cbfd92b4b3e40af34bfceb4363f3ae6c73d7f482b3f249c3cbf162f7b2f3f114cbfa0a43d3fd79614be2c34b23cb33a7dbf2243eb3d746a52bf9e9b75bfcd9f083fdb0dedbe862a353f628f093f56f092bf16e3bebf000080bf0000000000000000bbd41131abdf5dbf7df779bf1d928f3234f40abfab01573fb934722fd0b1babf225aa6bf0000000000000000000080bfe24e803ef9d514bf26907abfa3a2493fe76e18be080f193f84729b3e0615c1be8df582bfcf0e3d3fdf002c3fd2bb663d00c2243f884752bf488dcfbfdea840bf00000000c293283f2f7b0c3140114cbfa0a43d3f00000000917b65bfb7ece23ed92b4b3e40af34bfceb4363fd7d7113f0f1b36bf89bed23e9ad8f930f7e26ebf7870ee3e82e7d8300c5f67bf941edb3e38c0463ead4462bf3046e33e24dd2e3f4f9828bfcbaba13e2243eb3d746a52bf9e9b75bfdc9e373f3ea720bf6c0c9b3ebbd41131abdf5dbf7df779bfc638c33320596fbf61a4b53e5232b63d76cd44bfa1af49bf6d622e3f7d4f39bf3f4ce03d45511c31a3914bbf2b974cbf0000000097c97ebffd17c73de24e803ef9d514bf26907abf66e35a3f8a7f03bf98cc913ddd78873e3c470abfc202293fda486a3fe32995bec49b8e3eeb8a9a3e4219d0be8ce80f3f34ce693ff09a4ebd3eecce3e9b5ba83ebe5429bfccabbb3eb6186b3fc687a0be5153773e9fb6f53e5a91d6bea0d5003e5fb6663ff1c7bcbe6e2d693e5e04dd3e4cf3adbe04d8a73e0e75533f2683b73ef7bbde3e84729b3e0615c1be8df582bf7517593fad93003f1d372dbe82e1923e26e4f9be5d1353bf59db5d3f5a48f9be7370dfbd4a91d13ddf9065bf74fe853eb6429a3e9f5569bf326a8fbe423c5e31c98164bf00bebf3d49eb52b2a7ed67bf40c0d8be43647031434471bfbc12a93ee01e84b2c1257fbfeaffa6bd915e9f30cb4848bf907fe7bd000000004aa07fbfa0495d3d71d2d43e024811bf705e90bd3ca6743f97b596be3acd053c2229e63eb6fbebbedcaa43be91c8673f82f8d7be3cfd44bda740de3ea024b9be4ac4d5be330a753fc507773de1f490be36c0973e9603b8be96bd5abf2b4b693f9b0ca83e8a8e7ebee17eba3e573911bf6003c5be5769583f3876f3bea34679beaf8a413e48275bbeb2a5093fc728273f9ed0323f86eb953e8f3614b1a0df82bd28edf73e000000005f477f3f519e993d6495893ee42582be6883be3eb8040b3f58f8513f8347383e99d410b0a0d368bdecdf9c3e7c1eca3220277c3fe6db303eedde5d3e8090f0bd80a0493e0c50c73e6332603ff327923eeb2c443e9049ccbdfe35633b94ca9a3e435d733f410c8fbd2d3937b120161ebd04782bba3f285f320e1f7c3f909331be1ca5b2b0c02c24be162df9befd058e32e999793f288463be5d2d8b3e18066cbea8e7f1be65bfbd3e7f16673fc7e75fbe2871233edce292bec79e65bf9e90a13e987e6c3fb3025ebe64e4e42d1c638ebe9c5981bf6b1b4133ba67773f088e83bebba4a030ced4b1be7ca8d8bf00000000ec057e3fec05febd3e32b63e2bf303bf0665d9bfffb5033f549d2fbfffb5033f64e4e42d1c638ebe9c5981bf0cb95433819d7d3fea710bbe26a7653eba7514bf146ceabebc3a2a3f1f0d3fbf355bf2bc3c3dc43c666745bfd048a0bd3bb2f5bea32d31bf9c070abfbb55903c36234ebfa065713dbbe9e13e7e0d4fbfd40ec7befa613a3edef471bf88db273e840dc03e6f0064bf9a9b833ed645ac3d46474ebf80c71cbceb9d5bbfce0601bf8cfdcc3d4a91d13ddf9065bf74fe853e739508bfe57a58bf2fe384bcd645ac3d46474ebf80c71cbcedb493be53f76abfb19b8bbed7e8af3eef1a40bf801a133ca047633fc82fe2be790c043ea0bc813e997c82bf042d51be3fd7643ffe0fe3be9184853d2159483ec68c8cbf885b16be7fca2bbfad8a2bbf9372a23ea147133edc6983bf8c2b53bea2515ebf59f0e0beaa516b3eec1db23ecb1642bf5cad7bbedab75e3f5ce7c0be6ed8a2be3c3dc43c666745bfd048a0bd1b6362bfa0c27dbee095cabed645ac3d46474ebf80c71cbccb993fbfe2d00abf9180c33ea147133edc6983bf8c2b53beddfc6bbfdd45b7be403d18be26a7653eba7514bf146ceabe0136ee3ec63384befcbf58bf6794613e4a212fbf3e46dbbe033ea2bdf912f0bea33361bfe17eba3e573911bf6003c5be9536543f3fd8abbe5c13e5bee6423f3ec58e75bf30aa8dbebc9db6be2f58bcbe82d75bbf0a91413e214e8fbf58df79beaf36343d5f0c60bf7aabf63e1e581f3e36208bbfca828cbe93e27ebffb8db93dc1f8b3bc2159483ec68c8cbf885b16bea21974beef576ebf807b8d3ea147133edc6983bf8c2b53beb3737bbf0d1f40befaac80bb675e3d3ed4e984bf8076a1be4c1c68bf18a3b43ef5c06cbe675e3d3ed4e984bf8076a1be66d3253f6f410a3fc78f09bf959d6a3e7ce48abfa6af8fbe0ec37b3f205332be182d4dbde6423f3ec58e75bf30aa8dbe1334bd3e1eb2df3eb6f151bfa0bc813e997c82bf042d51be91f6733fabab8abe962c0bbe9b5ba83ebe5429bfccabbb3e331f673fe46ed0be8fd90d3e38c0463ead4462bf3046e33ea95c433f83da20bf41b41a3e71d2d43e024811bf705e90bd27d0743fb7b095be315a5f3b6794613e4a212fbf3e46dbbea3ca5abfbe1ae4bdf4d101bfb7f92b3eb5bca0bff8b7f0be6fd0a43eb79042bf1f88103f759eef3d82ada6bfa23314bfb46a73bf1ee033bea391823ec764203e185d9fbf3ef316bf0ad85cbf38e3e63e6a7e6abec764203e185d9fbf3ef316bf82d7313fc0ca093ff74ef4beba01583e64a1a6bf501a13bf1f4a7a3f20f6163e283219be86f4013e24d9b0bffd821abfc41e18bfd15619bff469093faa71253e2360adbf675a0bbf3dd4983d4e3e15bff71d4f3f6aee223e2fd7b3bf579e18bf40e8d63dff7a4abf0b531a3fc716233ef9d3b7bf414521bf8cb6b53db565f9be536b5e3fa95b3a3eaa83b3bf06da26bf24767b3f03fa9ebd9cbb2ebe2aa5163e9abda6bff7a02dbf14c5513f8b14d5bcbc9612bf9db9423efde7adbf8ac326bfc13c333f37009b3e618a25bfba01583e64a1a6bf501a13bffdaf763f760e0c3ea5206bbe55005d3eb4feadbf4e9121bfc2fa6b3ff4a25abeccaca53e3f83ca3dfbb4aebf934b1ebfd89161bf5979f2bd0066ea3e7c14f73d2720aebfeb7824bf50005dbf6ac35f3e40f0e8be759eef3d82ada6bfa23314bf3f247bbf2eee9e3da7f4353e2aa5163e9abda6bff7a02dbf88b757bf72e0cabe67aebabec764203e185d9fbf3ef316bf4e8526bfedb50c3f0831063fa843d23dd56b94bfbe0a3fbff01662bfd594c43e80f6893e196ebc3d52f39abf46253ebf77cf69bf8332c8bec417e9bda843d23dd56b94bfbe0a3fbfe2502f3fdc64363f019a1c3e2f76153ebb9599bf558e40bfaf415d3fbd1afb3e5ad4e4bdc764203e185d9fbf3ef316bf50a9303fb82e353fe5e61a3e0489083e28389ebf64b040bf4b715a3f7d03adbe9653cbbe0489083e28389ebf64b040bffd650bbff7c053bf5b3c0ebe204df23d7d29a0bfcd125fbf47886dbfdc22bbbeb2a997bda843d23dd56b94bfbe0a3fbf1c25153f2a42303f8c21ddbe204df23d7d29a0bfcd125fbf94035b3ffcf0be3ec4e4b7be459ff33d2d13c4bf1b8236bff21b7dbf901022bd2502143e3664263e75b8c7bf7d0032bf7f6ce33df13139bf9d712e3fa82ce83dafd4c9bf62c54abf525c67bf4201cfbefdf80f3e57b1293e7bb8ccbfa1f645bfa353eb3d21ed6ebfd92eae3ef77d133e9ec2c0bf53ff40bf4dac62bf8f239f3e3ae8b0be75cc0e3effc3c5bfaa634ebf15ec4cbf604a193f3971d6bc9a62413e3809c9bfedef4cbf00297a3f26b6713d86e850be22df3d3eadb8c3bf8e4738bfcf3f763fd7984d3e16f73dbe75cc0e3effc3c5bfaa634ebfcff4093fbadc523fd6b734bef77d133e9ec2c0bf53ff40bf978a343fd810cb3e627016bfccda173e20f3cdbfdcf352bfd2a7493c4cf95abf979304bf8efbf33d934ec1bf49f36bbf693603be59d87f3e6ab375bf306e573ee91dc2bfea4256bf3ea856bfb2ea60bee650ffbe13e5483e0743c0bf04f13cbf9c2a6abf2b3bcebe4428053d588a833e0092c4bf292152bf96465b3e6e6d70bf197c893e91e2663e9bc6bfbfc74435bf6ad7ef3e1d341fbf0ca7203f15bc553e9f33babf809240bfa53e70bfcaaf2b3ea59c9abe93be683e8edbbcbff8d257bfc3e262bf1924803e9889c7beed388f3e50aebfbf259557bf743c6f3f4389ae3d26eeb03e3eb97d3e9448bcbfddf53abfe88f4d3f39ee153f1d6ce2bd93be683e8edbbcbff8d257bfdb93c73e507d663f451a463e15bc553e9f33babf809240bfc183063f5798443f8088bbbed59a823e47b2c5bfa26f60bf86a2453e753057bfe39101bfa44ead3ef283b7bf788775bf13d82ebe1411c03e8f3e69bfdd8eb23dd6c8bdbf21fb33bf450676bf6aec763e8b670a3e1d6cc13d8206c1bf5cce2fbfd2bc41bec67e3abf388d283fa5be503d3bf8c1bf7ee54cbf06eb7cbf3942263d69dd183e932ab13d144fc6bfbc5448bfb15f28bdcab374bf92f1943e3b55bf3dc13ebbbfe3393bbfdb0277bfc99e853eb07df3bc47d1b93d4ababebf1c6c4fbf2d211cbf0292463fc657263e741ace3db94bc3bfffb34ebf2e2d763f00e7f0bd83d07dbedf95e63db0cec0bf5e7938bff3847e3f7134b4bd353a7cbd47d1b93d4ababebf1c6c4fbfab2a713f8a7b953e112829be3b55bf3dc13ebbbfe3393bbfdbcf643f6246823e8a15bdbe4da49f3df03dc7bf2a6056bfb88e7abe4f344ebf922c0abfc795773daf14b9bfd6c96cbffc714ebd978cc53e05d36bbf75b0463ec116b0bf3ca31bbf4d7c343fcf950ebf38c5e03e2f2f183e891db2bf900c31bf02e33d3f50cd9a3e204219bf3920193eef55adbf78fa2dbf0224243f5c13253d9a2e44bf2f2f183e891db2bf900c31bf392962bf4e95723ea2f8cebe3920193eef55adbf78fa2dbf4b4953bf6e801e3d433510bfe911ff3de46cb3bfe27925bfe6667cbfb8f018be9653993daa71253e2360adbf675a0bbf9f140cbd035619bf8acf4c3fa95b3a3eaa83b3bf06da26bf3cba76bf9ce177be0642e53d75b0463ec116b0bf3ca31bbfa4c0813e537b12bfd8ac473f9db9423efde7adbf8ac326bf54cc6cbf6259333e22a7acbe9db9423efde7adbf8ac326bff6c6063fb217273faf770bbf55005d3eb4feadbf4e9121bf4891743f8cc69b3ce0fb963e86f4013e24d9b0bffd821abf500ef5be1306edbee3fd3e3f3f83ca3dfbb4aebf934b1ebfb8fa7cbf80ad3fbcd6611c3e7c14f73d2720aebfeb7824bfbb7a60bf1f4fc43ec67794bee911ff3de46cb3bfe27925bfe65a7d3f4789a1bd1c35f5bd7c14f73d2720aebfeb7824bf4142663f28d2fe3d5e7fd6be2f7b0c3140114cbfa0a43d3f0dc836b5295b4cbfaa301a3fd92b4b3e40af34bfceb4363fdd38233f7f4bedbe00891d3f8f3614b1a0df82bd28edf73e00000000b509783f3a667dbeaf8a413e48275bbeb2a5093fad5c3c3f21af2a3f9801f3bdeb8a9a3e4219d0be8ce80f3fb822753f33618a3e5b1acd3ddd78873e3c470abfc202293f4a2f723f880e49be4500843e6f5ca83f1054273efc31b83e4cfe90be6cb2713f04a42cbec81e9e3fa0390c3e08c3163f6fbaeebe03cf5a3f519d693ecb0c3c3f102dadbdb010af3d58ef4fbe91f4773fda1113be983a413f28c402be0818a73e7a93e7be65e7523fdfe9ae3e30920f3f98a80bbe08e4a33e2874823c18d75c3ffb6a013f9899ba3e381926bea0209f3eb26435be1f7a3a3f906d293f69bada3e605074bdf082443e286c67bde942753f2adb8f3ea383fa3fb8c57e3e426f5e3f72030b3db4f87e3f36b7a93d2a54d03fc8a36c3efe8c423fef9ca9be0cd54b3fb899013f618fd23fa0638c3e88b4103f5802bdbdb4087d3fc2c8f6bd54c8b63f50d49c3db0fd94bd4f37febd8e3f623fe3fae6be3089333f00a634be8c3b52bef9d51dbecf6f573f6b8904bfedde5d3e8090f0bd80a0493e056a83be4e175f3fefffd53eeb2c443e9049ccbdfe35633bd01798beff36733f50dfc3bd5df4ba3ea02134bd03de08bbb771243dcbe3753fddf98cbe5514bd3ec8e45dbec41aaf3ea9ecc53c57a90a3e11917d3f6495893ee42582be6883be3ef29189bd3282063fa422593f01d4433fb8442fbec420be3e56ae03bf2d6c4d3ee471553febb59b3fe1582c3d64f5223f149d28befb3d12bf6cd84d3f0e25123f885447be446faf3e1809c13d5b0d91beb152743f5e04dd3e4cf3adbe04d8a73e264aff3d04ea50bde0aa7d3f9a1a063f804eabbe58f6ab3ef17be43e9a9366be90b95d3f19e00140204b473e907f143e2543c83d8978743f396f8fbeb3c22c4002ae653dc0f81f3efc0d80bdaa73773fe4797ebe93d51940b82a693e4eaa703fbbcae33df8bb7d3f6b6994bd29afb03fb055a3be25ef11bf8ffa09be056b563f2d8a07bf8949ea3ea8a968bec8e3bdbe91663f3e2d58563f4c8a03bf5d2d8b3e18066cbea8e7f1bea5d39e3c7523633f26f6ebbea740de3ea024b9be4ac4d5be668e0e3d03bf283f2d4e40bf5e04dd3e4cf3adbe04d8a73e2b23a23cb6d26dbfd436bd3e9a1a063f804eabbe58f6ab3e24df033fd4ba53bfff59663e9fb6f53e5a91d6bea0d5003e0a17543f0a3b0fbfdd6bc73ce34e0b3f32679ebe38373a3e9a17fc3e60545ebffe326c3d68d30840d88b12be582bcbbed95bd73e585163bf567c3ebe6476403fd00381be183ea73e1f485bbd076f39bf30f62f3f4b398b3f70d6bcbdf8abe63ee57a343eb51c5abf1968fc3e38a7bf3f21bc0e3d5c4b0e3f028fe53d9a5960bfa5d4ef3e11a60040f8ea383e826f6c3f08262abee2d073becbf8743ff867da3f81f1b33d44af233fd145233dd96e6dbf5257be3ed305d33f706d1d3e2e084f3fc99a35be57bb12bfb9cd4c3f2247d83fafdf95bdbf95e43c5b6e1a3e1af572bfd4a98d3e969b973f182f42be820a2bbc226b713e99b46fbf8b2f853e38a7bf3f21bc0e3d5c4b0e3f4e73493eab4f72bf0feb823e4b398b3f70d6bcbdf8abe63e5e768e3e12206dbf5322823e6476403fd00381be183ea73efb058e3e809d70bf4ede4b3e8040223fdc61a2be10d8823d1fa61b3ee30b7abf1fd91a3e11a60040f8ea383e826f6c3fd8e1293c605579bf5aec673e0e1e194000b22d3ecea6753f7e14383d87887bbfface383e55d3044085a45c3c58c94e3ea7e2883d97c378bfe8d9673ef867da3f81f1b33d44af233ff388d13d07f576bfbd95783ee34e0b3f32679ebe38373a3e4fad9e3e352c4cbfb87e043fc940353f7edfa7be5cf5cabeb7a3483df2887fbff7ae0f3da740de3ea024b9be4ac4d5bebeffe73e163464bf3d8ae8bb36a9fd3eb491aabea0e79bbdf1c3ee3e767462bfd503b2bb0e1e194000b22d3ecea6753fb78a0bbea653ad3e63586e3f33b63740c0c55c3ef1b4843f77eb6b3f0f37c6beb17fee3cb3c22c4002ae653dc0f81f3e639a9e3dcb4a7abf13df473e29afb03fb055a3be25ef11bf4ba7203ed71775bf3844783e68d30840d88b12be582bcbbe3943e73de60074bfebb38f3ec940353f7edfa7be5cf5cabe1d634c3e009557bf7341003f33b63740c0c55c3ef1b4843fb6368b3d8be37bbfad01293e2229e63eb6fbebbedcaa43bec366763fa1057fbe5e31dcbda147133edc6983bf8c2b53be2ded68bf72ce4b3e8863babebbd41131abdf5dbf7df779bf4d9a67b460d637bf1d2832bf2243eb3d746a52bf9e9b75bf59ad183f6a5e07bf72991abfee41d9300f2000bf2d5aadbf7d99063343fadebd6a7a7ebfe24e803ef8d514bf26907abf073e333f1a6ee1be1ee30fbf64e4e42d1c638ebe9c5981bfe0b600b299f1563f0e0d0bbf84729b3e0615c1be8df582bf7499793eef75503f63db06bf84729b3e0415c1be8df582bf3536413fd1eda3bea99512bfe24e803ef9d514bf26907abf3536413fd1eda3bea99512bf346ec23e910a71bfd92ccabf575c513fc8fe0f3f2917f93d653cba2f645df3bea75449bf472aab3399ff7f3f389466bbb8ed943ef34451bfc020cdbf569c333f569c33bee5cd303f2bb6043f402c81bfe1f101c0f20b433fe51a1a3f5cc4743ef248213f869593bf603201c000000000000080bf00000000df654f3f8f7384bf3df123c02ef9e43e2ef964bf00000000f3d0733f5cdca5bff4d224c00000000000000000000080bf4edbeb3ecf698abf3f0ac7bfe9b160bfb4acefbe1eb7d1bd70b4413fd9ccb9bf010dfcbfb63a03bf30b75abff3f8ae3d6b9e2c3f0d719dbf27bdffbf3314593fa590cc3e4e56b23e52b3923feb5dcebf3b8c20c000000000000080bf00000000384e8a3f7aebb3bf143828c004ec9f3e06e26fbf04ec1f3e2241a43ede9f48bf95c401c03026373f469c203f0b709d3ef1f5f43eeb2e2cbf02fa1ac0ec057ebf00000000ec05febdaf92f13ee06774bf2aec01c09d3e57bf02bf99be839ee6bea6ca2a3f9eea63bfa8231cc0000000002ef964bf2ef9e4be14b63b3e1f8937bf187bd2bfc500283fe625413fd09b0c3c3e87d03df073babe07f90bc07eda223f9576403f89a8313e1ab2a73eb79a04bf700f12c05c09613f2546ee3e93ccd33d801f913d077b02bf5e0e00c0d011283f45e2193f514fe93e0eb8873ef43833bfdd1f02c000000000931f5fbf8503fbbe4dec4f3d447d1fbf80bdd7bffc5034bffc50b4bedcc61d3f4863aabeb3d942bf2a59313fabec46bf1af361bd478420bf6d0426be2f1061bf3e5d6f3f3c74bdbef62d41becbdf683f2365adbecc7c9fbf58ee4c3f8e3f32bf547195bdf1cb36bf15da78be906aa7bf76f6693f4fa4ad3eeae407be6e6b6e3f6a8279bd9c9286be91bcba3f54d36ebf6620693cba3ab83e9e20d9bdd80d66be293caf3f424876bf4a4b98bd1971863e3cecb4bdf0d432be9f75af3f796843bfcebb0d3f1b73aa3ee30fa3bd48caa7be1f00ae3f1a2353bf288701bfe14c813ed1e351bdce80a8be25beb93fe85860bf457aebbe9f86123e7a1869bcb43ccdbee3abd53fbf8977bfb458d4bceddf813e2d7903be508357bebbfd9c3f0b8674bfe7104b3e801a613ee0d77fbd004ac1bd1d3d993fa36d39bfcb6d283f890e533e122dc6bd5e7fbfbe339aa13f508f64bfb7fe8abefa06b83e8c210fbe69e50abfc15d823f27624bbff383cbbd1c60193f122dc6bd5e7fbfbe339aa13f1b3f01bfde2c1bbfde531d3ff478f5bde0b5dabd25da853f121935bf8153333f89f0c03dd5b815bec85f06be0ec3443f82c148bf4e971e3f58d910bdc18d21bed88e92be795e933f800973bf0bfab4bdaa5d9a3e1e250ebee8e641be39868c3f344974bff9df633eb18b4c3ecd9464be6096d7beeafe663f39b569bf43136abe561dad3e8c210fbe69e50abfc15d823f4af865bfab02c1beaf0d673e8ecc64be183382be6a7b553fde3870bf619aa03eb4a5143e305138bd7effa9bedd5dc73f5dcc74bf8d0a89be71f4f13da650bdbc20959bbe47cccc3f79125dbfb284a73e7c71c43eb1bc01bd28206cbee7d8be3f001851bf7bcbcb3e0dd9d53e7c1791bec01831bf3cf5463f63a465bf965d873ebc52b53e7a5592be1e7106c03d3b863f7824573fe3bcd73dec18083f9eeb99be5d4917c05712923f81c767be800d79bfafb1443d23af9dbe476506c00e76753f172978bf264b00be984858be1b5c07becb95a5bf40f34d3fe383323f28d577be54b62c3f966a5abe6727d4bf0e05573f2f536a3fed61bebd269dc83e53bf8abeb2cadabf7e5f763f5c9646beb73ed83d4dae793fb25d24be9703abbfaa9f363f9c59683f0859d7bdc915d03e966a5abe6727d4bf0e05573fa6f872bce35f84bdbd6f7fbfb25d24be9703abbfaa9f363fc53b4ebd3ef73ebeb02d7bbfd335a6be6667d2bf7e79573fd21f08bf116f87be6ef64dbfea1fa7bef95aa6bf58c3373f6c167abf50cb173e50961dbef8656cbe830eddbf5ef2483f3837793f590504bdd5d7673e4d0f88be1f0207c08ec6763f6f2d793f6cdfac3c7bd5693ea872a1be6f9bdabff069493f251974bff5a48ebc9d0a9abef8656cbe830eddbf5ef2483fa07446bdc33b9abe15cb73bf4d0f88be1f0207c08ec6763f6a9791bb8ec2f9bed0785fbf1b5c07becb95a5bf40f34d3f7ebe453d4a75143e5dfe7cbfd92b4bbe40af34bfceb4363fb0e4c7bd83492b3f3c9b3cbf638f09bf56f092bf16e3bebf2ef9643f2ef9e4be000000002243ebbd746a52bf9d9b75bfcc9f08bfdc0dedbe862a353f00c224bf884752bf488dcfbff8bb49bf00000000da9a1d3f84729bbe0415c1be8df582bfcf0e3dbfe1002c3fb3bb663de34e80bef9d514bf26907abfa4a249bfdf6e18be070f193f37c046bead4462bf3046e33e24dd2ebf4f9828bfc9aba13ed92b4bbe40af34bfceb4363fd8d711bf101b36bf89bed23e5332b6bd76cd44bfa1af49bf6c622ebf7d4f39bf444ce03d2243ebbd746a52bf9d9b75bff85d9abe5c9b65bf9aa4a53e2243ebbd746a52bf9d9b75bfab0959bfa4d1e9bea2068a3ee34e80bef9d514bf26907abf65e35abf8a7f03bfa0cc913d9eb6f5be5a91d6bea0d5003e5eb666bfebc7bcbe6e2d693eea8a9abe4219d0be8ce80f3f32ce69bfe29a4ebd3eecce3e9b5ba8bebe5429bfccabbb3eb6186bbfc287a0be5353773edd7887be3c470abfc202293fda486abfe22995bec49b8e3e5e04ddbe4af3adbe04d8a73e107553bf2083b73efabbde3e82e192be26e4f9be5d1353bf5cdb5dbf5a48f9be6e70dfbd84729bbe0615c1be8df582bf751759bfad93003f16372dbe4a91d1bddf9065bf74fe853eb7429abe9f5569bf336a8fbe2229e6beb6fbebbedcaa43bea85b67bf6eefd9be4c413abd71d2d4be024811bf705e90bd3ca674bf97b596be47cd053ce17ebabe573911bf6003c5bec20057bfed50f8beba9f79be35c097be9603b8be96bd5abffe0f69bf9916a73e373482be7befe0bea224b9be4cc4d5beadb774bf435d583d14df93be649589bee42582be6883be3eb8040bbf59f8513f8547383ead8a41be48275bbeb2a5093fc62827bf9dd0323f8aeb953eea2c44be9049ccbd0036633b96ca9abe435d733f410c8fbdedde5dbe8090f0bd80a0493e0c50c7be6332603ff327923e5e2d8bbe18066cbea8e7f1be4e03bdbe3835673f856860be277123bedce292bec89e65bf9e90a1be987e6c3fb3025ebe3c32b6be2bf303bf0665d9bf49dc2a3fac7312bf2016f4be25a765beba7514bf146ceabebc3a2abf200d3fbf205bf2bc3b3dc4bc666745bfd048a0bd3db2f53ea32d31bf9a070abfb95590bc36234ebfa065713db8e9e1be7e0d4fbfd20ec7be4a91d1bddf9065bf74fe853e7b95083fe27a58bfefe284bcd745acbd46474ebf80c71cbcec9d5b3fcc0601bf7cfdcc3df9613abedff471bf88db273e860dc0be6f0064bf9a9b833ed745acbd46474ebf80c71cbcebb4933e53f76abfb19b8bbe215948bec68c8cbf885b16be81ca2b3faa8a2bbf8d72a23ea0bc81be997c82bf042d51be3ed764bffe0fe3be9184853dd7e8afbeef1a40bf801a133ca04763bfc52fe2be7a0c043ea24713bedc6983bf8c2b53bea5515e3f5af0e0bea6516b3eec1db2becb1642bf5cad7bbedab75ebf5de7c0be6fd8a2bea24713bedc6983bf8c2b53bedcfc6b3fe145b7be343d18bed745acbd46474ebf80c71cbccb993f3fe3d00abf9280c33e3b3dc4bc666745bfd048a0bd1c63623fa0c27dbedf95cabee17ebabe573911bf6003c5be933654bf40d8abbe5d13e5be669461be4a212fbf3e46dbbe103ea23dfa12f0bea53361bf25a765beba7514bf146ceabeff35eebec63384befcbf58bfe6423fbec68e75bf30aa8dbebd9db63e3158bcbe82d75bbf215948bec68c8cbf885b16bea419743ef0576ebf837b8d3e1e581fbe36208bbfca828cbe93e27e3f008eb93dd2f8b3bc0b9141be214e8fbf58df79beb43634bd5e0c60bf78abf63ea24713bedc6983bf8c2b53beb2737b3f031f40be70ac80bb675e3dbed4e984bf8076a1be4a1c683f17a3b43ef5c06cbee6423fbec68e75bf30aa8dbe1534bdbe20b2df3eb5f151bf949d6abe7ce48abfa6af8fbe0fc37bbf175332be512d4dbd675e3dbed4e984bf8076a1be6bd325bf6c410a3fc38f09bfa0bc81be997c82bf042d51be91f673bfacab8abe9b2c0bbe37c046bead4462bf3046e33ea95c43bf83da20bf45b41a3e9b5ba8bebe5429bfccabbb3e331f67bfe46ed0be8fd90d3e71d2d4be024811bf705e90bd26d074bfb7b095be305a5f3b669461be4a212fbf3e46dbbea4ca5a3fb31ae4bdf2d101bf749eefbd82ada6bfa23314bfb46a733f1fe033bea591823eb7f92bbeb5bca0bff8b7f0be75d0a4beb89042bf1e88103fc86420be185d9fbf3ef316bf08d85c3f3be3e63e727e6abeb70158be64a1a6bf501a13bf1f4a7abf16f6163e283219bec86420be185d9fbf3ef316bf89d731bfbaca093fec4ef4be6aee22be2fd7b3bf579e18bfa8e7d6bd047b4abf0a531a3faa7125be2360adbf675a0bbf72d498bd473e15bffa1d4f3f86f401be24d9b0bffd821abfba1e183fda5619bff169093fa95b3abeaa83b3bf06da26bf23767bbf16fa9ebdb3bb2ebec71623bef9d3b7bf414521bf65b6b5bdaf65f9be546b5e3f55005dbeb4feadbf4e9121bfc4fa6bbfbba25abed8aca53e9db942befde7adbf8ac326bfbf3c33bf3a009b3e628a25bfb70158be64a1a6bf501a13bffeaf76bf730e0c3ea1206bbe2aa516be9abda6bff7a02dbf16c551bff313d5bcb99612bf2aa516be9abda6bff7a02dbf87b7573f6ee0cabe6baebabe7b14f7bd2720aebfeb7824bf52005d3f60c35f3e40f0e8be749eefbd82ada6bfa23314bf3f247b3f31ee9e3db1f4353e3f83cabdfcb4aebf934b1ebfda91613f6179f2bdfc65ea3e196ebcbd52f39abf45253ebf77cf693f8332c8becf17e9bda743d2bdd56b94bfbd0a3fbfee16623fd794c43e84f6893ec86420be185d9fbf3ef316bf4885263fefb50c3f0c31063fc86420be185d9fbf3ef316bf54a930bfb62e353fe6e61a3e307615bebb9599bf548e40bfb1415dbfb61afb3e66d4e4bda743d2bdd56b94bfbd0a3fbfdf502fbfdf64363f099a1c3e048908be28389ebf63b040bf4d715abf7a03adbe9053cbbe048908be28389ebf63b040bffd650b3ff6c053bf5f3c0ebe214df2bd7d29a0bfcc125fbf47886d3fde22bbbeb5a997bd214df2bd7d29a0bfcc125fbf94035bbffff0be3ec7e4b7bea743d2bdd56b94bfbd0a3fbf182515bf2c42303f8c21ddbe57b129be7cb8ccbfa1f645bf3f54ebbd20ed6ebfd32eae3e376426be75b8c7bf7d0032bf136ce3bdee3139bfa0712e3fa92ce8bdb0d4c9bf62c54abf515c673f4301cfbe00f90f3e459ff3bd2d13c4bf1a8236bff21b7d3fbf1022bd3102143e74cc0ebeffc3c5bfa9634ebf26ec4c3f484a193fb871d6bcf77d13be9ec2c0bf52ff40bf4dac623f91239f3e38e8b0be74cc0ebeffc3c5bfa9634ebfd0f409bfbadc523fc9b734be21df3dbeaeb8c3bf8d4738bfce3f76bfe9984d3e23f73dbe9b6241be3809c9bfecef4cbf01297abfb6b6713d86e850bef77d13be9ec2c0bf52ff40bfa28a34bfc710cb3e597016bfccda17be20f3cdbfdcf352bf03af49bc47f95abf9d9304bf8ffbf3bd944ec1bf49f36bbf5e36033e9dd87f3e67b375bf90e266be9bc6bfbfc64435bf78d7efbe18341fbf0ba7203f13e548be0743c0bf03f13cbf9a2a6a3f2e3bcebe3a28053d598a83be0092c4bf292152bf95465bbe6e6d70bf177c893e306e57bee91dc2bfea4256bf3da8563fc9ea60bee350ffbe92be68be8edbbcbff8d257bfc5e2623f1524803e9689c7be15bc55be9f33babf7f9240bfa53e703fcbaf2b3ea69c9abe92be68be8edbbcbff8d257bfd893c7be507d663f431a463e3eb97dbe9448bcbfddf53abfe88f4dbf38ee153f156ce2bded388fbe50aebfbf259557bf743c6fbf6f89ae3d23eeb03e15bc55be9f33babf7f9240bfba8306bf5b98443f8888bbbed59a82be47b2c5bfa26f60bf8ba245be743057bfe59101bfa44eadbef283b7bf788775bf12d82e3e1811c03e8e3e69bf932ab1bd154fc6bfbb5448bf535f283dc9b374bf91f1943e1c6cc1bd8206c1bf5cce2fbfb9bc413ec17e3abf3c8d283fa3be50bd3bf8c1bf7de54cbf06eb7c3f2c42263d68dd183edd8eb2bdd6c8bdbf20fb33bf4606763f86ec763e7d670a3e47d1b9bd4bbabebf1b6c4fbf0d211c3f1a92463fc757263e3c55bfbdc23ebbbfe3393bbfd902773fdf9e853e567ff3bc47d1b9bd4bbabebf1b6c4fbfa62a71bfa97b953e0b2829bedf95e6bdb0cec0bf5e7938bff3847ebf8f34b4bdf7397cbd741acebdb94bc3bfffb34ebf2d2d76bff8e6f0bd7fd07dbe3c55bfbdc23ebbbfe3393bbfd7cf64bf6c46823e9e15bdbe4da49fbdf03dc7bf2a6056bfd18e7a3e49344ebf962c0abfc79577bdaf14b9bfd5c96cbfc7714e3dc48cc53efcd26bbf75b046bec216b0bf3ca31bbf477c34bfcf950ebf4ac5e03e392019beef55adbf77fa2dbff72324bf1313253da52e44bf2f2f18be891db2bf8f0c31bf02e33dbf46cd9a3e224219bfea11ffbde46cb3bfe27925bfe6667c3fbff018be9b53993d392019beef55adbf77fa2dbf4449533f28801e3d4f3510bf2f2f18be891db2bf8f0c31bf3929623f5195723eaaf8cebeaa7125be2360adbf675a0bbf98140c3d045619bf8bcf4c3fa95b3abeaa83b3bf06da26bf3eba763f8de177bec641e53d75b046bec216b0bf3ca31bbfacc081be557b12bfd5ac473f9db942befde7adbf8ac326bf52cc6c3f6359333e29a7acbe9db942befde7adbf8ac326bff0c606bfb317273fb4770bbf55005dbeb4feadbf4e9121bf499174bfacc69b3cdcfb963e86f401be24d9b0bffd821abf120ef53e3006edbeeefd3e3f3f83cabdfcb4aebf934b1ebfb8fa7c3fd9ad3fbce2611c3e7b14f7bd2720aebfeb7824bfbd7a603f184fc43ec17794beea11ffbde46cb3bfe27925bfe75a7dbf5789a1bd1135f5bd7b14f7bd2720aebfeb7824bf3d4266bf55d2fe3d697fd6bed92b4bbe40af34bfceb4363f975cb4be35bc09bfbb0a443fad8a41be48275bbeb2a5093f18643cbf8eab2a3fd931f2bdea8a9abe4219d0be8ce80f3fe21e75bf09748a3ed973cd3ddd7887be3c470abfc202293f3d2c72bfc0e248be5227843ed92b4bbe40af34bfceb4363f0ecb6abf6b8b8bbebddc943e983a41bf20c402be0818a73e7893e73e66e7523fdce9ae3ec81e9ebfa0390c3e08c3163f6fbaee3e03cf5a3f549d693ecb0c3cbf102dadbdb010af3d56ef4f3e91f4773fe01113be6f5ca8bf1054273efc31b83e4ffe903e6db2713f0aa42cbe30920fbf98a80bbe08e4a33ec17382bc19d75c3ff96a013f69badabe605074bdf082443e2a6c673deb42753f2bdb8f3e9999babe381926bea0209f3eb564353e207a3a3f906d293f618fd2bfa4638c3e88b4103f6302bd3db4087d3fc8c8f6bd2a54d0bfc8a36c3efe8c423ff69ca93e09d54b3fbd99013fa383fabfc0c57e3e426f5e3f90030bbdb4f87e3f40b7a93d308933bf00a634be8c3b52becf9a1d3ed74b573f35c804bf55c8b6bf50d49c3db0fd94bd970afe3da833623f8e2ce7beea2c44be9049ccbd0036633bd017983e0037733f55dfc3bdedde5dbe8090f0bd80a0493e056a833e4e175f3ff1ffd53e5df4babea02134bdffdd08bbb77124bdcbe3753fddf98cbe649589bee42582be6883be3ef891893d3482063fa122593f5514bdbec8e45dbec41aaf3ea0ecc5bc58a90a3e11917d3febb59bbfdf582c3d64f5223f129d283efb3d12bf6dd84d3f00d443bfb8442fbec420be3e54ae033f2c6c4d3ee571553f0e2512bf885447be446faf3e1109c1bd580d91beb152743f5e04ddbe4af3adbe04d8a73e264affbd0bea50bde0aa7d3f9a1a06bf804eabbe58f6ab3ef47be4be9d9366be8eb95d3f93d519c0b82a693e4eaa703fc5cae3bdf8bb7d3f716994bdb3c22cc0ffad653dc0f81f3e850e803d3975773f8b617ebe18e001c0204b473e987f143ead35c8bd9d7a743f3a628fbede5ab1bfb455a3be25ef11bf6a3ae23de9db473ffb741dbf8949eabea8a968bec8e3bdbe16b93ebe557f563f2c5a03bf5e2d8bbe18066cbea8e7f1bec86b9ebc7548633fc067ebbe7befe0bea224b9be4cc4d5bee60466becb87953e81fd6dbf9eb6f5be5a91d6bea0d5003e051754bf0e3b0fbf226cc73c9a1a06bf804eabbe58f6ab3e1edf03bfd7ba53bf005a663e5e04ddbe4af3adbe04d8a73ed521a2bcb6d26dbfd836bd3ee34e0bbf32679ebe38373a3e9917fcbe60545ebf22336c3d320109c0d88b12be562bcbbeba22d8be410063bf37fe40be4c398bbf70d6bcbdf8abe63edf7a34beb41c5abf1f68fc3e637640bfd00381be183ea73e1e485b3d066f39bf30f62f3f38a7bfbf1fbc0e3d5c4b0e3f038fe5bd995960bfa7d4ef3ed305d3bf706d1d3e2e084f3fd09a353e56bb12bfbbcd4c3ff867dabf80f1b33d44af233fd04523bdd96e6dbf5257be3e11a600c0f8ea383e826f6c3f08262a3ed6d073becbf8743f4c398bbf70d6bcbdf8abe63e5e768ebe12206dbf5122823e969b97bf182f42be7f0a2bbc8d6471beaba56fbfd69d853e38a7bfbf1fbc0e3d5c4b0e3f517349beaa4f72bf0eeb823e2247d8bfb0df95bdc195e43c8f631abe60e972bf21fd8d3e804022bfdc61a2be10d8823d24b91bbe6e017abf6ed31b3e637640bfd00381be183ea73efc058ebe819d70bf4dde4b3e55d304c07ca45c3c58c94e3ebbda88bd8ac178bf3ffe673e0e1e19c000b22d3ecea6753f7c1438bd87887bbfface383e11a600c0f8ea383e826f6c3fd8e129bc605579bf5aec673ef867dabf80f1b33d44af233ff388d1bd07f576bfbd95783ee34e0bbf32679ebe38373a3e52ad9ebe342c4cbfb77e043f35a9fdbeb891aabea0e79bbd7397edbe64c462bfff58efba7befe0bea224b9be4cc4d5be22b5e6bea98964bf4239c839329836bf80dfa7be5cf5cabed6a948bd61877fbfa169123d0e1e19c000b22d3ecea6753fb78a0b3ea653ad3e63586e3f33b637c0c0c55c3ef1b4843f83b54fbd81cb7d3fb14df7bdb3c22cc0ffad653dc0f81f3e949d9ebd5c497abf37fb473e320109c0d88b12be562bcbbef542e7bd85f473bfed07903ede5ab1bfb455a3be25ef11bfb1cb20be42fe74bf78bf793e329836bf80dfa7be5cf5cabe2202353d85913a3fe1ed2ebf33b637c0c0c55c3ef1b4843fb6368bbd8ae37bbfae01293e2229e6beb6fbebbedcaa43be712476bf154783bece9ecabda24713bedc6983bf8c2b53be2eed683f79ce4b3e8363babe2243ebbd746a52bf9d9b75bf58ad18bf6d5e07bf73991abfe34e80bef9d514bf26907abf78b139bfe237c7be5d5e11bf84729bbe0615c1be8df582bf1ec716bfa0ecd33ee2b031bfb8ed94bef34451bfc020cdbf2048493f60f918bf8006213e346ec2be910a71bfd92ccabf565c51bfc9fe0f3f2817f93df24821bf869593bf5f3201c000000000d86e7fbf1e3b883d2cb604bf402c81bfe1f101c0f10b43bfe51a1a3f5ec4743ef3d073bf5cdca5bff4d224c0eb0551bfeb05d1beeb05d13edf654fbf8f7384bf3df123c092a125bf803c41bf6ed7dc3d4fdbebbecf698abf3f0ac7bfd97f463fbdf61bbf71242a3e6b9e2cbf0d719dbf27bdffbf321459bfa790cc3e4d56b23e70b441bfd9ccb9bf010dfcbf04ec1f3f05e747bf00000000384e8abf7aebb3bf143828c000000000000080bf0000000053b392bfeb5dcebf3a8c20c000000000000080bf00000000a6ca2abf9fea63bfa8231cc000000000000000000000803ff1f5f4beeb2e2cbf02fa1ac00e2c793f5f1d26be5f1d263eae92f1bee06774bf29ec01c032fa743f7751a3bd48e78ebe2341a4bede9f48bf94c401c0332637bf439c203f09709d3e14b63bbe1f8937bf177bd2bfc40028bfe625413fd89b0c3c0eb887bef53833bfdd1f02c0000000009e205dbfb2fd00bf18b2a7beb79a04bf700f12c01c1064bf1c10e43e4a73b63d7f1f91bd077b02bf5e0e00c0d31128bf44e2193f504fe93e3e87d0bdf073babe07f90bc02f7515bf58ce4b3f7a0b233e4dec4fbd447d1fbf80bdd7bf67c901bf67c9013fee74323fd1c75f408808f43e4387b73f459a29bdd600543f2a1a0fbf32b63740d0c55c3ef3b4843f63cca5be2ba4703fffe3dbbd68d30840c08b12be562bcbbe90b9bcbd99d96c3fed7bbcbe65faff3fa090f3be875c8dbfa067d5be9c74943d34f667bfc7343040e0a770bee7ca47bfd826523f483112bf0000000051a85540786d033e10b426bbe62769bf18b3f83d8411ca3e2bdba13f0e7421bf281388bfe7de7b3fbf2d373e00000000ca40353f78dfa7be5af5cabe12082abe9272523f416e0bbf1501ca3e313b3abfe55d5dbf65b22fbf4cc0823eba552ebf32b637c0d0c55c3ef3b4843fce9de43ece9d643fce9d643dd1c75fc08808f43e4187b73f2ef9e4be2ef9643f00000000c73430c0e0a770bee8ca47bfc2dfe4b8dbdc6b3fa40bc7be65faffbfa690f3be875c8dbf2c0239b94ab16dbfbb23bebe69d308c0c88b12be5a2bcbbe8fb9bc3d9ad96c3fef7bbcbe29afb0bfaa55a3be26ef11bfce261c3e30ed5f3f7e88ebbe51a855c0706d033ef2b526bb84d0e4be84d064bf038b18bd2bdba1bf107421bf281388bf8207083e53308fbec16b73bf1601cabe333b3abfe55d5dbfc14f223f3011b1be301131bfc94035bf76dfa7be5ef5cabe18082a3e8d72523f466e0bbfa840debe9c24b9be4ac4d5be0c6b7d3f06c081bd06c0013eb3c22c4042ae653dc8f81f3e5b24313e50e474bfb617703e29afb03faa55a3be24ef11bfd1261c3e32ed5fbf7388eb3ea840de3e9c24b9be48c4d5be3418403d0d7146bfe848213fb3c22cc0ffad653dd0f81f3ed95131be57e374bffb05703e29afb0bfb055a3be25ef11bf06fc1bbe4ff55fbfa970eb3ec94035bf7edfa7be5cf5cabe10082abe907252bf436e0b3f2243eb3d736a52bf9e9b75bfce9f08bfda0ded3e862a35bfbbd41131abdf5dbf7df779bf2c5b57b334f40a3fac0157bf84729b3e0415c1be8df582bfcf0e3dbfdf002cbfbabb66bde24e803ef8d514bf26907abfa4a249bfe66e183e060f19bf64e4e42d1c638ebe9c5981bfe0443133819d7dbfea710b3e2243ebbd746a52bf9d9b75bfcd9f083fda0ded3e862a35bf84729bbe0615c1be8df582bfcf0e3d3fe1002cbfafbb66bde34e80bef8d514bf26907abfa4a2493fdf6e183e060f19bf603cba2f5e5df3bea75449bfb45f00b399ff7fbf1797663b346ec23e900a71bfda2ccabf575c51bfc7fe0fbf1c17f9bd2bb6043f402c81bfe2f101c0ef0b43bfe81a1abf55c474be6b9e2c3f0d719dbf28bdffbf331459bfac90ccbe4b56b2be2241a43edd9f48bf95c401c0332637bf449c20bf0d709dbe14b63b3e1f8937bf197bd2bfc50028bfe52541bfa89b0cbc801f913d067b02bf5f0e00c0ce1128bf46e219bf514fe9be346ec2be910a71bfd92ccabf555c513fc8fe0fbf1817f9bd2cb604bf402c81bfe2f101c0ef0b433fea1a1abf57c474be6b9e2cbf0d719dbf28bdffbf3414593fad90ccbe4c56b2be2341a4bedd9f48bf94c401c03526373f419c20bf0f709dbe14b63bbe1f8937bf197bd2bfc500283fe32541bfa09b0cbc7f1f91bd067b02bf5f0e00c0d011283f45e219bf504fe9bef829733ec195b23c5d058f3feb0551bfeb05d13eeb05d1be4781af3df0d88fbd05c1b33f2dd41e3fc972eb3ec8a2223f061cff3d286d063ed7fd933f2517213fbb76113f35be073f34a94532207a39bd734db53f889cfe34b8202c3f807e3d3f4bd47d32502f3a3e0103943fdb1a9a346bd12e3fe0033b3fc8133e3ea468953ec846523f00000000f30435bff30435bf3d2075326c831b3f5a18563f00000000f30435bff30435bfd956123e686c06be032ea73f58d7c43ee28938bf82a113bf69654832e8f850be2be1c03f00000000435b78be435b78bfafc4033d30206cbeebd8be3f04ec1fbf06e2efbe04ec1fbf38f0b53df8d432be9f75af3fded161bf665d293eded1e1be618a7b3da49286be91bcba3f000080bf000000000000000005ba633ea8a3d5be2f7e953f72443a3f435bf8be435bf8bedf13a43d50caa7be2100ae3f00000000000080bf000000006d3a6c3e88548abee9d48b3f82745fbf82745fbe8274df3e015c4f3ef7a614bff73e9b3f2ef9e43e2ef9643f00000000885c363e080a36bfdbc5af3f000000000000803f0000000000b5a23dee83f5be2fe1ae3f3c824f3f10511a3e20df103ffb3b293292cec5beddadb73ff30435bff30435bf00000000021cffbd406d063ed5fd933f1b1721bfc276113f3dbe073f4481afbde0d88fbd05c1b33f20d41ebfdd72eb3ecea2223ff62973be8096b23c5d058f3f50847c3f3558283e00000000c7133ebeb468953ec846523ff05b71bff05b713ef05b713ed75612be606c06be052ea73f12025a3f5442f5be12025abea8c403bd28206cbee9d8be3ff304353ff30435bf0000000036f0b5bde8d432be9f75af3f00000000ec05fe3dec057ebf598a7bbd9c9286be93bcba3fce9d643fce9d64bdce9de43e6c3a6cbe8c548abee9d48b3f00000000000080bf00000000dc13a4bd54caa7be2100ae3f22384dbf72bbe33d595e163f04ba63beaea3d5be2f7e953f01eb0dbf01eb0dbd82e0543ffeb4a2bdf883f5be2de1ae3f38824fbfed501a3e28df103f875c36be0b0a36bfd9c5af3f00000000000080bf00000000ff5b4fbefaa614bff73e9b3f82745fbf82745fbe8274df3e061cff3d286d063ed7fd933f251721bfbb7611bf35be07bf4781af3df0d88fbd05c1b33f2cd41ebfc972ebbec8a222bf34a94532207a39bd734db53fb937f6b4b8202cbf807e3dbf4bd47d32502f3a3e0103943f53c287b46bd12ebfe0033bbf00b5a23dee83f5be2fe1ae3f3c824fbf0f511abe20df10bf021cffbd406d063ed5fd933f1b17213fc27611bf3dbe07bf4481afbde0d88fbd05c1b33f20d41e3fdd72ebbecea222bfdc13a4bd54caa7be2100ae3f22384d3f73bbe3bd595e16bffeb4a2bdf883f5be2de1ae3f38824f3fee501abe28df10bf77a7f03ed75c1cbf64dffd3e00000000422071bfcefaabbece16653e6096d7bef2fe663f1136613f4293113e1a4ee83e0fece03ed026a4be14d3ca3e3058a0b7e328303f79c039bf8e4e653e183382be6e7b553f3a07503f16baf93e2255a33e46aff93d206c2b3e6028873e2ef9e4be000000002ef964bf697c843ea09208bea090dd3e924600b9429fdd3e4bc6663f62d93032a8856c3eccaeb33ec0c075b4d82e483f11921f3fe8275832ff69a9bb56d5363f06c198b8aafd68bfd224d43e2ae4153ec85f06be14c3443fd1ad2b3f065e353f0d26613eee5a84327476ff3ee8ca0a3eeb263e3f309d0e3feb26be3e382a0f3e6be50abfc15d823f000000006dd87dbf0993043e7a58913ec21831bf42f5463f00000000000000000000000077a7f0bed85c1cbf64dffd3e9be8a1be00000000e8dc723f0dece0beda26a4be10d3ca3eaf3a553eaf3ad5be5a8e623fcd1665be6a96d7bef2fe663fe63561bf6988113e6e50e83e8d4e65be203382be6e7b553f1f1850bf1f87f93eea4ca33ed23a16bed05f06be18c3443f0cbe2bbf625a353faa8e603e687c84beb09208bea490dd3e00000000cdcc4c3f9a99193f43aff9bd206c2b3e6028873e0000000005e747bf04ec1f3f8c210fbe6be50abfc35d823f2ef9e4be2ef9643f000000007b5891bec61831bf42f5463f000000000000000000000000d1ae643e6096d7bef2fe663f022b61bf28c711bed170e8be8e4e653e183382be6e7b553fba2850bfe43df9be1768a3be62d93032a8856c3eccaeb33e1efe7f34d92e48bf11921fbfd43a163ec85f06be16c3443f04be2bbf695a35bfb38e60becd1665be6a96d7bef2fe663fe635613f698811be6d50e8be8d4e65be203382be6e7b553f1f18503f2187f9beea4ca3bed23a16bed05f06be18c3443f0dbe2b3f615a35bfac8e60beba0684b60c4523c03e3062c0858d613f35a3b43ee54ca1be811f713e46535fc0a2bb88c028c377bf28c377be17948d3d70f64a3e261328c0f44056c02eae3ebf627ea9be964e143fc1729bb7833f5ac088be8fc01d17683f7e4aa13e5cc18fbef037bb3ec5c0a0c06573cfc0b9267fbf0000000020a1a63d4703f1b7fd9c88c0f264aec0d9a3573ff525e73e85b496beca87f6349743a3c03cead6c0ffff7f3fdd6ba437cb4d19379aba8e3eb3498bc0ca56a6c091eb6cbf8c3aa9be40893d3e765784b6030c16c0bdb870c00000803f245a0eb773f6fcb6b4e09bb7d0c04cc00b0e98c0ffff7f3f375d0eb789eaf9b662e2f1b7cfba81c0b7bfb7c00000803fa6b8a3374d841837633e0c35f090a1c0a8addfc00000803fc12fc537c990a036fb56db3d060198bfe05dfebf26aa44bf191c03bf26aac43e9a4120b32c95d8bf6ae324c00d93653f6e13a33e16449dbe1643343e0da6e1bfa30a1bc016d370bfa67e90bedea8403e548b0f32c9668ebf5eed04c0abe9393fb7750f3f2ae1cbbe090d32b326eadabec1ff4bbfeb26bebeeb263ebf309d0e3fe52270be23c85fc009ba88c0eb967e3ff5c707bdf0abcbbd1e4584b60d4523c03f3062c0a56d2fbf564b0b3fe2daf7be823f4abe400629c0e04456c0b3cd553fb3cdd53e9a42b7be71cc9bb7833f5ac088be8fc0232828bf014d103f883400bf0b78bbbe5fc0a0c0c96fcfc000000000cdcc4c3f9a9919bf5ac2f1b7fe9c88c0f364aec030aee6becb7a3f3f868bf9bef8108ebe03458bc0a251a6c010bbb73d72b24e3ffd4715bfca87f6349743a3c03cead6c0000000000000000000000000a1dadcbd4b2298bf5750febfc64e6c3f000000004fecc4be91494cb22c95d8bf6ae324c0429734bf5983023ff91afcbeca31a2b2c9668ebf5fed04c008223abf20450f3f1b9ccbbed2c333beba88e4bfae151bc0933d7e3f627ea93d627ea9bd7913023226eadabec1ff4bbfabd248bf009e163fabd248be6b4da23e6ff490bfbcf301c0e46c753f6fe2893e2e82bb3d3649b8b2b292ebbeae6848bf398ee3be398e63bf398ee33dca44ba3e508f6dbfdc6009c0661c763f017c803e42a2e73d8e8c0a3f22ccbfbf7d6f2cc031be7c3fed10163e31be7c3d51a4033f46dad9bf0d3120c071396e3fffe9b23e70ccdfbdf546403f07e62bc0c10e62c02f4e683fb2d1bd3eb27a4abe017d903f9d9f66c03e407dc05dba743fa597883e5a6bfa3d7e726e3fa8ea2fc0317252c02ef964bf000000002ef9e43e42ea683f494762c0781d88c07aaf613f2d41df3e191a39be7cb5b63fd9c090c0dba7a9c0b3647f3f1ce88c3d00000000d00e9b3f74bc93c09578b2c093117c3f2c2f023e6b08f53d61f4443f438b1ec053ab71c000667cbfab380cbe564fc4bd5b5d6b3fd39854c0d19a91c092117c3f352f023e7908f53d9f539e3ffc0c92c05149bbc034157c3f390e053e4ed3ed3da2f2e13e1f2499bf5465f4bf667672bf44a4a1be7a1d6bbdd1f6273f213ce1bf9ff213c0000000000000000000000000c202223f209f6ac03e407dc0c84d7c3fdb3328bddb33283ef546403f08e62bc0c10e62c0cbff3ebf9792b73e2da20fbf39db003f2aea33c0327252c02ff9643fbf2db7be4f62893e42ea683f4a4762c0781d88c048f221bf2205083fdd3f10bfeb57553f99c092c0dda7a9c00857643f053a98bd0857e43ed00e9b3f74bc93c09578b2c02ef9e43e000000002ef9643fae0f3b3e2123a1bf5565f4bf9a2f2e3f48598b3e9a2f2e3f51a4033f47dad9bf0e3120c09ca23bbfc167ba3efe1c13bf6b4da23e6ff490bfbdf301c0b6ec49bf0b38b93ea572febe6f4c973e223be9bf9ff213c06c4c69bf5df8c7be3e50053e3649b8b2b292ebbeae6848bf3839743f6b16593e6b16593e6b4da23e6ef490bfbdf301c0e46c75bf70e289be3182bbbd51a4033f46dad9bf0d3120c071396ebffde9b2be6eccdf3df546403f07e62bc0c10e62c0304e68bfb2d1bdbeb97a4a3e42ea683f4a4762c0771d88c00f8650bfc1cd03bf69d8883e5b5d6b3fd39854c0d19a91c034157cbf390e05be4ed3edbdd00e9b3f74bc93c09578b2c034157cbf390e05be4ed3edbd9f539e3ffc0c92c05149bbc034157cbf390e05be4ed3edbdd00e9b3f74bc93c09578b2c05d0e7cbf9b3a00be79eff9bd5b5d6b3fd39854c0d19a91c05d0e7cbf9b3a00be79eff9bd42ea683f4a4762c0771d88c05d0e7cbf9b3a00be79eff9bdf546403f07e62bc0c10e62c0ceff3e3f9492b7be29a20f3f42ea683f494762c0781d88c04af2213f200508bfdc3f103f51a4033f46dad9bf0d3120c09ba23b3fc367babefe1c133f6b4da23e6ef490bfbdf301c0b7ec493f0338b9bea472fe3eae3e85b60c4523c03e3062c06a3c4fbf2137e0be0236c83e71cc9bb7823f5ac088be8fc0eb924abf1bb3e9be9c49d03e5d74f1b7fd9c88c0f364aec03edd42bf21130bbf2a5ab53e62e2f1b7cfba81c0b7bfb7c0000080bfb5b4a2b7f67b1ab7ca87f6349743a3c03cead6c0000080bfb5b4a2b7f67b1ab7633e0c35f090a1c0a8addfc0000080bfc12fc5b7c990a0b65d74f1b7fd9c88c0f364aec0000080bfa9118cb7c1324bb72d6b92b32b95d8bf6ae324c00f9365bf6c13a3be16449d3ec29892b2c9668ebf5eed04c0aae939bfb9750fbf2be1cb3e127d85b60d4523c03f3062c0a66d2f3f534b0bbfdcdaf73eba359cb7843f5ac089be8fc02728283fff4c10bf8534003f3c3bf2b7fe9c88c0f364aec030aee63eca7a3fbf858bf93e26a737b32c95d8bf6be324c04797343f578302bff41afc3e9f1446b3c9668ebf5fed04c008223a3f20450fbf1c9ccb3e442c51b26baebebf665531c0b876723f84bd783efdac56be07ff46b3a95969bff9fa0cc0e547ed3e45c4473f00fad6be7367a92f26eadabec1ff4bbf01801e3fe0153e3fe6dc82be2a7a5db3c9668ebf5fed04c0000080bf771e26b2d2641b32bb140ab36baebebf675531c0549065bf85c19e3ea4afa1bec566ddb12c95d8bf6be324c0ffff7fbf9b20d9b31dbfe73252cf8236030c16c0beb870c0000080bfeeb80fb70698fab6660f9b37833f5ac089be8fc0000080bfeeb80fb70698fab6d27b9b37d0c04cc00c0e98c0000080bfb91312b7e4b9f3b6158482360c4523c03e3062c0ffff7fbf0a240db7cd0f01b7cb44babe518f6dbfdc6009c00000803f0000000000000000261799b2b292ebbeae6848bf6a41323f6a4132bf6a4132be6d4da2be6ff490bfbdf301c0e56c75bf6ce2893e3a82bb3d8f8c0abf22ccbfbf7d6f2cc000000000000000000000000051a403bf46dad9bf0e3120c071396ebffce9b23e66ccdfbdf54640bf08e62bc0c10e62c0304e68bfb1d1bd3eac7a4abe017d90bf9d9f66c03e407dc0d03b71bfb432ab3eef03793c43ea68bf494762c0791d88c07caf61bf2941df3e0e1a39be7f726ebfa8ea2fc0317252c0000000002ef964bf2ef9e43e7db5b6bfdac090c0dca7a9c060807fbf60807f3d00000000d10e9bbf74bc93c09678b2c094117cbf382f023e6408f53d62f444bf438b1ec053ab71c07343703f3de8afbe1d4b093d5b5d6bbfd39854c0d29a91c095117cbf412f023e6a08f53da0539ebffd0c92c05249bbc034157cbf480e053e35d3ed3da3f2e1be202499bf5565f4bf000000002ef964bf2ef9e4bed1f627bf213ce1bf9ff213c0000000000000000000000000c30222bf1f9f6ac03f407dc056077bbf00000000abd2483ef54640bf09e62bc0c10e62c0caff3e3f9c92b73e2aa20fbf43ea68bf4a4762c0791d88c047f2213f2405083fdb3f10bf3adb00bf2aea33c0327252c0a01d7fbf00000000c013aa3dec5755bf99c092c0dea7a9c0959c6bbf0e139dbdd257c43ed10e9bbf74bc93c09678b2c0d5000ebf000000004001553fb10f3bbe2123a1bf5565f4bf2ef964bf2ef9e43e0000000052a403bf47dad9bf0e3120c09ca23b3fc067ba3efe1c13bf704c97be223be9bf9ff213c0425b78bf00000000425b783e6d4da2be6ff490bfbef301c0bbec493ffc37b93ea072febe261799b2b292ebbeae6848bf3acd133f3acd133f3acd13bf6d4da2be6ff490bfbdf301c0e46c753f6ce289be3a82bbbd51a403bf46dad9bf0e3120c071396e3ffce9b2be66ccdf3df54640bf08e62bc0c10e62c0314e683fb1d1bdbeb17a4a3e43ea68bf494762c0781d88c01486503fbccd03bf5bd8883ea0539ebffd0c92c05249bbc033157c3f4a0e05be2bd3edbdd10e9bbf74bc93c09678b2c033157c3f4a0e05be2bd3edbd5b5d6bbfd39854c0d29a91c033157c3f4a0e05be2bd3edbd43ea68bf494762c0781d88c05d0e7c3fa93a00be67eff9bd5b5d6bbfd39854c0d29a91c05d0e7c3fa93a00be67eff9bdd10e9bbf74bc93c09678b2c05d0e7c3fa93a00be67eff9bdf54640bf08e62bc0c10e62c0cdff3ebf9992b7be29a20f3f43ea68bf494762c0791d88c04bf221bf210508bfdb3f103f52a403bf46dad9bf0e3120c09ca23bbfbc67babefb1c133f6d4da2be6ff490bfbef301c0bbec49bffc37b9be9f72fe3ee995e0b2c9668ebf5fed04c00000803f0620d53396ca91b3d2cfd1322b95d8bf6be324c00000803fd3523f347798e2b30000000000000000f719443ff2f7b13e132a443f2cad6b3e381d353f362da53ece14353f94e2553e0165613ee674fa3e99b6633e2397023f0e637f3eac9e013f06d2863e36950f3fa6c48c3e1f310b3f36f1723e5c960a3f9fb3853e08a9063f0dcb9d3eae9cff3eb8b99e3e9afa023f5933a83e2a34ff3eff03a03ece21fb3ebc633d3eac4e043fe43c353ef668f03eb6d1613e744be73edf52343e3ac3e13e07fb783eac2d133f1e9d503e048c113ffc88523f20718f3d72f74d3fc0048c3d1c274f3f0ce1093e88ec403f300aff3d12ef0e3efe14f63eeef10a3e8666e03e3b1e913d78d3d83e47ee993d1c3df43ec21f223e24fd0b3f8f2d133e1671043f5583193eaa2d1f3f1d3ab83d887e163f5583193eaa2d1f3f0f2aa63dc07c063f8179963eec32063fffdc8e3e57f3013f0435903eee05fa3eb8b9943ec860f43ea8fe813e9670f73e566a8c3ef892ef3e28983a3fb0363e3e18613c3f8e6f0d3fad19443fde32243fb919443facd10c3f24a4823e5a50ee3e720d583f282a603edc65573f000cab3edd19443ffa79e83ef6b3573fcecabb3e7dc0563f52f7e23ebe09353f7e2bb63e489e273fe222b63ecc0c353f048cdf3eaa35293f6659e13ec9844b3f0d860d3f96dc563fa823f23e4740353f7ca20e3f34d4293f8c73f03e360c353f78adf03e820f273f8484a53e7e1b273f6cd4543ed4c9303fe48a283e7e1b273f6cd4543edb13273cd95e5e3f24921f3ec621693f4f15273c9e886b3ffcbefb3d98887d3f5326273c6a4e513f257c263ca168433f6dd8253e2247573f48ae033fdb657c3fbe37053f08ce6a3f1f571a3ff0b27c3f156a1e3f053b6d3f95037d3f484e723f01107d3f13997c3f6103703fcc80723ff956723f4a9f7c3f95fc7c3f1881613f8926093f1eb95e3f32d50d3fae2c523ffa8f223f3e145e3f7796323f0fe54e3f3c13253fa2e9473f88027d3f3d75543f9b86703ff4c15a3f00bc2c3faed9733f43e7373f0aba7c3f9434243f70a97c3fe2ee493f29bf7c3f248f3e3fddfa5a3f5ee0453f47a7513fb2b4593ffc964e3f0f3e6f3fe7c0483ffa18543fec715d3f9ab8153f04aa3a3f42451c3f90c92b3fc1fa243f32863b3f69cd2c3f65c72b3f3876343fced8363f0015403f3897373f3585413fa6c72b3f26d85f3f64ee2b3f4ed55a3f7df33c3ff4bf723fe4f13a3f900e7d3f101d2c3f5cf9eb3d796a363fb875183e363c453f690e253c0ce7363f219e5b3f5e12663f5a77463f7d06753f51c93c3f5b7d773f5418a63e834f713f76999d3ec8a17b3ffb03ae3e2d48773f11883e3f453c713fd26c993e0bb8643f4c88833e2bc5733f24c1893e4a2d783fb419873ed41e7e3f2fa0813e8c35653fe0a7273e49da693ff546173e3402743f720f543eb724793ffb394f3e4ecd5b3f47fb523ed6c2633f20206e3e59b8593f67e4673e95eb713fcf90503f3e82193f6f6c513fb85c133fc76c4a3fb50b173f235a4c3f3779103ffd88523fba190c3fdfd9503f279a253f5d61503f944b1f3ff3364a3f3cdc253f17b8493f82681e3f6444b83eacaf5a3fedb9c03ef71b683f8655923ef87e583f0ba84e3f0a77673f185b603f4d0e1b3fe9ca673f6e7f163f05a4663fa103123f5321653f7a1d263f6fdf653fd68f203f1a616d3f56dc193fc0616b3f5f031b3faeb26d3fb2491b3fc2736f3f1a9a1b3fe8046f3f6e821d3fbe126c3f14aa213f087b6d3faf261f3fc0ac6a3f1c7c1d3f26526d3f05dc1d3f20336d3fe8ce183f64646d3f9bae173fa4ae6a3fcc6a183ff8486c3ff6a4143f3c8c693f3abf153f76596a3f3ec00f3fa8376b3f3098103f9991683f0020263fde296a3f4430263fedb6683fae86203fac4d6b3fdcaf253fc6226c3f68fa103f844e6e3f1aae0d3f8680693f0fd9273f84e46c3f646f2a3f9653743f8c0d1a3f38fa733f65e91b3f1e95793fc58e1a3fa880783fa8381c3f0657753f8030173fc8cb7a3f6a02193f3490793f161c1e3f944a743f40cf1d3faab27a3f2623203f8812753fe4a3203fba677a3fc05b1c3f380b7f3f2e121d3f5ae8783ff036223f0eab733f2a8e223fd4f7773ffde2233f56a9723f7c15243f804c733fd89e203fb685793f0a26203fb21e793fd06e253f5a70733f37bf253fc6127a3f324c273f3a44743fdcb5273f7ea5793f68d1233f9af57d3f9196233f7a39743f06ff103fde80733fc268123fdada793f068b123fdabd783f61f8133fce2a753f5a650f3f60ec7a3fd6ff103fd046793f05d9153fe268743ff94b143fa0ec793fefcc173ff079733f16f0153f8c977a3fb295143fec6b7e3fa496153f8e446d3ff5e31c3f52726f3fb624213fa8be6d3f613b213f36e26f3f835e153f0a356e3f35dc143f28126f3f6a8c193f1b5e683ff4021c3fc46d6e3f5de5223fcc5a6d3f0c48243f2a136d3fa817213fc8756e3f8a1f283f0ac26d3fa80f263fe4436e3f16d9103ffe976e3fef720f3f48696f3fe7ca0d3f008b6f3fe4be123f52076d3f5213143f3df0a93d4f2c333fc60e603c04c3223f9bdb6f3ce219d93e1b426b3ceeabf63ee109383c68c2093ffbb81d3c95c4153f102d3e3e14a9553ef0c83a3e7c2f2c3e78cac03d4448653efe5fc93d10a52b3e5e7b8a3d98da2a3e7faa213ddcba1f3e02aa343dec553c3ef3e5943ea02b1a3e17ff7c3e085a203ead7d7b3e5c30403e3bab4b3e5099843e0b87af3d145d8e3ea7a86c3ccc20363eedd1663cc4324f3eedd51f3d9cde563eb0ab213d14420e3e4452af3c781a113ed578c93d3443183e06da393e486a193e117a893db888163e310d0d3d600be23dc815663dd041d63dc85c923e48cd7a3eccf2bb3e148c8a3e95e7ae3e34ea1a3ee21a223e02caaf3eba2a2a3d9c39883e8bbc873c8297853ed8638a3ce66c973e336b153f26cc183f336b153f26cc183ffedf143fa24e1d3f336b153f26cc183f04708a3e2e15ac3ed4bbd63d2012ef3d5c7d1d3e5ce1003edb0a4c3e10ffe93dfd2c953e905c033effee633e9024ef3d4bec7c3e486f0b3e747de33ed044103fc53dfd3ebaa9173fa09bfb3ed020083f01ae053f09890e3fdc1d113f36be143ff9b10f3f32931b3fff27ee3e7a3df13e9968dc3e28e7e23e665dd33e2f2b063f91ccf43ee1fc013f4d07aa3de0f4e33db27f073f88d8243f912c0e3fdc4b253fd342113fb8791f3f6b13b03ea4c5033e6c66dd3ee8101e3e27b0b03e8250023f1e6ceb3ee90f223f03f4c93e41c8163f0897843d42749e3e0278b63e52f8d03e5590113ffce4223fd5ff4a3f5fdb293f1c1c2a3f14f9483f1b4a303faabc4f3f991e3a3fc012363fa2f53d3f9e52503fa5984f3f05a2403fd3f6483fc4fc4f3fd3f6483fc4fc4f3fa2f53d3f9e52503ffb6a193f3675a23ecd78143f9885fd3dfa3b103f48e49b3efcbd0c3f78bdd33e24e1163f1875dc3e13f0023f0a3b083f451f103f6cc3103fec3d243fda38a83ea7ce263f1e02e83ec9871a3f1635e03e86552c3fc199253f42b0183fdb9c203fed05fc3efe93c63eeebdea3e1644e83e994f083f007fd03ed050013f3479fa3ed1e4063ffae3943e1f5bc73e8af1cf3ef0edde3e5aa3dc3edf7edf3e5c80b83edecef13ed67ac13e2113fa3ec00e8e3ece14353f94e2553e132a443f2cad6b3e381d353f362da53ef719443ff2f7b13e0e637f3eac9e013f99b6633e2397023f0165613ee674fa3e36f1723e5c960a3f9fb3853e08a9063f0dcb9d3eae9cff3ebc633d3eac4e043fe43c353ef668f03e1e9d503e048c113f88ec403f300aff3d72f74d3fc0048c3d12ef0e3efe14f63e47ee993d1c3df43ec21f223e24fd0b3f8f2d133e1671043f1d3ab83d887e163f5583193eaa2d1f3f0f2aa63dc07c063fffdc8e3e57f3013f0435903eee05fa3ea8fe813e9670f73e28983a3fb0363e3eb919443facd10c3fad19443fde32243f18613c3f8e6f0d3fdc65573f000cab3e7dc0563f52f7e23edd19443ffa79e83ef6b3573fcecabb3eaa35293f6659e13e489e273fe222b63ecc0c353f048cdf3ebe09353f7e2bb63e96dc563fa823f23ec9844b3f0d860d3f360c353f78adf03e34d4293f8c73f03e4740353f7ca20e3f820f273f8484a53ed4c9303fe48a283e24921f3ec621693fdb13273cd95e5e3f6dd8253e2247573f257c263ca168433f5326273c6a4e513f156a1e3f053b6d3fbe37053f08ce6a3f6103703fcc80723f95037d3f484e723f95037d3f484e723f95fc7c3f1881613f7796323f0fe54e3f32d50d3fae2c523ffa8f223f3e145e3f8926093f1eb95e3f3c13253fa2e9473f9b86703ff4c15a3f88027d3f3d75543f00bc2c3faed9733f5ee0453f47a7513f248f3e3fddfa5a3ffa18543fec715d3f0f3e6f3fe7c0483fb2b4593ffc964e3fc1fa243f32863b3f9ab8153f04aa3a3f0015403f3897373f3876343fced8363f4ed55a3f7df33c3ff4bf723fe4f13a3fb875183e363c453f219e5b3f5e12663f5a77463f7d06753f51c93c3f5b7d773ffb03ae3e2d48773f76999d3ec8a17b3f5418a63e834f713f11883e3f453c713f24c1893e4a2d783f4c88833e2bc5733fd26c993e0bb8643fb419873ed41e7e3f2fa0813e8c35653f720f543eb724793ff546173e3402743fe0a7273e49da693f20206e3e59b8593f47fb523ed6c2633ffb394f3e4ecd5b3f67e4673e95eb713fc76c4a3fb50b173f6f6c513fb85c133fcf90503f3e82193f235a4c3f3779103ffd88523fba190c3ff3364a3f3cdc253f5d61503f944b1f3fdfd9503f279a253f17b8493f82681e3fedb9c03ef71b683f6444b83eacaf5a3f8655923ef87e583f0ba84e3f0a77673fe9ca673f6e7f163f185b603f4d0e1b3f05a4663fa103123f6fdf653fd68f203f5321653f7a1d263faeb26d3fb2491b3fc0616b3f5f031b3f1a616d3f56dc193fe8046f3f6e821d3fc2736f3f1a9a1b3f26526d3f05dc1d3f087b6d3faf261f3fc0ac6a3f1c7c1d3fbe126c3f14aa213ff8486c3ff6a4143f64646d3f9bae173fa4ae6a3fcc6a183f20336d3fe8ce183fa8376b3f3098103f76596a3f3ec00f3f3c8c693f3abf153fedb6683fae86203fde296a3f4430263f9991683f0020263fac4d6b3fdcaf253fc6226c3f68fa103f844e6e3f1aae0d3f84e46c3f646f2a3f8680693f0fd9273fa880783fa8381c3f38fa733f65e91b3f1e95793fc58e1a3f9653743f8c0d1a3fc8cb7a3f6a02193f0657753f8030173faab27a3f2623203f944a743f40cf1d3f3490793f161c1e3f8812753fe4a3203fba677a3fc05b1c3f380b7f3f2e121d3f56a9723f7c15243f0eab733f2a8e223fd4f7773ffde2233f5ae8783ff036223fb685793f0a26203f804c733fd89e203fc6127a3f324c273f5a70733f37bf253fb21e793fd06e253f3a44743fdcb5273f7ea5793f68d1233f9af57d3f9196233fdabd783f61f8133fde80733fc268123fdada793f068b123f7a39743f06ff103f60ec7a3fd6ff103fce2a753f5a650f3fa0ec793fefcc173fe268743ff94b143fd046793f05d9153ff079733f16f0153f8c977a3fb295143fec6b7e3fa496153f8e446d3ff5e31c3fa8be6d3f613b213f52726f3fb624213f28126f3f6a8c193f0a356e3f35dc143f36e26f3f835e153f1b5e683ff4021c3fc46d6e3f5de5223fcc5a6d3f0c48243f2a136d3fa817213fc8756e3f8a1f283f0ac26d3fa80f263fe4436e3f16d9103ffe976e3fef720f3f48696f3fe7ca0d3f008b6f3fe4be123f52076d3f5213143fc60e603c04c3223f1b426b3ceeabf63ee109383c68c2093ffbb81d3c95c4153fc60e603c04c3223ffe5fc93d10a52b3ef0c83a3e7c2f2c3e78cac03d4448653e102d3e3e14a9553e5e7b8a3d98da2a3e02aa343dec553c3e7faa213ddcba1f3ead7d7b3e5c30403e17ff7c3e085a203ef3e5943ea02b1a3e0b87af3d145d8e3e3bab4b3e5099843eedd1663cc4324f3ea7a86c3ccc20363eedd51f3d9cde563e4452af3c781a113eb0ab213d14420e3e06da393e486a193ed578c93d3443183e117a893db888163e310d0d3d600be23dc815663dd041d63d95e7ae3e34ea1a3eccf2bb3e148c8a3ec85c923e48cd7a3ee21a223e02caaf3eba2a2a3d9c39883e8bbc873c8297853ed8638a3ce66c973efedf143fa24e1d3f336b153f26cc183f336b153f26cc183f336b153f26cc183f04708a3e2e15ac3e5c7d1d3e5ce1003ed4bbd63d2012ef3ddb0a4c3e10ffe93d4bec7c3e486f0b3effee633e9024ef3dfd2c953e905c033e01ae053f09890e3fc53dfd3ebaa9173fa09bfb3ed020083f747de33ed044103ff9b10f3f32931b3fdc1d113f36be143f665dd33e2f2b063f9968dc3e28e7e23eff27ee3e7a3df13e91ccf43ee1fc013f4d07aa3de0f4e33dd342113fb8791f3f912c0e3fdc4b253fb27f073f88d8243f6b13b03ea4c5033e6c66dd3ee8101e3e27b0b03e8250023f03f4c93e41c8163f1e6ceb3ee90f223f0897843d42749e3e0278b63e52f8d03e5590113ffce4223fd5ff4a3f5fdb293f1b4a303faabc4f3fa2f53d3f9e52503fd3f6483fc4fc4f3ffa3b103f48e49b3efb6a193f3675a23e24e1163f1875dc3efcbd0c3f78bdd33e451f103f6cc3103f13f0023f0a3b083fec3d243fda38a83ec9871a3f1635e03ea7ce263f1e02e83e42b0183fdb9c203f86552c3fc199253fd050013f3479fa3eeebdea3e1644e83e994f083f007fd03eed05fc3efe93c63ed1e4063ffae3943edecef13ed67ac13ef0edde3e5aa3dc3edf7edf3e5c80b83e1f5bc73e8af1cf3e2113fa3ec00e8e3e61c90f3f20d3f43d6c66dd3ee8101e3e04708a3e2e15ac3e8003583e9270df3e61c2a43e42edd23e0a4ee03e6cef9e3e57f4d83da876d43e0897843d42749e3e7a15853c8ac5c63e6c66dd3ee8101e3e61c90f3f20d3f43d61c2a43e42edd23e8003583e9270df3e04708a3e2e15ac3ee21a223e02caaf3e0a4ee03e6cef9e3e57f4d83da876d43e7a15853c8ac5c63e0897843d42749e3ed8638a3ce66c973eccf2bb3e148c8a3ee21a223e02caaf3ed8638a3ce66c973eccf2bb3e148c8a3ee21a223e02caaf3e0897843d42749e3edb13273cd95e5e3f4f15273c9e886b3f257c263ca168433f5326273c6a4e513f690e253c0ce7363fdb13273cd95e5e3f257c263ca168433f5326273c6a4e513fcd78143f9885fd3dfb6a193f3675a23efcbd0c3f78bdd33ec9871a3f1635e03eed05fc3efe93c63ed1e4063ffae3943edf7edf3e5c80b83efb6a193f3675a23efcbd0c3f78bdd33ec9871a3f1635e03eed05fc3efe93c63ed1e4063ffae3943edf7edf3e5c80b83e0edd5b3f0607a93ec638723f222de43e6bbc6d3f0ab4973ee5be7c3f0a54e43e18d47c3fda13923ec3c25a3f685e093ec3a87c3f60b4db3c72d2603fa0fbea3e04b07c3f14ff073f02ee743f2aca093fbff6653fdafefe3e12d16d3f439a0b3f08ac363f3cd5703fc0c4363f15af623f371d403f08e76f3fd3122d3f3810723fa7c5223f16306e3ffb092e3f3c32653fb12d323fa6885d3f6bbc6d3f0ab4973ec638723f222de43e0edd5b3f0607a93ec3c25a3f685e093e72d2603fa0fbea3e02ee743f2aca093fbff6653fdafefe3e12d16d3f439a0b3f371d403f08e76f3fc0c4363f15af623f08ac363f3cd5703ffb092e3f3c32653fa7c5223f16306e3fd3122d3f3810723f6bbc6d3f0ab4973ec638723f222de43ee5be7c3f0a54e43e18d47c3fda13923efb092e3f3c32653f6bbc6d3f0ab4973ec638723f222de43ec0c4363f15af623ffb092e3f3c32653f5e4abb3e88e54a3f8235543ec08b483fa241bf3e1b53383f2a405f3ee6213b3f764ab83e48a4153fbcbfae3e8a7a2a3fc5cc943e9ceb123f54554f3ea92f253f2db0583e207b303fc932ac3eb80b013fe98c3d3e9307533f2f9f8e3e38c3553f5e4abb3e88e54a3fa241bf3e1b53383f8235543ec08b483f2a405f3ee6213b3f2db0583e207b303fbcbfae3e8a7a2a3f764ab83e48a4153fe98c3d3e9307533f2f9f8e3e38c3553f8235543ec08b483f2a405f3ee6213b3fc5cc943e9ceb123f2db0583e207b303f8235543ec08b483f2a405f3ee6213b3f2db0583e207b303f4828e83ec002773d8c4fce3ef096ea3d2f29e83e3016e03d82a1cc3e30b3803d3b035d3d2801b53dbd1ab13e08e5853d55f5fe3cf08e4c3de975b43ea817f53d5f27e83e0064373c77f3ca3e807b363c8fbfad3ec092353c74c8073cc06c3c3c802b2d3f588dcc3d87d7013f109f6c3d6901013f8095d53db79e2e3ff0e45f3d4f4c7a3f0025433c8c4fce3ef096ea3d4828e83ec002773d2e29e83e3816e03d82a1cc3e30b3803d3b035d3d2801b53dbd1ab13e08e5853de975b43ea817f53d55f5fe3cf08e4c3d802b2d3f588dcc3d87d7013f109f6c3db79e2e3ff0e45f3d6901013f8095d53d4f4c7a3f0025433cb79e2e3ff0e45f3d4f4c7a3f0025433c3702303f40113a3ca4ad023fc04c383c87d7013f109f6c3de664da3e90347c3de975b43ea817f53d5e3cdb3e9056e53dbd1ab13e08e5853d3b035d3d2801b53d55f5fe3cf08e4c3d6c8dd93ec0ef363c8fbfad3ec092353c74c8073cc06c3c3c802b2d3f588dcc3d6901013f8095d53de975b43ea817f53de664da3e90347c3d5e3cdb3e9056e53dbd1ab13e08e5853d3b035d3d2801b53d55f5fe3cf08e4c3d802b2d3f588dcc3d87d7013f109f6c3db79e2e3ff0e45f3d6901013f8095d53d4f4c7a3f0025433cb79e2e3ff0e45f3d87d7013f109f6c3de664da3e90347c3dbd1ab13e08e5853d8fbfad3ec092353c55f5fe3cf08e4c3d74c8073cc06c3c3c55f5fe3cf08e4c3d8fbfad3ec092353cbd1ab13e08e5853de664da3e90347c3dbd1ab13e08e5853d87d7013f109f6c3db79e2e3ff0e45f3d4828e83ec002773d82a1cc3e30b3803dbd1ab13e08e5853d8fbfad3ec092353c55f5fe3cf08e4c3d74c8073cc06c3c3cbd1ab13e08e5853d87d7013f109f6c3db79e2e3ff0e45f3d4828e83ec002773d82a1cc3e30b3803dbd1ab13e08e5853d87d7013f109f6c3db79e2e3ff0e45f3da4ad023fc04c383c3702303f40113a3c4f4c7a3f0025433cb79e2e3ff0e45f3da4ad023fc04c383c87d7013f109f6c3d5f27e83e0064373c82a1cc3e30b3803d77f3ca3e807b363c4828e83ec002773d3702303f40113a3c4f4c7a3f0025433cb79e2e3ff0e45f3da4ad023fc04c383c87d7013f109f6c3de664da3e90347c3de975b43ea817f53dbd1ab13e08e5853d5e3cdb3e9056e53d3b035d3d2801b53d55f5fe3cf08e4c3d6c8dd93ec0ef363c8fbfad3ec092353c74c8073cc06c3c3c802b2d3f588dcc3d6901013f8095d53de975b43ea817f53de664da3e90347c3dbd1ab13e08e5853d5e3cdb3e9056e53d3b035d3d2801b53d55f5fe3cf08e4c3d802b2d3f588dcc3d87d7013f109f6c3d6901013f8095d53db79e2e3ff0e45f3d4f4c7a3f0025433cb79e2e3ff0e45f3d87d7013f109f6c3de664da3e90347c3dbd1ab13e08e5853d74c8073cc06c3c3c55f5fe3cf08e4c3d8fbfad3ec092353cbd1ab13e08e5853d8fbfad3ec092353c55f5fe3cf08e4c3de664da3e90347c3dbd1ab13e08e5853d87d7013f109f6c3db79e2e3ff0e45f3db79e2e3ff0e45f3d87d7013f109f6c3d00000000000000000000003f0000003f0000000000000000000000000100000000000000000000000000803f000000000000000000000000000000000200000000000000000000000000003f0000003f0000000000000000000000000100000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000003d75663f1a56cc3d000000000000000002000000040000000000000000000000ebe5733f4ea1413d0000000000000000020000000400000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000005ff22d3f431ba43e000000000000000002000000040000000000000000000000b01f353f9fc0953e0000000000000000020000000400000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000030000000000000002000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000003f0000003f0000000000000000000000000100000000000000000000000000003f0000003f0000000000000000010000000600000000000000000000000000003f0000003f0000000000000000010000000000000000000000000000000000003f0000003f0000000000000000010000000600000000000000000000000000003f0000003f0000000000000000000000000100000000000000000000000000003f0000003f0000000000000000010000000000000000000000000000000000003f0000003f0000000000000000010000000600000000000000000000000000003f0000003f0000000000000000010000000600000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000003f0000003f0000000000000000010000000600000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000003f0000003f0000000000000000010000000600000000000000000000000000003f0000003f0000000000000000010000000600000000000000000000000000003f0000003f0000000000000000000000000100000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000002000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000003f0000003f0000000000000000070000000800000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000003f0000003f0000000000000000070000000800000004000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000002000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000070000000a00000004000000090000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000b00000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000b00000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000000b0000000a00000004000000090000000000803f0000000000000000000000000b0000000a00000004000000090000000000803f0000000000000000000000000b0000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000b00000000000000000000000000803f0000000000000000000000000b0000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f0000000000000000000000000b0000000400000000000000000000000000003f0000003f00000000000000000b0000000c00000004000000090000000000003f0000003f00000000000000000b0000000c00000004000000000000000000803f0000000000000000000000000b0000000a00000004000000090000000000803f0000000000000000000000000b0000000a00000004000000090000000000003f0000003f00000000000000000b0000000c00000004000000000000000000003f0000003f00000000000000000b0000000c00000004000000000000000000003f0000003f00000000000000000b0000000c00000004000000090000000000803f0000000000000000000000000b0000000400000000000000000000000000803f0000000000000000000000000b0000000a00000004000000090000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f0000000000000000000000000c0000000a000000040000000d0000000000003f0000003f00000000000000000d0000000c00000004000000090000000000003f0000003f00000000000000000d0000000c00000004000000000000000000003f0000003f00000000000000000d0000000c00000004000000000000000000003f0000003f00000000000000000d0000000c00000004000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000003f0000003f00000000000000000d0000000c00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000003f0000003f00000000000000000d0000000c00000004000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000003f0000003f00000000000000000d0000000c00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000003f0000003f00000000000000000d0000000c00000004000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000003f0000003f00000000000000000d0000000c00000004000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000003f0000003f00000000000000000d0000000c00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000400000000000000000000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f0000000000000000000000000d0000000a00000004000000090000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000002000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000f0000000e00000010000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000803f0000000000000000000000000f0000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f00000000000000000e0000001100000012000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000003f0000003f00000000000000000e0000001000000000000000000000000000003f0000003f00000000000000000f0000001000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000f0000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000000f0000000300000000000000000000000000003f0000003f00000000000000000e0000001200000000000000000000000000003f0000003f0000000000000000110000001200000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000003f0000003f00000000000000000e0000001000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000000f0000000300000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000000f0000000300000000000000000000000000003f0000003f00000000000000000e0000001200000000000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000003f0000003f00000000000000000e0000001100000012000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000003f0000003f00000000000000000e0000001200000000000000000000000000003f0000003f00000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000003f0000003f00000000000000000f0000000e00000000000000000000000000803f0000000000000000000000000f0000000000000000000000000000000000003f0000003f00000000000000000e0000001100000012000000000000000000803f000000000000000000000000110000000000000000000000000000000000003f0000003f00000000000000000e0000001200000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000f0000000300000000000000000000000000003f0000003f00000000000000000f0000001000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000003f0000003f0000000000000000110000001200000000000000000000000000003f0000003f00000000000000000e0000001000000000000000000000000000003f0000003f00000000000000000e0000001200000000000000000000000000003f0000003f00000000000000000f0000001000000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000000b0000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000070000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000130000000a00000004000000090000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000130000000a00000004000000090000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000140000000200000000000000000000000000003f0000003f0000000000000000140000001500000000000000000000000000003f0000003f0000000000000000140000001500000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000003b75663f2756cc3d0000000000000000020000000400000000000000000000000000803f000000000000000000000000030000000200000000000000000000005af22d3f4c1ba43e000000000000000002000000040000000000000000000000ae1f353fa4c0953e0000000000000000020000000400000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000030000001400000002000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000003f0000003f0000000000000000140000001500000000000000000000000000003f0000003f0000000000000000150000001600000000000000000000000000003f0000003f0000000000000000150000001600000000000000000000000000003f0000003f0000000000000000140000001500000000000000000000000000003f0000003f0000000000000000150000001600000000000000000000000000003f0000003f0000000000000000140000001500000000000000000000000000003f0000003f0000000000000000150000001600000000000000000000000000003f0000003f0000000000000000140000001500000000000000000000000000003f0000003f0000000000000000150000001600000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000003f0000003f0000000000000000150000001600000000000000000000000000003f0000003f0000000000000000150000001600000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000003f0000003f0000000000000000140000001500000000000000000000000000803f000000000000000000000000030000001400000002000000000000000000003f0000003f0000000000000000070000001700000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000003f0000003f0000000000000000070000001700000004000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000001400000002000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000180000000300000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000180000000300000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000001900000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000001900000000000000000000000000803f000000000000000000000000190000000a00000004000000090000000000803f000000000000000000000000190000000a00000004000000090000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000190000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000190000000a00000004000000090000000000803f000000000000000000000000030000001900000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000190000000400000000000000000000000000803f000000000000000000000000190000000a00000004000000090000000000003f0000003f0000000000000000190000001a00000004000000000000000000003f0000003f0000000000000000190000001a00000004000000090000000000803f000000000000000000000000190000000a00000004000000090000000000003f0000003f0000000000000000190000001a00000004000000000000000000803f000000000000000000000000190000000400000000000000000000000000003f0000003f0000000000000000190000001a00000004000000090000000000003f0000003f0000000000000000190000001a00000004000000000000000000803f000000000000000000000000190000000a00000004000000090000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000003f0000003f00000000000000001b0000001a00000004000000090000000000803f0000000000000000000000001a0000000a000000040000001b0000000000003f0000003f00000000000000001b0000001a00000004000000000000000000003f0000003f00000000000000001b0000001a00000004000000000000000000003f0000003f00000000000000001b0000001a00000004000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000003f0000003f00000000000000001b0000001a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000003f0000003f00000000000000001b0000001a00000004000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000003f0000003f00000000000000001b0000001a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000003f0000003f00000000000000001b0000001a00000004000000000000000000003f0000003f00000000000000001b0000001a00000004000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000003f0000003f00000000000000001b0000001a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000400000000000000000000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f0000000000000000000000001b0000000a00000004000000090000000000803f000000000000000000000000030000001400000002000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000001400000002000000000000000000003f0000003f0000000000000000180000001c00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f000000000000000000000000180000001c0000001d000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f00000000000000001c0000001e0000001f000000000000000000803f000000000000000000000000180000000000000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f0000000000000000180000001c00000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000003f0000003f00000000000000001e0000001f00000000000000000000000000003f0000003f00000000000000001c0000001f00000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000803f000000000000000000000000180000000300000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000180000000300000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000003f0000003f00000000000000001c0000001f00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f0000000000000000180000001c00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f00000000000000001e0000001c00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000003f0000003f0000000000000000180000001c00000000000000000000000000003f0000003f00000000000000001c0000001f00000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000003f0000003f00000000000000001e0000001c00000000000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000180000000300000000000000000000000000003f0000003f0000000000000000180000001d00000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000003f0000003f00000000000000001e0000001f00000000000000000000000000003f0000003f00000000000000001c0000001f00000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000003f0000003f0000000000000000180000001d00000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000803f000000000000000000000000180000000300000000000000000000000000803f000000000000000000000000190000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000070000000a00000004000000090000000000803f000000000000000000000000200000000a00000004000000090000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000200000000a00000004000000090000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000070000000400000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000003f0000003f00000000000000000e0000001200000000000000000000000000003f0000003f00000000000000000e0000001000000000000000000000000000003f0000003f0000000000000000120000000e00000000000000000000000000003f0000003f0000000000000000110000001200000000000000000000000000003f0000003f0000000000000000100000000f00000000000000000000000000003f0000003f00000000000000000f0000001000000000000000000000000000003f0000003f00000000000000000f0000001000000004000000090000000000803f0000000000000000000000001e0000000000000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000003f0000003f00000000000000001f0000001c00000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000003f0000003f00000000000000001c0000001f00000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000003f0000003f00000000000000001e0000001f00000000000000000000000000003f0000003f00000000000000001d0000001800000000000000000000000000003f0000003f0000000000000000180000001d00000004000000000000000000003f0000003f0000000000000000180000001d00000000000000000000000000803f000000000000000000000000180000000300000000000000000000000000003f0000003f0000000000000000110000001200000000000000000000000000003f0000003f00000000000000000e0000001000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f00000000000000001e0000001f00000000000000000000000000003f0000003f00000000000000001c0000001d00000000000000000000000000003f0000003f0000000000000000180000001d00000000000000000000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000070000000a00000004000000090000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000070000000a00000004000000090000000000803f000000000000000000000000130000000400000000000000000000000000803f000000000000000000000000070000000a00000004000000090000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000200000000a00000004000000090000000000803f000000000000000000000000070000000a00000004000000090000000000803f000000000000000000000000200000000400000000000000000000000000803f000000000000000000000000050000000200000000000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000050000000200000021000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000050000000200000021000000000000000000803f000000000000000000000000210000000200000000000000000000000000803f000000000000000000000000210000000000000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f00000000000000000000000004000000020000000000000000000000c50d7e3fa71df93b0000000000000000020000000400000000000000000000000000803f00000000000000000000000004000000020000000000000000000000a27b6f3fed22843d0000000000000000020000000400000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000050000000200000021000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000210000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f00000000000000000000000004000000020000000000000000000000a07b6f3ffe22843d0000000000000000020000000400000000000000000000000000803f00000000000000000000000004000000020000000000000000000000c50d7e3f691df93b0000000000000000020000000400000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000050000000200000021000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000050000000200000021000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000050000000200000021000000000000000000803f000000000000000000000000040000000200000005000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000040000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000002000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000001400000002000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000200000000000000000000003333333f9a99993e0000000000000000220000002300000000000000000000003333333f9a99993e0000000000000000230000002200000000000000000000003333333f9a99993e0000000000000000220000002300000024000000000000003333333f9a99993e0000000000000000230000002200000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000003333333f9a99993e0000000000000000220000002300000000000000000000003333333f9a99993e0000000000000000230000002200000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000803f000000000000000000000000260000000a00000004000000090000000000003f0000003f0000000000000000260000002200000027000000280000000000003f0000003f0000000000000000260000002200000027000000000000000000803f000000000000000000000000260000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000003333333f9a99993e0000000000000000230000002200000000000000000000003333333f9a99993e0000000000000000220000002300000000000000000000003333333f9a99993e0000000000000000220000002300000009000000000000003333333f9a99993e0000000000000000230000002200000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000803f000000000000000000000000260000000a00000004000000090000000000003f0000003f0000000000000000260000002200000027000000280000000000803f000000000000000000000000260000000a00000004000000090000000000003f0000003f0000000000000000260000002200000028000000000000000000803f000000000000000000000000030000000a00000004000000090000000000003f0000003f0000000000000000290000002700000004000000000000000000803f000000000000000000000000030000000400000000000000000000000000003f0000003f0000000000000000290000002700000004000000090000003333333f9a99993e0000000000000000270000002400000000000000000000003333333f9a99993e0000000000000000270000002400000000000000000000000000803f000000000000000000000000240000000000000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000000000803f000000000000000000000000240000000000000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f000000000000000000000000240000000000000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000003f0000003f0000000000000000290000002700000004000000000000003333333f9a99993e0000000000000000270000002400000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000000000803f000000000000000000000000240000000000000000000000000000000000803f000000000000000000000000240000000000000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000003f0000003f0000000000000000290000002700000004000000000000003333333f9a99993e0000000000000000270000002400000000000000000000000000003f0000003f0000000000000000290000002700000004000000000000003333333f9a99993e0000000000000000270000002400000000000000000000000000803f000000000000000000000000030000000400000000000000000000000000003f0000003f0000000000000000290000002700000004000000000000003333333f9a99993e0000000000000000270000002400000000000000000000000000803f000000000000000000000000240000000000000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000000000803f000000000000000000000000240000000000000000000000000000003333333f9a99993e00000000000000002a0000002400000000000000000000003333333f9a99993e0000000000000000270000002400000000000000000000000000003f0000003f0000000000000000290000002700000004000000000000003333333f9a99993e0000000000000000220000002300000000000000000000003333333f9a99993e0000000000000000230000002200000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000003f0000003f0000000000000000260000002200000027000000280000000000803f000000000000000000000000260000000a00000004000000090000003333333f9a99993e0000000000000000220000002300000000000000000000003333333f9a99993e0000000000000000230000002200000000000000000000000000003f0000003f0000000000000000250000002300000000000000000000000000003f0000003f0000000000000000260000002200000027000000280000000000803f000000000000000000000000260000000a00000004000000090000000000003f0000003f0000000000000000260000002200000000000000000000000000803f000000000000000000000000260000000a00000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000803f000000000000000000000000260000000a00000004000000090000000000003f0000003f0000000000000000260000002200000000000000000000000000003f0000003f0000000000000000260000002200000027000000280000003333333f9a99993e0000000000000000220000002300000000000000000000003333333f9a99993e0000000000000000230000002200000000000000000000003333333f9a99993e0000000000000000230000002200000000000000000000003333333f9a99993e0000000000000000220000002300000000000000000000000000003f0000003f00000000000000002b0000002800000004000000090000000000803f000000000000000000000000030000000400000000000000000000000000003f0000003f00000000000000002b0000002800000004000000090000003333333f9a99993e0000000000000000280000000900000000000000000000003333333f9a99993e0000000000000000280000000900000000000000000000000000803f000000000000000000000000090000000000000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000000000803f000000000000000000000000090000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f000000000000000000000000090000000000000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000003f0000003f00000000000000002b0000002800000004000000000000003333333f9a99993e0000000000000000280000000900000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000000000803f000000000000000000000000090000000000000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000000000803f000000000000000000000000090000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000003f0000003f00000000000000002b0000002800000004000000000000003333333f9a99993e0000000000000000280000000900000000000000000000003333333f9a99993e0000000000000000280000000900000000000000000000000000003f0000003f00000000000000002b0000002800000004000000000000000000803f000000000000000000000000030000000400000000000000000000000000003f0000003f00000000000000002b0000002800000004000000090000003333333f9a99993e0000000000000000280000000900000000000000000000000000803f000000000000000000000000090000000000000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f000000000000000000000000090000000000000000000000000000003333333f9a99993e00000000000000000a0000000900000000000000000000003333333f9a99993e0000000000000000280000000900000000000000000000000000003f0000003f00000000000000002b0000002800000004000000000000000000803f000000000000000000000000260000000a00000004000000090000000000003f0000003f000000000000000026000000220000002700000028000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0, y: -2.2472634, z: -2.6491158} + m_Extent: {x: 3.4965708, y: 2.8547373, z: 4.340832} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh.meta new file mode 100644 index 0000000000..f854921fd3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f04e143ee1fd43b4da0d704fd8399b0a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab new file mode 100644 index 0000000000..a04f8fb4d9 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab @@ -0,0 +1,205 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2682173606997645345 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6757973198582644103} + - component: {fileID: 9011603117118766618} + - component: {fileID: 599540543168837306} + - component: {fileID: 1161985903585071733} + m_Layer: 0 + m_Name: "\u5996\u65CF\u98DE\u884C\u517D\u51E4\u51F0new_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6757973198582644103 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2682173606997645345} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &9011603117118766618 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2682173606997645345} + m_Mesh: {fileID: 4300000, guid: f04e143ee1fd43b4da0d704fd8399b0a, type: 2} +--- !u!137 &599540543168837306 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2682173606997645345} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 6febc189e3cc4cd4980ed24ea6a05965, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: f04e143ee1fd43b4da0d704fd8399b0a, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &1161985903585071733 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2682173606997645345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 9011603117118766618} + _skinnedMeshRenderer: {fileID: 599540543168837306} + BoneNames: + - Bone21 + - Bone22 + - Bone01 + - Bone03 + - Bone02 + - Bone27 + - Bone23 + - Bone04 + - Bone07 + - Bone14 + - Bone39 + - Bone18 + - Bone19 + - Bone20 + - Bone35 + - Bone34 + - Bone38 + - Bone36 + - Bone37 + - Bone08 + - Bone24 + - Bone25 + - Bone26 + - Bone05 + - Bone29 + - Bone15 + - Bone16 + - Bone17 + - Bone30 + - Bone33 + - Bone31 + - Bone32 + - Bone06 + - Bone28 + - Bone42 + - Bone43 + - Bone11 + - Bone44 + - Bone41 + - Bone10 + - Bone13 + - Bone09 + - Bone40 + - Bone12 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab.meta new file mode 100644 index 0000000000..581757bc11 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/火凤凰/火凤凰/妖族飞行兽凤凰new_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4ab9d320382a2f74992e169a5bd889f5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫.meta new file mode 100644 index 0000000000..bce22d0700 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d798b9e8fd6e15a4aa3f4617e5ee88ad +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.meta new file mode 100644 index 0000000000..94e42f288e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 348e49311b0908e41846b3e112741bb7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab new file mode 100644 index 0000000000..416a3b7e74 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab @@ -0,0 +1,3298 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &135834269023733871 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8077402680643153189} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8077402680643153189 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 135834269023733871} + serializedVersion: 2 + m_LocalRotation: {x: -0.0038633265, y: 0.0005663342, z: -0.00036096072, w: 0.9999923} + m_LocalPosition: {x: -0.06530473, y: -0.15128958, z: 0.0025768578} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6134451345632001922} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &147872606919492514 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2458382901809672801} + m_Layer: 0 + m_Name: Bip01 L Hand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2458382901809672801 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 147872606919492514} + serializedVersion: 2 + m_LocalRotation: {x: -0.026786499, y: -0.5696227, z: -0.028975705, w: -0.82095844} + m_LocalPosition: {x: 0.39100388, y: -0.00000008873557, z: 0.00000006332994} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7964778583315592486} + - {fileID: 4302766788962807501} + - {fileID: 6018005939560629183} + - {fileID: 626316928061447039} + - {fileID: 7008861497667105873} + m_Father: {fileID: 1653226155059279262} + m_LocalEulerAnglesHint: {x: 3.2801766, y: 30.893442, z: 3.0766914} +--- !u!1 &154620876575836263 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5673674948830898663} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u818003" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5673674948830898663 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 154620876575836263} + serializedVersion: 2 + m_LocalRotation: {x: -0.10313815, y: 0.018529568, z: -0.035619598, w: 0.9938564} + m_LocalPosition: {x: 0.63131803, y: 0.059676725, z: 0.07053327} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4669692143416049104} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &262659824905709310 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5322950808781089125} + m_Layer: 0 + m_Name: Bip01 R Foot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5322950808781089125 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 262659824905709310} + serializedVersion: 2 + m_LocalRotation: {x: -0.013165828, y: -0.006349621, z: -0.02708655, w: 0.9995262} + m_LocalPosition: {x: 0.29401198, y: -0.000000050033965, z: -0.00000011175872} + m_LocalScale: {x: 0.9999999, y: 0.99999976, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6127696392069948898} + - {fileID: 3623994064113257080} + - {fileID: 7771957426808014483} + - {fileID: 6377324431617943061} + m_Father: {fileID: 2913587874213689576} + m_LocalEulerAnglesHint: {x: 6.754251, y: 56.460224, z: -2.3037627} +--- !u!1 &289289608041577149 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2920411789545314345} + m_Layer: 0 + m_Name: Bone31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2920411789545314345 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 289289608041577149} + serializedVersion: 2 + m_LocalRotation: {x: -0.1568269, y: -0.6258981, z: 0.19543317, w: 0.7385546} + m_LocalPosition: {x: 1.261875, y: -0.00000008568168, z: -0.00000037625438} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2410186321776902375} + m_Father: {fileID: 3884069427609650189} + m_LocalEulerAnglesHint: {x: -33.739197, y: -87.28466, z: -26.393955} +--- !u!1 &300826964395330671 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2307804737625794227} + - component: {fileID: 2300487734830094606} + - component: {fileID: 1432309878289803599} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &2307804737625794227 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 300826964395330671} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6134451345632001922} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2300487734830094606 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 300826964395330671} + m_Mesh: {fileID: 0} +--- !u!137 &1432309878289803599 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 300826964395330671} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &643223899943325078 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7964778583315592486} + m_Layer: 0 + m_Name: Bip01 L Finger0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7964778583315592486 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 643223899943325078} + serializedVersion: 2 + m_LocalRotation: {x: -0.11327036, y: -0.034065127, z: -0.98796403, w: 0.09968212} + m_LocalPosition: {x: -0.06629201, y: -0.022012467, z: 0.06799113} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2458382901809672801} + m_LocalEulerAnglesHint: {x: -12.006874, y: 70.74997, z: -178.553} +--- !u!1 &999446814871779552 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3884069427609650189} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3884069427609650189 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 999446814871779552} + serializedVersion: 2 + m_LocalRotation: {x: 0.21042195, y: 0.05855286, z: -0.051628176, w: 0.9744889} + m_LocalPosition: {x: 0.96139175, y: -0.00000047683716, z: 0.00000007450582} + m_LocalScale: {x: 1, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 163796894350364801} + - {fileID: 2920411789545314345} + - {fileID: 6159211658376797102} + m_Father: {fileID: 1405781471852066351} + m_LocalEulerAnglesHint: {x: 1.8273447, y: -9.400023, z: -6.902803} +--- !u!1 &1189583175451666271 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4759282132334608981} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4759282132334608981 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1189583175451666271} + serializedVersion: 2 + m_LocalRotation: {x: -0.015336139, y: 0.7154658, z: 0.018732006, w: 0.69822836} + m_LocalPosition: {x: 1.2897913, y: -0.00000004842878, z: -0.00000033248213} + m_LocalScale: {x: 1, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7406876723731012613} + m_Father: {fileID: 4725445750228984737} + m_LocalEulerAnglesHint: {x: 26.712345, y: 75.614075, z: -34.286716} +--- !u!1 &1488202500943894735 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1871511452464473856} + m_Layer: 0 + m_Name: Bip01 Tail4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1871511452464473856 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1488202500943894735} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000842424, y: -0.11437729, z: 0.00000044257004, w: 0.99343735} + m_LocalPosition: {x: 0.28303432, y: 0.000000042852175, z: -0.000425753} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1654400918648781159} + m_Father: {fileID: 4436424569460451750} + m_LocalEulerAnglesHint: {x: -1.1588122, y: -18.841915, z: 13.452435} +--- !u!1 &1643061305655344859 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6018005939560629183} + m_Layer: 0 + m_Name: Bip01 L Finger2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6018005939560629183 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643061305655344859} + serializedVersion: 2 + m_LocalRotation: {x: -0.01345132, y: 0.14869374, z: -0.08646989, w: -0.98500365} + m_LocalPosition: {x: 0.22308783, y: 0.016064692, z: 0.07251111} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2458382901809672801} + m_LocalEulerAnglesHint: {x: 9.705149, y: -74.74219, z: 2.5863287} +--- !u!1 &1665949781723242529 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 626316928061447039} + m_Layer: 0 + m_Name: Bip01 L Finger3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &626316928061447039 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1665949781723242529} + serializedVersion: 2 + m_LocalRotation: {x: -0.044327185, y: 0.15641738, z: -0.26701486, w: -0.9498799} + m_LocalPosition: {x: 0.22505665, y: 0.12026385, z: 0.04543067} + m_LocalScale: {x: 1.0000001, y: 0.99999976, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2458382901809672801} + m_LocalEulerAnglesHint: {x: 29.991564, y: -70.88141, z: 9.789856} +--- !u!1 &1699092286076658697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5052140796541057233} + m_Layer: 0 + m_Name: Bip01 Tail + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5052140796541057233 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1699092286076658697} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000048606744, y: 0.9563173, z: -0.0000026304408, w: -0.29233056} + m_LocalPosition: {x: -0.4718328, y: -0.00000022845924, z: -0.06279215} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6107502871171489785} + m_Father: {fileID: 4120142270566132575} + m_LocalEulerAnglesHint: {x: -2.9378629, y: -176.54921, z: 2.722237} +--- !u!1 &1888680755203000228 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7128262885057889346} + m_Layer: 0 + m_Name: Bip01 Neck + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7128262885057889346 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888680755203000228} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000026151934, y: 0.12556455, z: -0.00000021068925, w: 0.9920855} + m_LocalPosition: {x: 0.5445191, y: 0.00000011665634, z: -0.00035313805} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1639258844739571642} + - {fileID: 4931574408513236575} + - {fileID: 712767656015626681} + m_Father: {fileID: 4154314395576191012} + m_LocalEulerAnglesHint: {x: 2.6346471, y: 10.821899, z: -0.06003388} +--- !u!1 &1925023586724504096 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7754312765442903098} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u818007" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7754312765442903098 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925023586724504096} + serializedVersion: 2 + m_LocalRotation: {x: 0.004502789, y: 0.9992792, z: 0.03747486, w: -0.004064323} + m_LocalPosition: {x: 1.0851046, y: 0.0075830803, z: -0.0043755337} + m_LocalScale: {x: -0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3044398225931548944} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1977324723483980722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2755492214708384231} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u818002" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2755492214708384231 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977324723483980722} + serializedVersion: 2 + m_LocalRotation: {x: -0.101916045, y: -0.01403338, z: -0.03897867, w: 0.99393004} + m_LocalPosition: {x: 1.2958412, y: 0.039158713, z: 0.0628517} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4725445750228984737} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2050057739731624042 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1639258844739571642} + m_Layer: 0 + m_Name: Bip01 Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1639258844739571642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2050057739731624042} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000019701606, y: 0.25446168, z: -0.0000007496676, w: 0.9670829} + m_LocalPosition: {x: 0.45798978, y: -0.00000014574117, z: 0.00000020721924} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7155963286552819261} + - {fileID: 9049008412974112484} + m_Father: {fileID: 7128262885057889346} + m_LocalEulerAnglesHint: {x: -1.967571, y: 57.686165, z: -4.3745975} +--- !u!1 &2062466399836070889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4065945018684829857} + m_Layer: 0 + m_Name: "\u72EE\u9E6B" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4065945018684829857 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2062466399836070889} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6134451345632001922} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2077834733114260543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5725060761461398820} + m_Layer: 0 + m_Name: Bip01 L Foot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5725060761461398820 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2077834733114260543} + serializedVersion: 2 + m_LocalRotation: {x: 0.013165845, y: -0.0063496223, z: 0.027086632, w: 0.99952626} + m_LocalPosition: {x: 0.29401207, y: -0.00000010203627, z: 0.00000006705523} + m_LocalScale: {x: 0.9999999, y: 0.9999998, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5641348896848919102} + - {fileID: 7817221038917973989} + - {fileID: 9138702109188207686} + - {fileID: 7336491550785865801} + m_Father: {fileID: 5997032546334974975} + m_LocalEulerAnglesHint: {x: -5.68598, y: 90.25447, z: -0.19943923} +--- !u!1 &2079099926445228243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8474909702755523094} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u818001" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8474909702755523094 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2079099926445228243} + serializedVersion: 2 + m_LocalRotation: {x: -0.044451576, y: -0.034531243, z: -0.0059681297, w: 0.99839675} + m_LocalPosition: {x: 0.93707293, y: 0.0050806543, z: 0.008100747} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7793537930427860417} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2151195502461745150 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1203011848574258168} + m_Layer: 0 + m_Name: Bip01 R Thigh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1203011848574258168 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2151195502461745150} + serializedVersion: 2 + m_LocalRotation: {x: -0.6750277, y: 0.06043327, z: -0.7347602, w: -0.028512914} + m_LocalPosition: {x: -0.25188458, y: -0.23498885, z: 0.000515974} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1565888106701171371} + m_Father: {fileID: 4120142270566132575} + m_LocalEulerAnglesHint: {x: 5.840923, y: 80.29284, z: -173.17007} +--- !u!1 &2154512422654993747 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4669692143416049104} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4669692143416049104 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2154512422654993747} + serializedVersion: 2 + m_LocalRotation: {x: -0.1338301, y: -0.048931446, z: 0.04728568, w: 0.98866546} + m_LocalPosition: {x: 1.2897913, y: 0.00000021606687, z: -0.00000009499489} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8533061240315356828} + - {fileID: 2998218033721515304} + - {fileID: 5673674948830898663} + m_Father: {fileID: 4725445750228984737} + m_LocalEulerAnglesHint: {x: 3.644726, y: 4.684655, z: -48.71965} +--- !u!1 &2207065454057465565 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5959158476869594216} + m_Layer: 0 + m_Name: Bip01 R ForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5959158476869594216 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2207065454057465565} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.33409503, z: -0.0000000745058, w: -0.94253945} + m_LocalPosition: {x: 0.192562, y: 0.000000081956394, z: 0.000000014901163} + m_LocalScale: {x: 0.99999964, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6912928802504731943} + m_Father: {fileID: 180760219385911126} + m_LocalEulerAnglesHint: {x: -0.0000006953974, y: 29.617357, z: 0.0000005774166} +--- !u!1 &2285002736452394974 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7008861497667105873} + m_Layer: 0 + m_Name: "HH_\u5DE6\u524D\u811A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7008861497667105873 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2285002736452394974} + serializedVersion: 2 + m_LocalRotation: {x: 0.0065952106, y: 0.9998139, z: -0.002488349, w: 0.01795886} + m_LocalPosition: {x: 0.091998726, y: -0.003677327, z: 0.075746834} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2458382901809672801} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2472677381922503401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6159211658376797102} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u818002" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6159211658376797102 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2472677381922503401} + serializedVersion: 2 + m_LocalRotation: {x: 0.06398182, y: 0.9959637, z: -0.04552323, w: -0.04347733} + m_LocalPosition: {x: 1.2425255, y: 0.023532417, z: 0.009656801} + m_LocalScale: {x: -1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3884069427609650189} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2492237065964608741 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4436424569460451750} + m_Layer: 0 + m_Name: Bip01 Tail3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4436424569460451750 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2492237065964608741} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000047589243, y: -0.07163938, z: 0.00000011272942, w: 0.99743056} + m_LocalPosition: {x: 0.31890836, y: -0.000000024943386, z: -0.00022331465} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1871511452464473856} + m_Father: {fileID: 3144721619936308284} + m_LocalEulerAnglesHint: {x: -5.005145, y: 12.562445, z: 25.432032} +--- !u!1 &2560844060687311573 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7817221038917973989} + m_Layer: 0 + m_Name: Bip01 L Toe1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7817221038917973989 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2560844060687311573} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000006332992, y: 0.7071068, z: 0.000000065192566, w: -0.70710677} + m_LocalPosition: {x: 0.17709161, y: 0.024868505, z: 0.20381506} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5725060761461398820} + m_LocalEulerAnglesHint: {x: 0.00000049208035, y: -13.111145, z: 0.0000012976587} +--- !u!1 &2653016002635640743 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6134451345632001922} + - component: {fileID: 7750279806607976362} + m_Layer: 0 + m_Name: "\u72EE\u9E6B" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6134451345632001922 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2653016002635640743} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2307804737625794227} + - {fileID: 3628875219433683100} + - {fileID: 8077402680643153189} + - {fileID: 5445289033794457546} + - {fileID: 6904357898468139343} + m_Father: {fileID: 4065945018684829857} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &7750279806607976362 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2653016002635640743} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 3d4d34f2799ece1438e0fcc98a15f247, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &2831225597177125929 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6471049334553976869} + m_Layer: 0 + m_Name: Bip01 L UpperArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6471049334553976869 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2831225597177125929} + serializedVersion: 2 + m_LocalRotation: {x: 0.6990231, y: 0.1226171, z: 0.064968474, w: 0.70150626} + m_LocalPosition: {x: 0.3771566, y: 0.0000000074505815, z: -0.000000022351747} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1653226155059279262} + m_Father: {fileID: 4931574408513236575} + m_LocalEulerAnglesHint: {x: 26.762186, y: 90.91405, z: 83.195335} +--- !u!1 &2837457334993320226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3628875219433683100} + m_Layer: 0 + m_Name: Bip01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3628875219433683100 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2837457334993320226} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1211945303057494090} + m_Father: {fileID: 6134451345632001922} + m_LocalEulerAnglesHint: {x: 0.0000051226416, y: -90.000084, z: -92.16248} +--- !u!1 &2967105570647946557 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1298094288782745203} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u818003" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1298094288782745203 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2967105570647946557} + serializedVersion: 2 + m_LocalRotation: {x: 0.06901732, y: 0.9955869, z: -0.037451826, w: -0.05138837} + m_LocalPosition: {x: 0.6648947, y: 0.038344957, z: -0.006117468} + m_LocalScale: {x: -1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 163796894350364801} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3055788383009914982 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 539667193212709149} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u818005" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &539667193212709149 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3055788383009914982} + serializedVersion: 2 + m_LocalRotation: {x: 0.041597392, y: -0.69179046, z: 0.062009748, w: 0.71822727} + m_LocalPosition: {x: 1.1729994, y: 0.05411938, z: 0.003756644} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5339981231655681806} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3149489936931891696 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2410186321776902375} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u818005" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2410186321776902375 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3149489936931891696} + serializedVersion: 2 + m_LocalRotation: {x: 0.031539124, y: -0.6921862, z: 0.011261163, w: 0.72094166} + m_LocalPosition: {x: 1.6345836, y: 0.027169595, z: 0.0029199612} + m_LocalScale: {x: -0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2920411789545314345} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3155137311402125884 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3044398225931548944} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3044398225931548944 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3155137311402125884} + serializedVersion: 2 + m_LocalRotation: {x: -0.019339709, y: 0.016883483, z: 0.03098296, w: 0.99919015} + m_LocalPosition: {x: 0.6534712, y: -0.00000009313226, z: 0.00000024121258} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7754312765442903098} + m_Father: {fileID: 163796894350364801} + m_LocalEulerAnglesHint: {x: -4.773262, y: 17.292433, z: -36.903778} +--- !u!1 &3169104751090832028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 163796894350364801} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &163796894350364801 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3169104751090832028} + serializedVersion: 2 + m_LocalRotation: {x: -0.24691498, y: 0.081710525, z: -0.015626317, w: 0.96545964} + m_LocalPosition: {x: 1.2618743, y: -0.00000016018748, z: 0.00000017136337} + m_LocalScale: {x: 0.9999995, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3044398225931548944} + - {fileID: 7443212140945472334} + - {fileID: 1298094288782745203} + m_Father: {fileID: 3884069427609650189} + m_LocalEulerAnglesHint: {x: 2.3662682, y: 14.224553, z: -51.080666} +--- !u!1 &3654611655017972215 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 685062829302804953} + m_Layer: 0 + m_Name: Bip01 R Finger3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &685062829302804953 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3654611655017972215} + serializedVersion: 2 + m_LocalRotation: {x: -0.044327397, y: -0.15641733, z: -0.26701498, w: 0.9498799} + m_LocalPosition: {x: 0.22505659, y: -0.12026374, z: 0.045430526} + m_LocalScale: {x: 0.9999999, y: 0.9999998, z: 0.9999995} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6912928802504731943} + m_LocalEulerAnglesHint: {x: -28.095032, y: -60.911083, z: -14.6381445} +--- !u!1 &3662698940279108957 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7406876723731012613} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u818006" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7406876723731012613 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3662698940279108957} + serializedVersion: 2 + m_LocalRotation: {x: 0.05442578, y: -0.72440547, z: -0.014026632, w: 0.68707925} + m_LocalPosition: {x: 1.533827, y: -0.022964748, z: -0.03117364} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4759282132334608981} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3741960859759540579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7771957426808014483} + m_Layer: 0 + m_Name: Bip01 R Toe2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7771957426808014483 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3741960859759540579} + serializedVersion: 2 + m_LocalRotation: {x: -0.209944, y: 0.67522115, z: 0.20994395, w: -0.67522115} + m_LocalPosition: {x: 0.1768657, y: -0.09573999, z: 0.20173065} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5322950808781089125} + m_LocalEulerAnglesHint: {x: 28.78124, y: -37.055546, z: -19.978544} +--- !u!1 &3940119160671641886 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1211945303057494090} + m_Layer: 0 + m_Name: Bip01 Pelvis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1211945303057494090 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3940119160671641886} + serializedVersion: 2 + m_LocalRotation: {x: 0.49999964, y: -0.5000004, z: 0.4999997, w: 0.5000003} + m_LocalPosition: {x: -1.13686824e-13, y: 0.9619584, z: -0.5365174} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4120142270566132575} + m_Father: {fileID: 3628875219433683100} + m_LocalEulerAnglesHint: {x: -0, y: 89.999916, z: 88.55417} +--- !u!1 &4103052582729876196 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1654400918648781159} + m_Layer: 0 + m_Name: "HH_\u5C3E\u5DF4" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1654400918648781159 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4103052582729876196} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000011338861, y: 0.011084541, z: 0.00000071494946, w: 0.9999386} + m_LocalPosition: {x: 0.26127487, y: 0.0000031363936, z: -0.030591145} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1871511452464473856} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4194684381299358905 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4725445750228984737} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4725445750228984737 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4194684381299358905} + serializedVersion: 2 + m_LocalRotation: {x: 0.053393073, y: -0.11403747, z: -0.054826625, w: 0.9905245} + m_LocalPosition: {x: 0.96236163, y: -0.0000001192093, z: -0.00000008940697} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4669692143416049104} + - {fileID: 4759282132334608981} + - {fileID: 2755492214708384231} + m_Father: {fileID: 7793537930427860417} + m_LocalEulerAnglesHint: {x: 5.087692, y: 10.024795, z: -6.113431} +--- !u!1 &4298993638902148955 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7336491550785865801} + m_Layer: 0 + m_Name: "HH_\u5DE6\u540E\u811A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7336491550785865801 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4298993638902148955} + serializedVersion: 2 + m_LocalRotation: {x: -0.696864, y: 0.0037634985, z: 0.717193, w: -0.0007759319} + m_LocalPosition: {x: 0.08482706, y: 0.01135512, z: 0.052449502} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5725060761461398820} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4327926496779767234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3144721619936308284} + m_Layer: 0 + m_Name: Bip01 Tail2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3144721619936308284 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4327926496779767234} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000032777624, y: -0.11446856, z: 0.0000003591847, w: 0.9934269} + m_LocalPosition: {x: 0.657275, y: -0.0000000102361275, z: -0.000247174} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4436424569460451750} + m_Father: {fileID: 6107502871171489785} + m_LocalEulerAnglesHint: {x: -18.847069, y: 9.879233, z: 31.130945} +--- !u!1 &4464668848262477272 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4120142270566132575} + m_Layer: 0 + m_Name: Bip01 Spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4120142270566132575 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4464668848262477272} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000020563602, y: -0.00039805472, z: 0.0000006854534, w: 1} + m_LocalPosition: {x: 0.2518848, y: 0.00000042998005, z: -0.00031486157} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5968795191597568524} + - {fileID: 4434602868436362205} + - {fileID: 1203011848574258168} + - {fileID: 5052140796541057233} + - {fileID: 7308100705839784916} + m_Father: {fileID: 1211945303057494090} + m_LocalEulerAnglesHint: {x: -0.3219219, y: 12.872141, z: 1.4094934} +--- !u!1 &4466096121585894951 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8108941692565690132} + m_Layer: 0 + m_Name: Bip01 R Finger1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8108941692565690132 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4466096121585894951} + serializedVersion: 2 + m_LocalRotation: {x: 0.0026863432, y: 0.108357154, z: -0.23254348, w: -0.9665273} + m_LocalPosition: {x: 0.21222936, y: 0.09171766, z: 0.08821876} + m_LocalScale: {x: 0.99999976, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6912928802504731943} + m_LocalEulerAnglesHint: {x: 26.493732, y: -86.52395, z: 4.743288} +--- !u!1 &4545494888500267997 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5641348896848919102} + m_Layer: 0 + m_Name: Bip01 L Toe0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5641348896848919102 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4545494888500267997} + serializedVersion: 2 + m_LocalRotation: {x: -0.10456458, y: 0.6993328, z: 0.10456459, w: -0.6993328} + m_LocalPosition: {x: 0.1774125, y: -0.052995235, z: 0.210257} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5725060761461398820} + m_LocalEulerAnglesHint: {x: 16.480013, y: -14.724354, z: -4.263578} +--- !u!1 &4590402301132129636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3178113334459645883} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u818004" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3178113334459645883 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4590402301132129636} + serializedVersion: 2 + m_LocalRotation: {x: 0.035971154, y: -0.71759254, z: 0.0419337, w: 0.69426835} + m_LocalPosition: {x: 1.2556149, y: 0.018818146, z: 0.016162792} + m_LocalScale: {x: -1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2056729761740944326} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4752273484996096689 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5997032546334974975} + m_Layer: 0 + m_Name: Bip01 L HorseLink + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5997032546334974975 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4752273484996096689} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000004340807, y: -0.41735226, z: 0.000000019237092, w: 0.90874475} + m_LocalPosition: {x: 0.21655041, y: -0.000000011030777, z: -0.0000000037252907} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5725060761461398820} + m_Father: {fileID: 8128690000388284595} + m_LocalEulerAnglesHint: {x: -0.0000009775711, y: -50.744434, z: 0.00000018101365} +--- !u!1 &4979492899138305381 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8533061240315356828} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8533061240315356828 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4979492899138305381} + serializedVersion: 2 + m_LocalRotation: {x: -0.0331153, y: -0.046158593, z: 0.046395093, w: 0.9973066} + m_LocalPosition: {x: 0.6302473, y: -0.00000004842878, z: -0.00000016298144} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2906021857102168747} + m_Father: {fileID: 4669692143416049104} + m_LocalEulerAnglesHint: {x: -5.65072, y: -8.4850445, z: -39.459995} +--- !u!1 &5057162509939059909 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4154314395576191012} + m_Layer: 0 + m_Name: Bip01 Spine2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4154314395576191012 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5057162509939059909} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000001343358, y: 0.17780794, z: -0.00000049089056, w: 0.9840652} + m_LocalPosition: {x: 0.43718567, y: 0.00000007050966, z: -0.00040596398} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7128262885057889346} + - {fileID: 1405781471852066351} + - {fileID: 7793537930427860417} + m_Father: {fileID: 5968795191597568524} + m_LocalEulerAnglesHint: {x: 0.0000018909918, y: -9.021306, z: 0.000025200921} +--- !u!1 &5272918081944210126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6107502871171489785} + m_Layer: 0 + m_Name: Bip01 Tail1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6107502871171489785 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5272918081944210126} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000010449626, y: -0.15033941, z: 0.000000383178, w: 0.98863447} + m_LocalPosition: {x: 0.46151036, y: -0.000000025350918, z: -0.0005000234} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3144721619936308284} + m_Father: {fileID: 5052140796541057233} + m_LocalEulerAnglesHint: {x: -10.135006, y: 3.5435157, z: 13.040599} +--- !u!1 &5349358485583875053 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6931886953479354960} + m_Layer: 0 + m_Name: Bip01 R Finger2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6931886953479354960 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5349358485583875053} + serializedVersion: 2 + m_LocalRotation: {x: -0.013451307, y: -0.14869374, z: -0.08646983, w: 0.9850037} + m_LocalPosition: {x: 0.22308792, y: -0.01606461, z: 0.07251115} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6912928802504731943} + m_LocalEulerAnglesHint: {x: -9.612126, y: -72.778336, z: -2.9158614} +--- !u!1 &5524480218423738505 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8128690000388284595} + m_Layer: 0 + m_Name: Bip01 L Calf + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8128690000388284595 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5524480218423738505} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000037252899, y: 0.37243018, z: 0.000000042840835, w: 0.92806023} + m_LocalPosition: {x: 0.35567603, y: 0.000000037252907, z: 0} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5997032546334974975} + m_Father: {fileID: 4434602868436362205} + m_LocalEulerAnglesHint: {x: 0.0000012632513, y: 63.288063, z: 0.0000011128238} +--- !u!1 &5712482709804091489 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4434602868436362205} + m_Layer: 0 + m_Name: Bip01 L Thigh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4434602868436362205 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5712482709804091489} + serializedVersion: 2 + m_LocalRotation: {x: -0.67502785, y: -0.060435228, z: -0.73476, w: 0.028510991} + m_LocalPosition: {x: -0.25188455, y: 0.23498875, z: 0.00051474525} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8128690000388284595} + m_Father: {fileID: 4120142270566132575} + m_LocalEulerAnglesHint: {x: -7.1504116, y: 62.710674, z: 176.7686} +--- !u!1 &5723628821474897282 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1565888106701171371} + m_Layer: 0 + m_Name: Bip01 R Calf + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1565888106701171371 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5723628821474897282} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000018626448, y: 0.37243018, z: -0.000000044703473, w: 0.92806023} + m_LocalPosition: {x: 0.35567608, y: -0.00000005587937, z: 0.00000011920932} + m_LocalScale: {x: 1, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2913587874213689576} + m_Father: {fileID: 1203011848574258168} + m_LocalEulerAnglesHint: {x: 0.00000095249845, y: 86.152664, z: 0.0000025098984} +--- !u!1 &6072585044763121521 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4931574408513236575} + m_Layer: 0 + m_Name: Bip01 L Clavicle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4931574408513236575 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6072585044763121521} + serializedVersion: 2 + m_LocalRotation: {x: -0.09974386, y: -0.7327798, z: -0.6689645, w: 0.07464205} + m_LocalPosition: {x: -0.44682243, y: 0.30060107, z: -0.04992951} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6471049334553976869} + m_Father: {fileID: 7128262885057889346} + m_LocalEulerAnglesHint: {x: -81.845825, y: 173.08614, z: -9.0469885} +--- !u!1 &6122659853896768181 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7793537930427860417} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7793537930427860417 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6122659853896768181} + serializedVersion: 2 + m_LocalRotation: {x: -0.43036857, y: 0.43701574, z: -0.5138057, w: 0.59983665} + m_LocalPosition: {x: 0.49782637, y: -0.25898486, z: -0.07233716} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4725445750228984737} + - {fileID: 5339981231655681806} + - {fileID: 8474909702755523094} + m_Father: {fileID: 4154314395576191012} + m_LocalEulerAnglesHint: {x: 2.495043, y: 82.49846, z: -35.798122} +--- !u!1 &6355815331506628299 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6912928802504731943} + m_Layer: 0 + m_Name: Bip01 R Hand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6912928802504731943 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355815331506628299} + serializedVersion: 2 + m_LocalRotation: {x: -0.026786402, y: 0.56962276, z: -0.02897573, w: 0.82095855} + m_LocalPosition: {x: 0.3910038, y: -0.00000007726795, z: 0.00000018253925} + m_LocalScale: {x: 0.9999996, y: 0.99999976, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3028725123017393216} + - {fileID: 8108941692565690132} + - {fileID: 6931886953479354960} + - {fileID: 685062829302804953} + - {fileID: 5574888474878885836} + m_Father: {fileID: 5959158476869594216} + m_LocalEulerAnglesHint: {x: -3.7950585, y: 20.144785, z: -2.4028988} +--- !u!1 &6366512448952184285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3057330455742494920} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u818001" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3057330455742494920 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6366512448952184285} + serializedVersion: 2 + m_LocalRotation: {x: 0.025274117, y: 0.9945961, z: -0.053148516, w: -0.08552838} + m_LocalPosition: {x: 0.96990806, y: 0.016794268, z: -0.020876324} + m_LocalScale: {x: -1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1405781471852066351} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6409757459328923396 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6127696392069948898} + m_Layer: 0 + m_Name: Bip01 R Toe0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6127696392069948898 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6409757459328923396} + serializedVersion: 2 + m_LocalRotation: {x: -0.104564555, y: -0.6993327, z: 0.10456451, w: 0.6993328} + m_LocalPosition: {x: 0.17741238, y: 0.052995224, z: 0.21025683} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5322950808781089125} + m_LocalEulerAnglesHint: {x: -15.054368, y: -28.436272, z: 8.006197} +--- !u!1 &6606778166458690289 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4806392281488361667} + m_Layer: 0 + m_Name: "HH_\u5DE6\u7FC5\u818006" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4806392281488361667 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6606778166458690289} + serializedVersion: 2 + m_LocalRotation: {x: -0.06944846, y: -0.6537844, z: 0.008881489, w: 0.75343484} + m_LocalPosition: {x: 1.1037059, y: -0.0030628878, z: 0.005626698} + m_LocalScale: {x: -1.0000001, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7443212140945472334} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6722461006256149999 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5968795191597568524} + m_Layer: 0 + m_Name: Bip01 Spine1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5968795191597568524 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6722461006256149999} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000002940396, y: 0.078473836, z: -0.00000032315776, w: 0.99691623} + m_LocalPosition: {x: 0.3952547, y: -0.000000024256341, z: -0.00034390215} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4154314395576191012} + m_Father: {fileID: 4120142270566132575} + m_LocalEulerAnglesHint: {x: 0.0000033524555, y: -12.0658455, z: 0.000033577337} +--- !u!1 &6729154854981439521 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1653226155059279262} + m_Layer: 0 + m_Name: Bip01 L ForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1653226155059279262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6729154854981439521} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000005960463, y: -0.33409506, z: -0, w: -0.94253945} + m_LocalPosition: {x: 0.19256206, y: -0.00000007450581, z: 0.00000004842878} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2458382901809672801} + m_Father: {fileID: 6471049334553976869} + m_LocalEulerAnglesHint: {x: -0.00000042810427, y: 12.080826, z: 0.000000034533894} +--- !u!1 &7032447571079205503 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6377324431617943061} + m_Layer: 0 + m_Name: "HH_\u53F3\u540E\u811A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6377324431617943061 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7032447571079205503} + serializedVersion: 2 + m_LocalRotation: {x: 0.003762556, y: -0.69686395, z: -0.0007750025, w: 0.71719307} + m_LocalPosition: {x: 0.084826976, y: -0.0030512305, z: 0.05369631} + m_LocalScale: {x: -1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5322950808781089125} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7147322506936910508 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1405781471852066351} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1405781471852066351 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7147322506936910508} + serializedVersion: 2 + m_LocalRotation: {x: 0.59949386, y: 0.49818018, z: -0.44088012, w: -0.44502625} + m_LocalPosition: {x: 0.5110829, y: 0.2732415, z: -0.06485655} + m_LocalScale: {x: 1.0000002, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3884069427609650189} + - {fileID: 2056729761740944326} + - {fileID: 3057330455742494920} + m_Father: {fileID: 4154314395576191012} + m_LocalEulerAnglesHint: {x: -1.0148517, y: -91.91682, z: 145.04819} +--- !u!1 &7215060799297286596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9049008412974112484} + m_Layer: 0 + m_Name: "HH_\u5634" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9049008412974112484 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7215060799297286596} + serializedVersion: 2 + m_LocalRotation: {x: -0.0037652643, y: 0.003765412, z: -0.7070963, w: 0.7070973} + m_LocalPosition: {x: 0.07247349, y: -0.0007815528, z: 0.49399784} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1639258844739571642} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7327915377701537589 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3028725123017393216} + m_Layer: 0 + m_Name: Bip01 R Finger0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3028725123017393216 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7327915377701537589} + serializedVersion: 2 + m_LocalRotation: {x: 0.11327027, y: -0.03406503, z: 0.9879641, w: 0.09968209} + m_LocalPosition: {x: -0.06629211, y: 0.022012547, z: 0.06799138} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6912928802504731943} + m_LocalEulerAnglesHint: {x: 12.084679, y: 75.45929, z: 179.53625} +--- !u!1 &7485980133720396538 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7443212140945472334} + m_Layer: 0 + m_Name: Bone33 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7443212140945472334 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7485980133720396538} + serializedVersion: 2 + m_LocalRotation: {x: 0.0070737135, y: -0.4133494, z: 0.08204536, w: 0.90684116} + m_LocalPosition: {x: 0.6534721, y: -0.000000007450581, z: -0.00000018533322} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4806392281488361667} + m_Father: {fileID: 163796894350364801} + m_LocalEulerAnglesHint: {x: -2.012633, y: -59.777077, z: -47.86115} +--- !u!1 &7588205361703762145 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7155963286552819261} + m_Layer: 0 + m_Name: "HH_\u5934\u9876" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7155963286552819261 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7588205361703762145} + serializedVersion: 2 + m_LocalRotation: {x: -0.0037652561, y: 0.0037654194, z: -0.7070963, w: 0.7070973} + m_LocalPosition: {x: 0.5249808, y: -0.0007823863, z: 0.04881037} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1639258844739571642} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7785185058595495874 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3623994064113257080} + m_Layer: 0 + m_Name: Bip01 R Toe1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3623994064113257080 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7785185058595495874} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000047497434, y: -0.7071067, z: 0.000000031664957, w: 0.7071068} + m_LocalPosition: {x: 0.17709161, y: -0.024868557, z: 0.20381501} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5322950808781089125} + m_LocalEulerAnglesHint: {x: -0.0000014020861, y: -29.918684, z: -0.0000019074268} +--- !u!1 &7949900842916713246 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5383608462242538108} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u818007" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5383608462242538108 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7949900842916713246} + serializedVersion: 2 + m_LocalRotation: {x: 0.048043344, y: -0.722836, z: -0.11188972, w: 0.68020636} + m_LocalPosition: {x: 1.0016724, y: -0.03489441, z: 0.044171825} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2998218033721515304} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7951486688383914039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 180760219385911126} + m_Layer: 0 + m_Name: Bip01 R UpperArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &180760219385911126 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7951486688383914039} + serializedVersion: 2 + m_LocalRotation: {x: -0.699023, y: 0.12261709, z: -0.06496836, w: 0.7015062} + m_LocalPosition: {x: 0.37715688, y: 0.00000017136337, z: 0.00000005215407} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5959158476869594216} + m_Father: {fileID: 712767656015626681} + m_LocalEulerAnglesHint: {x: -59.929585, y: 85.73088, z: -79.36183} +--- !u!1 &8151153770000221703 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5574888474878885836} + m_Layer: 0 + m_Name: "HH_\u53F3\u524D\u811A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5574888474878885836 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151153770000221703} + serializedVersion: 2 + m_LocalRotation: {x: 0.9998139, y: 0.0065939086, z: 0.017958812, w: -0.0024883514} + m_LocalPosition: {x: 0.091985784, y: 0.003752679, z: 0.07574676} + m_LocalScale: {x: -0.99999994, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6912928802504731943} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8223823926658998257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2998218033721515304} + m_Layer: 0 + m_Name: Bone27 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2998218033721515304 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8223823926658998257} + serializedVersion: 2 + m_LocalRotation: {x: -0.04689124, y: 0.4396604, z: 0.10153457, w: 0.8911738} + m_LocalPosition: {x: 0.6302478, y: -0.00000027194622, z: -0.00000018812713} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5383608462242538108} + m_Father: {fileID: 4669692143416049104} + m_LocalEulerAnglesHint: {x: -8.164801, y: 59.640602, z: -36.12808} +--- !u!1 &8256101301191404583 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5339981231655681806} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5339981231655681806 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8256101301191404583} + serializedVersion: 2 + m_LocalRotation: {x: -0.0073215794, y: 0.7286572, z: -0.04996856, w: 0.68301404} + m_LocalPosition: {x: 0.9623616, y: -0.00000041723257, z: 0.000000055879354} + m_LocalScale: {x: 1.0000002, y: 0.99999976, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 539667193212709149} + m_Father: {fileID: 7793537930427860417} + m_LocalEulerAnglesHint: {x: 34.14209, y: 91.55307, z: -30.873358} +--- !u!1 &8520458709350734161 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2056729761740944326} + m_Layer: 0 + m_Name: Bone29 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2056729761740944326 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8520458709350734161} + serializedVersion: 2 + m_LocalRotation: {x: -0.0045727678, y: -0.70361805, z: -0.033060513, w: 0.7097941} + m_LocalPosition: {x: 0.9613922, y: -0.000003874302, z: -0.000013723973} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3178113334459645883} + m_Father: {fileID: 1405781471852066351} + m_LocalEulerAnglesHint: {x: -36.424797, y: -107.24616, z: -23.009499} +--- !u!1 &8716376534236110377 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 712767656015626681} + m_Layer: 0 + m_Name: Bip01 R Clavicle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &712767656015626681 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8716376534236110377} + serializedVersion: 2 + m_LocalRotation: {x: -0.099743605, y: 0.73277795, z: -0.66896653, w: -0.07464242} + m_LocalPosition: {x: -0.44682235, y: -0.30060118, z: -0.049927693} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 180760219385911126} + m_Father: {fileID: 7128262885057889346} + m_LocalEulerAnglesHint: {x: 86.96821, y: 158.76509, z: -15.10996} +--- !u!1 &8749463672057756296 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2913587874213689576} + m_Layer: 0 + m_Name: Bip01 R HorseLink + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2913587874213689576 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8749463672057756296} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000004547274, y: -0.41735238, z: -0.00000005404093, w: 0.9087448} + m_LocalPosition: {x: 0.21655041, y: -0.0000000017999744, z: -0.000000014901161} + m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5322950808781089125} + m_Father: {fileID: 1565888106701171371} + m_LocalEulerAnglesHint: {x: -0.0000013045815, y: -49.206543, z: -0.00000057990667} +--- !u!1 &8872060988585308837 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2906021857102168747} + m_Layer: 0 + m_Name: "HH_\u53F3\u7FC5\u818004" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2906021857102168747 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8872060988585308837} + serializedVersion: 2 + m_LocalRotation: {x: -0.10233441, y: 0.009563065, z: -0.07954712, w: 0.9915183} + m_LocalPosition: {x: 1.0717562, y: 0.03648057, z: 0.14883159} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8533061240315356828} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8945203126546958774 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4302766788962807501} + m_Layer: 0 + m_Name: Bip01 L Finger1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4302766788962807501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8945203126546958774} + serializedVersion: 2 + m_LocalRotation: {x: 0.0026862668, y: -0.10835739, z: -0.23254345, w: 0.9665273} + m_LocalPosition: {x: 0.21222904, y: -0.09171745, z: 0.08821863} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2458382901809672801} + m_LocalEulerAnglesHint: {x: -25.165447, y: -74.92316, z: -9.813694} +--- !u!1 &9160126688957903500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9138702109188207686} + m_Layer: 0 + m_Name: Bip01 L Toe2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9138702109188207686 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9160126688957903500} + serializedVersion: 2 + m_LocalRotation: {x: -0.20994401, y: -0.67522126, z: 0.20994395, w: 0.6752211} + m_LocalPosition: {x: 0.1768657, y: 0.095740065, z: 0.20173067} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5725060761461398820} + m_LocalEulerAnglesHint: {x: -32.80524, y: -20.534964, z: 11.47195} +--- !u!1 &9198749188521910933 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7308100705839784916} + m_Layer: 0 + m_Name: "HH_\u8179\u90E8" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7308100705839784916 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9198749188521910933} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000006839692, y: 0.99999994, z: -0.0000014618197, w: -0.00039823222} + m_LocalPosition: {x: 0.24475458, y: -0.000000099864124, z: 0.2617924} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4120142270566132575} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7288047530237877879 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 6134451345632001922} + m_Modifications: + - target: {fileID: 3139798544021071472, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_Name + value: jj_0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 3628875219433683100} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 5968795191597568524} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 4154314395576191012} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 2056729761740944326} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 7128262885057889346} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 1405781471852066351} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 1639258844739571642} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 3884069427609650189} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 163796894350364801} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 2920411789545314345} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 7443212140945472334} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 3044398225931548944} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 5339981231655681806} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 7793537930427860417} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 4725445750228984737} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 4669692143416049104} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 4759282132334608981} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 2998218033721515304} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 8533061240315356828} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 4120142270566132575} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 4931574408513236575} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 6471049334553976869} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 1653226155059279262} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 180760219385911126} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 1211945303057494090} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 1203011848574258168} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 4434602868436362205} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 8128690000388284595} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 5052140796541057233} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 1565888106701171371} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 6107502871171489785} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 3144721619936308284} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[31]' + value: + objectReference: {fileID: 5997032546334974975} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[32]' + value: + objectReference: {fileID: 5725060761461398820} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[33]' + value: + objectReference: {fileID: 4436424569460451750} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[34]' + value: + objectReference: {fileID: 1871511452464473856} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[35]' + value: + objectReference: {fileID: 7817221038917973989} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[36]' + value: + objectReference: {fileID: 9138702109188207686} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[37]' + value: + objectReference: {fileID: 5641348896848919102} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[38]' + value: + objectReference: {fileID: 2458382901809672801} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[39]' + value: + objectReference: {fileID: 7964778583315592486} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[40]' + value: + objectReference: {fileID: 4302766788962807501} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[41]' + value: + objectReference: {fileID: 6018005939560629183} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[42]' + value: + objectReference: {fileID: 626316928061447039} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[43]' + value: + objectReference: {fileID: 712767656015626681} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[44]' + value: + objectReference: {fileID: 5959158476869594216} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[45]' + value: + objectReference: {fileID: 2913587874213689576} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[46]' + value: + objectReference: {fileID: 5322950808781089125} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[47]' + value: + objectReference: {fileID: 3623994064113257080} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[48]' + value: + objectReference: {fileID: 7771957426808014483} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[49]' + value: + objectReference: {fileID: 6127696392069948898} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[50]' + value: + objectReference: {fileID: 6912928802504731943} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[51]' + value: + objectReference: {fileID: 3028725123017393216} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[52]' + value: + objectReference: {fileID: 8108941692565690132} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[53]' + value: + objectReference: {fileID: 6931886953479354960} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[54]' + value: + objectReference: {fileID: 685062829302804953} + - target: {fileID: 8810594842797734427, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + propertyPath: 'm_Bones.Array.data[55]' + value: + objectReference: {fileID: 3628875219433683100} + m_RemovedComponents: + - {fileID: 3894974196943821174, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} +--- !u!4 &6904357898468139343 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4248421055907430200, guid: 46145ea768841284fa8025643b6e5ac2, type: 3} + m_PrefabInstance: {fileID: 7288047530237877879} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9025217543798103347 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 6134451345632001922} + m_Modifications: + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 3628875219433683100} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 5968795191597568524} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 4154314395576191012} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 2056729761740944326} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 7128262885057889346} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 1405781471852066351} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 1639258844739571642} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 3884069427609650189} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 163796894350364801} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 2920411789545314345} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 7443212140945472334} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 3044398225931548944} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 5339981231655681806} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 7793537930427860417} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 4725445750228984737} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 4669692143416049104} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 4759282132334608981} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 2998218033721515304} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 8533061240315356828} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 4120142270566132575} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 4931574408513236575} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 6471049334553976869} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 1653226155059279262} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 180760219385911126} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 1211945303057494090} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 1203011848574258168} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 4434602868436362205} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 8128690000388284595} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 5052140796541057233} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 1565888106701171371} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 6107502871171489785} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 3144721619936308284} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[31]' + value: + objectReference: {fileID: 5997032546334974975} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[32]' + value: + objectReference: {fileID: 5725060761461398820} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[33]' + value: + objectReference: {fileID: 4436424569460451750} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[34]' + value: + objectReference: {fileID: 1871511452464473856} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[35]' + value: + objectReference: {fileID: 7817221038917973989} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[36]' + value: + objectReference: {fileID: 9138702109188207686} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[37]' + value: + objectReference: {fileID: 5641348896848919102} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[38]' + value: + objectReference: {fileID: 2458382901809672801} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[39]' + value: + objectReference: {fileID: 7964778583315592486} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[40]' + value: + objectReference: {fileID: 4302766788962807501} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[41]' + value: + objectReference: {fileID: 6018005939560629183} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[42]' + value: + objectReference: {fileID: 626316928061447039} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[43]' + value: + objectReference: {fileID: 712767656015626681} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[44]' + value: + objectReference: {fileID: 5959158476869594216} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[45]' + value: + objectReference: {fileID: 2913587874213689576} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[46]' + value: + objectReference: {fileID: 5322950808781089125} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[47]' + value: + objectReference: {fileID: 3623994064113257080} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[48]' + value: + objectReference: {fileID: 7771957426808014483} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[49]' + value: + objectReference: {fileID: 6127696392069948898} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[50]' + value: + objectReference: {fileID: 6912928802504731943} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[51]' + value: + objectReference: {fileID: 3028725123017393216} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[52]' + value: + objectReference: {fileID: 8108941692565690132} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[53]' + value: + objectReference: {fileID: 6931886953479354960} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[54]' + value: + objectReference: {fileID: 685062829302804953} + - target: {fileID: 8039002634532721948, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: 'm_Bones.Array.data[55]' + value: + objectReference: {fileID: 3628875219433683100} + - target: {fileID: 8640508285867402076, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + propertyPath: m_Name + value: Object04_0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 6313658519279133741, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} +--- !u!4 &5445289033794457546 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3950094544465531641, guid: e5f568c05b4f30149abfee1e43393c08, type: 3} + m_PrefabInstance: {fileID: 9025217543798103347} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab.meta new file mode 100644 index 0000000000..2ca09d4478 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4e1db9614941acd468268ffb6421b5db +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat new file mode 100644 index 0000000000..070d81779e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Object04_0 + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2e6718c824e540f40b20bc74d864b617, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2e6718c824e540f40b20bc74d864b617, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5643724541635571949 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat.meta new file mode 100644 index 0000000000..8736f6b568 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 743656ba1bd263245afa31f053cb2cb2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh new file mode 100644 index 0000000000..0fd00e884f --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh @@ -0,0 +1,1175 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Object04_0 + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 534 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 157 + localAABB: + m_Center: {x: 0.00000023841858, y: 1.4834304, z: 0.85590804} + m_Extent: {x: 4.1025553, y: 0.5363288, z: 1.1357394} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: -0.0000013691381 + e01: 0.15567732 + e02: 0.98780847 + e03: -0.25908208 + e10: -1.0000004 + e11: -0.0000026920375 + e12: -0.00000091156414 + e13: 0.0000016277784 + e20: 0.0000024491492 + e21: -0.98780835 + e22: 0.15567727 + e23: 0.933349 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000001178284 + e01: 0.4915164 + e02: 0.870869 + e03: -0.97900873 + e10: -1.0000005 + e11: -0.000002394565 + e12: 0.000000024452277 + e13: 0.00000074293575 + e20: 0.0000020161654 + e21: -0.8708689 + e22: 0.49151653 + e23: 0.6310542 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.10615818 + e01: -0.32753438 + e02: -0.9388574 + e03: 1.2992257 + e10: 0.050700728 + e11: 0.94118136 + e12: -0.33407816 + e13: -0.9779202 + e20: 0.99305594 + e21: -0.08306569 + e22: -0.0833078 + e23: 1.4221306 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000012319638 + e01: 0.6929872 + e02: 0.72095084 + e03: -1.6327966 + e10: -1.0000004 + e11: -0.0000021849728 + e12: 0.0000003937312 + e13: -0.000000021271262 + e20: 0.0000017638304 + e21: -0.7209508 + e22: 0.69298714 + e23: 0.23192322 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.98971885 + e01: 0.13066518 + e02: 0.058168735 + e03: -0.50091064 + e10: 0.10753417 + e11: 0.9479452 + e12: -0.29972926 + e13: -0.9529659 + e20: -0.09430491 + e21: -0.2903925 + e22: -0.95225024 + e23: 1.2728987 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000050057366 + e01: 0.9580756 + e02: 0.28651845 + e03: -1.9341726 + e10: -1.0000005 + e11: -0.0000009256191 + e12: 0.0000012083418 + e13: -0.0000030077424 + e20: 0.0000013487047 + e21: -0.28651834 + e22: 0.9580756 + e23: -0.82713616 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.973016 + e01: 0.09649579 + e02: 0.20959242 + e03: -1.544991 + e10: -0.0646427 + e11: 0.7579778 + e12: -0.64907044 + e13: -0.53233945 + e20: -0.22149883 + e21: -0.64510435 + e22: -0.7312869 + e23: 1.4129263 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.92175144 + e01: 0.13850857 + e02: 0.3622034 + e03: -2.9424956 + e10: 0.059344597 + e11: 0.97341794 + e12: -0.22121765 + e13: -1.115854 + e20: -0.38321525 + e21: -0.18241297 + e22: -0.9054689 + e23: 0.50481266 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.35888767 + e01: -0.17573468 + e02: -0.9166892 + e03: 0.56820494 + e10: 0.13884185 + e11: 0.961139 + e12: -0.23861307 + e13: -0.879212 + e20: 0.9229971 + e21: -0.21290985 + e22: -0.32054165 + e23: 3.0103784 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.8736171 + e01: 0.09150563 + e02: -0.47793487 + e03: -2.0992403 + e10: 0.22216627 + e11: 0.948827 + e12: -0.22443447 + e13: -0.57235926 + e20: 0.43293998 + e21: -0.30225053 + e22: -0.8492409 + e23: 3.1139276 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.90243196 + e01: 0.20417103 + e02: 0.37938446 + e03: -3.67301 + e10: 0.13126872 + e11: 0.96901345 + e12: -0.20924266 + e13: -0.90686333 + e20: -0.41034952 + e21: -0.13902617 + e22: -0.90127003 + e23: 0.34283686 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00849813 + e01: -0.34145865 + e02: -0.9398588 + e03: 1.403027 + e10: -0.038330276 + e11: 0.93909144 + e12: -0.34152624 + e13: -0.981249 + e20: 0.9992296 + e21: 0.038927484 + e22: -0.0051078876 + e23: -1.2646883 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.992555 + e01: 0.11569205 + e02: 0.038098313 + e03: -0.4477298 + e10: -0.10157554 + e11: 0.9588063 + e12: -0.26528177 + e13: -1.0075366 + e20: -0.06722002 + e21: 0.2594368 + e22: 0.9634188 + e23: -1.2358334 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9582494 + e01: 0.053262915 + e02: 0.28093123 + e03: -1.5151929 + e10: -0.012617777 + e11: 0.9894182 + e12: -0.14454822 + e13: -1.2778922 + e20: -0.2856575 + e21: 0.13496841 + e22: 0.9487806 + e23: -0.7758565 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9240077 + e01: 0.16958861 + e02: 0.34271115 + e03: -2.9804752 + e10: -0.012240564 + e11: 0.9089285 + e12: -0.41677445 + e13: -0.7919726 + e20: -0.3821799 + e21: 0.38090754 + e22: 0.8419319 + e23: -0.769706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.26205406 + e01: -0.13206205 + e02: -0.9559754 + e03: 0.83891094 + e10: -0.06023717 + e11: 0.9864238 + e12: -0.15278058 + e13: -1.1456455 + e20: 0.9631723 + e21: 0.09762208 + e22: 0.25054073 + e23: -2.8436997 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.8491477 + e01: -0.0745767 + e02: -0.522865 + e03: -1.6405368 + e10: -0.21943139 + e11: 0.8506809 + e12: -0.4776965 + e13: 0.025759697 + e20: 0.48041606 + e21: 0.5203675 + e22: 0.7059883 + e23: -3.4007301 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.8809101 + e01: 0.28892624 + e02: 0.3748612 + e03: -3.7240038 + e10: -0.06796343 + e11: 0.86105555 + e12: -0.5039505 + e13: -0.4095899 + e20: -0.46838054 + e21: 0.41845784 + e22: 0.77814806 + e23: -0.47012854 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000016087802 + e01: -0.00079616933 + e02: 1 + e03: 0.28539872 + e10: -1.0000002 + e11: -0.0000028008733 + e12: -0.0000015513587 + e13: 0.0000017790301 + e20: 0.0000027425501 + e21: -0.99999994 + e22: -0.0007962289 + e23: 0.96204656 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.046313204 + e01: -0.8465541 + e02: -0.5302855 + e03: 1.2036846 + e10: -0.08507388 + e11: -0.5255836 + e12: 0.84647846 + e13: -0.045244694 + e20: -0.9952983 + e21: 0.08431658 + e22: -0.047678247 + e23: -0.35416585 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.013954633 + e01: -0.9588047 + e02: -0.2837268 + e03: 0.81157684 + e10: -0.99691844 + e11: 0.008569205 + e12: -0.077989556 + e13: -0.28728566 + e20: 0.07720793 + e21: 0.28394037 + e22: -0.9557297 + e23: 0.2635138 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.037785754 + e01: -0.9235866 + e02: 0.3815264 + e03: 0.31486678 + e10: -0.99691856 + e11: 0.008569207 + e12: -0.077989444 + e13: -0.2872856 + e20: 0.06876056 + e21: -0.38329723 + e22: -0.92106354 + e23: 0.5945401 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.013953815 + e01: -0.9588049 + e02: -0.28372702 + e03: 0.8115771 + e10: -0.99691814 + e11: -0.008569046 + e12: 0.07798633 + e13: 0.28728375 + e20: -0.07720467 + e21: 0.2839403 + e22: -0.9557296 + e23: 0.26351357 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000002384186 + e01: -0.00000005960465 + e02: 1.0000001 + e03: 0.5365175 + e10: -1.0000001 + e11: 0.0000013113023 + e12: -0.00000017881396 + e13: -0.0000013573551 + e20: -0.000001370907 + e21: -1.0000001 + e22: -0.0000001192093 + e23: 0.96195847 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.039690826 + e01: -0.9953437 + e02: -0.087841995 + e03: 0.9010237 + e10: 0.99107057 + e11: 0.050415017 + e12: -0.12344701 + e13: -0.347619 + e20: 0.1273006 + e21: -0.082157455 + e22: 0.9884564 + e23: 0.5794416 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.039690584 + e01: -0.9953438 + e02: -0.08784188 + e03: 0.9010238 + e10: 0.99107 + e11: -0.050414894 + e12: 0.12344989 + e13: 0.34762043 + e20: -0.12730363 + e21: -0.08215732 + e22: 0.9884559 + e23: 0.5794412 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.059321836 + e01: -0.6624336 + e02: -0.7467689 + e03: -0.006489739 + e10: 0.9910701 + e11: -0.050414823 + e12: 0.12344994 + e13: 0.3476204 + e20: -0.11942561 + e21: -0.7474228 + e22: 0.65352696 + e23: 0.79568475 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000012363517 + e01: -0.55846137 + e02: -0.82953084 + e03: -0.054800406 + e10: -1.0000004 + e11: 0.000002259768 + e12: -0.00000299228 + e13: -0.0000042718348 + e20: 0.0000036283498 + e21: 0.8295309 + e22: -0.5584614 + e23: -1.2730637 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.059319593 + e01: -0.6624335 + e02: -0.74676937 + e03: -0.0064899623 + e10: 0.9910708 + e11: 0.05041493 + e12: -0.123447046 + e13: -0.34761894 + e20: 0.11942357 + e21: -0.7474229 + e22: 0.6535272 + e23: 0.79568493 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000014982445 + e01: -0.28662935 + e02: -0.9580422 + e03: -0.8712559 + e10: -1.0000005 + e11: 0.000002568417 + e12: -0.000002290515 + e13: -0.0000036840154 + e20: 0.0000031913676 + e21: 0.95804214 + e22: -0.28662938 + e23: -1.0615599 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000001478658 + e01: -0.061228253 + e02: -0.9981244 + e03: -1.7298509 + e10: -1.0000006 + e11: 0.000002758732 + e12: -0.0000015947182 + e13: -0.0000025533222 + e20: 0.0000029143405 + e21: 0.9981244 + e22: -0.06122829 + e23: -0.68586254 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.051932108 + e01: -0.9986098 + e02: 0.00910185 + e03: 0.45821303 + e10: 0.9910702 + e11: -0.050414756 + e12: 0.12344989 + e13: 0.34762037 + e20: -0.12281936 + e21: 0.0154317515 + e22: 0.99230987 + e23: 0.68767893 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000000085602316 + e01: -0.9995786 + e02: 0.02905502 + e03: 0.19193083 + e10: 0.98890305 + e11: 0.004316831 + e12: 0.14850709 + e13: 0.35593402 + e20: -0.14856985 + e21: 0.028732738 + e22: 0.9884855 + e23: 0.67614937 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000016619094 + e01: 0.08204286 + e02: -0.9966297 + e03: -2.1257157 + e10: -1.0000007 + e11: 0.0000028515533 + e12: -0.000001368279 + e13: -0.000002107702 + e20: 0.0000027841968 + e21: 0.9966297 + e22: 0.082042746 + e23: -0.38581228 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000013525423 + e01: 0.30638367 + e02: -0.95190924 + e03: -2.4333076 + e10: -1.0000008 + e11: 0.0000025132779 + e12: -0.0000005331554 + e13: 0.000000024638666 + e20: 0.000002267536 + e21: 0.9519089 + e22: 0.3063836 + e23: 0.17209345 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.14857002 + e01: 0.028732887 + e02: 0.9884854 + e03: 0.47233415 + e10: 0.9889032 + e11: 0.0043168347 + e12: 0.1485073 + e13: 0.3310657 + e20: -0.00000006325044 + e21: 0.9995786 + e22: -0.029055132 + e23: -0.014839232 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.438366 + e01: 0.026115304 + e02: 0.8984186 + e03: 0.53831494 + e10: 0.89879805 + e11: -0.012736887 + e12: -0.43818092 + e13: -0.054691464 + e20: -0.000000018547428 + e21: 0.999579 + e22: -0.029055519 + e23: -0.015065372 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.43132815 + e01: 0.026213584 + e02: 0.90181595 + e03: 0.32590422 + e10: 0.90219665 + e11: 0.0125324065 + e12: 0.43114594 + e13: 0.5273192 + e20: -0.000000055800317 + e21: 0.9995789 + e22: -0.02905511 + e23: -0.014518321 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.15525626 + e01: 0.03587834 + e02: 0.9872239 + e03: -0.6041699 + e10: -0.98787546 + e11: -0.0052124225 + e12: -0.15516935 + e13: -0.23931752 + e20: -0.00042128802 + e21: -0.99934375 + e22: 0.036252454 + e23: 0.13969058 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.33504277 + e01: -0.26371232 + e02: -0.90454704 + e03: 0.57104546 + e10: 0.9341541 + e11: -0.032258473 + e12: 0.35541397 + e13: 0.10559539 + e20: -0.1229061 + e21: -0.96406335 + e22: 0.23553973 + e23: -0.06657255 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.30973747 + e01: -0.17457327 + e02: 0.93466073 + e03: -0.6317801 + e10: -0.9507437 + e11: -0.04409331 + e12: 0.30683154 + e13: -0.49528527 + e20: -0.012352173 + e21: -0.98365766 + e22: -0.17963147 + e23: 0.21561408 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.31052274 + e01: -0.262172 + e02: 0.91369826 + e03: -0.80095303 + e10: -0.94567746 + e11: -0.012171489 + e12: -0.32488352 + e13: -0.10718856 + e20: 0.0962964 + e21: -0.96494573 + e22: -0.24415047 + e23: 0.31792146 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.6130705 + e01: -0.29418212 + e02: 0.73321474 + e03: -0.8175827 + e10: -0.76222 + e11: -0.023824913 + e12: -0.6468821 + e13: 0.12530574 + e20: 0.2077698 + e21: -0.9554539 + e22: -0.20962477 + e23: 0.376374 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0463149 + e01: -0.8465543 + e02: -0.5302853 + e03: 1.2036849 + e10: -0.08507139 + e11: 0.5255834 + e12: -0.84647876 + e13: 0.045244932 + e20: 0.9952983 + e21: 0.08431674 + e22: -0.04767529 + e23: -0.3541641 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03778426 + e01: -0.92358685 + e02: 0.38152623 + e03: 0.31486714 + e10: -0.99691826 + e11: -0.008568898 + e12: 0.07798633 + e13: 0.28728357 + e20: -0.068757705 + e21: -0.3832972 + e22: -0.92106354 + e23: 0.5945398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.051932048 + e01: -0.99860966 + e02: 0.00910207 + e03: 0.4582131 + e10: 0.99107105 + e11: 0.05041485 + e12: -0.12344713 + e13: -0.347619 + e20: 0.12281644 + e21: 0.015431962 + e22: 0.99231035 + e23: 0.68767905 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000004850885 + e01: -0.9995785 + e02: 0.029055161 + e03: 0.19193089 + e10: 0.98890394 + e11: -0.0043165702 + e12: -0.1485043 + e13: -0.3559326 + e20: 0.1485669 + e21: 0.028732957 + e22: 0.98848605 + e23: 0.67614967 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.14856699 + e01: 0.028732741 + e02: 0.9884859 + e03: 0.47233456 + e10: 0.9889042 + e11: -0.004316592 + e12: -0.14850445 + e13: -0.33106413 + e20: 0.00000010438816 + e21: 0.9995784 + e22: -0.02905496 + e23: -0.014839232 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.4383689 + e01: 0.02611492 + e02: 0.8984173 + e03: 0.53831434 + e10: 0.898797 + e11: 0.0127370795 + e12: 0.43818355 + e13: 0.054692864 + e20: -0.000000018546595 + e21: 0.99957865 + e22: -0.029055199 + e23: -0.015065253 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.43132544 + e01: 0.026213638 + e02: 0.9018168 + e03: 0.32590494 + e10: 0.90219826 + e11: -0.012532239 + e12: -0.43114322 + e13: -0.52731776 + e20: 0.0000001341904 + e21: 0.99957854 + e22: -0.029055102 + e23: -0.014518499 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15525302 + e01: 0.035878453 + e02: 0.9872248 + e03: -0.6041697 + e10: -0.9878755 + e11: 0.005212534 + e12: 0.15516621 + e13: 0.23931572 + e20: 0.00042108988 + e21: -0.9993444 + e22: 0.036252584 + e23: 0.1396907 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.33503985 + e01: -0.2637124 + e02: -0.90454876 + e03: 0.5710448 + e10: 0.93415457 + e11: 0.032258183 + e12: -0.35541093 + e13: -0.10559363 + e20: 0.122904934 + e21: -0.9640639 + e22: 0.23553988 + e23: -0.06657207 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.30974028 + e01: -0.17457277 + e02: 0.9346599 + e03: -0.63178086 + e10: -0.9507422 + e11: 0.044093482 + e12: -0.30683476 + e13: 0.49528342 + e20: 0.012352469 + e21: -0.98365843 + e22: -0.1796311 + e23: 0.21561402 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.31051973 + e01: -0.26217222 + e02: 0.9136996 + e03: -0.80095243 + e10: -0.9456778 + e11: 0.012171564 + e12: 0.32488048 + e13: 0.107186854 + e20: -0.09629568 + e21: -0.9649466 + e22: -0.24415089 + e23: 0.3179216 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.61306804 + e01: -0.2941824 + e02: 0.73321706 + e03: -0.81758153 + e10: -0.7622215 + e11: 0.023825562 + e12: 0.6468801 + e13: -0.12530741 + e20: -0.20776953 + e21: -0.95545477 + e22: -0.20962533 + e23: 0.37637398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: 0.17514521, y: -0.30401462, z: -0.19762433} + m_Max: {x: 1.1768941, y: 0.30401003, z: -0.002170205} + - m_Min: {x: 0.12910432, y: -0.36558473, z: -0.459022} + m_Max: {x: 0.69355303, y: 0.36558017, z: 0.40225655} + - m_Min: {x: 0.51488334, y: -0.03186834, z: -0.7229419} + m_Max: {x: 1.4052248, y: 0.093986034, z: 0.62055224} + - m_Min: {x: -0.36196792, y: -0.36558482, z: -0.49015415} + m_Max: {x: 0.49771225, y: 0.36557996, z: 0.38941264} + - m_Min: {x: 0.44652784, y: -0.1403861, z: -0.11352444} + m_Max: {x: 0.976964, y: 0.07917875, z: 0.19922519} + - m_Min: {x: -0.1529758, y: -0.23236616, z: -0.43612793} + m_Max: {x: 0.38722825, y: 0.22754723, z: 0.17326486} + - m_Min: {x: -0.015256524, y: -0.13491863, z: -0.11639202} + m_Max: {x: 1.301322, y: 0.053650796, z: 0.17635775} + - m_Min: {x: 0.059680223, y: 0.014166951, z: -0.11639291} + m_Max: {x: 0.69326663, y: 0.020392656, z: -0.11485374} + - m_Min: {x: 0.4709441, y: -0.08413869, z: -0.8145435} + m_Max: {x: 1.6014321, y: 0.0059622526, z: 0.9386153} + - m_Min: {x: 0.27986765, y: -0.10002494, z: -0.22456479} + m_Max: {x: 1.1340399, y: 0.020559728, z: 0.82432103} + - m_Min: {x: 0.04495883, y: 0.022167206, z: -0.11259806} + m_Max: {x: 1.193866, y: 0.07901031, z: -0.047194242} + - m_Min: {x: 0.45073783, y: -0.0194152, z: -0.4986403} + m_Max: {x: 1.290514, y: 0.11601865, z: 0.85614944} + - m_Min: {x: 0.465413, y: -0.13613528, z: -0.17742479} + m_Max: {x: 0.99138224, y: 0.07682061, z: 0.14061952} + - m_Min: {x: -0.009064078, y: -0.12599218, z: -0.15992582} + m_Max: {x: 1.3241979, y: 0.10057223, z: 0.13641751} + - m_Min: {x: 0.050602198, y: 0.058582366, z: 0.08847517} + m_Max: {x: 0.6839943, y: 0.07520485, z: 0.09170252} + - m_Min: {x: 0.5214263, y: -0.0921787, z: -0.80168056} + m_Max: {x: 1.6525966, y: 0.043785453, z: 0.94423175} + - m_Min: {x: 0.33786297, y: 0.067251086, z: -0.66370296} + m_Max: {x: 1.2502644, y: 0.29306334, z: 0.34884262} + - m_Min: {x: 0.06704831, y: 0.03278005, z: -0.706778} + m_Max: {x: 1.215353, y: 0.23999608, z: 0.08961594} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000500040001000100020005000400050006000600070004000a000900080008000b000a000e000d000c00060010000f000f00110006001000060005000500120010000c001400130013000a000c0017001600150017001300140014001600170018000700060006001100180019000f0010001a0010001200190010001a0019001a001b001d001c000200020003001d00050002001c001c00120005001d001f001e001e001c001d001c001e001a001a0012001c001e001f002000200021001e0021001b001a001a001e0021002400230022002500220021002100200025002600220025001b0021002200220023001b00240022002600280027000a002a002900280029002a002b000a002c0009002c000a0027002700280029002d0009002c0030002f002e002e00310030003200300031003100330032003300350034003400320033003800370036003600390038003c003b003a0034003e003d003d003f0034003f0040003200320034003f003a0038004100410042003a0045004400430043004400420042004100430046003e0034003400350046003d0047003f003f00480040003f00470048004800470049004a002f00300030004b004a00320040004b004b00300032004a004b004c004c004d004a004b004000480048004c004b004c004f004e004e004d004c004f004c004800480049004f0052005100500053004e004f004f005000530050005400530049005200500050004f0049005000510054005600550038005800570055005700580059005a003800390038005a00560055005600580039005b005a005e005d005c005c005f005e0061005e0060006000620061005e006100630063005d005e00640060005e005e005f0064006600650063006300610066006700660061006100620067006900680065006500660069006a0069006600660067006a0069006b0068006c006b00690069006a006c006f006e006d006d0070006f00720071006f006f007000720075007400730073007600750078007700740074007500780074007700790079007a0074007a006e007300730074007a0070006d007b007b007c0070007d007200700070007c007d0080007f007e007e0081008000820081007e007e008300820084005f005c005c008500840088008700860086008400880084008500890089008800840064005f0084008400860064008a008800890089008b008a008c008700880088008a008c008d008a008b008b0068008d008e008c008a008a008d008e006b008d0068006c008e008d008d006b006c00910090008f008f009200910072009000910091007100720075007600930093009400750078007500940094009500780094009700960096009500940097009400930093009200970090009900980098008f0090007d0099009000900072007d009b009a007e007e007f009b009c0083007e007e009a009c00 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 157 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 10064 + _typelessdata: f59c8bbe495d8b3fce36893ea48ed53d9d17703f9375a9be7ba79bbee7269e3f1c38133fb8559f3df46b643f7db5e3be29ec3cbf4f299c3ffb8afc3eca44be3df441703f0e41aabe08a839bf16da863f926796bd52b5033e8dc7733f58c08dbec9f180be4453ae3ff5bd5e3f7754f43d1c365f3f3725f3be0a973abf0924b13f0b15473fb1bd133decf4623fb125ecbeac8139bff338bb3f00226c3f3850383d5fe67b3fc49f30bee2f081be625bb83fd62f773f4798a93d8802653f6bdde0be7c1980be86f8b73fdee98b3fc060a63dd4b030bf6013383f37f48ebe1befa73f5ea76d3f52aff83c40db7fbf9977673cf0353cbfb7cea83f5f5f843fb8ffbbbb7ac07cbf897f223e019a39bfde01b73f12be8b3fe8a19d3b2709ecbe8d2b633f019a39bfde01b73f12be8b3f63b4123d381cd4be6bd1683f5a9184befb85bd3f1f288e3f797b593b1c7dbfbe8d6b6d3f7c1980be86f8b73fdee98b3f797b593b1c7dbfbe8d6b6d3f96069cbf4fa7ba3fa07f8f3f1fa4d93db41e7b3fc998263e0fd29ebf963fbe3fb9da743fcd3018bc56986f3fcb45b4be019a39bfde01b73f12be8b3fc6b0aabc883d7b3f3b61433ecb39a0bf26d8b03f18f0593fb79009bdec99663f3dadddbeb5839ebf3216ab3fef34893f0d44c53d3decd1be0630683f96069cbf4fa7ba3fa07f8f3f64f4103ec3bf50be8cfd773fb5931dc01887d03fca2fb33fd86fa13e3944453e17e26d3f28d9f6bf7d43c83ff4b89d3f0d29753e62e03f3ed3e1733fa31ff5bf27fab93f5b19a03feb22633e99b132bd765f793f5a9184befb85bd3f1f288e3fb019ecbcb0d17f3f19a6c5bc28d9f6bf7d43c83ff4b89d3f6bab7a3c6272763f90578abe380ef9bf76d5bc3f84f3873f5e504e3d2f926f3f5b9cb2beb5931dc01887d03fca2fb33f7b16b73d1d2a763f20e584bec57fa2bf01b2a03f4ee8f43eba8a323d1346743fb48c97be7778a6bf3ff58a3fd5bc61be69edae3d8a07783fabf76dbe3d3b00c0715ea83f1daf0d3fd3c1d13df1d5763fec757abe3de004c06261933ff9458fbe1a0aca3d3a88793f60354dbe23f23ac048e29f3f345864be8522d63d8b28773f805e74bee9e326c0bc62bf3f9522573f67dcda3d583d753f464f88be70264bc08c91d13f59a1913f9120fd3d60ea743f05ed86beb5f742c01980dc3fce34d03fcc62153ea3a5773fe21e54be214883c0c73400404eeefe3f5b831c3ee624753f56197abe81806dc0d2d0b73fe513963edcc3c03d3ae8743f78148dbe073f83c05e4ee43fc64b9a3fa8f8033ec2fb723fe80e93becc39a0bf26d8b03f18f0593f1f99c6bdd61479bf699856beb5839ebf3216ab3fef34893f39031abedded79bf11721fbe380ef9bf76d5bc3f84f3873f7c2e67be8a9077bfd6fdf0bda31ff5bf27fab93f5b19a03f4f3780be142177bf7f5f96bdb5931dc01887d03fca2fb33f9e2ca4be670072bf3c3374bd0a973abf0924b13f0b15473fdb7a04bd0c1274bf939599bec9f180be4453ae3ff5bd5e3fb8bcae3d51a246bfc00220bff69c8b3e495d8b3fc336893e0047ffbd6e676e3f3349afbe08a8393f16da863fa36796bd493f0cbed121723fe2b696be2aec3c3f4f299c3f483de93e4259bebd723d703f0759aabe7fa79b3ee7269e3f1238133f9113ccbd6dcf653ff9bfdbbe0f973a3f0924b13f1edb463f752b31bd0f40643f7ec8e6becef1803e4353ae3febbd5e3fa821f6bd802d5f3fc627f3beb181393ff338bb3f1de86b3f9dc941bd010a7c3f43c52cbee6f0813e625bb83fcc2f773f3244abbd2aff643fddd6e0be8219803e88f8b73fdee98b3f9a60a6bdbfb030bf7513383f039a393fde01b73f11be8b3ffea19dbb2709ecbe8c2b633ff4353c3fb7cea83f5e5f843ff2e3733b08e77cbf8bc41e3e3df48e3e1befa73f67a76d3f2198f9bc0fdb7fbff109673c039a393fde01b73f11be8b3f15b412bda61cd4be54d1683f8219803e88f8b73fdee98b3f357b59bb567dbfbe806b6d3f5f91843efb85bd3f1f288e3f357b59bb567dbfbe806b6d3f97069c3f4fa7ba3fa37f8f3f762fd6bd51b67b3f7cd9183e039a393fde01b73f11be8b3f84cfaa3ca3497b3f1867423e11d29e3f963fbe3f3d466f3ff755bd3ba9fd703fdfb5acbecf39a03f26d8b03f925b543f51f81c3dd581643f4bfee5beb7839e3f3216ab3fe934893fa643c5bde0ecd1bee22f683f97069c3f4fa7ba3fa37f8f3f34f410be30c150be7bfd773fa41ff53f27fab93f5819a03fb72263be13b532bd755f793f29d9f63f7d43c83ff1b89d3fe72875be60e03f3ed5e1733fb6931d401887d03fc72fb33fd46fa1be3644453e17e26d3f5f91843efb85bd3f1f288e3fb4f3eb3cd5d17f3fae17c5bc29d9f63f7d43c83ff1b89d3f077080bc8c3e773f228484be390ef93f76d5bc3f86f3873f93193abd935d6f3fd10db4beb6931d401887d03fc72fb33f9916b7bd1e2a763f1be584be7678a63f3ff58a3ff7bc61be8a98a8bd50f1773f1d8b70bec57fa23f01b2a03f46e8f43e431317bd0547743feafd97be3d3b0040715ea83f17af0d3fdec1d1bdf2d5763fe7757abe3de004406261933f0f468fbe170acabd3988793f5a354dbe23f23a4048e29f3f565864be8c22d6bd8b28773f855e74beeae32640bc62bf3f8422573f7bdcdabd593d753f474f88be72264b408c91d13f4fa1913f9420fdbd60ea743f03ed86be22488340c734004044eefe3f5d831cbee524753f51197abeb6f742401980dc3fca34d03fd56215bea5a5773fd61e54be81806d40d2d0b73fcf13963ed9c3c0bd3be8743f7d148dbe073f83405e4ee43fc04b9a3fa2f803bec1fb723feb0e93beb7839e3f3216ab3fe934893f63bc183e60597abfe3d715becf39a03f26d8b03f925b543f8129c43d82c979bfa7a349bea41ff53f27fab93f5819a03f5237803e132177bf995f96bd390ef93f76d5bc3f86f3873f6dfb653e21c477bf0f2be8bdb6931d401887d03fc72fb33f9f2ca43e670072bf6e3374bd0f973a3f0924b13f1edb463feb2ee13c902f74bf2b1999becef1803e4353ae3febbd5e3f64f1b0bdedad46bfa3ea1fbf69a4de33975ee93f9bf0993f6e2c26ba6fd2773fc76080be886e04be6514e13fc84d9e3fe1352bbf16a53c3f4fc4c9bd51b41cbead98dc3fea5d913f66441fbfd0f8463fdab0c0bd13f7c73341e7e43f8b7a8a3f5c489934746b7d3f1c0511bebd3749be5d0fd53f10e97f3f549736bfc336333f14150ebde70269be1d2cce3f6ba99d3f16d15ebf1fcac43e3e929d3eaf1babbe94f1bf3faa418c3fd93559bf4cf0d63e45ffa43eeee63abe1dd1d53fe149a63f5ee367bf4f37a93ecab9873ec129a9333427e43fb3f46a3f70f432350fc87d3fe68406be28940ebe9d55ca3f7b6fb43fc5bb40bfe34656be10c01f3f697f3ebeb9cdc03f36d1a93f0efd3cbf01bfc1bde2f92a3f63fb8bbe7580ab3f0c2d9c3f371444bf81f28d3b7195243f7a020a347d85bd3f1055be3f91b4b833221104bfdf4d5b3fdde99cbd9a76b83f1cebb23fa0f31abffb1473bec481423f106c05be97669e3f033ea63fab3520bfb2ee44becc81413f944604348b88b43f7183b63f00000000f07381bea7ae773f81410b340d8d933f3c5db33f00000000a80c38bebed47b3f692ba1be5813ad3f497b853fb92954bffb51913ca22f0f3f5a9184befb85bd3f1f288e3f62f45bbfd6a3aa3ec3c2c63ed0a238beacbea93f054d9e3f9d0f27bfe996cebdcd3f403fce445cbeb88e9a3f5bc6983fc5011fbfc8ccfebd3816463fd2e0f3336566a33f236ba83f3a62a8b5cdd1a1beb5e0723f0bd1eb3394e6923f0feca23f73a091b5707a8ebe5fe3753fe14d0dbed343cf3f0344863fa0360ebf2876543fe78051bdc25030be528dcb3fe94f703fb5e711bfda3e4f3f190e10bec8b7a533654bd23f0c42663f000000001d5c7d3fa9af12beb0f4c033924fd53f22b3853f0000000047b07c3f682b24be71f146be4620c23f14fa3c3f807520bf3b51403fbfc553be5f696633a0c2cd3f4461213fe79d32b3dc8a7a3f665052be9545a0be52dcb33f9617583f7d2f42bfccd4233f555ffbbd1f3790beba35bb3f0e1d7f3f360142bfe206273f0117e1ba972dbbbe57b99e3f74e0743f33a557bf41d7cf3cb9ce093f0d3c8bbe2f2a843fabfd8f3f58b61fbf8772cfbde461463f7481e0333f75723fda359b3fc3399cb48d7989be6699763f2e8a11346d86f73fd1eebb3f234c9db2a7425c3f4c77023f645611343b19f03f0c53c83ff439a9b267955b3f119a033f8274d6bd1f87ec3fc062c73f8cff9fbeff47573fd62fe23eb052f1bdae24f23f57c3b93f9c2fb7beb1b3543f6b37da3ed51011be9434fa3f5cc0a83ffa2ad0befa15453fdfdefb3ed1480634bc430140cd95ac3f00000000c50c503f242b153f60b41c3ead98dc3fef5d913f53261e3fbdda473f3524c1bd9d6e043e2d29e13fd14d9e3f5f722b3f024b3c3fdcccd1bdc937493e5d0fd53f10e97f3f8648363f1361333fd5c237bdb61bab3e94f1bf3faf418c3ff1bd5b3ffba6d23e34eb9c3e94f06d3e1e2cce3f66a99d3f11d15e3f27cac43e4b929d3efbe63a3e1dd1d53fe049a63fd0a7653f933daf3e1e118f3e787f3e3eb9cdc03f35d1a93f779c3b3f247ac5bd906b2c3f37940e3e9f55ca3f7f6fb43fd2bb403f274756befabf1f3f6cfb8b3e7580ab3f0c2d9c3fa10a443f1897b4bb45a0243ffee99c3d9a76b83f1cebb23fa5f31a3f191573bebf81423f1f6c053e97669e3f033ea63fad35203fa4ee44becc81413f6f2ba13e5813ad3f497b853fc329543f4253913c932f0f3fda445c3eb88e9a3f5fc6983fcb011f3f14cdfebd3316463fdda2383eacbea93f094d9e3f9f0f273fc696cebdcd3f403f5f91843efb85bd3f1f288e3f63f45b3fe0a3aa3eb4c2c63eed4d0d3ed343cf3f0344863f9f360e3f2876543fc78051bdce50303e528dcb3fe84f703fb5e7113fdb3e4f3f1f0e10be7af1463e4620c23f13fa3c3f7f75203f3b51403fc5c553be9945a03e52dcb33f9517583f7f2f423fcbd4233f785ffbbd2637903eba35bb3f0d1d7f3f3501423fe106273fbc17e1ba9c2dbb3e57b99e3f73e0743f3ea5573fc3d6cf3caace093f143c8b3e2f2a843fabfd8f3f65b61f3f4673cfbdd661463fd252f13dae24f23f57c3b93f9d2fb73eb2b3543f6a37da3ea974d63d1f87ec3fc062c73f8bff9f3e0048573fd52fe23ee610113e9434fa3f5cc0a83ffa2ad03efa15453fdddefb3e00000000000000007a68673f103a343d5d994c3fb042363d5465533f74351b3e69a96e3f1800183e96423c3ff03d363d86843f3fe4ea183e66d5353f74da173e8aa6353f20e8343d0697233f20b0353dbc17353f10d6343d89cd1f3f54bb1e3e2d69193fbc9a1c3ec0e52a3f58f2173eab9c2b3fe066343d016b233f50c3353dc4c62c3f184a9d3e3f29373f3ab89f3ec0e52a3f58f2173e49323e3f9a19a13e66ac203f00dd993ec4c62c3f184a9d3eb5d5163fae7b203fe8b5243fac30f63e83d01c3ff67ef43eab9c2b3fe066343de8b5243fac30f63e6917303fbe5bf83eb5d5163fae7b203f4c27573f4855a33e08fa763f003ca73e65c0513f402f013f45b4783f3061043fd6b46f3f801e373f09463c3fb6a1293fdc46233f12fb523fb290023f66f14a3f234fcb3ee0e3763f65ce4f3fda535d3f2bbf1e3f2467743f6eae3e3f6ad8a03e216d213fdc579a3e526b303fd623f83e44751c3f8830f53e765f163f8ccd203f8eb33f3f7c56183e1fd93b3fa0f7353d7a68673f103a343d69a96e3f1800183e5465533f74351b3e5d994c3fb042363d86843f3fe4ea183e96423c3ff03d363d66d5353f74da173e8aa6353f20e8343d0697233f20b0353d2d69193fbc9a1c3e89cd1f3f54bb1e3ebc17353f10d6343dc0e52a3f58f2173e016b233f50c3353dab9c2b3fe066343dc4c62c3f184a9d3ec0e52a3f58f2173e3f29373f3ab89f3e49323e3f9a19a13e66ac203f00dd993ec4c62c3f184a9d3e83d01c3ff67ef43ee8b5243fac30f63eb5d5163fae7b203fab9c2b3fe066343de8b5243fac30f63e6917303fbe5bf83eb5d5163fae7b203f08fa763f003ca73e4c27573f4855a33e65c0513f402f013f45b4783f3061043fd6b46f3f801e373f09463c3fb6a1293fdc46233f12fb523f234fcb3ee0e3763fb290023f66f14a3f65ce4f3fda535d3f2bbf1e3f2467743f216d213fdc579a3e6eae3e3f6ad8a03e44751c3f8830f53e526b303fd623f83e765f163f8ccd203f8eb33f3f7c56183e1fd93b3fa0f7353d832d213e17d4433f87357b3ef720343f722c953e01f74a3f4e4c563ea8d65a3f7a77b33e3e5a633f8c28bc3e5b19363f7ea2e73ef8d2473f44ed9a3e58ba263f4093873ec0ec733fa6b6b53e97f4093f7610db3eef1f183fefa5073f4a6e223fef98b03e9692d43efc85e33e785cef3e13750a3fa6e2fd3e022de63ecad8cb3e36f70c3fb240c33ec41e233efc27903eb67b823e3c0c8a3e1146813e8ebdc83e7090303ea875d53e7be8963ee6e1043f37c2503e8c4c103f31fe8c3e6446263e7d8d343e5432183e39fa3d3e380c993d5409993e1887bb3d558b663df4fe0b3ebc917a3df00d5c3d7100863d1477623eac3a2e3eb0e26e3e81c8883d1c12943e8042963d52b4e53e4606cf3dcb8a1e3f0fffc13e600e5a3e99d8c83ec225a93ee091083f64f4a93e97c3093ff40c5f3e97850d3fd00e853d61b2b83e00425b3d722c953e01f74a3f87357b3ef720343f7a77b33e3e5a633f7ea2e73ef8d2473f8c28bc3e5b19363f44ed9a3e58ba263f7610db3eef1f183fa6b6b53e97f4093fefa5073f4a6e223ffc85e33e785cef3e13750a3fa6e2fd3ec41e233efc27903e7090303ea875d53e1146813e8ebdc83eb67b823e3c0c8a3e31fe8c3e6446263e7d8d343e5432183e558b663df4fe0b3e7100863d1477623eac3a2e3eb0e26e3e81c8883d1c12943e8042963d52b4e53e97c3093ff40c5f3ee091083f64f4a93e97850d3fd00e853d00000000000000000000803f000000000000000000000000000000000100000002000000030000000000003fe210ac3e3cde273e00000000010000000300000000000000040000000000803f000000000000000000000000020000000100000000000000000000000000803f000000000000000000000000020000000000000000000000000000000000003f0000003f0000000000000000030000000100000000000000040000000000803f000000000000000000000000040000000100000000000000000000000000803f0000000000000000000000000400000001000000000000000000000057634e3fa272463e0000000000000000030000000100000000000000040000000000803f000000000000000000000000030000000000000001000000040000000000003f0000003f0000000000000000030000000100000000000000040000000000803f000000000000000000000000040000000100000000000000000000000000803f000000000000000000000000040000000100000000000000000000000000803f000000000000000000000000040000000100000000000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000000000001000000040000000000003f0000003f0000000000000000040000000600000002000000000000000000003f0000003f0000000000000000040000000600000002000000000000000000803f000000000000000000000000040000000100000000000000000000000000003f0000003f0000000000000000040000000600000002000000000000000000003f0000003f0000000000000000040000000600000002000000000000000000003f0000003f000000000000000004000000060000000200000000000000571a003f52cbff3e0000000000000000060000000700000008000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000060000000000000000000000000000000000803f00000000000000000000000006000000000000000000000000000000571a003f52cbff3e0000000000000000060000000700000008000000000000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000020000000000000000000000000000009a99193fcdcccc3e0000000000000000080000000200000000000000000000009a99193fcdcccc3e0000000000000000080000000200000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000090000000000000000000000000000000000003f0000003f0000000000000000070000000a00000009000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000003f0000003f0000000000000000090000000800000000000000000000000000803f000000000000000000000000090000000000000000000000000000000000003f0000003f0000000000000000040000000600000002000000000000000000003f0000003f0000000000000000040000000600000002000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f00000000000000000000000006000000000000000000000000000000571a003f52cbff3e0000000000000000060000000700000008000000000000000000803f000000000000000000000000040000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000040000000000803f0000000000000000000000000000000001000000030000000b0000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000100000000000000000000000000003fe210ac3e3cde273e000000000100000003000000000000000c0000000000803f0000000000000000000000000c0000000100000000000000000000000000003f0000003f00000000000000000300000001000000000000000c0000000000803f0000000000000000000000000c00000001000000000000000000000054634e3faf72463e00000000000000000300000001000000000000000c0000000000803f0000000000000000000000000300000000000000010000000c0000000000803f0000000000000000000000000c0000000100000000000000000000000000803f0000000000000000000000000c0000000100000000000000000000000000003f0000003f00000000000000000300000001000000000000000c0000000000803f0000000000000000000000000c0000000100000000000000000000000000803f0000000000000000000000000300000000000000010000000c0000000000803f000000000000000000000000030000000500000000000000010000000000003f0000003f00000000000000000c0000000d0000000b000000000000000000803f0000000000000000000000000c0000000100000000000000000000000000003f0000003f00000000000000000c0000000d0000000b000000000000000000003f0000003f00000000000000000c0000000d0000000b000000000000000000003f0000003f00000000000000000c0000000d0000000b000000000000000000003f0000003f00000000000000000c0000000d0000000b000000000000000000803f0000000000000000000000000d0000000000000000000000000000000000803f0000000000000000000000000d0000000000000000000000000000000000003f0000003f00000000000000000d0000000e0000000f000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f0000000000000000000000000d0000000000000000000000000000000000803f0000000000000000000000000d0000000000000000000000000000000000003f0000003f00000000000000000d0000000e0000000f000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000003f0000003f00000000000000000f0000000b00000000000000000000000000003f0000003f00000000000000000f0000000b00000000000000000000000000803f0000000000000000000000000f0000000000000000000000000000000000803f0000000000000000000000000f0000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000003f0000003f00000000000000000e0000001100000010000000000000000000003f0000003f0000000000000000100000000f00000000000000000000000000003f0000003f0000000000000000100000001100000000000000000000000000003f0000003f00000000000000000c0000000d0000000b000000000000000000003f0000003f00000000000000000c0000000d0000000b000000000000000000803f0000000000000000000000000d0000000000000000000000000000000000803f0000000000000000000000000d0000000000000000000000000000000000003f0000003f00000000000000000d0000000e0000000f000000000000000000803f0000000000000000000000000c0000000100000000000000000000000000003f0000003f00000000000000000300000001000000000000000c0000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000030000000500000001000000000000000000803f000000000000000000000000030000000500000001000000000000000000803f00000000000000000000000003000000050000000000000001000000fb775f3f1520023e0000000000000000030000000500000001000000000000000000803f000000000000000000000000030000000000000001000000040000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000030000000500000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000030000000500000001000000000000000000803f000000000000000000000000030000000000000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000500000001000000000000000000803f000000000000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000000000001000000040000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000000000001000000000000000000803f00000000000000000000000003000000010000000000000000000000a9421c3fad7ac73eba2a333300000000030000000100000000000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f00000000000000000000000003000000050000000000000001000000f75fe83ef57ad63e49fffc3d00000000030000000100000005000000000000000000803f000000000000000000000000030000000500000001000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000040000000000803f000000000000000000000000030000000000000001000000040000000000003f0000003f0000000000000000030000000100000000000000040000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000030000000500000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f0000000000000000000000000300000000000000010000000c00000050705f3fbf3e023e0000000000000000030000000500000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000030000000500000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000030000000000000001000000000000000000803f000000000000000000000000030000000500000001000000000000000000803f000000000000000000000000030000000100000000000000000000000000803f0000000000000000000000000300000000000000010000000c0000000000803f000000000000000000000000030000000000000001000000000000000000803f000000000000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000500000000000000010000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f00000000000000000300000001000000000000000c0000000000803f0000000000000000000000000300000000000000010000000c0000000000003f0000003f00000000000000000300000001000000000000000c0000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f00000000000000000000000005000000030000000100000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0.00000023841858, y: 1.4834304, z: 0.85590804} + m_Extent: {x: 4.1025553, y: 0.5363288, z: 1.1357394} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh.meta new file mode 100644 index 0000000000..afae17c424 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c021608ae972326428544f031d93699e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab new file mode 100644 index 0000000000..b1d4156f2a --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab @@ -0,0 +1,227 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8640508285867402076 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3950094544465531641} + - component: {fileID: 8449665713929128709} + - component: {fileID: 8039002634532721948} + - component: {fileID: 6313658519279133741} + m_Layer: 0 + m_Name: Object04_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3950094544465531641 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8640508285867402076} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8449665713929128709 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8640508285867402076} + m_Mesh: {fileID: 4300000, guid: c021608ae972326428544f031d93699e, type: 2} +--- !u!137 &8039002634532721948 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8640508285867402076} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 743656ba1bd263245afa31f053cb2cb2, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: c021608ae972326428544f031d93699e, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &6313658519279133741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8640508285867402076} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 8449665713929128709} + _skinnedMeshRenderer: {fileID: 8039002634532721948} + BoneNames: + - Bip01 Spine1 + - Bip01 Spine2 + - Bone29 + - Bip01 Neck + - Bone14 + - Bip01 Head + - Bone15 + - Bone16 + - Bone31 + - Bone33 + - Bone17 + - Bone20 + - Bone09 + - Bone10 + - Bone11 + - Bone23 + - Bone27 + - Bone12 + - Bip01 Spine + - Bip01 L Clavicle + - Bip01 L UpperArm + - Bip01 L ForeArm + - Bip01 R UpperArm + - Bip01 Pelvis + - Bip01 R Thigh + - Bip01 L Thigh + - Bip01 L Calf + - Bip01 Tail + - Bip01 R Calf + - Bip01 Tail1 + - Bip01 Tail2 + - Bip01 L HorseLink + - Bip01 L Foot + - Bip01 Tail3 + - Bip01 Tail4 + - Bip01 L Toe1 + - Bip01 L Toe2 + - Bip01 L Toe0 + - Bip01 L Hand + - Bip01 L Finger0 + - Bip01 L Finger1 + - Bip01 L Finger2 + - Bip01 L Finger3 + - Bip01 R Clavicle + - Bip01 R ForeArm + - Bip01 R HorseLink + - Bip01 R Foot + - Bip01 R Toe1 + - Bip01 R Toe2 + - Bip01 R Toe0 + - Bip01 R Hand + - Bip01 R Finger0 + - Bip01 R Finger1 + - Bip01 R Finger2 + - Bip01 R Finger3 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab.meta new file mode 100644 index 0000000000..789fa9e13c --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/Object04_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e5f568c05b4f30149abfee1e43393c08 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat new file mode 100644 index 0000000000..5dc0a7cd5d --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: jj_0 + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: bb2613e5e9393434c8afc69861180e36, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: bb2613e5e9393434c8afc69861180e36, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7011206556676139037 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat.meta new file mode 100644 index 0000000000..bd54221439 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca5fc3b9396b59149be9546cf0d8efb1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh new file mode 100644 index 0000000000..aea4cd1d77 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh @@ -0,0 +1,1175 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: jj_0 + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 3246 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 1031 + localAABB: + m_Center: {x: 0.000000029802322, y: 1.0522766, z: -0.38481712} + m_Extent: {x: 0.5993655, y: 1.0925698, z: 2.4977763} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: -0.0000013691381 + e01: 0.15567732 + e02: 0.98780847 + e03: -0.25908208 + e10: -1.0000004 + e11: -0.0000026920375 + e12: -0.00000091156414 + e13: 0.0000016277784 + e20: 0.0000024491492 + e21: -0.98780835 + e22: 0.15567727 + e23: 0.933349 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.000001178284 + e01: 0.4915164 + e02: 0.870869 + e03: -0.97900873 + e10: -1.0000005 + e11: -0.000002394565 + e12: 0.000000024452277 + e13: 0.00000074293575 + e20: 0.0000020161654 + e21: -0.8708689 + e22: 0.49151653 + e23: 0.6310542 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.10615818 + e01: -0.32753438 + e02: -0.9388574 + e03: 1.2992257 + e10: 0.050700728 + e11: 0.94118136 + e12: -0.33407816 + e13: -0.9779202 + e20: 0.99305594 + e21: -0.08306569 + e22: -0.0833078 + e23: 1.4221306 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000012319638 + e01: 0.6929872 + e02: 0.72095084 + e03: -1.6327966 + e10: -1.0000004 + e11: -0.0000021849728 + e12: 0.0000003937312 + e13: -0.000000021271262 + e20: 0.0000017638304 + e21: -0.7209508 + e22: 0.69298714 + e23: 0.23192322 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.98971885 + e01: 0.13066518 + e02: 0.058168735 + e03: -0.50091064 + e10: 0.10753417 + e11: 0.9479452 + e12: -0.29972926 + e13: -0.9529659 + e20: -0.09430491 + e21: -0.2903925 + e22: -0.95225024 + e23: 1.2728987 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000050057366 + e01: 0.9580756 + e02: 0.28651845 + e03: -1.9341726 + e10: -1.0000005 + e11: -0.0000009256191 + e12: 0.0000012083418 + e13: -0.0000030077424 + e20: 0.0000013487047 + e21: -0.28651834 + e22: 0.9580756 + e23: -0.82713616 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.973016 + e01: 0.09649579 + e02: 0.20959242 + e03: -1.544991 + e10: -0.0646427 + e11: 0.7579778 + e12: -0.64907044 + e13: -0.53233945 + e20: -0.22149883 + e21: -0.64510435 + e22: -0.7312869 + e23: 1.4129263 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.92175144 + e01: 0.13850857 + e02: 0.3622034 + e03: -2.9424956 + e10: 0.059344597 + e11: 0.97341794 + e12: -0.22121765 + e13: -1.115854 + e20: -0.38321525 + e21: -0.18241297 + e22: -0.9054689 + e23: 0.50481266 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.35888767 + e01: -0.17573468 + e02: -0.9166892 + e03: 0.56820494 + e10: 0.13884185 + e11: 0.961139 + e12: -0.23861307 + e13: -0.879212 + e20: 0.9229971 + e21: -0.21290985 + e22: -0.32054165 + e23: 3.0103784 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.8736171 + e01: 0.09150563 + e02: -0.47793487 + e03: -2.0992403 + e10: 0.22216627 + e11: 0.948827 + e12: -0.22443447 + e13: -0.57235926 + e20: 0.43293998 + e21: -0.30225053 + e22: -0.8492409 + e23: 3.1139276 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.90243196 + e01: 0.20417103 + e02: 0.37938446 + e03: -3.67301 + e10: 0.13126872 + e11: 0.96901345 + e12: -0.20924266 + e13: -0.90686333 + e20: -0.41034952 + e21: -0.13902617 + e22: -0.90127003 + e23: 0.34283686 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00849813 + e01: -0.34145865 + e02: -0.9398588 + e03: 1.403027 + e10: -0.038330276 + e11: 0.93909144 + e12: -0.34152624 + e13: -0.981249 + e20: 0.9992296 + e21: 0.038927484 + e22: -0.0051078876 + e23: -1.2646883 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.992555 + e01: 0.11569205 + e02: 0.038098313 + e03: -0.4477298 + e10: -0.10157554 + e11: 0.9588063 + e12: -0.26528177 + e13: -1.0075366 + e20: -0.06722002 + e21: 0.2594368 + e22: 0.9634188 + e23: -1.2358334 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9582494 + e01: 0.053262915 + e02: 0.28093123 + e03: -1.5151929 + e10: -0.012617777 + e11: 0.9894182 + e12: -0.14454822 + e13: -1.2778922 + e20: -0.2856575 + e21: 0.13496841 + e22: 0.9487806 + e23: -0.7758565 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9240077 + e01: 0.16958861 + e02: 0.34271115 + e03: -2.9804752 + e10: -0.012240564 + e11: 0.9089285 + e12: -0.41677445 + e13: -0.7919726 + e20: -0.3821799 + e21: 0.38090754 + e22: 0.8419319 + e23: -0.769706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.26205406 + e01: -0.13206205 + e02: -0.9559754 + e03: 0.83891094 + e10: -0.06023717 + e11: 0.9864238 + e12: -0.15278058 + e13: -1.1456455 + e20: 0.9631723 + e21: 0.09762208 + e22: 0.25054073 + e23: -2.8436997 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.8491477 + e01: -0.0745767 + e02: -0.522865 + e03: -1.6405368 + e10: -0.21943139 + e11: 0.8506809 + e12: -0.4776965 + e13: 0.025759697 + e20: 0.48041606 + e21: 0.5203675 + e22: 0.7059883 + e23: -3.4007301 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.8809101 + e01: 0.28892624 + e02: 0.3748612 + e03: -3.7240038 + e10: -0.06796343 + e11: 0.86105555 + e12: -0.5039505 + e13: -0.4095899 + e20: -0.46838054 + e21: 0.41845784 + e22: 0.77814806 + e23: -0.47012854 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000016087802 + e01: -0.00079616933 + e02: 1 + e03: 0.28539872 + e10: -1.0000002 + e11: -0.0000028008733 + e12: -0.0000015513587 + e13: 0.0000017790301 + e20: 0.0000027425501 + e21: -0.99999994 + e22: -0.0007962289 + e23: 0.96204656 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.046313204 + e01: -0.8465541 + e02: -0.5302855 + e03: 1.2036846 + e10: -0.08507388 + e11: -0.5255836 + e12: 0.84647846 + e13: -0.045244694 + e20: -0.9952983 + e21: 0.08431658 + e22: -0.047678247 + e23: -0.35416585 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.013954633 + e01: -0.9588047 + e02: -0.2837268 + e03: 0.81157684 + e10: -0.99691844 + e11: 0.008569205 + e12: -0.077989556 + e13: -0.28728566 + e20: 0.07720793 + e21: 0.28394037 + e22: -0.9557297 + e23: 0.2635138 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.037785754 + e01: -0.9235866 + e02: 0.3815264 + e03: 0.31486678 + e10: -0.99691856 + e11: 0.008569207 + e12: -0.077989444 + e13: -0.2872856 + e20: 0.06876056 + e21: -0.38329723 + e22: -0.92106354 + e23: 0.5945401 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.013953815 + e01: -0.9588049 + e02: -0.28372702 + e03: 0.8115771 + e10: -0.99691814 + e11: -0.008569046 + e12: 0.07798633 + e13: 0.28728375 + e20: -0.07720467 + e21: 0.2839403 + e22: -0.9557296 + e23: 0.26351357 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.0000002384186 + e01: -0.00000005960465 + e02: 1.0000001 + e03: 0.5365175 + e10: -1.0000001 + e11: 0.0000013113023 + e12: -0.00000017881396 + e13: -0.0000013573551 + e20: -0.000001370907 + e21: -1.0000001 + e22: -0.0000001192093 + e23: 0.96195847 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.039690826 + e01: -0.9953437 + e02: -0.087841995 + e03: 0.9010237 + e10: 0.99107057 + e11: 0.050415017 + e12: -0.12344701 + e13: -0.347619 + e20: 0.1273006 + e21: -0.082157455 + e22: 0.9884564 + e23: 0.5794416 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.039690584 + e01: -0.9953438 + e02: -0.08784188 + e03: 0.9010238 + e10: 0.99107 + e11: -0.050414894 + e12: 0.12344989 + e13: 0.34762043 + e20: -0.12730363 + e21: -0.08215732 + e22: 0.9884559 + e23: 0.5794412 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.059321836 + e01: -0.6624336 + e02: -0.7467689 + e03: -0.006489739 + e10: 0.9910701 + e11: -0.050414823 + e12: 0.12344994 + e13: 0.3476204 + e20: -0.11942561 + e21: -0.7474228 + e22: 0.65352696 + e23: 0.79568475 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000012363517 + e01: -0.55846137 + e02: -0.82953084 + e03: -0.054800406 + e10: -1.0000004 + e11: 0.000002259768 + e12: -0.00000299228 + e13: -0.0000042718348 + e20: 0.0000036283498 + e21: 0.8295309 + e22: -0.5584614 + e23: -1.2730637 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.059319593 + e01: -0.6624335 + e02: -0.74676937 + e03: -0.0064899623 + e10: 0.9910708 + e11: 0.05041493 + e12: -0.123447046 + e13: -0.34761894 + e20: 0.11942357 + e21: -0.7474229 + e22: 0.6535272 + e23: 0.79568493 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000014982445 + e01: -0.28662935 + e02: -0.9580422 + e03: -0.8712559 + e10: -1.0000005 + e11: 0.000002568417 + e12: -0.000002290515 + e13: -0.0000036840154 + e20: 0.0000031913676 + e21: 0.95804214 + e22: -0.28662938 + e23: -1.0615599 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000001478658 + e01: -0.061228253 + e02: -0.9981244 + e03: -1.7298509 + e10: -1.0000006 + e11: 0.000002758732 + e12: -0.0000015947182 + e13: -0.0000025533222 + e20: 0.0000029143405 + e21: 0.9981244 + e22: -0.06122829 + e23: -0.68586254 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.051932108 + e01: -0.9986098 + e02: 0.00910185 + e03: 0.45821303 + e10: 0.9910702 + e11: -0.050414756 + e12: 0.12344989 + e13: 0.34762037 + e20: -0.12281936 + e21: 0.0154317515 + e22: 0.99230987 + e23: 0.68767893 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000000085602316 + e01: -0.9995786 + e02: 0.02905502 + e03: 0.19193083 + e10: 0.98890305 + e11: 0.004316831 + e12: 0.14850709 + e13: 0.35593402 + e20: -0.14856985 + e21: 0.028732738 + e22: 0.9884855 + e23: 0.67614937 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000016619094 + e01: 0.08204286 + e02: -0.9966297 + e03: -2.1257157 + e10: -1.0000007 + e11: 0.0000028515533 + e12: -0.000001368279 + e13: -0.000002107702 + e20: 0.0000027841968 + e21: 0.9966297 + e22: 0.082042746 + e23: -0.38581228 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000013525423 + e01: 0.30638367 + e02: -0.95190924 + e03: -2.4333076 + e10: -1.0000008 + e11: 0.0000025132779 + e12: -0.0000005331554 + e13: 0.000000024638666 + e20: 0.000002267536 + e21: 0.9519089 + e22: 0.3063836 + e23: 0.17209345 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.14857002 + e01: 0.028732887 + e02: 0.9884854 + e03: 0.47233415 + e10: 0.9889032 + e11: 0.0043168347 + e12: 0.1485073 + e13: 0.3310657 + e20: -0.00000006325044 + e21: 0.9995786 + e22: -0.029055132 + e23: -0.014839232 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.438366 + e01: 0.026115304 + e02: 0.8984186 + e03: 0.53831494 + e10: 0.89879805 + e11: -0.012736887 + e12: -0.43818092 + e13: -0.054691464 + e20: -0.000000018547428 + e21: 0.999579 + e22: -0.029055519 + e23: -0.015065372 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.43132815 + e01: 0.026213584 + e02: 0.90181595 + e03: 0.32590422 + e10: 0.90219665 + e11: 0.0125324065 + e12: 0.43114594 + e13: 0.5273192 + e20: -0.000000055800317 + e21: 0.9995789 + e22: -0.02905511 + e23: -0.014518321 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.15525626 + e01: 0.03587834 + e02: 0.9872239 + e03: -0.6041699 + e10: -0.98787546 + e11: -0.0052124225 + e12: -0.15516935 + e13: -0.23931752 + e20: -0.00042128802 + e21: -0.99934375 + e22: 0.036252454 + e23: 0.13969058 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.33504277 + e01: -0.26371232 + e02: -0.90454704 + e03: 0.57104546 + e10: 0.9341541 + e11: -0.032258473 + e12: 0.35541397 + e13: 0.10559539 + e20: -0.1229061 + e21: -0.96406335 + e22: 0.23553973 + e23: -0.06657255 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.30973747 + e01: -0.17457327 + e02: 0.93466073 + e03: -0.6317801 + e10: -0.9507437 + e11: -0.04409331 + e12: 0.30683154 + e13: -0.49528527 + e20: -0.012352173 + e21: -0.98365766 + e22: -0.17963147 + e23: 0.21561408 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.31052274 + e01: -0.262172 + e02: 0.91369826 + e03: -0.80095303 + e10: -0.94567746 + e11: -0.012171489 + e12: -0.32488352 + e13: -0.10718856 + e20: 0.0962964 + e21: -0.96494573 + e22: -0.24415047 + e23: 0.31792146 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.6130705 + e01: -0.29418212 + e02: 0.73321474 + e03: -0.8175827 + e10: -0.76222 + e11: -0.023824913 + e12: -0.6468821 + e13: 0.12530574 + e20: 0.2077698 + e21: -0.9554539 + e22: -0.20962477 + e23: 0.376374 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0463149 + e01: -0.8465543 + e02: -0.5302853 + e03: 1.2036849 + e10: -0.08507139 + e11: 0.5255834 + e12: -0.84647876 + e13: 0.045244932 + e20: 0.9952983 + e21: 0.08431674 + e22: -0.04767529 + e23: -0.3541641 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.03778426 + e01: -0.92358685 + e02: 0.38152623 + e03: 0.31486714 + e10: -0.99691826 + e11: -0.008568898 + e12: 0.07798633 + e13: 0.28728357 + e20: -0.068757705 + e21: -0.3832972 + e22: -0.92106354 + e23: 0.5945398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.051932048 + e01: -0.99860966 + e02: 0.00910207 + e03: 0.4582131 + e10: 0.99107105 + e11: 0.05041485 + e12: -0.12344713 + e13: -0.347619 + e20: 0.12281644 + e21: 0.015431962 + e22: 0.99231035 + e23: 0.68767905 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000004850885 + e01: -0.9995785 + e02: 0.029055161 + e03: 0.19193089 + e10: 0.98890394 + e11: -0.0043165702 + e12: -0.1485043 + e13: -0.3559326 + e20: 0.1485669 + e21: 0.028732957 + e22: 0.98848605 + e23: 0.67614967 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.14856699 + e01: 0.028732741 + e02: 0.9884859 + e03: 0.47233456 + e10: 0.9889042 + e11: -0.004316592 + e12: -0.14850445 + e13: -0.33106413 + e20: 0.00000010438816 + e21: 0.9995784 + e22: -0.02905496 + e23: -0.014839232 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.4383689 + e01: 0.02611492 + e02: 0.8984173 + e03: 0.53831434 + e10: 0.898797 + e11: 0.0127370795 + e12: 0.43818355 + e13: 0.054692864 + e20: -0.000000018546595 + e21: 0.99957865 + e22: -0.029055199 + e23: -0.015065253 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.43132544 + e01: 0.026213638 + e02: 0.9018168 + e03: 0.32590494 + e10: 0.90219826 + e11: -0.012532239 + e12: -0.43114322 + e13: -0.52731776 + e20: 0.0000001341904 + e21: 0.99957854 + e22: -0.029055102 + e23: -0.014518499 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15525302 + e01: 0.035878453 + e02: 0.9872248 + e03: -0.6041697 + e10: -0.9878755 + e11: 0.005212534 + e12: 0.15516621 + e13: 0.23931572 + e20: 0.00042108988 + e21: -0.9993444 + e22: 0.036252584 + e23: 0.1396907 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.33503985 + e01: -0.2637124 + e02: -0.90454876 + e03: 0.5710448 + e10: 0.93415457 + e11: 0.032258183 + e12: -0.35541093 + e13: -0.10559363 + e20: 0.122904934 + e21: -0.9640639 + e22: 0.23553988 + e23: -0.06657207 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.30974028 + e01: -0.17457277 + e02: 0.9346599 + e03: -0.63178086 + e10: -0.9507422 + e11: 0.044093482 + e12: -0.30683476 + e13: 0.49528342 + e20: 0.012352469 + e21: -0.98365843 + e22: -0.1796311 + e23: 0.21561402 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.31051973 + e01: -0.26217222 + e02: 0.9136996 + e03: -0.80095243 + e10: -0.9456778 + e11: 0.012171564 + e12: 0.32488048 + e13: 0.107186854 + e20: -0.09629568 + e21: -0.9649466 + e22: -0.24415089 + e23: 0.3179216 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.61306804 + e01: -0.2941824 + e02: 0.73321706 + e03: -0.81758153 + e10: -0.7622215 + e11: 0.023825562 + e12: 0.6468801 + e13: -0.12530741 + e20: -0.20776953 + e21: -0.95545477 + e22: -0.20962533 + e23: 0.37637398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: -0.10824247, y: -0.30401462, z: -0.2549051} + m_Max: {x: 0.60644454, y: 0.3428509, z: 0.83064026} + - m_Min: {x: -0.20900965, y: -0.34544328, z: -0.27505535} + m_Max: {x: 0.6149282, y: 0.34543934, z: 0.4792402} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.06171739, y: -0.27920973, z: -0.28151178} + m_Max: {x: 0.49771225, y: 0.27920452, z: 0.28561586} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.1643169, y: -0.25708556, z: -0.47459376} + m_Max: {x: 0.6667745, y: 0.25707778, z: 0.6004584} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.009119034, y: -0.31362057, z: -0.2220226} + m_Max: {x: 0.8340793, y: 0.31362075, z: 0.36802065} + - m_Min: {x: -0.104450226, y: -0.24678878, z: -0.12429662} + m_Max: {x: 0.4790699, y: 0.24230444, z: 0.119047225} + - m_Min: {x: -0.023975909, y: -0.18338364, z: -0.12896115} + m_Max: {x: 0.1908679, y: 0.088026434, z: 0.15803969} + - m_Min: {x: -0.07310897, y: -0.08373164, z: -0.063667655} + m_Max: {x: 0.36084214, y: 0.06239003, z: 0.10573086} + - m_Min: {x: 0.011715353, y: -0.088029504, z: -0.12896061} + m_Max: {x: 0.19086826, y: 0.18338005, z: 0.11538404} + - m_Min: {x: -0.24857801, y: -0.31362087, z: -0.24185342} + m_Max: {x: 0.29524088, y: 0.31362033, z: 0.25548035} + - m_Min: {x: -0.07847577, y: -0.14576617, z: -0.19614375} + m_Max: {x: 0.47370014, y: 0.096942574, z: 0.25523636} + - m_Min: {x: -0.027159631, y: -0.11082891, z: -0.19614285} + m_Max: {x: 0.874175, y: 0.14576596, z: 0.25523704} + - m_Min: {x: 0.013487533, y: -0.09218633, z: -0.14984012} + m_Max: {x: 0.30569392, y: 0.14576593, z: 0.14012343} + - m_Min: {x: -0.017085686, y: -0.10268433, z: -0.09102368} + m_Max: {x: 0.4753554, y: 0.10268521, z: 0.07673478} + - m_Min: {x: 0.013487905, y: -0.14576612, z: -0.14984053} + m_Max: {x: 0.30569473, y: 0.09218627, z: 0.14012313} + - m_Min: {x: -0.0056889057, y: -0.067569755, z: -0.08274847} + m_Max: {x: 0.65759456, y: 0.06757176, z: 0.05491078} + - m_Min: {x: -0.009482861, y: -0.039300647, z: -0.04200673} + m_Max: {x: 0.3166927, y: 0.039304662, z: 0.04005742} + - m_Min: {x: -0.0289765, y: -0.110828996, z: -0.14241391} + m_Max: {x: 0.3613799, y: 0.1109342, z: 0.08722925} + - m_Min: {x: -0.013562918, y: -0.14119217, z: -0.07953298} + m_Max: {x: 0.1807523, y: 0.13426775, z: 0.32975572} + - m_Min: {x: -0.0069646835, y: -0.032000042, z: -0.03273183} + m_Max: {x: 0.28256273, y: 0.032005094, z: 0.039042354} + - m_Min: {x: -0.0073165894, y: -0.1137482, z: -0.17012239} + m_Max: {x: 0.54633856, y: 0.11375462, z: 0.09330648} + - m_Min: {x: 0.0453372, y: -0.059942305, z: -0.0039180405} + m_Max: {x: 0.11839637, y: 0.031330764, z: 0.08985164} + - m_Min: {x: 0.032640874, y: -0.035066307, z: -0.0037253723} + m_Max: {x: 0.10560891, y: 0.030796006, z: 0.08978731} + - m_Min: {x: 0.049284965, y: -0.031873703, z: -0.0033397712} + m_Max: {x: 0.12312296, y: 0.033816278, z: 0.09032255} + - m_Min: {x: -0.09464586, y: -0.120674625, z: -0.09473242} + m_Max: {x: 0.23673534, y: 0.15727021, z: 0.1623961} + - m_Min: {x: 0.07955599, y: -0.032028966, z: -0.05494935} + m_Max: {x: 0.15944117, y: 0.037354283, z: 0.06537023} + - m_Min: {x: 0.028970242, y: -0.05257529, z: -0.056701183} + m_Max: {x: 0.19951326, y: 0.0407573, z: 0.06266022} + - m_Min: {x: 0.11679518, y: -0.049830534, z: -0.06351608} + m_Max: {x: 0.23927128, y: 0.037896268, z: 0.075744644} + - m_Min: {x: 0.070453644, y: -0.027200013, z: -0.033952236} + m_Max: {x: 0.20378292, y: 0.037655264, z: 0.06804082} + - m_Min: {x: 0.011524558, y: -0.24230412, z: -0.084169656} + m_Max: {x: 0.44803143, y: 0.23796967, z: 0.11905071} + - m_Min: {x: -0.07310918, y: -0.062393576, z: -0.06366682} + m_Max: {x: 0.46818912, y: 0.08372837, z: 0.11915329} + - m_Min: {x: -0.02897662, y: -0.11093472, z: -0.14241481} + m_Max: {x: 0.33373642, y: 0.08209622, z: 0.087228775} + - m_Min: {x: -0.013562918, y: -0.13426782, z: -0.07953411} + m_Max: {x: 0.18045084, y: 0.14119214, z: 0.26345748} + - m_Min: {x: 0.045336336, y: -0.031330377, z: -0.003918088} + m_Max: {x: 0.11839545, y: 0.034518868, z: 0.089851566} + - m_Min: {x: 0.032640755, y: -0.030796006, z: -0.0037253816} + m_Max: {x: 0.105608225, y: 0.035066202, z: 0.08978726} + - m_Min: {x: 0.04928431, y: -0.033815682, z: -0.0033399202} + m_Max: {x: 0.1231222, y: 0.0318743, z: 0.09032237} + - m_Min: {x: -0.09464651, y: -0.15727434, z: -0.09473246} + m_Max: {x: 0.23673499, y: 0.120670564, z: 0.16239627} + - m_Min: {x: 0.020388126, y: -0.050472282, z: -0.054949112} + m_Max: {x: 0.15944067, y: 0.03711053, z: 0.06537047} + - m_Min: {x: 0.028968394, y: -0.04076165, z: -0.056700945} + m_Max: {x: 0.19951099, y: 0.052571237, z: 0.062660605} + - m_Min: {x: 0.11679578, y: -0.037900895, z: -0.06351611} + m_Max: {x: 0.23927188, y: 0.049825788, z: 0.07574475} + - m_Min: {x: 0.07045543, y: -0.037659317, z: -0.033952713} + m_Max: {x: 0.2037847, y: 0.02719593, z: 0.06804046} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 02000100000000000300020005000000040004000600050009000800070007000a0009000d000c000b000b000e000d0010000b000f000f001100100011000a00100008001300120012000700080015001400060006001600150019001800170017001a001900080009001b001b001c00080008001c001d001d00130008001f001d001e001c001e001d001e00210020001b0021001c0022001a0017001700230022001a00220024002000250022002400220025001a0024001600160019001a0027001500260028002700090014002900050005000600140014001500270026002400250021001e001c0018001900040004002a00180004000000010001002a0004001900160006000600040019001500240026001600240015000d000200030003000c000d000c0003002b000f000b000c000c002b000f0029002b0003000300050029000000050003000a002800090028000a00110009002700260026001b0009002e002d002c002c002f002e002000220030003000310020003200310030002e003100330033002d002e0031001e0020003000340032003400300035003500300022002200230035003100320033001e0031002e002e002f001f001f001e002e003800370036003600390038003b003a003700370038003b003e003d003c0037003f003c003c00360037003a0040003f003f0037003a00430042004100420036004400460045003f003f00400046003600430039003d0044003c0049004800470049004500460046004a0049004c0041004b0041004c004d004f004c004e005200510050005500540053005800570056004c0051004e00500051004c004c004b0050004a00590049003e0050004b004b003d003e005a005800560056005b005a005d0056005c005e00530054005b0056005f00420043003600440036003c004100420044004b00410044005c0054005500560054005c0057005400560061004e0060005900480049004b0044003d0062004f0061004e00630060004f004e0061006600650064006400670066006a006900680068006b006a006c006a006b006b006d006c0068006f006e006e006b0068006e0070006d006d006b006e00730072007100710074007300760075006e006e006f00760075007600770077007800750077007600790077007b007a007a00780077007c007a007b007b007d007c007f007e007d0080007d007e0083008200810081008400830087008600850085008800870087008a00890089008b0087008e008d008c008c0088008e008e0090008f008f0091008e0094009300920096009200950069006a0065006500660069006d009800970097006c006d0078009900750070009a00960099009a0070007000750099006a006c007300730065006a006500730074007400640065009c009b007c009d006d0096007b007f007d009e009a00990099009f009e00a100a0009e009e009f00a100a1009f00a200a300a2009f009f00a400a300a300a500a2007a007c00a600a600a4007a00a400a600a700a700a300a400a500a300a700a700a800a50096009a009e009e009200960092009e00a000a000a9009200a200a500aa00ab00aa00a500a500a800ab00ae00ad00ac00b000af00ae00b200b100a000a000a100b200aa00ab00b300b300b400aa009f0099007800a4009f00780078007a00a4009b00b500a600a6007c009b00a700a600b500ad00a800a700a700b500ad00ad00ab00a800ae00b300ab00ab00ad00ae00a200b600b200b200a100a200720073006c006c00970072008000b7007c007c007d008000b900b800840084008100ba008b00bb008600860087008b008a008700880088008c008a0090008e0088008800850090008d008e0091009100bc008d00b400b600a200a200aa00b40070006e00750096006d0070007b007700790079007f007b00bd00660067006700be00bd0068006900bf00bf00c00068006800c0006f00c10076006f006f00c000c10079007600c100c100c2007900bf00690066006600bd00bf00c200c400c300c3007f00c2007900c2007f00c500bd00be00be00c600c500c000bf00c700c700c800c000c100c000c800c800c900c100c200c100c900c900c400c200c700bf00bd00bd00c500c700ca0091008f008f00cb00ca00cc00bc0091009100ca00cc00ca00ce00cd00cd00cc00ca00d000ce00cf00cf00d100d000d200cd00ce00ce00d000d200d000d400d300d300d200d000d600d400d500d500d700d600d800d300d400d400d600d800d900d600d700d900d800d600dc00db00da004d004c004f00df00de00dd00e100e000df00e400e300e200e600e500e400e900e800e700ea00df00e900e500ec00eb00ed00e900e500ee00df00e000ef00e400e500f000e900df00df00ee00f000ef00e500e900e900f000ef00f100f000ee00f100ef00f000b200f300f200f200f400b200f500f300b200b200b600f500f600b400b300b300f700f600f900f800ae00ae00af00fa00fd00fc00fb00fd00fe00fc0001010001ff00ff0002010101ff000001f20005010401030107010601050105010301070109010801f8000c010b010a0106010701f6000d010601f600f600f7000e01f800f700b300b300ae00f800f8000c01f700f300f50007011001fd000f01fd00120111011301fe00fd000c01f80014010c01160115011701f7000c01f500f6000701f600f500b600b600b400f600ff0003010201f200f300ff00f3000301ff0007010301f30018010101020102011a0119011c010c011b011f011e011d01040120010201020103010401ce00ca00cb00cb00cf00ce00d400d000d100d100d500d40023012201210121012401230121012601250125012401210128012701260126012101280121012201280128012a01290129012b01280127012d012c012c012601270126012c0125012b012e012701270128012b012d0127012e012e012f012d012f013101300130012d012f0132012b01290135013401330137013201360136013801370136013401390139013801360137012e012b012b013201370133013201290129013a01330136013201330133013401360131012f013b013b013c01310133013a013d013d013e013501350133013d013f01390134013401350140012d013001410141012c012d013b012f012e012e0137013b01420141013001410125012c012a0143013a013a0129012a013b0137014401440145013b01450146013c013c013b0145014701380139013901490148014a01470139014401370138013801470144014d014c014b014b014e014d01510150014f0154015301520156015101550158015501570155015201590154014e014b014f015b015a015a0151014f015c014f014c014c014d015d015d015c014c015f014f015e0160014c014f0162014c0161014b01640163016701660165015c0168015b015b014f015c016b016a0169016a016d016c016f016d016e0170014d014e015a01710151016a0172016e017401540173015201730154017601750174015401740177017301520178017901740173017b017a017401740179017b017d0172017c0172017d016e0173017f017e018001790173016d016a016e0181015201550181015501820152018101830185016f0184016e0184016f01810187018601890188018101810188018a018c018b0181018d016d016f0151018f018e018e015501510191019001510155018e01920194018d0193016f0193018d01960195018e018e01980197018e01950199019b019a018e019e019d019c019f015c015d015d01a0019f017901a1017b01a3019501a2019501a301a401a6018801a5018801a601a701a1017901a801a9017b01a101aa0194019301ac01a301ab01ae01ad01a301af0185018401b101a601b001b301b201a601b5017d01b401a901a101b601b70168019f01ba01b901b801b7019f01a001bd01bc01bb019f0168015c01c001bf01be014c01c1014b01c2014e015401c30154014b0122012a01280122012301c401c5012a012201c801c701c601cb01ca01c901ce01cd01cc01d101d001cf01d401d301d201d701d601d501da01d901d801dd01dc01db01e001df01de01e301e201e101e601e501e401e901e801e701ec01eb01ea01ef01ee01ed01f201f101f001f501f401f301f801f701f601fb01fa01f901fe01fd01fc0101020002ff010402030202020702060205020a02090208020d020c020b0210020f020e0213021202110216021502140219021802170217021a0219021d021c021b021b021e021d02180219021e021e021f0218021e021b02200220021f021e0220021b0221021d021e021902190222021d0219021a0222021b021c02210223021a02170245003c003f003e003c00450049003e0045004d00db00dc0041004d00dc004100dc00430057005e00540024025e0057005700580025022502240257005a0025025800480026025200470048005200470050003e005200500047003e00490047000200280227022702010002002b022a02290229022c022b020d000e002d022d022e020d00310230022f022f022d0231022a02300231022c0229021200120013002c023402330232023202350234023702360217001700180037022c023902380238022b022c022c0213001d001d0039022c021d001f003a023a0239021d003c023a023b023c023802390236023d021700230017003d023d0236023e023f023b023d023d023e023f0236023702330233023e023602340241024002410242022b023502320243024302440235023402350241023e0240023f023a023c02390218002a00450245023702180045022a0001000100270245023702450232023202330237023e02340240023e02330234020d002e022802280202000d0028022e0246022f0246022e022e022d022f0244024302280228024602440243022702280242022a022b022a024202300241022b024002380240022b0247022f002c002c00480247023b024a02490249023d023b024a024b024902470248024c024c024a0247023a024a023b02340049024b02490234003500350023003d023d02490235004b024a024c024a023a0247022f0047021f003a021f004702380039004d024d024e0238003b0038004e024e024f023b005202510250024e024d025002500253024e024f024e025302530254024f025602430055024d025602570258025402530253025902580243004d02390057025202500248005b025a025b024a005802580259025b0255025d025c025d0255025e025d0260025f0263026202610264025500530067026602650263025d025f0261025c025d025d026302610259004a005b02510252025c025c026102510269026802650265026602690265025d005c0053005e006402650268026a02430056024d024d025702500256025502570255025c02570264025c005500640265025c006402670265025f0261006000480059005b0257025c0252026002620061006b025f0260005f02600261006e026d026c026c026f026e027202710270027002730272027502740271027102720275027002710276027602770270027602710274027402780276027a0279027100710072007a027b027702760276027c027b027c027e027d027d027b027c027b027d027f027d027e028002800281027d028302820281028102800283027e0084028202820280007e0086028502810081008200860288028702850085008600880288028902890089008a0088028a0287028c008c008d008a028a028b028f008f0090008a028e028d028c028c0290028f0273026e026f026f027202730274027502970097009800740291027e027c0292027802900291027c02780278029202910272026f027a027a02750272026f026c02790279027a026f02940293028302740295029002840281028202970296029102910292029702980296029702970299029802960298029a029c029b02960296029a029c029d029c029a0280029b029e029e02830280029b029c029f029f029e029b029d02a0029f029f029c029d0290028c0297029702920290028c02a1029902990297028c029d029a02a202a302a0029d029d02a202a302a602a502a402a802a702a602a902980299029902aa02a902a202ac02ab02ab02a302a202910296027e029b0280027e027e0296029b02940283029e029e02ad0294029e029f02ae02a702af029f029f02a002a702a302a702a002a602a702a302a302ab02a6029a029802a902a902b0029a0272009700750275027a0272008000820283028302b1028000b202810085028502b402b3028902880286008600bb0089028a008c008702870288028a0090008500870287028a0290008d00bc008b028b028a028d00ac02a2029a029a02b002ac02760278027c02740290027802810284027f027f027d028102b602b5026d026d026e02b6027002b802b702b70273027002b80270027702b902b802770277027b02b9027f02ba02b902b9027b027f02b702b6026e026e027302b702ba028402c300c300c400ba02ba027f028402c500c600b502b502b602c500b802c800c700c700b702b802b902c900c800c800b802b902ba02c400c900c900b902ba02c700c500b602b602b702c700bb02cb008f008f008b02bb02cc00bb028b028b02bc00cc00bb02cc00cd00cd00bc02bb02bd02d100cf00cf00bc02bd02d200bd02bc02bc02cd00d200bd02d200d300d300be02bd02bf02d700d500d500be02bf02d800bf02be02be02d300d800bf02d900d700d800d900bf02c002dc00da005d025e026002c202e000c102c402c302c202e400c602c502c802c702e400ca02c202c902cc02cb02ca02c602ca02cd02cf02ce02c602c202ee00e000e400ef00c602d002ee00c202c202ca02d002ef00d002ca02ca02c602ef00d002f100ee00ef00f100d002a902d202d102d102d302a902d402b002a902a902d302d402d602d502ab02ab02ac02d602d702a502a602a602d902d802dc02db02da02dd02db02dc02e002df02de02de02e102e002e102de02d102e402e302e202e502e202e302e302e602e502e802e702d902eb02ea02e902e502e602d602ec02d502d602d602e602ed02d902a602ab02ab02d502d902ea02d902d502d402d302e502db02ef02ee02db02dd02f002f202f102db02d902ea02f302ea02d502f402f602f502ea02d602d402e502d602ac02b002b002d402d602e202de02df02d302d102de02e202d302de02e202e502d302f802f702df02df02e002f902fc02fb02fa02fe02ea02fd02e402e202df02df02ff02e402bc02cf00cb00cb00bb02bc02be02d500d100d100bd02be0202030103000300030303020300030503040304030603000307030003060306030803070303030003070307030a03090309030b030703080306030c030c030d0308030c03060304030a030703080308030e030a030d030f030e030e0308030d030f030d031003100311030f030a0312030903150314031303180317031603160312031803160317031903190315031603180312030a030a030e03180313031a03090309031203130316031503130313031203160311031c031b031b030f0311031a0313031d031d031303140314031e031d031f03140315031503190320030d030c032103220310030d031b0318030e030e030f031b03240323031003040325030c030b0309031a031a0326030b031b0328032703270318031b0328031b031c031c032903280317032a03190319032a032b032d032c03190327032a03170317031803270330032f032e032e033103300334033303320337033603350333033903380338033b033a03350338033c032f0336032e03320333033d033d033e03320332033f03310331033f03400340033003310332034203410331034303320331034503440347032e0346034a03490348033f0332033e033e034b033f034e034d034c0350034e034f03500352035103300353032f0354033d03330355034e035103360357035603560335033603590358035703570336035a03350356035b0357035c0356035e035d0357035c0357035d03550360035f0360035503510356035c0361036303620356034e035003510335036403380338036403650364033503660352036803670367035103520364036a0369036c036b03640364036e036d036f036a03640350037003520333033803710371037203330374037303330371033803750370037703760376035203700379037803710371037b037a0371037d037c037e037b037103810380037f0383038203400340033f03830384035c035d037b038603850386037b0387036a038903880389036a038a035c0384038b035d038c03840377038d03760386038f038e0391039003860368039203670389039403930396039503890360039803970384038c0399034b039a0383039d039c039b0383039a038203a0039f039e034b0383033f03a303a203a103a40331032e032f03a50336033603a6032e030b030303070303030b03a703a80302030303ab03aa03a903ae03ad03ac03b103b003af03b403b303b203b703b603b503ba03b903b803bd03bc03bb03c003bf03be03c303c203c103c603c503c403c903c803c703cc03cb03ca03cf03ce03cd03d203d103d003d503d403d303d803d703d603db03da03d903de03dd03dc03e103e003df03e403e303e203e703e603e503ea03e903e803ed03ec03eb03f003ef03ee03f303f203f103f603f503f403f903f803f703fc03fb03fa03fa03fd03fc030004ff03fe03fe0301040004fd030204ff03ff03fc03fd03ff03020403040304fe03ff03fe030304040400040504fc03fc03ff030004fb03fc0305040104fe030404fb030604fa0350025902530250025102590251025b025902dc00c0025e02dc005e025502dc00550243005e00670264025e002402670267022402250225026602670225026902660226024800620248005a02620261025a025102610262025a025b0251025a02270243024502320245024302 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 1031 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 66000 + _typelessdata: d60d01bedb56333fecab3f3fe36cfabe7b4a53bf456a903ededb8833ac6c263fca14463f7357863453226dbf94e8c03e3c393c336ef5173f4e950c3fe07ed3b32e337ebfc270f23d8f1210bedb0e2c3fd7410a3ff18809bfda4a57bfa34a833d276f0cbeb760523fbfd5713f14b212bfedac25bf85b7003f99e057be4f4d413f267f373ffe282fbf0eb72bbf918b923e8a3d82be0dad653f4a4b623fa2f43bbfbf5603bf63ace33ec17f2dbe2cc6973feb59963eebedebbe24d4493fd9aad0bee2cb3ebea74da83f02aa113f2882c7be6a68563f121bc4be7ba79bbee7269e3f2438133fd53646bf0b7a183feb035bbef59c8bbe4a5d8b3fd536893e52024ebf971cef3e23a5bbbe585b36beb71d3d3fea8d4f3e512406bf0d8a47bfb8cbafbe76481cbec41c2f3fc17acb3e8deeedbe537860bf8b84fcbd61c3ea3211f61b3fb5fbb63edfd0203325cd7bbfa0b238bea5735732e8382b3f2dbd403e210e85346b7271bf462baabef4cb96bef006463faefca13ec18d3dbfab2211bf10d6b8be0f6f93bea632703feafa6f3e784562bfcc7eeabdb730e8be0007a5be9a5a7c3f3538b43e1e1572bf88eea53da544a1bee462c2323c19a03f51749b3eef6e89b43885693f57cdd1be5eef3c332efdac3f7b110d3f58f5beb40d39673fc5bedbbe342fa6be90e1793f949c553f1b5562bf2dd5a6bed87aab3e94d89bbecf918f3f9a636c3fe65779bf537ce6bc5533663e2b198bbeb580843fd54a813f626d42bf3ef0c2be5308073faa79db3328cf8b3f475e9b3f22a03a34592beebeb59d623f76a2cb3395eb693f7391903fbfcf353256c50cbf44d2553fd7e21bbe5e717b3f15ae883f9fe306bf652cf9be0561323feae322be36a2913f7f82933fd3ed04bf818fcdbe3323413fc9f180be4453ae3ff4bd5e3f143f39bf8222263ff2a170be6fbd2fbef234b93f15dc553fb46600bfcba13e3ff276e1bea5e98f3392fabe3f23b34f3f0a71f9b3e2745a3fde7605bfe14d0dbed343cf3f0744863fb98e0dbf6af0333f6c14e5be9bb1bb33924fd53f22b3853ffefed932efa6453fe8b122bf5a9184befb85bd3f1f288e3fd7e874bf90b8733e8cb62b3ee2f081be625bb83fd52f773fb81f3bbf30b2183f6ec2a9bed0a238beacbea93f094d9e3ff5f124bffa6a8bbe8cf2363f1b09ee336566a33f236ba83f328669320748dbbe3c55673f5f898ebe65389a3f5fba8a3ff2c768bfc7668ebd6a11d23e7c1980be88f8b73fe2e98b3fcf1574bf1fd8813d21ee963e37f48ebe1cefa73f66a76d3fccb878bf7055683eb4818a3da7ddb0be33988e3f32f5373f6da377bfadcb6c3e59acd43de425bfbe6fde8b3feb4b093f579765bfe89fc33ec54464be8b9e82be04b04b3fabf62c3fcf4731bf77af32bfb6b93a3ebce8b5334a183f3f7ac1813f00000000c9a84dbf9172183f47e467bebba8383f97d6e83e30780ebf6a3154bf2446693d5361d933985ee93f9af0993f0000000036384c3ff35e1abf886e04be6614e13fcc4d9e3f581534bf2856183f36fec6beb84a05bee211d93f1f3c923f91e320bfc4a91e3f88a3f0bed159cc334379e13f760e913f92080a321ad5353fdb3334bfb4191cbed2b6c03fa110a93ff20243bf9e2ea6be0c890f3ffb1e55be637fcb3f99899c3fb82377bf44d0813e1f857a3d28940ebe9f55ca3f7f6fb43ffc935abff15395be46c5dc3eeee63abe1dd1d53fe549a63fd16075bfac75913ef8c9bfbcf36007347f85bd3f1455be3f99928c34c07d55bf63450d3f4d07fa33e0c2b73f0d33b03fe2c6ed33b51504bf1e4b5b3fcd1ff7bda764ea3f3fb0bc3fa2431dbf2ae7473f7c3ee8bd45e5fcbd0823e63ff137ac3fea2c37bf8ef12d3f143326bec2b1f333bd2eee3f7ce1ab3fff2be5b45b2f7b3fa9ab45bec0510634615def3f44e3bc3f68c730b412787f3ff8d583bd886e04be6614e13fcc4d9e3ffe9d42bf319f223f06630bbe5361d933985ee93f9af0993f000000002468753f94c291bef62614be8b3fdc3f3321bc3f82e17dbfa0a2fa3df62a1f3dcf1e09be0b86db3fee0bc73fc88a7ebfeb151fbd183fcb3d8dd50abe09b5cf3fa704c73f7bc079bf3da75cbe8b132d3d14d922bebf89d93fc566af3f4d547abf619b3f3e091cc03deee63abe1dd1d53fe549a63fd2c871bfe066823e789b543e3263d7bd0878e63f8259d43f833114bf97861c3f301c0a3f7274d6bd5a72ec3fc462c73fd614f7be7b4b5b3ff7e83a3eddb40e347304f03f1053c83f4ca73834eebe783fb40a723ea54611be65eee53ff4a5c73ff89278bfb571543ebc75f33d2f3112be82f8cf3f7944bc3fda7975bf40fc81be91d4013e28940ebe9f55ca3f7f6fb43f9fc75ebf0536f6be8c1edb3df22ef7bd625fc93f036fd13f12dd22bf78a33ebf4ea04e3e145a1534d144c43f2cc8d13f19eb84b1a51e77bf1aaf853edb688cbd3afac13f1ab0c63fef8a20bfe4d344bfb59cff3df36007347f85bd3f1455be3f659bd03068fe7fbf8738e43b95aa01befff8d93ff563d23fc0fb76bf7d45203d7f30853e90d7b5bdbb56d53fb871dd3f36d55dbf4431d53d9aedf93e416b39bdd05ddf3fb4afdf3f272205bf4111133f84cf213f2b5477bd3d1bd23f6291e43fe5b044bf3805053e0b72203fd8ec22bd91cddc3f149ce33fa85436bf8fdbb13eb2261c3fcfec02beb1f2ce3fa20dd13f733d6ebf2b3f18be1b38ab3e007f97bd749fcc3f4f56df3f26bf62bfc2a885befc86c43e34836ebd05c8c73f74a9db3f301b12bf6c7146bfdeb28a3e30a32a344708bc3f3769ee3fb3e37932b4b174bff679963ec07ff9bc9991c23f59f4ed3f067d6ebfd6cf5dbeae74953e72bb2e347559c33f9cfef33f440692331a2489be4aa5763f6b1b53bdbd87c83ff632e73f460772bf78b2adbdf114a13e74fd0fbda084c53fdce5e73f20110abf319550bf22df59be27bc14bda7f5c63f0987e03fbbe4fdbe01105ebf64dc26bde3ed0d34bf88c13fbd43c73f09b962b209dc71bf26cfa73e34836ebd05c8c73f74a9db3f5bbd22bfc6bd44bf7b85943d007f97bd749fcc3f4f56df3ffb8072bf27c164be75326b3e842c2d349ce5c93ff943f23f0000000035cf013fe0a55c3f60f028344585cf3f4e18ec3f00000000c1353d3faa702c3f72d62834c5e0c03ff2f4eb3f00000000f34a53bfd68910bf2b5477bd3d1bd23f6291e43fda3f71bf44d0a0bca9fdaa3e60f028344585cf3f4e18ec3f48d48bb677a0bd3d78e67e3f561829347679d43fcb4eec3f4a5657b6ed00ba3e5e826e3f4f2d2434bb4fdb3f54ffe53fc6ee2c3242a12d3f641e3c3f6b1b53bdbd87c83ff632e73f5add2bbf0ee3f83d2e2a3b3f0f6f93bea632703feafa6f3e54d878bff38d0cbe0b0943be876f7dbee1ba633f078ea83d155277bfe5a17dbeee3895bd9c4777be4474833f1a92c73d60d467bf2ba0bc3e464357bef59c8bbe4a5d8b3fd536893ea9274abf08ca083fa2609abe0b6885be1276743f60373dbe0d1c70bf71208c3e13285a3e40d873be8e4c7b3fc2d07cbdfc4177bf6d07843e799ecebc1c8376be6291583feb6f87bd488e75bf4e0c85be9417e43d4fbe82be82df4e3f9d6b38be81f364bf236789be7546b73e089037befce13e3fceb0acbdd3adf6befdd05cbf262a1e3e9e0b55becfe9363f566542bee5a92bbe12ba5dbfbb17f13ee192a0be0fa8473f927996beba0e72bf6d0783bd8c69a33e45488fbeddb5753f474f87bef52062bfc3b1de3ecd0b333effe883befb63253f2a6d9dbe3ede28bf370b14bfffc8f53ea5735732e8382b3f2dbd403e18aa05346f1f7cbf168b31be2e6c61af7721333fabc52d3d03b0e733c8907fbf8f876ebdacd235be323b423f842f6f3d707219bf50b04cbff8e919bd585b36beb71d3d3fea8d4f3e34bd3fbf58b227bf3cf4cbbd783cb4be4cee443f5398ebbedbfe7ebf402c1fbc7426b43d2dff9fbe02027c3fbeb0e4be2dc16bbf54a1c33ebe939d3d87769dbe09af6b3f4cad20bf81876fbf76ad433e0de797be41efabbea4f93e3f4fc019bf97fe71bf01ca493d041da5be64df83be6076863f90d522bf7a203ebf6454143f7ce2abbe26db89be93c5423f2abb36bfc16a0ebf37d9063db98f54bf77c96dbe5a7a6b3fcdf33cbfb745edbe3488c93db67261bf718a17be0ca3403fb73636bf1384083e92c4afbef4016ebf2415d1bd70bf673fa8ee40bf2ec115bda60f37bebab37bbf41a695b3b41f6b3fa29940bfd21f883397f91bbe47037dbf694cd2bdcc0a863f3a8442bf2191c9be0000c33eb42d56bf009390b3082c533f4de338bf741b0cb57e8bbabe4e676ebf95a744b32bd9383fd3a6f3be0000000072ff7ebf8009b5bdde7c88b3a405443f28a72ebf000000006f757abf28e753beadd2b2bdc2db343fa9231bbf15e5923e856b74bf6711a0bdffefdcbdae00373fecf9e9be154bb4bc52c47fbf66b815bd4df5e2b3152c513f4e0295bffcc1893215805b3f9fbd03bf249cbab3bdfb763fd2ff72bfe151b53411ce463fc14821bf8be6a2bd90c3693f66986bbf57697fbf327d3abc4bd188bd93628abdbe97443f8ee091bf2f9a7fbf76fd58bd5f868d3c41a695b3b41f6b3fa29940bfeb187cb3750f59bf24b9073f73dbadb31ab1573f199c61bf3cc59c3243885cbf7f01023f694cd2bdcc0a863f3a8442bf47e06bbfb9247e3e841f99beceb8d9b37cf0343f33b68ebfdc601233293e6bbf6af5c93ef9d907b442221a3f0e84b3bf042a84b449da78bf2647703e1fa05abd648e273f465eb5bfae587fbf850391bd05c7173c01c829b4f77b1e3f49c8e1bf8c2452341bef7b3fc2c735bee8b70ab4b9db333fd96cb7bf000000009ca76f3f8e04b4bef7fb20bdf1ae133fe559e1bf0f1b72bf76f8a5be695abb3c43fdcebdeae71b3fe23313bfef98523fd1ece5be0088b23effefdcbdae00373fecf9e9bedb487c3f9ec0c0bdd2a9103eadd2b2bdc2db343fa9231bbfdb487c3f9ec0c0bdd2a9103effefdcbdae00373fecf9e9beffc06a3fe7d389bec5b2963e0c4c18bebab0253f147cc8be7575393f535a0abfb315db3e13e65fb2dd37353f489ed5bd11232e329b757ebf4f58e03da337c4b2cc55323fb98c5abee4412f32bca57ebfbe3fd23d6356adbea655273fc6d804bf302c69bfae2bb3bec42d603e05e878bed5760f3f924ac7be5883cdbe933039bfd7cf0f3fadd2b2bdc2db343fa9231bbfa6f5263f355a04bf62ed0dbfde7c88b3a405443f28a72ebf82ea2f3e9f0d5dbf77cbf2beffefdcbdae00373fecf9e9be08d1693f63fc61bedf33af3e169861bec891f63efe35fcbef38805be713b50bfab1f113fa1adacbe3f9d183f91911cbf369a7ebf2787c6bd19391ebdeca35cbe9c9dcc3e1a5323bfc6d8853e2e6932bf63f52a3f20559fbed124db3e69c332bf3c8a58bf32adc6beb762bb3e65649fbecd25eb3e6e494bbfe5f36bbfd7b7b63d4f4bc1be0c3a82bed083113f145247bfad651dbf2f63093f26f113bf842f87bebc5c233f094d3abf65c71bbfd34f6e3e003742bf11447abe1037fc3e0edb5fbf7e1914be1a68c53e774969bf195a28be503d2a3fbf5f37bf756c183f5f1fe83dbd9e4bbf880a1fbeab83153f438445bf3db63c3f56ddcd3e29070bbfd83511be7b55f33ebc4355bf60355a3f1a37473e4c85f8beaf0a05be0217e43e2e3a31bf0084233fd40905bfa341113ff00f7cbe26f5c63e3ce95bbfe28282be7c7a12bedad174bf72e31ebefcbad23e0a2557bf3f61523f79222abe61860bbfeca35cbe9c9dcc3e1a5323bfdcf8203f4934b4be867f313faf0a05be0217e43e2e3a31bfbaf47e3f527cadbd115dfebc626224bec558a03ead503bbf61a66d3f087611befde8af3e30a063be9400a43e8c592cbf7c832d3ff103cebdc2743a3feca35cbe9c9dcc3e1a5323bf5f381e3f6ae2b9be5881323f30a063be9400a43e8c592cbf498813bfeb7c94beba98433f091697beabe2a03e93ff3abff75465bff0d16e3c3f69e33e503632be794c953ea16455bfe5cb263f41b525bebcbb3dbf0dd683bec703953efb7b55bf376fe1be5bece0bda21f64bf43fdcebdeae71b3fe23313bf4a49713f7d09d93c188aaabe73fa94be820e9a3e13f94cbf74846dbf0b80143dde1bbebede7c88b3a405443f28a72ebf2d9d573e93180cbf775f4fbf9e0b55becfe9363f566542be1352b7bdecd07ebf95ce0ebda337c4b2cc55323fb98c5abe1352b7bdecd07ebf95ce0ebda337c4b2cc55323fb98c5abef4fa4a3d157e7ebf9b5cc5bd4fcc9bb31fa08c3f02fc48bfe5ad3d351e62463f75cd21bf0e1729b44e8d093f00d7e0bfc6deb9b4c9667ebfe381e43d4f4f23bee0208f3fce82c93d4a3d04bf2ea6523f818272bec17f2dbe2cc6973feb59963eb62cd9be3e945a3f66819abe95b323be61cb8b3f65a77fbd24f32cbf6db03c3f7ae5913c40ea32bebb5e903f411177be2fcb1abf7a3d483fffd1193ebe982bbe8447943f4b65e3be661816bf66174f3f62aa2f3d580b15bede1e913f2e4424bf1fd2d0be5c3c5a3f486ca7be4fcc9bb31fa08c3f02fc48bfe1ded6b4d69c4c3f79d919bf1c7382b37478973fb0a025bf43da9eb451a0743fd7ea96be6ed08e31188d973f9d64c33d9ee9ceb2f9e3753f40768ebee462c2323c19a03f51749b3e28efd7b22fc5733ffe5b9cbea4102db29a37943f3a4d90bd00000000b4f37f3fbab09e3ceeced6b215f6963f301177beb4bfefb36ee57d3f5c02033e6f9237b381169a3f4b65e3be30d1ce3369c77f3f5d2d2abd4c1503bdf6a60f3f153305c0f5777fbf9a45603d32dd0abd159247b4c5fd183f963305c0d0847ab4beec7f3fee92c63ce4b247b46f95063ff44905c092540b347eff7fbf32f680bbbec462b45b350d3fb6be17c093d883b46af17fbf28cbacbc2f02fbbcb37c153f0e7917c054b77dbf86346abc80b0073eec5462b44db51e3fce3f17c0c4bdb93258ad6d3f6e37be3eb0b199bd3fa0183f1df01ec0922f70bff16e66bee994863e64f76bb4c6ed303f1b041ec04d3156b2d65e603fef86f63e10806eb4dded033f5ebe1fc0048d8034ec077abf52d65b3efa3c7db4f19efc3e109829c04970b932f42e7fbfcc72a3bd92f6e8bd97c01e3ff3d227c0e2e97fbff9e186bc789ea43c769578b4d911413fb06b26c0a09fbc32cef07b3f2aa2353e8e78afbdedc7273f2a3230c0c4fa6dbf1aff7c3eb8048cbe235782b41560413fc2dd2ec0000000000ea37f3f0b125a3d4c7e84b4acad0e3f52cd31c06d3f2d331eb73cbf37fb2cbf236589b420ec443f697c38c0000000006813673e936579bff5c91d34cd55e33f09e4dc3f0000000063fe5d3f1afdfe3e993bb7bc9743e23fc34cdd3f4a2eb7be9acd533faeb0dd3eac4e1834c3a0e73f856ad53fb08298b1e27b553f35480d3f4f2d2434bb4fdb3f54ffe53f1b04f2be626722bf19951c3fd8ec22bd91cddc3f149ce33f1b04f2be626722bf19951c3f6d681abd3b56e53f9faaec3f1d5139bf6c53e3bed02e073f170a2a34fe60e33f7398ed3fe3f7c336ef3e2cbf08633d3f4f2d2434bb4fdb3f54ffe53fbf9ac5be38eb21bf76eb2b3f993bb7bc9743e23fc34cdd3f24d9b5beec19393fadad17bff5c91d34cd55e33f09e4dc3f24d9b5beec19393fadad17bf108a2434ca33eb3fd07de63ff9b64ab32ab0453fb2a622bf0f2ca4bc5320eb3fe39be73f93f227bf2acf183f2077ecbe993bb7bc9743e23fc34cdd3f891695bed4c63a3fe7681ebfd8ec22bd91cddc3f149ce33f97297dbf97af9abde2e5023e416b39bdd05ddf3fb4afdf3f97297dbf97af9abde2e5023e8a2126bd2688e83fcac3e93f0ea36dbfbf30a03e17e44dbed8ec22bd91cddc3f149ce33f1d047fbfd66c41bd8415973d416b39bdd05ddf3fb4afdf3f7fc449bfe9a1f43e31a4c6be993bb7bc9743e23fc34cdd3f7fc449bfe9a1f43e31a4c6be416b39bdd05ddf3fb4afdf3f07fd49bf295ef43e8e11c6bed5de37340767f83f4b3a00407e154636dff420bf0312473f41403434bd99fc3f73eafb3f276a51b2b46d4b3f6c691bbf6b87d7bcb8effa3f0417fe3f6d027ebffa31903d9930d23d7dd94134b74d0540b93a0740a38713356ef33b3fc3cf2d3f5f9970be71303f3eb93526bf014001bf84b3083f349e2d3f31a4a4be48a42b3eb89d33bf13fb43bfe5a2153f10a5893e30a063be9400a43e8c592cbfcbb81dbfdc15483e0557433ff5d8a3be609f293e34cc47bf0d8d73bf1f73853ef92028be7f1099beae4c273e3f6d50bf9b7a45bdd0d266be161b79bfe5011fbef994003e360349bf6e344d3f0d47a2bd6bb517bfac3628be26bf2e3e53d534bf6e0f6f3ff43a8a3e484f703e5f9970be71303f3eb93526bff4e4233feec4f13d9d52423f5f9970be71303f3eb93526bf569e303fc01a833df296383f399d48beb7bc253a9a9cf1be994e9a3b79727fbf7a2d863db7ce0fbe47829abb23ad0ebf01a5d4bc3ae67fbf49d62d3c64c59dbeb2bc253a3f7bedbe73b385bc7def7fbfb87b7cbcd72604be72c379bb2a193abf83cf6cbdc2817fbfdb4cb8bcf57a9bbe0893153ec64f15bfa810afbefa165e3f3cefb83eef3e5ebec7bb203eac5116bf849cacbd91da5a3f310c033f334a4bbefafcde3d9a6603bf69552e3da65c333f2256363fcb129ebe3e44da3dc462ffbe7be5a4be1316123f2162413f55bfc5bead1ea43d096119bf105552bfdb9c0c3f972c1c3e82aacdbe85c1253a9b7b06bf466941bf463ecc3ee409053f8257d2be8c829abbf4971cbf5a4378bfc6333d3dd85375be1db6a7be48af353c291047bfbaee93be03288cbe56d96abf3149b9be7edfde3d6e9143bff5fa6bbf4790463e7edfabbeef3e5ebec7bb203eac5116bf6ba5da3e34795b3f642f933e5f9970be71303f3eb93526bf6ba5da3e34795b3f642f933e334a4bbefafcde3d9a6603bfa9f9393f0513253fe64c733eef3e5ebec7bb203eac5116bfa9f9393f0513253fe64c733e46b218be2b4bab3d6e8918bf2f886f3fb411a13e3bb0233ed72604be72c379bb2a193abf4caf603ed78288be064170bfd72604be72c379bb2a193abf246ea43d4897cabee9346abf82aacdbe85c1253a9b7b06bf5e9932bd35317fbfe9d7873d8257d2be8c829abbf4971cbf5e9932bd35317fbfe9d7873d1db6a7be48af353c291047bfee7adf3d44447ebf4a3e23bd8257d2be8c829abbf4971cbfee7adf3d44447ebf4a3e23bd1db6a7be48af353c291047bffd1f8abd074f7fbfcb18eebcef3e5ebec7bb203eac5116bf445f333f47aa1a3fa052c23ed72604be72c379bb2a193abfd15c7d3f8d84013ea866893db7ce0fbe47829abb23ad0ebfd15c7d3f8d84013ea866893dd72604be72c379bb2a193abfb1917a3fba5a513ed1c25b3c399d48beb7bc253a9a9cf1bed432ea3d69e0b63e6e506d3f399d48beb7bc253a9a9cf1be89718b3d3749a03e9881723f64c59dbeb2bc253a3f7bedbe89718b3d3749a03e9881723f334a4bbefafcde3d9a6603bf5c2b5c3f2d8a8b3e75d9dc3eb7ce0fbe47829abb23ad0ebf5c2b5c3f2d8a8b3e75d9dc3eb7ce0fbe47829abb23ad0ebf3211533f789b603ee68a053f399d48beb7bc253a9a9cf1be3211533f789b603ee68a053f334a4bbefafcde3d9a6603bf3211533f789b603ee68a053f64c59dbeb2bc253a3f7bedbe75aa07bff9ba863e48614e3f2660cdbe507c6c3f8090203f45fb75bfe94d4e3e7eb0423eb604d3be9ab9733fca13033f794b72bf9e48713e0ff161bee425bfbe6fde8b3feb4b093f334676bfbd5a883eea3f76bda7ddb0be33988e3f32f5373f768275bf5e04313e6ddf653e342fa6be90e1793f949c553fa97137bf2106043e1a7c2f3f3d1bccbee5ff5a3fb20f3e3f7d4e70bf60eeddbb3e79b03ecc4ed0be8a06383ff75f203fc22863bf9a49b0be2d0a9d3e7eabdcbec85d4f3f9828013fb5017fbfda50c73c8037adbd7b7ebdbe7e533a3f9ec2ae3e19d92abfdb19b93c9e8f3ebf081bc1be2853613fc5d8ca3e34f44fbfef55253e75770fbfbf2ecebea4c5283fbebed03e527e79bfd6c326be0b861dbeeeaea6bee7e34b3f152f4d3f26a19ebc6aa200bf8d475d3f0e1c9ebed8522d3fce7d2d3ffd94713e0c9f2abf270b353fc6c7c0be41f40f3f7a9c043fde664dbf97ffcfbe95e0df3ebedd97be5af10b3fc5910c3fcee8123fadbbdebe5aa0313f704e73be5ef5353f69e10d3fcf265f3f810392be7e0dcc3e2efb6fbed063093f89abe33e3261503f756940be69b60c3f288aafbece0a0a3f6c7db23e811f39bfabf288bd63fd2fbfe27b87be1f44123f5314ae3eae621c3f02f0d73d29e048bf5afa78be41bffe3ed3659d3e3130623f7f576abda1feedbe2efb6fbed063093f89abe33edcb37e3f2eaba93c1883c9bd0afca6be89dcfc3e89069a3eeb84fabe894935be1d9d5abfad1db9be2582db3e2562de3e5c377ebf3a45eebd479299bc1072a1be75b5c93edddfb83ef7d017bf6118d4bed6c030bf6f0984be8dd6c93e5bd4be3e553d213f7c08ffbeb19118bff4cb96bef006463faefca13ec1e5753d740dad3dfd9e7ebfe4eb96becef8db3ed089033fd3b180bda319bc3dec687e3fab7173bef227d43e46d7e43e1e4b403f0f1f103ef51b253f47e467bebba8383f97d6e83eb971783f9928883c6b5c76be704e73be5ef5353f69e10d3f88407e3f1ed345bd5b7ad93dab7173bef227d43e46d7e43eced6723f193a82bef9e340beab7173bef227d43e46d7e43e3e7f7f3f1e95eabc7d3f64bd8b9e82be04b04b3fabf62c3f3281623fc5095ebeae30d33e47e467bebba8383f97d6e83efc157e3fc455223dfc6dec3d0007a5be9a5a7c3f3538b43e124e2bbf7327173dec003ebf1459c8be2749723e2b580b3f7da77ebf7be08b3de7419c3d7fbf9dbe90e5823e67d9133f745cc43ebafa9b3edf305f3f122b87be195e743e1565093f9a29353f733b703e379d2a3fdbeea2bed9b95d3ebc61f83e7a76983cc71120bf3dba47bf122b87be195e743e1565093f6b86733fe96976be3b7245beab7173bef227d43e46d7e43e6b86733fe96976be3b7245be122b87be195e743e1565093fe14e2f3f7e8f0abf10d5f9be6adc85be52d5443e98570f3f68007a3fdae35a3e6f05ccbc43a093be8062123e65e4023fa7105d3f56a6553e7a0febbe4ab47cbe89a7553d3ebf153f66d9773f31433d3ebae12cbeab647cbe2bd2a73dbb18203fb22f7d3f9104163e3987a3bc5c83a5be8ca80f3ea8faff3e798c30bf99d8833deca538bf1459c8be2749723e2b580b3f991031bf82b628be950334bfc39cd8be0254aa3d078c1c3f3a1e53bf94d1963e8f36f7becb8f97be9ae5103e4a672d3f76c4213eb27e473fba3f1b3f7fbf9dbe90e5823e67d9133fb9adcf3e2c29203fc2972a3fc46b82be29a2f13d099f2c3f39955e3ffffbf13e602c133ebc24c0bee43a143e5a98283f65f2d8be04d54e3f9baad13e1459c8be2749723e2b580b3f31b258bf698eb33e161fcd3e7fbf9dbe90e5823e67d9133ffeadccbeddab2f3f04921b3f1459c8be2749723e2b580b3ffeadccbeddab2f3f04921b3f7fbf9dbe90e5823e67d9133f0b7f1bbe3a37243f2981403f976acbbe52a0b13cf97a0d3f8fa449bf9e405f3e2e8413bf59ada9be95a4303d0b67f23e045842bf77db903e8e1116bf4cb494be2447f03decaeee3e493eaabe2d4e4b3f503802bf43317abea097803da34ffc3e6c65583ffd95083f64eae83c1459c8be2749723e2b580b3f59aa24bf113fd7bd7a2842bfdbeea2bed9b95d3ebc61f83e59aa24bf113fd7bd7a2842bfdbeea2bed9b95d3ebc61f83e03e8a13ee02c4ebea2546dbfdbeea2bed9b95d3ebc61f83ef5572f3f12219d3c34753abf122b87be195e743e1565093ff5572f3f12219d3c34753abf7fbf9dbe90e5823e67d9133f18ac343fbe09b23e2c041e3f122b87be195e743e1565093f18ac343fbe09b23e2c041e3f976acbbe52a0b13cf97a0d3f1bb56f3efc4778bfe0d88abd43317abea097803da34ffc3e1bb56f3efc4778bfe0d88abd59ada9be95a4303d0b67f23e1bb56f3efc4778bfe0d88abd19289cbe1e2d2b3d7d1ed63e6d474fbf4e2d8b3e542605bf976acbbe52a0b13cf97a0d3ffa1b873eff5d60bf8338cebe060c6cbee1553c3b70ee333f5cbd233d165e7fbf769d6cbd4ab47cbe89a7553d3ebf153ffa1b873eff5d60bf8338cebe976acbbe52a0b13cf97a0d3fecc0643cca787dbfaad70ebe8334ebbe0e900c3c22b3233fef278ebd0ed37dbf0257e13d0768a9be40d2d63cb1b5463fa7f9d9bd8ab477bfca756a3e345adbbe4670263d9b62443f2592bfbd3c1778bfceb3693e060c6cbee1553c3b70ee333fa35a7d3fa4fae43dd4e8b7bd8334ebbe0e900c3c22b3233f52df4fbf57eb403ef06a0dbf2ea859be45fda93c3486493fb2b816bdba4679bfd714663e72f28bbe8d60dd3d6ab6463f2c46d2be81b65f3f0530853eae5162bef29f8d3d94084b3fc029623ff725e53e43ee0dbe060c6cbee1553c3b70ee333f4a2c733fe864483e7a9379be2ea859be45fda93c3486493f4a2c733fe864483e7a9379be060c6cbee1553c3b70ee333f2330773f2f171a3e484259be0768a9be40d2d63cb1b5463ff2a943bf4e7f093ff2b6b63e0b3b7dbe80b4f83dea335e3f1e314a3ebe55733fb891753e2ea859be45fda93c3486493f1c00763f31cf443effea4bbeb8db4fbeae512a3def7d5a3f41d76b3fbd12c23ee3b4b23db8db4fbeae512a3def7d5a3fdce08b3def5c74bf918d943e028c90beca33323dc4e4603f1403a4bd28177fbf7690d5bc028c90beca33323dc4e4603f3b1949bfc3510d3fc72a8f3e0768a9be40d2d63cb1b5463f3b1949bfc3510d3fc72a8f3e028c90beca33323dc4e4603f83bf62bfa4e7d83e244b423ead3ec3be911d0a3e3e73493f1fed5a3ded14793f4b07663e345adbbe4670263d9b62443f43d664bffb7be53e3319fcbb0768a9be40d2d63cb1b5463f853e3f3f096d933e7a63193ffbe0bdbeee2e8b3dc980663fdad5a33d66f17dbfb0bac8bd96c8e7be8e206e3d98755e3fb2cb733e1a5e69bf1e97abbe96c8e7be8e206e3d98755e3fa87555bf6670f33e029a8fbe345adbbe4670263d9b62443fa87555bf6670f33e029a8fbe2569d4be144a013ea250663f01857abee2f7663f06d9b53e96c8e7be8e206e3d98755e3fcbaf50bf0b130b3fb9af4dbefbe0bdbeee2e8b3dc980663fd02c443ff0f6143fa7708b3e0768a9be40d2d63cb1b5463f23da663f8ca3ce3e92691e3efbe0bdbeee2e8b3dc980663f23da663f8ca3ce3e92691e3e099303bf2011143ddc0d373f95edeebd08517abf433e323e1e24f9be5f59053ef524413fc20c78bedd54783fe9d395bc099303bf2011143ddc0d373fa96a44bf525dd93e9420f6be099303bf2011143ddc0d373ff48b46bf2c3c173eed1d1dbf8334ebbe0e900c3c22b3233ff48b46bf2c3c173eed1d1dbf345adbbe4670263d9b62443f46ee0b3f2ea3e83e0412343ff70b03bf34704f3db649563f529087bc804f7fbf3a5592bd364110bf35d2773d81174c3ff38d5abc7a7979bfb05265beeea509bff4e2083e5fb1503f7fb9d3bd3e0d6d3fdfecb93e364110bf35d2773d81174c3fc75031bfb623c93e97db1abf364110bf35d2773d81174c3f15db34bf8666e03ee5420ebf099303bf2011143ddc0d373f15db34bf8666e03ee5420ebff70b03bf34704f3db649563f1723383fda02c13ed962153f345adbbe4670263d9b62443fc0cb183f1e0cf53e08db243ff70b03bf34704f3db649563fc0cb183f1e0cf53e08db243f43317abea097803da34ffc3e8868603e4c4c78bfe520d9bd976acbbe52a0b13cf97a0d3f8868603e4c4c78bfe520d9bd4ab47cbe89a7553d3ebf153f8868603e4c4c78bfe520d9bd0f2c8bbe79f7f63d725acd3eccefa43ec2ef323fcf7323bfa39a71be0266483d567add3e490b673f503ba93ef9588dbe89936abe92128b3d68166b3f381d853ef154113f49f6473f364110bf35d2773d81174c3f539263bf7b2bc13ea5f184bee7f812bfa3a6a13d0d405c3f7dbddabe6dac133f6e3b323ff70b03bf34704f3db649563f136eee3eb921b73eea374f3f96c8e7be8e206e3d98755e3f6c5264bf70f9cd3ea89c533e7598debefaab643dd66f733f2419bcbefe57e13e77c0513ffbe0bdbeee2e8b3dc980663f7f0f053f21c0cd3e0eff403f028c90beca33323dc4e4603f2dce28bfe75fc43e8b87253ffeb25abe9fff87bc5203753f620a8f3eb770e23ecf2d5a3f047019bf6b8846bb2900643fefa45e3e1a0758bff827fbbe364110bf35d2773d81174c3fe4af73bfe174583e762163be047019bf6b8846bb2900643fe4af73bfe174583e762163bef70b03bf34704f3db649563f5b9ed73ec6fb493e82a2623f047019bf6b8846bb2900643f5b9ed73ec6fb493e82a2623f4b90e3be950a25bd3ed2793fff21aa3ec24e2ebf1c1527bf96c8e7be8e206e3d98755e3face276bf31f31c3e8fb05c3e4b90e3be950a25bd3ed2793face276bf31f31c3e8fb05c3efbe0bdbeee2e8b3dc980663fe5be183f550a143ea5134a3f4b90e3be950a25bd3ed2793fe5be183f550a143ea5134a3fb8db4fbeae512a3def7d5a3fa31b35be2daf59bf9ac4fdbefeb25abe9fff87bc5203753fa31b35be2daf59bf9ac4fdbe028c90beca33323dc4e4603f658025bf6b295e3e983e3b3fed7a82be43ac78bc7beaba3ed6122d3eb8748b3eaf7d72bf19289cbe1e2d2b3d7d1ed63e4b5392bd4e9536bfd781323fa39a71be0266483d567add3e4b5392bd4e9536bfd781323fed7a82be43ac78bc7beaba3e4b5392bd4e9536bfd781323f19289cbe1e2d2b3d7d1ed63e61c6463eca5b79bf603dee3d59ada9be95a4303d0b67f23e61c6463eca5b79bf603dee3d43317abea097803da34ffc3e61c6463eca5b79bf603dee3d43317abea097803da34ffc3ed241563d06b878bfbf7e6c3ea39a71be0266483d567add3ed241563d06b878bfbf7e6c3e19289cbe1e2d2b3d7d1ed63ed241563d06b878bfbf7e6c3e122b87be195e743e1565093f17336b3f9c610abe6cf3bdbe060c6cbee1553c3b70ee333f1c5b7a3f3f86553e4257393c7fbf9dbe90e5823e67d9133f5fdb4e3f4ec4033f6bbf923e0007a5be9a5a7c3f3538b43e691a5bbfeaa29d3e7ac4d4be0007a5be9a5a7c3f3538b43e67e85cbf7dd4893e19f7dabe7e8f6ebebe2e0a3cf838efbe3671163c0de97dbf073b02befa0199bebe2e0a3c5ca8f1be3671163c0de97dbf073b02be9cd88bbe2ce730ba0456ccbe3671163c0de97dbf073b02befa0199bebe2e0a3c5ca8f1be2b3763bfeb25993ed264b33efe6489beb4caba3d5c49eebe2b3763bfeb25993ed264b33e9cd88bbe2ce730ba0456ccbe2b3763bfeb25993ed264b33efe6489beb4caba3d5c49eebe13404b3f01f6a73e560b033f7e8f6ebebe2e0a3cf838efbe13404b3f01f6a73e560b033f9cd88bbe2ce730ba0456ccbe13404b3f01f6a73e560b033ffa0199bebe2e0a3c5ca8f1beae0032bcdc117dbf9f161a3e7e8f6ebebe2e0a3cf838efbeae0032bcdc117dbf9f161a3ebd6364be3f551f3af39604bfae0032bcdc117dbf9f161a3ebd6364be3f551f3af39604bfca0232bcdf117dbf69161a3e16ec93be3f551f3aa9ce05bfca0232bcdf117dbf69161a3efa0199bebe2e0a3c5ca8f1beca0232bcdf117dbf69161a3efe6489beb4caba3d5c49eebe3b1768bfce75b43e289a6dbefa0199bebe2e0a3c5ca8f1be3b1768bfce75b43e289a6dbe16ec93be3f551f3aa9ce05bf3b1768bfce75b43e289a6dbe16ec93be3f551f3aa9ce05bfe93c6ebf22ada43ea9d832be8c2783beced4bd3d6c1107bfe93c6ebf22ada43ea9d832befe6489beb4caba3d5c49eebee93c6ebf22ada43ea9d832be7e8f6ebebe2e0a3cf838efbec2a6673f8debc33e07e43e3efe6489beb4caba3d5c49eebec2a6673f8debc33e07e43e3e8c2783beced4bd3d6c1107bfc2a6673f8debc33e07e43e3e8c2783beced4bd3d6c1107bf17c76d3f8ff9b13ea364033ebd6364be3f551f3af39604bf17c76d3f8ff9b13ea364033e7e8f6ebebe2e0a3cf838efbe17c76d3f8ff9b13ea364033e46dfa6bebc2e0a3cbffcecbe888b2f3d0ee97dbf41f2f5bd4fb8c6bec02e0a3c615af8be888b2f3d0ee97dbf41f2f5bdc704c4be07e730ba02dfd0be888b2f3d0ee97dbf41f2f5bd4fb8c6bec02e0a3c615af8be77ed72bf7325993e8953cd3dbd93b8beb4caba3de0edf0be77ed72bf7325993e8953cd3dc704c4be07e730ba02dfd0be77ed72bf7325993e8953cd3dbd93b8beb4caba3de0edf0bea7cd203f71f5a73e41a0343f46dfa6bebc2e0a3cbffcecbea7cd203f71f5a73e41a0343fc704c4be07e730ba02dfd0bea7cd203f71f5a73e41a0343f4fb8c6bec02e0a3c615af8be8eb44fbddd117dbf7180113e46dfa6bebc2e0a3cbffcecbe8eb44fbddd117dbf7180113ec5079bbe3f551f3abe5102bf8eb44fbddd117dbf7180113ec5079bbe3f551f3abe5102bfd8b44fbddf117dbf3180113ecee0babe3f551f3a940008bfd8b44fbddf117dbf3180113e4fb8c6bec02e0a3c615af8bed8b44fbddf117dbf3180113ebd93b8beb4caba3de0edf0bea9c04fbf9375b43eb49beebe4fb8c6bec02e0a3c615af8bea9c04fbf9375b43eb49beebecee0babe3f551f3a940008bfa9c04fbf9375b43eb49beebecee0babe3f551f3a940008bf819a59bf1eada43ef696d5bef90baabeced4bd3d9ef906bf819a59bf1eada43ef696d5bebd93b8beb4caba3de0edf0be819a59bf1eada43ef696d5be46dfa6bebc2e0a3cbffcecbea873523f5bebc33ea9ded73ebd93b8beb4caba3de0edf0bea873523f5bebc33ea9ded73ef90baabeced4bd3d9ef906bfa873523f5bebc33ea9ded73ef90baabeced4bd3d9ef906bf2d555c3f6ef9b13e337bbe3ec5079bbe3f551f3abe5102bf2d555c3f6ef9b13e337bbe3e46dfa6bebc2e0a3cbffcecbe2d555c3f6ef9b13e337bbe3e5a4f14bebf2e0a3c2b1ffcbe625683bd0ee97dbffab4e1bda9c34ebebd2e0a3c591debbe625683bd0ee97dbffab4e1bd94ef0ebe10e730baa8b6d3be625683bd0ee97dbffab4e1bda9c34ebebd2e0a3c591debbe541209bfc625993e90324a3f782c31beb4caba3d6222f1be541209bfc625993e90324a3f94ef0ebe10e730baa8b6d3be541209bfc625993e90324a3f782c31beb4caba3d6222f1bed0bf713f81f5a73edf43ccbc5a4f14bebf2e0a3c2b1ffcbed0bf713f81f5a73edf43ccbc94ef0ebe10e730baa8b6d3bed0bf713f81f5a73edf43ccbca9c34ebebd2e0a3c591debbe54669b3ddb117dbf7887053e5a4f14bebf2e0a3c2b1ffcbe54669b3ddb117dbf7887053ece2e29be48551f3a81360abf54669b3ddb117dbf7887053ece2e29be48551f3a81360abfd2659b3dde117dbf5c87053e1fa363be31551f3a9db501bfd2659b3dde117dbf5c87053ea9c34ebebd2e0a3c591debbed2659b3dde117dbf5c87053e782c31beb4caba3d6222f1be442b61bfd975b43e7ba0a33ea9c34ebebd2e0a3c591debbe442b61bfd975b43e7ba0a33e1fa363be31551f3a9db501bf442b61bfd975b43e7ba0a33e1fa363be31551f3a9db501bf8df65dbf41ada43e1ed2c23e0cc94abecad4bd3d6c7a07bf8df65dbf41ada43e1ed2c23e782c31beb4caba3d6222f1be8df65dbf41ada43e1ed2c23e5a4f14bebf2e0a3c2b1ffcbeb9385a3f60ebc33e736bb6be782c31beb4caba3d6222f1beb9385a3f60ebc33e736bb6be0cc94abecad4bd3d6c7a07bfb9385a3f60ebc33e736bb6be0cc94abecad4bd3d6c7a07bfc4e4563f44f9b13edce5d5bece2e29be48551f3a81360abfc4e4563f44f9b13edce5d5be5a4f14bebf2e0a3c2b1ffcbec4e4563f44f9b13edce5d5be2ded18be74cae03f4420ca3fa4a16bbf259c343b1d22c83e882e37be8729e43f186cba3f95617bbfe99541be8eeb913b4d0740be7723ee3fa212bc3faea76bbf79c4863e0ad0933e9ebcf4bddf58e73f87afcf3fa7ad57bf972a653e02e4fa3edb3162be248b00405636943fc5b868bf57d3853ea01fa63ee9dc3dbe087e0240350b973ff66339bfaf72fd3e07d3f53ed11d15be1e7bfb3f207fae3f661b4cbfa63e063f2108993ec59847be9661f43f162faa3faa787ebf2aa5093d5c9dd43dd4372dbee6f5ea3fdfcfa83f65b171bf9e9da2be8796b4bd679656be03e4fa3fb296923f8e2176bf1bc88cbe7e984c3b2ea083be2a450940fd33813f17bf6dbfea6b063e7493b13e9a7306be8b24f83f6fb9c03f9d8a54bf6effde3e3c1ab23e7927babdeb0adf3f3593d43fca7850bf14418fbcc182143fbefe23342018c43f7e5ae53fe9114332f06b78bfba4f77bee58d1b34d562c53ff9d7d93fc423fe3157f27ebf1998b9bde58d1b34d562c53ff9d7d93f0000000092937dbfc6910c3ee00d013eda56333fe7ab3f3fde6cfa3e7c4a53bf426a903e9512103edb0e2c3fd6410a3ff288093fd94a57bf884a833dc37f2d3e2cc6973fea59963ee4edeb3e22d4493fe7aad0bef69c8b3e4a5d8b3fd336893e52024e3f901cef3e2ea5bbbe7fa79b3ee7269e3f1e38133fd736463f087a183ff0035bbee7cb3e3ea74da83ffda9113f2082c73e6b68563f151bc4be585b363eb71d3d3ffb8d4f3e5824063f0b8a47bfb6cbafbe7a481c3ec41c2f3fc97acb3e8eeeed3e507860bfa684fcbdf6cb963ef006463fbffca13ebb8d3d3fac2211bf1ed6b8be0207a53e9a5a7c3f2a38b43e1915723faeeea53dc244a1be0f6f933ea632703ff9fa6f3e6f45623f4f7feabdd630e8be8f3d823e0dad653f4a4b623f9ff43b3fc15603bf67ace33e31198b3eb580843fd54a813f626d423f3ef0c2be5508073f9ad89b3ecf918f3f9a636c3fe657793f2e7ce6bc5233663e382fa63e90e1793f989c553f1c55623f34d5a6bece7aab3ef6e3223e36a2913f7e82933fd4ed043f828fcdbe3323413fe2e21b3e5e717b3f15ae883fa1e3063f622cf9be0561323fcef1803e4453ae3ff3bd5e3f133f393f8522263ff2a170be77bd2f3ef234b93f14dc553fb266003fcda13e3ff176e1beed4d0d3ed343cf3f0744863fbf8e0d3f68f0333f6314e5be6091843efb85bd3f23288e3fd6e8743f96b8733e81b62b3ee7f0813e625bb83fd42f773fb91f3b3f2fb2183f62c2a9bedea2383eacbea93f094d9e3ff5f1243f016b8bbe8af2363f65898e3e65389a3f5fba8a3ff2c7683fd0668ebd6c11d23e8219803e88f8b73fe2e98b3fd315743fe8d7813d17ee963e3cf48e3e1cefa73f66a76d3fcbb8783f7855683e9d818a3dabddb03e33988e3f35f5373f6ca3773fb7cb6c3e3aacd43de725bf3e6fde8b3fee4b093f5697653fdf9fc33ec44464bea3e0573e4e4d413f257f373fff282f3f0db72bbf858b923e8e9e823e04b04b3fa6f62c3fdb47313f6eaf32bf85b93a3e336f0c3eb760523fbfd5713f13b2123fedac25bf83b7003f4be4673ebba8383f96d6e83e34780e3f683154bf3546693dc54a053ee211d93f1f3c923f92e3203fc0a91e3f8da3f0be966e043e6614e13fcc4d9e3f5615343f2956183f3cfec6bec2191c3ed2b6c03fa010a93fe902433fb12ea6be11890f3f081f553e637fcb3f9d899c3fb923773f44d0813e01857a3d38940e3e9f55ca3f7f6fb43ff9935a3fff5395be50c5dc3efce63a3e1dd1d53fe449a63fcf60753fb675913e67cabfbcee1ff73da764ea3f3ab0bc3fa2431d3f2ae7473f8a3ee8bd63e5fc3d0823e63ff137ac3fea2c373f8df12d3f2b3326be966e043e6614e13fcc4d9e3ffd9d423f319f223f10630bbe0727143e8b3fdc3f3321bc3f83e17d3f8aa2fa3dbd2a1f3d9ed50a3e09b5cf3fa704c73f7cc0793f3ea75cbe58132d3de11e093e0b86db3fee0bc73fc78a7e3f01161fbd133fcb3d23d9223ebf89d93fc466af3f4f547a3f5e9b3f3ee91bc03dfce63a3e1dd1d53fe449a63fd2c8713fde66823e6d9b543e5763d73d0878e63f8259d43f8731143f95861c3f2d1c0a3f9474d63d5a72ec3fc462c73fd714f73e7e4b5b3fcbe83a3eb746113e65eee53ff4a5c73ff792783fc271543e9275f33d38940e3e9f55ca3f7f6fb43fa0c75e3f0136f6be731edb3d4031123e82f8cf3f7944bc3fdb79753f3efc81be84d4013e192ff73d625fc93f036fd13f12dd223f7aa33ebf43a04e3efe688c3d3afac13f1ab0c63fef8a203fe4d344bfa89cff3da7aa013efff8d93ff463d23fc0fb763f8c45203d7a30853eb6d7b53dbb56d53fb871dd3f3ed55d3f6f31d53d76edf93e916b393dd05ddf3fb4afdf3f2922053f4211133f82cf213f7d54773d3d1bd23f6791e43fe0b0443f6205053e0f72203f29ed223d91cddc3f149ce33f9c54363fe9dbb13ea8261c3fe3ec023eb1f2ce3fa20dd13f733d6e3f183f18be1438ab3e81836e3d05c8c73f74a9db3f2f1b123f6b7146bfdfb28a3e277f973d749fcc3f4f56df3f2dbf623fbea885bedf86c43e6b80f93c9991c23f59f4ed3f087d6e3fd5cf5dbeaa74953ebc1b533dbd87c83ff632e73f4607723fbfb2adbde114a13e77bc143da7f5c63f0987e03fbee4fd3e01105ebf7cdc26bdc7fd0f3da084c53fdce5e73f22110a3f309550bf29df59be277f973d749fcc3f4f56df3ffa80723f7ac164be40326b3e81836e3d05c8c73f74a9db3f5bbd223fc5bd44bf6c85943d7d54773d3d1bd23f6791e43fe23f713f07d7a0bc71fdaa3ebc1b533dbd87c83ff632e73f30dd2b3f98e0f83d642a3b3f0f6f933ea632703ff9fa6f3e55d8783f128e0cbee50843bef69c8b3e4a5d8b3fd336893ead274a3f06ca083f9f609abe9c47773e4474833fef91c73d62d4673f26a0bc3e484357be876f7d3ee1ba633fdc8da83d1252773feca17dbef73895bd0a68853e1276743f51373dbe0d1c703f71208c3e04285a3e4ebe823e82df4e3fa06b38be82f3643f346789be6b46b73e1a83763e6291583fcb6f87bd488e753f560c85be9117e43d3ed8733e8e4c7b3fced07cbdfb41773f7107843ede9ecebc9a0b553ecfe9363f596542beeea92b3e12ba5dbfb917f13e0690373efce13e3fd3b0acbdd5adf63efdd05cbf172a1e3edf92a03e0fa8473f947996bebc0e723f7b0783bd8769a33e43488f3eddb5753f494f87bef720623fc0b1de3ec00b333efce8833efb63253f2c6d9dbe41de283f360b14bff8c8f53e585b363eb71d3d3ffb8d4f3e39bd3f3f53b227bf2af4cbbdacd2353e323b423fc62f6f3d6f72193f51b04cbf0aea19bd2bff9f3e02027c3fc0b0e4be2dc16b3f55a1c33eb2939d3d763cb43e4cee443f5598ebbedcfe7e3fbd2c1fbc5d26b43d84769d3e09af6b3f52ad20bf7f876f3f80ad433e18e797be3defab3ea4f93e3f50c019bf96fe713fd5c9493d131da5be60df833e6076863f8cd522bf77203e3f6854143f7fe2abbe21db893e93c5423f2bbb36bfc26a0e3f94d8063dbb8f54bf6ec96d3e5a7a6b3fcef33cbfa345ed3ed988c93dba7261bf1315d13d70bf673fa8ee40bf9ec0153d490f37bec0b37bbf688a173e0ca3403fbc3636bf268408be8fc4afbef3016ebf564cd23dcc0a863f368442bf1d91c93ef1ffc23eb82d56bff3efdc3dae00373fecf9e9be0e4bb43c51c47fbf66b815bd9ed2b23dc2db343fa9231bbf15e592be856b74bf6211a0bd78628a3dbe97443f8ee091bf2d9a7f3f75fd58bd04868d3c74e6a23d90c3693f66986bbf57697f3f1d7d3abc64d188bd564cd23dcc0a863f368442bf48e06b3fae247e3e821f99bedb9f5a3d648e273f465eb5bfaf587f3f8b0391bd65c6173ca1fb203df1ae133fe359e1bf0f1b723f77f8a5be125abb3c33fdce3deae71b3fe23313bff19852bfc7ece5be0088b23e9ed2b23dc2db343fa9231bbfdb487cbf8dc0c0bddba9103ef3efdc3dae00373fecf9e9bedb487cbf8dc0c0bddba9103ef3efdc3dae00373fecf9e9befdc06abfe8d389beceb2963e074c183ebab0253f157cc8be737539bf4e5a0abfbb15db3e6156ad3ea655273fcbd804bf302c693fa92bb3bec02d603effe7783ed5760f3f934ac7be7683cd3e883039bfdacf0f3fde7c88b3a405443f28a72ebfb8ea2fbea30d5dbf5dcbf2be9ed2b23dc2db343fa9231bbfa9f526bf3e5a04bf54ed0dbff3efdc3dae00373fecf9e9be06d169bf69fc61bee333af3e9eadac3e3f9d183f92911cbf369a7e3f0e87c6bd61391ebd0f98613ec891f63ef635fcbe3789053e6d3b50bfad1f113f1d559f3ed124db3e6fc332bf458a583f26adc6be9e62bb3ee4a35c3e9c9dcc3e165323bfb3d885be326932bf65f52a3f60649f3ecd25eb3e74494bbfe1f36b3fe0b7b63d624bc1be7f2f873ebc5c233f0a4d3abf64c71b3fd44f6e3e013742bf073a823ed083113f155247bfa1651d3f3663093f2bf113bf05447a3e1037fc3e0edb5fbfec18143e2068c53e7d4969bf105a283e503d2a3fc05f37bf776c18bff11ee83dbd9e4bbf7e0a1f3eab83153f438445bf41b63cbf47ddcd3e29070bbfcf35113e7b55f33eb84355bf63355abf1b37473e4485f8bea70a053e0217e43e2e3a31bf118423bfcf0905bf9741113fe50f7c3e26f5c63e3de95bbfac82823e837a12bee1d174bf67e31e3efcbad23e0a2557bf446152bf4b222abe5d860bbfe4a35c3e9c9dcc3e165323bf53381ebfb3e2b9be4f81323f27a0633e9400a43e8d592cbf7c832dbfe503cebdc0743a3f5962243ec558a03eae503bbf61a66dbf0e7611bef7e8af3ea70a053e0217e43e2e3a31bfbbf47ebf677cadbdb55cfebce4a35c3e9c9dcc3e165323bff1f820bf4f34b4be717f313f0416973eabe2a03e93ff3abffa54653f72d36e3c3069e33e27a0633e9400a43e8d592cbf3888133f4d7d94beb598433f4436323e794c953ea16455bfdecb26bf65b525bec0bb3dbf08d6833ec703953efb7b55bf586fe13e99ece0bd981f64bf33fdce3deae71b3fe23313bf417855bf9c948abef94bf6be33fdce3deae71b3fe23313bfa4c968bfff42993ec3f793be33fdce3deae71b3fe23313bfba8476bf759aba3c2f8f89be6dfa943e820e9a3e0ff94cbf6f846d3fd67f143dec1bbebede7c88b3a405443f28a72ebf969d57be91180cbf725f4fbfa337c4b2cc55323fb98c5abef9fa4abd167e7ebf9b5cc5bda337c4b2cc55323fb98c5abe1152b73debd07ebf99ce0ebd9a0b553ecfe9363f596542be1152b73debd07ebf99ce0ebdc37f2d3e2cc6973fea59963eb52cd93e3d945a3f69819abe4f4f233ee0208f3fcb82c93d483d043f2ea6523f848272be92b3233e61cb8b3f6da77fbd20f32c3f6eb03c3f44e5913c3cea323ebb5e903f431177be32cb1a3f7a3d483ffbd1193eb6982b3e8447943f4265e3be6418163f68174f3f4daa2f3d500b153ede1e913f334424bf2ad2d03e583c5a3f496ca7bee814033df6a60f3f153305c0f6777f3f8845603d5ddd0abd4c01fb3cb37c153f0d7917c056b77d3f86346abc74b0073e74b1993d3fa0183f1df01ec0922f703ff36e66bee194863e54f6e83d97c01e3ff3d227c0e1e97f3ff8e186bc119ea43c4b78af3dedc7273f2a3230c0c2fa6d3f16ff7c3eba048cbe373cb73c9743e23fc34cdd3f472eb73e9bcd533facb0dd3e4f2d2434bb4fdb3f54ffe53fed9bc53e0eeb21bf48eb2b3fc2681a3d3b56e53f9aaaec3f1e51393f6c53e3bed02e073f29ed223d91cddc3f149ce33f2a04f23e346722bf44951c3f4f2d2434bb4fdb3f54ffe53f2a04f23e346722bf44951c3f373cb73c9743e23fc34cdd3f8316953ed4c63a3fe8681ebfb42ca43c5320eb3fe39be73f92f2273f29cf183f2277ecbef5c91d34cd55e33f09e4dc3f23d9b53eeb19393facad17bf373cb73c9743e23fc34cdd3f23d9b53eeb19393facad17bf29ed223d91cddc3f149ce33f1a047f3f716d41bd0416973ddd21263d2688e83fcac3e93f04a36d3fe730a03e5fe44dbe916b393dd05ddf3fb4afdf3f98297d3f99af9abddae5023e29ed223d91cddc3f149ce33f98297d3f99af9abddae5023e916b393dd05ddf3fb4afdf3f06fd493f275ef43e9011c6be373cb73c9743e23fc34cdd3f7fc4493fe7a1f43e34a4c6be916b393dd05ddf3fb4afdf3f7fc4493fe7a1f43e34a4c6be2088d73cb8effa3f0417fe3f6d027e3f9b31903da430d23d5699703e71303f3eb53526bf1240013f78b3083f329e2d3f27a0633e9400a43e8d592cbfc3b81d3f4a16483e0357433f2da4a43e48a42b3eb99d33bf1dfb433fdaa2153f05a5893ef1d8a33e609f293e3acc47bf0a8d733f2b73853e1a2128bedb011f3ef994003e320349bf69344dbf2c47a2bd70b517bf7a10993eae4c273e406d50bf5379453dc6d266be171b79bf5699703e71303f3eb53526bf579e30bf961b833def96383f5699703e71303f3eb53526bf2de523bf01c4f13d7452423fa336283e26bf2e3e58d534bf6c0f6fbfec3a8a3e564f703e329d483eb7bc253aa49cf1be8e4e9abb78727fbf922d863d61c59d3eb2bc253a4a7bedbe80b3853c7def7fbfcc7b7cbcb0ce0f3e47829abb24ad0ebf07a5d43c3ae67fbf50d62d3cce26043e72c379bb2a193abf7fcf6c3dc3817fbfea4cb8bcf17a9b3e0893153ecb4f15bfad10af3ef8165e3f47efb83ec8129e3e3e44da3dc662ffbe61e5a43e1416123f2562413f2c4a4b3efafcde3d9f6603bf3e562ebda45c333f2356363fe73e5e3ec7bb203eac5116bf549dac3d7eda5a3f4f0c033f53bfc53ead1ea43d0a6119bf0b55523fe19c0c3f942c1c3e8057d23e8c829abbf0971cbf5943783f1c333d3dfb5375be80aacd3e85c1253a9d7b06bf3c69413f393ecc3ef409053f2c49b93e7edfde3d6f9143bff5fa6b3f2090463e88dfabbe17b6a73e48af353c2a1047bfc5ee933e08288cbe54d96abf5699703e71303f3eb53526bfaea5dabe23795b3f682f933ee73e5e3ec7bb203eac5116bfaea5dabe23795b3f682f933e2c4a4b3efafcde3d9f6603bfa9f939bf0013253f234d733e3eb2183e2b4bab3d6f8918bf2e886fbfb911a13e53b0233ee73e5e3ec7bb203eac5116bfa9f939bf0013253f234d733ece26043e72c379bb2a193abf756fa4bd0797cabef3346abfce26043e72c379bb2a193abf5faf60bed68288be044170bf80aacd3e85c1253a9d7b06bf6399323d35317fbf0ed8873d8057d23e8c829abbf0971cbf6399323d35317fbf0ed8873d17b6a73e48af353c2a1047bffd1f8a3d074f7fbfe218eebc8057d23e8c829abbf0971cbfc97adfbd45447ebf463e23bd17b6a73e48af353c2a1047bfc97adfbd45447ebf463e23bde73e5e3ec7bb203eac5116bf4a5f33bf48aa1a3f8952c23ece26043e72c379bb2a193abfb1917abfb65a513e81c35b3cb0ce0f3e47829abb24ad0ebfd15c7dbf8984013ec366893dce26043e72c379bb2a193abfd15c7dbf8984013ec366893d61c59d3eb2bc253a4a7bedbe6d718bbdf148a03ea681723f329d483eb7bc253aa49cf1be6d718bbdf148a03ea681723f329d483eb7bc253aa49cf1bed733eabd68e0b63e6a506d3f2c4a4b3efafcde3d9f6603bf261153bf949b603ef68a053f329d483eb7bc253aa49cf1be261153bf949b603ef68a053fb0ce0f3e47829abb24ad0ebf261153bf949b603ef68a053fb0ce0f3e47829abb24ad0ebf512b5cbf348a8b3e95d9dc3e2c4a4b3efafcde3d9f6603bf512b5cbf348a8b3e95d9dc3e61c59d3eb2bc253a4a7bedbe63aa073fc5ba863e5e614e3f2b60cd3e507c6c3f7e90203f47fb753fd94d4e3e6db0423eabddb03e33988e3f35f5373fb782773f6ae5653e6751f93de725bf3e6fde8b3fee4b093f3246763fcd5a883e234076bdb904d33e9ab9733fc413033f784b723fa548713e15f161be382fa63e90e1793f989c553fb271373f0606043e147c2f3fabddb03e33988e3f35f5373f45cb703fc7abfc3d6cf2a13e421bcc3ee5ff5a3fac0f3e3f7f4e703f6bf2ddbb3379b03e81abdc3ec85d4f3f9728013fb4017f3f6650c73c9937adbdcf4ed03e8a06383ff15f203fbf28633fa749b0be300a9d3e7e7ebd3e7e533a3f9cc2ae3e0ad92a3f8d1bb93cab8f3ebfc22ece3ea4c5283fc5bed03e537e793fcec326be14861dbe0b1bc13e2853613fc2d8ca3e2cf44f3fbd55253e86770fbff1aea63ee7e34b3f192f4d3f0ca39e3c79a200bf83475d3f121c9e3ed8522d3fc97d2d3f709471be109f2abf2d0b353fc9c7c03e41f40f3f749c043fdc664d3f91ffcfbe9ee0df3ec2dd973e5af10b3fc8910c3fbde812bfc8bbdebe5ea0313f754e733e5ef5353f6de10d3fca265fbf7d0392be8e0dcc3e33fb6f3ed063093f7eabe33e3a6150bfa06940be58b60c3f2b8aaf3ece0a0a3f617db23e881f393fa9f288bd5cfd2fbfe47b873e1f44123f5214ae3ead621cbf76f0d73d25e048bf33fb6f3ed063093f7eabe33edcb37ebfe9aaa93c0f83c9bd5cfa783e41bffe3edb659d3e2f3062bf88576abda9feedbe0bfca63e89dcfc3e87069a3e9d84fa3e954935be349d5abf1272a13e75b5c93ed2dfb83ef3d0173f7818d4bed3c030bfb01db93e2582db3e2262de3e5b377e3f1c45eebda69299bc7009843e8dd6c93e59d4be3e5d3d21bf6e08ffbeab9118bff6cb963ef006463fbffca13e34e875bdb50dad3dfb9e7ebfe7eb963ecef8db3ecb89033f8eb1803dc219bc3ded687e3fb071733ef227d43e44d7e43e104b40bf531f103e021c253f4be4673ebba8383f96d6e83eb97178bf5c29883c785c76be754e733e5ef5353f6de10d3f88407ebf5fd345bd447ad93db071733ef227d43e44d7e43e417f7fbf6295eabc5d3f64bdb071733ef227d43e44d7e43ed2d672bf013a82bee4e340be8e9e823e04b04b3fa6f62c3f882850bf3063b8be1e26ea3e8e9e823e04b04b3fa6f62c3fc3f957bf1e1ec0be7b9ac43e4be4673ebba8383f96d6e83efc157ebfd156223df56dec3d8e9e823e04b04b3fa6f62c3ffc157ebfd156223df56dec3d8e9e823e04b04b3fa6f62c3f1a585ebf7949c0bd612bf93e0207a53e9a5a7c3f2a38b43eff4d2b3fbe24173dff003ebf1659c83e2749723e2f580b3f7ea77e3f47e08b3dd7419c3d82bf9d3e90e5823e66d9133f775cc4bed3fa9b3eda305f3f152b873e195e743e1465093f992935bf723b703e389d2a3fdeeea23ed9b95d3ec461f83e0c7698bcdb1120bf2fba47bf152b873e195e743e1465093fca4e2fbf908f0abf2dd5f9beb071733ef227d43e44d7e43e6e8673bfe06976be1b7245be152b873e195e743e1465093f6e8673bfe06976be1b7245be6ddc853e52d5443e93570f3f69007abfdfe35a3ef604ccbcb1647c3e2bd2a73dbf18203fb02f7dbf9b04163e9586a3bc4fb47c3e89a7553d3ebf153f66d977bf0f433d3eb3e12cbe45a0933e8062123e69e4023f9c105dbfa0a6553e920febbe5f83a53e8ca80f3ea6faff3e7e8c303faed9833de5a538bfc69cd83e0254aa3d068c1c3f3c1e533f98d1963e9036f7be1659c83e2749723e2f580b3fa610313f0db628be910334bfcf8f973e9ae5103e49672d3f8fc421bebb7e473fb03f1b3fc86b823e29a2f13d039f2c3f35955ebf0bfcf13e632c133e82bf9d3e90e5823e66d9133f46aecfbe1b29203fa8972a3fc024c03ee43a143e5998283f59f2d83e07d54e3fa1aad13e1659c83e2749723e2f580b3f32b2583f588eb33e1d1fcd3e82bf9d3e90e5823e66d9133fc8adcc3eddab2f3f17921b3f1659c83e2749723e2f580b3fc8adcc3eddab2f3f17921b3f82bf9d3e90e5823e66d9133f0b7f1b3e3b37243f2981403f9a6acb3e52a0b13cf87a0d3f92a4493fc1405f3e278413bf5bada93e95a4303dff66f23e0958423f8adb903e821116bf4eb4943e2447f03de1aeee3ec33daa3e414e4b3f583802bf49317a3ea097803daa4ffc3e6e6558bffd95083f53eae83c1659c83e2749723e2f580b3f57aa243f903dd7bd812842bfdeeea23ed9b95d3ec461f83e57aa243f903dd7bd812842bfdeeea23ed9b95d3ec461f83eebe8a1bef62b4ebe89546dbfdeeea23ed9b95d3ec461f83ed5572fbfbd1e9d3c52753abf152b873e195e743e1465093fd5572fbfbd1e9d3c52753abf82bf9d3e90e5823e66d9133f1dac34bf6a09b23e40041e3f152b873e195e743e1465093f1dac34bf6a09b23e40041e3f9a6acb3e52a0b13cf87a0d3f33b56fbefa4778bf87d88abd5bada93e95a4303dff66f23e33b56fbefa4778bf87d88abd49317a3ea097803daa4ffc3e33b56fbefa4778bf87d88abd1b289c3e1e2d2b3d7b1ed63e55474f3f592d8b3e782605bf9a6acb3e52a0b13cf87a0d3ffc1b87be045e60bf6d38cebe4fb47c3e89a7553d3ebf153ffc1b87be045e60bf6d38cebe0c0c6c3ee1553c3b74ee333f9abd23bd165e7fbf749d6cbd9a6acb3e52a0b13cf87a0d3fc5c164bccc787dbfa8d70ebe8734eb3e0e900c3c20b3233fee278e3d0dd37dbff456e13d0b68a93e40d2d63cb4b5463fb3f9d93d89b477bfd6756a3e395adb3e4670263d9a62443f2d92bf3d3d1778bfcdb3693e0c0c6c3ee1553c3b74ee333fa45a7dbfe9fae43d8ee8b7bd8734eb3e0e900c3c20b3233f4cdf4f3f76eb403ef56a0dbf36a8593e45fda93c2f86493ff8b7163dba4679bfec14663e77f28b3e8d60dd3d6eb6463ffd45d23e8db65f3f0130853eb651623ef29f8d3d98084b3fbb2962bf0826e53e36ee0dbe36a8593e45fda93c2f86493f3c2c73bfa265483ee79379be0c0c6c3ee1553c3b74ee333f3c2c73bfa265483ee79379be0c0c6c3ee1553c3b74ee333f263077bf05171a3e164259be0b68a93e40d2d63cb4b5463ffda9433f4c7f093fc9b6b63e153b7d3e80b4f83de9335e3f07314abebd55733fde91753ec1db4f3eae512a3dee7d5a3f40d76bbfc012c23e0db5b23d36a8593e45fda93c2f86493f170076bfbfcf443eeaea4bbec1db4f3eae512a3dee7d5a3fb2e08bbdf45c74bf728d943e078c903eca33323dc3e4603fdd02a43d28177fbf8a90d5bc078c903eca33323dc3e4603f81bf623fa4e7d83e4b4b423e0b68a93e40d2d63cb4b5463f3c19493fbb510d3fd92a8f3e078c903eca33323dc3e4603f3c19493fbb510d3fd92a8f3eb23ec33e911d0a3e3d73493fb5ec5abdec14793f4807663e395adb3e4670263d9a62443f43d6643ffd7be53ee31afcbb0b68a93e40d2d63cb4b5463f7c3e3fbf336d933e7863193f00e1bd3eee2e8b3dc880663fc5d5a3bd67f17dbfb1bac8bd9bc8e73e8e206e3d97755e3fb3cb73be195e69bf1c97abbe9bc8e73e8e206e3d97755e3fcaaf503f0f130b3fa8af4dbe2969d43e144a013ea150663f01857a3ee1f7663f04d9b53e395adb3e4670263d9a62443fa875553f6570f33e029a8fbe9bc8e73e8e206e3d97755e3fa875553f6570f33e029a8fbe00e1bd3eee2e8b3dc880663f1fda66bf9aa3ce3ea6691e3e0b68a93e40d2d63cb4b5463f1fda66bf9aa3ce3ea6691e3e00e1bd3eee2e8b3dc880663fd62c44bfeef6143fa3708b3e0b93033f2011143ddf0d373f58edee3d09517abf3d3e323e2224f93e5f59053ef324413fbe0c783edd54783f47d495bc0b93033f2011143ddf0d373fb36a443f295dd93e9c20f6be8734eb3e0e900c3c20b3233ffe8b463f993c173ed61d1dbf0b93033f2011143ddf0d373ffe8b463f993c173ed61d1dbf395adb3e4670263d9a62443f42ee0bbf34a3e83e0612343ff90b033f34704f3db949563fd18f873c7f4f7fbf3f5592bd3841103f35d2773d84174c3f4a8d5a3c797979bfbe5265be0b93033f2011143ddf0d373f24db343f5466e03ee7420ebf3841103f35d2773d84174c3f24db343f5466e03ee7420ebf3841103f35d2773d84174c3fd250313f6d23c93ea0db1abff1a5093ff4e2083e5eb1503f88b9d33d3e0d6d3fe0ecb93ef90b033f34704f3db949563fd0cb18bf360cf53ef1da243f395adb3e4670263d9a62443fd0cb18bf360cf53ef1da243ff90b033f34704f3db949563f0b2338bf1903c13ed162153f49317a3ea097803daa4ffc3e8e6860be4d4c78bf0d21d9bd4fb47c3e89a7553d3ebf153f8e6860be4d4c78bf0d21d9bd9a6acb3e52a0b13cf87a0d3f8e6860be4d4c78bf0d21d9bda79a713e0266483d5e7add3e490b67bf653ba93ee8588dbe122c8b3e79f7f63d7a5acd3e2df0a4beb3ef323fc87323bf93936a3e92128b3d68166b3f3a1d85bef154113f4af6473f3841103f35d2773d84174c3f5892633f502bc13ec5f184bee9f8123fa3a6a13d0b405c3f83bdda3e68ac133f703b323ff90b033f34704f3db949563fba6deebefe21b73ef7374f3f9bc8e73e8e206e3d97755e3f6952643f7ff9cd3e929c533e7b98de3efaab643dd56f733f2719bc3e0558e13e75c0513f00e1bd3eee2e8b3dc880663f7e0f05bf18c0cd3e11ff403f078c903eca33323dc3e4603f33ce283feb5fc43e8287253f0ab35a3e9fff87bc5103753f650a8fbea370e23ed32d5a3f0570193f6b8846bb2800643f1da55ebe120758bf1228fbbe3841103f35d2773d84174c3fe5af733f9774583ea62163be0570193f6b8846bb2800643fe5af733f9774583ea62163be0570193f6b8846bb2800643ffa9dd7be54fc493e91a2623ff90b033f34704f3db949563ffa9dd7be54fc493e91a2623f5290e33e950a25bd3dd2793f0222aabec34e2ebf1b1527bf9bc8e73e8e206e3d97755e3fade2763f3ff31c3e79b05c3e5290e33e950a25bd3dd2793fade2763f3ff31c3e79b05c3e5290e33e950a25bd3dd2793fe3be18bf4e0a143ea7134a3f00e1bd3eee2e8b3dc880663fe3be18bf4e0a143ea7134a3fc1db4f3eae512a3dee7d5a3fa41b353e2caf59bf9cc4fdbe0ab35a3e9fff87bc5103753fa41b353e2caf59bf9cc4fdbe078c903eca33323dc3e4603f6b80253f4b295e3e943e3b3fee7a823e43ac78bc7aeaba3ec4132dbefc748b3e997d72bf1b289c3e1e2d2b3d7b1ed63eaa54923d5e9536bfc481323fee7a823e43ac78bc7aeaba3eaa54923d5e9536bfc481323fa79a713e0266483d5e7add3eaa54923d5e9536bfc481323f1b289c3e1e2d2b3d7b1ed63e30c646becc5b79bf863dee3d49317a3ea097803daa4ffc3e30c646becc5b79bf863dee3d5bada93e95a4303dff66f23e30c646becc5b79bf863dee3d49317a3ea097803daa4ffc3ec94056bd06b878bfbf7e6c3e1b289c3e1e2d2b3d7b1ed63ec94056bd06b878bfbf7e6c3ea79a713e0266483d5e7add3ec94056bd06b878bfbf7e6c3e152b873e195e743e1465093f02336bbf8a610abed4f3bdbe0c0c6c3ee1553c3b74ee333f1a5b7abf5986553e0f59393c82bf9d3e90e5823e66d9133f68db4ebf42c4033f64bf923e0207a53e9a5a7c3f2a38b43e69e85c3f62d4893e29f7dabe0207a53e9a5a7c3f2a38b43e631a5b3f1ba39d3e72c4d4be778f6e3ebe2e0a3c0339efbecd6c16bc0ce97dbf303b02be9ad88b3e2ce730ba0f56ccbecd6c16bc0ce97dbf303b02bef601993ebe2e0a3c54a8f1becd6c16bc0ce97dbf303b02bef601993ebe2e0a3c54a8f1be1c37633ffb25993e0c65b33e9ad88b3e2ce730ba0f56ccbe1c37633ffb25993e0c65b33efb64893eb4caba3d5e49eebe1c37633ffb25993e0c65b33efb64893eb4caba3d5e49eebe18404bbfd1f5a73e5e0b033f9ad88b3e2ce730ba0f56ccbe18404bbfd1f5a73e5e0b033f778f6e3ebe2e0a3c0339efbe18404bbfd1f5a73e5e0b033ff601993ebe2e0a3c54a8f1beb7fd313cdf117dbf79161a3e13ec933e3f551f3aa5ce05bfb7fd313cdf117dbf79161a3eb663643e3f551f3af89604bfb7fd313cdf117dbf79161a3eb663643e3f551f3af89604bf5ffb313cdd117dbfb6161a3e778f6e3ebe2e0a3c0339efbe5ffb313cdd117dbfb6161a3ef601993ebe2e0a3c54a8f1be5ffb313cdd117dbfb6161a3efb64893eb4caba3d5e49eebee23c6e3f26ada43ef9d832be8827833eced4bd3d681107bfe23c6e3f26ada43ef9d832be13ec933e3f551f3aa5ce05bfe23c6e3f26ada43ef9d832be13ec933e3f551f3aa5ce05bf4217683fae75b43e039a6dbef601993ebe2e0a3c54a8f1be4217683fae75b43e039a6dbefb64893eb4caba3d5e49eebe4217683fae75b43e039a6dbe778f6e3ebe2e0a3c0339efbe1bc76dbf75f9b13eb164033eb663643e3f551f3af89604bf1bc76dbf75f9b13eb164033e8827833eced4bd3d681107bf1bc76dbf75f9b13eb164033e8827833eced4bd3d681107bfc1a667bf7cebc33e5fe43e3efb64893eb4caba3d5e49eebec1a667bf7cebc33e5fe43e3e778f6e3ebe2e0a3c0339efbec1a667bf7cebc33e5fe43e3e42dfa63ebc2e0a3cc1fcecbe1c8b2fbd0de97dbf7df2f5bdc504c43e07e730ba05dfd0be1c8b2fbd0de97dbf7df2f5bd4db8c63ec02e0a3c5a5af8be1c8b2fbd0de97dbf7df2f5bd4db8c63ec02e0a3c5a5af8be71ed723f9925993ecd53cd3dc504c43e07e730ba05dfd0be71ed723f9925993ecd53cd3db993b83eb4caba3debedf0be71ed723f9925993ecd53cd3db993b83eb4caba3debedf0be94cd20bfaff5a73e44a0343fc504c43e07e730ba05dfd0be94cd20bfaff5a73e44a0343f42dfa63ebc2e0a3cc1fcecbe94cd20bfaff5a73e44a0343f4db8c63ec02e0a3c5a5af8be44b44f3ddd117dbf4580113ecae0ba3e3f551f3a900008bf44b44f3ddd117dbf4580113ec2079b3e3f551f3abf5102bf44b44f3ddd117dbf4580113ec2079b3e3f551f3abf5102bffab34f3ddd117dbf8780113e42dfa63ebc2e0a3cc1fcecbefab34f3ddd117dbf8780113e4db8c63ec02e0a3c5a5af8befab34f3ddd117dbf8780113eb993b83eb4caba3debedf0be7e9a593fe8aca43e2997d5bef60baa3eced4bd3d9ff906bf7e9a593fe8aca43e2997d5becae0ba3e3f551f3a900008bf7e9a593fe8aca43e2997d5becae0ba3e3f551f3a900008bfafc04f3f4c75b43edb9beebe4db8c63ec02e0a3c5a5af8beafc04f3f4c75b43edb9beebeb993b83eb4caba3debedf0beafc04f3f4c75b43edb9beebe42dfa63ebc2e0a3cc1fcecbe32555cbf6cf9b13e227bbe3ec2079b3e3f551f3abf5102bf32555cbf6cf9b13e227bbe3ef60baa3eced4bd3d9ff906bf32555cbf6cf9b13e227bbe3ef60baa3eced4bd3d9ff906bf997352bf7debc33eccded73eb993b83eb4caba3debedf0be997352bf7debc33eccded73e42dfa63ebc2e0a3cc1fcecbe997352bf7debc33eccded73e554f143ebf2e0a3c221ffcbe5556833d0ee97dbf63b5e1bd8fef0e3e10e730bab2b6d3be5556833d0ee97dbf63b5e1bda3c34e3ebd2e0a3c5a1debbe5556833d0ee97dbf63b5e1bda3c34e3ebd2e0a3c5a1debbe2712093f0726993ea4324a3f8fef0e3e10e730bab2b6d3be2712093f0726993ea4324a3f732c313eb4caba3d6d22f1be2712093f0726993ea4324a3f732c313eb4caba3d6d22f1becfbf71bf7df5a73e4844ccbc8fef0e3e10e730bab2b6d3becfbf71bf7df5a73e4844ccbc554f143ebf2e0a3c221ffcbecfbf71bf7df5a73e4844ccbca3c34e3ebd2e0a3c5a1debbecf659bbddd117dbf5887053e18a3633e31551f3a9eb501bfcf659bbddd117dbf5887053ec82e293e48551f3a82360abfcf659bbddd117dbf5887053ec82e293e48551f3a82360abfd8659bbdde117dbf5a87053e554f143ebf2e0a3c221ffcbed8659bbdde117dbf5a87053ea3c34e3ebd2e0a3c5a1debbed8659bbdde117dbf5a87053e732c313eb4caba3d6d22f1be7cf65d3f2bada43e76d2c23e04c94a3ecad4bd3d687a07bf7cf65d3f2bada43e76d2c23e18a3633e31551f3a9eb501bf7cf65d3f2bada43e76d2c23e18a3633e31551f3a9eb501bf422b613ff575b43e63a0a33ea3c34e3ebd2e0a3c5a1debbe422b613ff575b43e63a0a33e732c313eb4caba3d6d22f1be422b613ff575b43e63a0a33e554f143ebf2e0a3c221ffcbed2e456bf69f9b13e85e5d5bec82e293e48551f3a82360abfd2e456bf69f9b13e85e5d5be04c94a3ecad4bd3d687a07bfd2e456bf69f9b13e85e5d5be04c94a3ecad4bd3d687a07bfb4385abf20ebc33ece6bb6be732c313eb4caba3d6d22f1beb4385abf20ebc33ece6bb6be554f143ebf2e0a3c221ffcbeb4385abf20ebc33ece6bb6be3eed183e74cae03f4320ca3faca16b3fe85b343bfc21c83ec3bcf43ddf58e73f8cafcf3fb2ad573f332a653ef4e3fa3e5f07403e7723ee3fa612bc3fb5a76b3f6cc4863ef3cf933e982e373e8729e43f186cba3f94617b3f049641be53e9913be631623e248b00405636943fc6b8683f5cd3853ea31fa63ed398473e9661f43f152faa3faa787e3f71a5093d279dd43de01d153e1e7bfb3f207fae3f661b4c3fab3e063f1208993ef6dc3d3e087e0240340b973fed63393fc372fd3e0bd3f53ee3372d3ee6f5ea3fdfcfa83f64b1713f9d9da2be9b96b4bd7396563e03e4fa3fb296923f8d21763f13c88cbe9f994c3b35a0833e2a450940fd33813f15bf6d3ff56b063e8193b13eac73063e8b24f83f6fb9c03f8f8a543fa4ffde3e391ab23e9f27ba3deb0adf3f3593d43fdb78503fd34e8fbca882143f0000000000000000afdb8d3e58462f3f2183823ef19b393f42deac3ef0663b3f5249af3eadf42f3fb857563e7f01273f792f953eca5c283f9154703e5c011e3febb9e23e46beec3ea60eaf3ede63d63efb73aa3e0c74ec3e4f51e33ee01c043fdc47ec3e6cc0283ff154ca3e30662d3f1df0cc3e49693c3f3643e83e75ec3c3faf6cd53e0ef9203fb0ebe93e4f7b133f2d7fd13e89160d3fe82de73e58cdcf3e9f42b63e7a67bb3e5992813ed1ed143f3138613e38b8083f564f443eb526133fdb79d73dee9e173f68670a3e26bb243fecda2c3e70791a3fe0db0e3e48fa0c3f479a713ea6aedf3e732a813ec200c83eef60893e0613ab3e9303383e9ef0b33ed03c4e3ee25b973e22bd1e3e5acad23ed278503e6a66d43e5a71e13d8879f83ef53a8f3d1bab073fcfeb293e2c06043fea08253e6295da3e851e5e3eea16ec3ee941933e194f053f0461b33e10a0003f000c9c3e2275233f07f73c3ec7bf323f84f7c13eb6f3253f4c661e3eee92873e72ed063e22f3a23e8745263e32f8ab3ea783363ed6b4903eb0d1bb3d6049e23ea54f053e0239cb3ea4487c3dd658d73e667dd53da8a6be3e585aec3ce8f8ef3eb2a15c3d189dfc3e36e4433f1058c83d304c2e3f28c7e03d86162c3f6087083d8508443f20b3f53cd48d1b3fe83bf83d0e5a163f00222c3dee36403f000c383e16494d3feccc403ea700493f36e1833eed77303f1018413e586a233fc47a453e14c5613f70bd053e083a543f488bc63d45ed583f00ed023d11ef503ff0b90b3e11fe3c3fb0d87c3e0ae5323f06c18b3e52d4553ffee7983e0edc533ff85aa93efedc453f384d9b3e373b363f9ef9b13ed1605c3f4c895d3e0e9b653fd4e2673e192f6d3f285b343ec2956c3f6c9e733e0a81703fbcdf463e2efb573fe8ef863ea438623f447d8c3e3cc55c3fc6359f3e6d106f3f20edc43e2bf36e3fac5fb33e34307b3f302caf3ea5016a3fb40fa23e0874683fb617ac3e1e0c623f7e43a53e288d453f42caaa3e3cc55c3fc6359f3ea438623f447d8c3ece12793ffeb09a3e77ff773fac3c8d3e449a693f9065bb3ec2956c3f6c9e733e77ff773fac3c8d3e3dc8783f389e693e4dc1783f640a453ea5016a3fb40fa23eb0ebe93e4f7b133f2601083f6a221a3fb88c083f66250f3f4f51e33ee01c043fc147263fbada153fddfb193ff157133fbd74173f4edd1d3f951e233f247d203f34ac153f9cee273fc15f223f5e7a273fd08c2e3f20e0243f998f2d3fdfb0163f15892e3f4b79313f3643e83e75ec3c3fcf39063f13f3393f9826093f3d8a273fdc47ec3e6cc0283f4158393f569b283f43183a3ff6aa163f81fa483f840b1d3ffc21483f06232b3f9c354b3f66a6133fe98a523f6e502b3fc2f6543f90641e3fecb75d3f64092c3f98915e3f40d71e3ff94d6c3f56d1183f31545b3f2cf50f3fadf96c3f06d9213fc938ea3e9c49473fd1420d3fcbd3493fece80a3fbce25b3f5a4ce83e663e5c3f0ad25d3ff073e93e00e46b3f443fee3e1a9d6c3fd800f83ee4465e3fd456f13ec895773f1022043f30c36d3f3980013f7c8a7a3f0eb1f63e3c575f3f8448fa3e86424e3f68f1f13e827d4e3f24b6e73e63f93c3fdcdad83e98cf4e3f34a5e03e285a3c3f9a94e03e2c432f3fdaa64c3fc19f263f17a33e3f3cab1c3f760a453fc19f263f17a33e3f76b92c3f6cce3b3f0502123fd14d383f27c91b3f6664363f95813e3f8037343f8d5f333f9e133a3f1d746a3f9b9d313f3530703f5eba283fc19f263f17a33e3f594a3a3f923b453fefbc483f4b6b3e3f3345423f6261513f59b74c3f33734f3f11fb563f84804e3fdfac573f71dc433ff806543f541b3c3fadcf5c3f5bb54c3f77fa5c3f1418393f51e9603f6688403f0588663f26254e3ff5d03b3f50f7563ff25c5d3f3d2f543ff4fb673ff4b4533f7d53783f5c5d503fc0a76f3fa9ae4e3fb2a76d3fedee5e3f042c753f02965b3f7d53783f5c5d503f1a6f453f40b3593f7be44e3f200c5b3fea54663f90415f3f911c5b3fbaa55d3fa6fa6e3fd6cb3a3fd79c553f18195d3f3530703f5eba283f59b7af3e304c5a3f9e13b33edaf2433f9e13b33edaf2433f764b7b3fe435ee3ed78c3b3f44c0e73ed90f0a3fce00023febb9e23e46beec3ebebc1b3ff483073f46f32d3fdad80a3f1acd3a3fc5d4093ff05f4b3f5d9a0a3f532d5c3f76c3053f687e4b3f5b72003f8eba0b3fc8a6e33ee82de73e58cdcf3e67031d3fdca9f03e2c4a2f3f8a51fb3e24be3b3f6adefc3e865e2e3f0abcd63e05992f3f661ad03e14542d3f4cfbdc3eefc2203f5035d33e87f4213f2a9ecd3e0d2a233fa4f4c63e2934193fc830c83e8fc31b3f0e13ba3e5488163fb4cdd43ef20c0b3fdef2d63ef50d0f3f8c0ec13e3c2e133f1ec5a93eaca8053f52b9b73ee895083f6a21a83e5e6e023fd434c93e25def93ec46aae3ed8f5763f680aed3d0753703f60b90a3e68c26b3f40e09b3dd4bc2f3ee07c3e3d4b061b3e90fd073d35800d3eb866c73de99a203e2826d63dd4bc2f3ee07c3e3d8ac1d23d8012f73c3a10a93dc00ffe3c1bb19d3d80a8ad3d5532bd3d709eb53d8ac1d23d8012f73c4b061b3e90fd073d0c61013ea0a9ee3c0789e63de066bc3d4b061b3e90fd073d0c61013ea0a9ee3c8ac1d23d8012f73c0c61013ea0a9ee3ccf8ccf3de8617f3eb9bd7c3d1c1a733e7129a13dcc2f7a3e5e6f2e3d4675c93eb73c443f8865643fdbe14a3f2e15693f1a6f453f40b3593f34e8513f51cb693f3ff1573f71416a3fea39653f9bb56a3f952a6d3f1e43683f8f2b773fc64f643f8f2b773fc64f643f8af2a93e6e9e0a3f6506a23e40c10e3ff5a4b73e940e0c3f0c29993e38e2173f1576403fe8ef6b3f291e3d3f7ef5673f6798373f25bb6a3f201f3b3fc9216f3f1cfe413f13a1713fc5e03b3fc29c783f9915443f9b557a3fcec6543f62aa793f7b49503fad386f3f8acd793fe2056d3f8f2b773fc64f643f9138793f1a3b733f8acd793fe2056d3f55966f3fd625713f9807643f7da3793f9807643f7da3793f1fbfc73ec225113f7349c43e408b163f7be7b33e6bed1f3f7349c43e408b163f7be7b33e6bed1f3f8acd793fe2056d3f9807643f7da3793fc4c46f3f955b7a3f9807643f7da3793fa0cb323f08966d3fa0cb323f08966d3fbb07383f918f723f9138793f1a3b733fc4c46f3f955b7a3fc4c46f3f955b7a3fef3d793f9c127a3f9138793f1a3b733fbb07383f918f723f6b217c3e18c6b43dcdb66f3e640e053eceda473e909cd43d506a643e10144a3da625933e20ecae3cc7be9d3e50f9993dce5cba3e50c0f33d78da9c3ea467193ebf379e3ebc7d5f3e741a7c3e188e333e22fcb43e1044473e247aad3ef0753d3d4cddc83ec0fea13d10e1d03e541a223e2f12e13e407de13d1a62dc3ed0a32d3d2401f63e18e0993d59e4c33e609c623eeba1aa3e2c548d3e5e5dbe3e7c16903e7246ae3e5ae6a93ef70ccf3e1cf96e3e566ae53e94b04c3ed248db3e9cbc7c3e191ed13e2223963e5f7f893e188c803e260ff53e80f2223ee1a7033fa8a1f13d09a4873ed44fa03ea453a83eae959a3e4e56c43e3445ad3e4e56c43e3445ad3e46b6c53e601faf3cc82be73ea0a3c93caf85423e7c013b3ee500043fe4317a3e44ae0b3f305e503e6e5b123f0884273e2a36f73ecaf3943e4131dd3e800dbb3e4e56c43e3445ad3e4131dd3e800dbb3ee6edb53d05c3413fb083bc3dc62b3d3f1594353da793423fc46f613d646c493f84050d3e7b933b3f0411fb3d6740453f1cca413eee31493fc2abd63db932523fd9e0ce3daa72463f0f85893d0f89503fc2de153eef414f3f0411fb3d6740453fd9e0ce3daa72463f0411fb3d6740453fd9e0ce3daa72463f7bdb3e3e8aa3393f6bec1f3e26b6353f70c6b73d7411373f9dff4c3d4229383f0411fb3d6740453f2b08f23d9670403f2b08f23d9670403f2b08f23d9670403fc8b8de3d36a1403fd9e0ce3daa72463fc8b8de3d36a1403faa84233f4a6cae3e3db22e3fda2dab3e7f27293f1eb7b33e2959cf3dac852e3faa84233f4a6cae3e8499263fec3f8f3e97912a3f84e89f3eaa84233f4a6cae3e5d121b3fce5fa33e07821e3f00838a3e68e2163fa08e913e0aabd33c963a503f7bcd6b3ec4fc453f88f3233fa279843ef4629e3d3f6b5d3f411d303dce065f3f0aabd33c963a503f1029cf3cff125d3f0aabd33c963a503fd97dee3d435e5e3fef4e613df05d673f1029cf3cff125d3ff496d13cf8a6623fb3ab1e3f2cc1653ec2af1a3fe48e683e5ad0a63dd02f6a3fd97dee3d435e5e3f5ad0a63dd02f6a3f82291a3ed985603f47553b3e04dc5e3fd97dee3d435e5e3fd5a5123fb4867a3e7e0b103fb4f9813ed2334a3e17d46b3f47553b3e04dc5e3f5e402f3e63fd6e3fd2334a3e17d46b3f3c9a103e755a6e3fd97dee3d435e5e3f3c9a103e755a6e3f267a113f946e9a3e0f16643e34425e3f211b813e0e9b573f211b813e0e9b573f7bcd6b3ec4fc453f47553b3e04dc5e3f86750b3f50a98b3e7855093ff0e6903ea237833edc98663fdf5d8c3e4904633fdf5d8c3e4904633f211b813e0e9b573f64d1743e183c6c3f47553b3e04dc5e3f64d1743e183c6c3f3db22e3fda2dab3eaa84233f4a6cae3e97912a3f84e89f3e586ea43db0962f3fb583693d26e9303f7fa1313d2dc96d3fdf5d8c3e4904633fa1718f3effc46c3f64d1743e183c6c3fd2334a3e17d46b3f6b133c3eafa4753f3c9a103e755a6e3f5ad0a63dd02f6a3febf0073da2bf723f994f073fc05d8a3edf5d8c3e4904633fa1ee973e29ec703f64d1743e183c6c3fa1ee973e29ec703f0d310e3fa8b1743ed2334a3e17d46b3ffc7e443e58ba7a3f3c9a103e755a6e3ffc7e443e58ba7a3fb3ab1e3f2cc1653e03e61a3f78dd573e5ad0a63dd02f6a3f6394853db32b273fe7fa2d3f303fb83e2b91313faa04b33e3808333fd27ebc3ee7fa2d3f303fb83e7f27293f1eb7b33e3db22e3fda2dab3e3db22e3fda2dab3e2b91313faa04b33ee7fa2d3f303fb83ec8b8de3d36a1403f0aabd33c963a503fd9e0ce3daa72463faf85423e7c013b3eaf85423e7c013b3e6ce8533f28d8c43ef358463fa237c53e7b684d3f70c5d73e94af613fa237c53e8a3f5b3f6c46c53ed8125b3f70c5d73e8a3f5b3f6c46c53e6ce8533f28d8c43ed8125b3f70c5d73ef358463fa237c53e6ce8533f28d8c43e4404543fe050b63e4404543fe050b63e3e83463f2a58b63ef358463fa237c53e8a3f5b3f6c46c53e94af613fa237c53e4985613f2a58b63e4985613f2a58b63ea50b5b3f0e4db63e8a3f5b3f6c46c53e6ce8533f28d8c43e8a3f5b3f6c46c53ea50b5b3f0e4db63ea50b5b3f0e4db63e4404543fe050b63e6ce8533f28d8c43e6ce8533f28d8c43ef358463fa237c53e7b684d3f70c5d73e94af613fa237c53e8a3f5b3f6c46c53ed8125b3f70c5d73e8a3f5b3f6c46c53e6ce8533f28d8c43ed8125b3f70c5d73ef358463fa237c53e6ce8533f28d8c43e4404543fe050b63e4404543fe050b63e3e83463f2a58b63ef358463fa237c53e8a3f5b3f6c46c53e94af613fa237c53e4985613f2a58b63e4985613f2a58b63ea50b5b3f0e4db63e8a3f5b3f6c46c53e6ce8533f28d8c43e8a3f5b3f6c46c53ea50b5b3f0e4db63ea50b5b3f0e4db63e4404543fe050b63e6ce8533f28d8c43e6ce8533f28d8c43ef358463fa237c53e7b684d3f70c5d73e94af613fa237c53e8a3f5b3f6c46c53ed8125b3f70c5d73e8a3f5b3f6c46c53e6ce8533f28d8c43ed8125b3f70c5d73ef358463fa237c53e6ce8533f28d8c43e4404543fe050b63e4404543fe050b63e3e83463f2a58b63ef358463fa237c53e8a3f5b3f6c46c53e94af613fa237c53e4985613f2a58b63e4985613f2a58b63ea50b5b3f0e4db63e8a3f5b3f6c46c53e6ce8533f28d8c43e8a3f5b3f6c46c53ea50b5b3f0e4db63ea50b5b3f0e4db63e4404543fe050b63e6ce8533f28d8c43e2f422c3fc85d683f704b193f036e713feebc153fca18683f028c283fa2985e3f47c2d73e81dc6c3f9f80d43e0d64673fe301ff3e6b70643fef4a023f672f6d3f74fb063f9b95753f05d3da3e3652733faeeea43e1231683fe6da123fd8a65f3f7a2e353fc4ad5f3f5255643ffef9b03ee3125a3fc678a83ee3125a3fc678a83eafdb8d3e58462f3f5249af3eadf42f3febb9e23e46beec3e4f51e33ee01c043ffb73aa3e0c74ec3ea60eaf3ede63d63edc47ec3e6cc0283ff154ca3e30662d3faf6cd53e0ef9203f2d7fd13e89160d3fb0ebe93e4f7b133f9154703e5c011e3f564f443eb526133f3138613e38b8083f5992813ed1ed143fe0db0e3e48fa0c3fecda2c3e70791a3f479a713ea6aedf3e732a813ec200c83e9303383e9ef0b33e22bd1e3e5acad23ed278503e6a66d43e5a71e13d8879f83ecfeb293e2c06043fea08253e6295da3e851e5e3eea16ec3ee941933e194f053f0461b33e10a0003f792f953eca5c283f000c9c3e2275233fb857563e7f01273f84f7c13eb6f3253f8745263e32f8ab3e72ed063e22f3a23eb0d1bb3d6049e23ea54f053e0239cb3ea4487c3dd658d73e667dd53da8a6be3e36e4433f1058c83d304c2e3f28c7e03dd48d1b3fe83bf83dee36403f000c383ea700493f36e1833e16494d3feccc403eed77303f1018413e586a233fc47a453e14c5613f70bd053e083a543f488bc63d11ef503ff0b90b3e0ae5323f06c18b3e11fe3c3fb0d87c3e52d4553ffee7983efedc453f384d9b3ed1605c3f4c895d3e0e9b653fd4e2673e192f6d3f285b343ec2956c3f6c9e733e0a81703fbcdf463e2efb573fe8ef863e3cc55c3fc6359f3ea438623f447d8c3e2bf36e3fac5fb33ea5016a3fb40fa23e1e0c623f7e43a53e0874683fb617ac3ea438623f447d8c3e3cc55c3fc6359f3ec2956c3f6c9e733ea5016a3fb40fa23eb0ebe93e4f7b133f4f51e33ee01c043fb88c083f66250f3f2601083f6a221a3fc147263fbada153f951e233f247d203fbd74173f4edd1d3fddfb193ff157133fc15f223f5e7a273f34ac153f9cee273fd08c2e3f20e0243f998f2d3fdfb0163f15892e3f4b79313fdc47ec3e6cc0283f9826093f3d8a273f43183a3ff6aa163f4158393f569b283f81fa483f840b1d3ffc21483f06232b3f9c354b3f66a6133fe98a523f6e502b3fc2f6543f90641e3f98915e3f40d71e3fecb75d3f64092c3f31545b3f2cf50f3f5a4ce83e663e5c3fece80a3fbce25b3fe4465e3fd456f13e1a9d6c3fd800f83e7c8a7a3f0eb1f63e827d4e3f24b6e73e285a3c3f9a94e03e2c432f3fdaa64c3f3cab1c3f760a453fc19f263f17a33e3fc19f263f17a33e3f76b92c3f6cce3b3f95813e3f8037343f8d5f333f9e133a3f3530703f5eba283f1d746a3f9b9d313fc19f263f17a33e3fefbc483f4b6b3e3f594a3a3f923b453f59b74c3f33734f3f3345423f6261513f11fb563f84804e3ff806543f541b3c3fdfac573f71dc433fadcf5c3f5bb54c3f77fa5c3f1418393f51e9603f6688403f0588663f26254e3ff5d03b3f50f7563ff25c5d3f3d2f543ff4fb673ff4b4533f7d53783f5c5d503f042c753f02965b3fb2a76d3fedee5e3fc0a76f3fa9ae4e3f7d53783f5c5d503f7be44e3f200c5b3f1a6f453f40b3593fea54663f90415f3f911c5b3fbaa55d3fa6fa6e3fd6cb3a3fa6fa6e3fd6cb3a3fa6fa6e3fd6cb3a3fd79c553f18195d3f3530703f5eba283f9e13b33edaf2433f9e13b33edaf2433f59b7af3e304c5a3febb9e23e46beec3ed90f0a3fce00023fbebc1b3ff483073f46f32d3fdad80a3f1acd3a3fc5d4093ff05f4b3f5d9a0a3f865e2e3f0abcd63e87f4213f2a9ecd3e2934193fc830c83ef50d0f3f8c0ec13eaca8053f52b9b73e0753703f60b90a3ed4bc2f3ee07c3e3d35800d3eb866c73d4b061b3e90fd073dd4bc2f3ee07c3e3d8ac1d23d8012f73c5532bd3d709eb53d3a10a93dc00ffe3c8ac1d23d8012f73c4b061b3e90fd073d0789e63de066bc3d0c61013ea0a9ee3c4b061b3e90fd073d0c61013ea0a9ee3c8ac1d23d8012f73c0c61013ea0a9ee3c7129a13dcc2f7a3eb73c443f8865643f1a6f453f40b3593fdbe14a3f2e15693f34e8513f51cb693fea39653f9bb56a3f3ff1573f71416a3f8f2b773fc64f643f8f2b773fc64f643f952a6d3f1e43683f8af2a93e6e9e0a3ff5a4b73e940e0c3f6506a23e40c10e3f0c29993e38e2173f1576403fe8ef6b3f201f3b3fc9216f3f6798373f25bb6a3f291e3d3f7ef5673f1cfe413f13a1713f9915443f9b557a3fc5e03b3fc29c783f7b49503fad386f3fcec6543f62aa793f8f2b773fc64f643f8acd793fe2056d3f9138793f1a3b733f55966f3fd625713f8acd793fe2056d3f9807643f7da3793f9807643f7da3793f1fbfc73ec225113f7349c43e408b163f7be7b33e6bed1f3f7349c43e408b163f7be7b33e6bed1f3f8acd793fe2056d3f9807643f7da3793fc4c46f3f955b7a3f9807643f7da3793fbb07383f918f723fa0cb323f08966d3fa0cb323f08966d3f9138793f1a3b733fef3d793f9c127a3fc4c46f3f955b7a3fc4c46f3f955b7a3f9138793f1a3b733fbb07383f918f723f6b217c3e18c6b43d506a643e10144a3dceda473e909cd43dcdb66f3e640e053ea625933e20ecae3c506a643e10144a3dc7be9d3e50f9993d78da9c3ea467193ece5cba3e50c0f33dbf379e3ebc7d5f3e22fcb43e1044473e741a7c3e188e333e247aad3ef0753d3d4cddc83ec0fea13d10e1d03e541a223e2f12e13e407de13d1a62dc3ed0a32d3d2401f63e18e0993d59e4c33e609c623eeba1aa3e2c548d3e7246ae3e5ae6a93e5e5dbe3e7c16903ef70ccf3e1cf96e3ed248db3e9cbc7c3e566ae53e94b04c3e191ed13e2223963e5f7f893e188c803e260ff53e80f2223ee1a7033fa8a1f13d09a4873ed44fa03ea453a83eae959a3e4e56c43e3445ad3e4e56c43e3445ad3e46b6c53e601faf3c46b6c53e601faf3cc82be73ea0a3c93c46b6c53e601faf3c46b6c53e601faf3caf85423e7c013b3ee500043fe4317a3e44ae0b3f305e503e6e5b123f0884273e2a36f73ecaf3943e4131dd3e800dbb3e4e56c43e3445ad3e4131dd3e800dbb3ee6edb53d05c3413fc46f613d646c493f1594353da793423fb083bc3dc62b3d3f84050d3e7b933b3f1cca413eee31493f0411fb3d6740453fc2abd63db932523f0f85893d0f89503fd9e0ce3daa72463fc2de153eef414f3f0411fb3d6740453fd9e0ce3daa72463f0411fb3d6740453fd9e0ce3daa72463f7bdb3e3e8aa3393f6bec1f3e26b6353f70c6b73d7411373f9dff4c3d4229383f0411fb3d6740453f2b08f23d9670403f2b08f23d9670403f2b08f23d9670403fc8b8de3d36a1403fd9e0ce3daa72463fc8b8de3d36a1403faa84233f4a6cae3e7f27293f1eb7b33e3db22e3fda2dab3e2959cf3dac852e3faa84233f4a6cae3e97912a3f84e89f3e8499263fec3f8f3eaa84233f4a6cae3e5d121b3fce5fa33e07821e3f00838a3e68e2163fa08e913e0aabd33c963a503f7bcd6b3ec4fc453f88f3233fa279843ef4629e3d3f6b5d3f411d303dce065f3f1029cf3cff125d3f0aabd33c963a503f0aabd33c963a503fd97dee3d435e5e3fef4e613df05d673ff496d13cf8a6623f1029cf3cff125d3fb3ab1e3f2cc1653ec2af1a3fe48e683e5ad0a63dd02f6a3fd97dee3d435e5e3f5ad0a63dd02f6a3f82291a3ed985603f47553b3e04dc5e3fd97dee3d435e5e3fd5a5123fb4867a3e7e0b103fb4f9813ed2334a3e17d46b3f5e402f3e63fd6e3f47553b3e04dc5e3fd2334a3e17d46b3f3c9a103e755a6e3fd97dee3d435e5e3f3c9a103e755a6e3f267a113f946e9a3e0f16643e34425e3f211b813e0e9b573f7bcd6b3ec4fc453f211b813e0e9b573f47553b3e04dc5e3f86750b3f50a98b3e7855093ff0e6903e211b813e0e9b573fdf5d8c3e4904633fdf5d8c3e4904633fa237833edc98663f64d1743e183c6c3f47553b3e04dc5e3f64d1743e183c6c3f3db22e3fda2dab3e97912a3f84e89f3eaa84233f4a6cae3eb583693d26e9303f586ea43db0962f3f7fa1313d2dc96d3fdf5d8c3e4904633fa1718f3effc46c3f64d1743e183c6c3fd2334a3e17d46b3f6b133c3eafa4753f3c9a103e755a6e3f5ad0a63dd02f6a3febf0073da2bf723f994f073fc05d8a3edf5d8c3e4904633fa1ee973e29ec703fa1ee973e29ec703f64d1743e183c6c3f0d310e3fa8b1743ed2334a3e17d46b3ffc7e443e58ba7a3ffc7e443e58ba7a3f3c9a103e755a6e3fb3ab1e3f2cc1653e03e61a3f78dd573e5ad0a63dd02f6a3f6394853db32b273fe7fa2d3f303fb83e3808333fd27ebc3e2b91313faa04b33ee7fa2d3f303fb83e3db22e3fda2dab3e7f27293f1eb7b33e3db22e3fda2dab3ee7fa2d3f303fb83e2b91313faa04b33ec8b8de3d36a1403f0aabd33c963a503fd9e0ce3daa72463faf85423e7c013b3eaf85423e7c013b3e6ce8533f28d8c43e7b684d3f70c5d73ef358463fa237c53e94af613fa237c53ed8125b3f70c5d73e8a3f5b3f6c46c53e8a3f5b3f6c46c53ed8125b3f70c5d73e6ce8533f28d8c43ef358463fa237c53e3e83463f2a58b63e4404543fe050b63e4404543fe050b63e6ce8533f28d8c43ef358463fa237c53e8a3f5b3f6c46c53ea50b5b3f0e4db63e4985613f2a58b63e4985613f2a58b63e94af613fa237c53e8a3f5b3f6c46c53e6ce8533f28d8c43e4404543fe050b63ea50b5b3f0e4db63ea50b5b3f0e4db63e8a3f5b3f6c46c53e6ce8533f28d8c43e6ce8533f28d8c43e7b684d3f70c5d73ef358463fa237c53e94af613fa237c53ed8125b3f70c5d73e8a3f5b3f6c46c53e8a3f5b3f6c46c53ed8125b3f70c5d73e6ce8533f28d8c43ef358463fa237c53e3e83463f2a58b63e4404543fe050b63e4404543fe050b63e6ce8533f28d8c43ef358463fa237c53e8a3f5b3f6c46c53ea50b5b3f0e4db63e4985613f2a58b63e4985613f2a58b63e94af613fa237c53e8a3f5b3f6c46c53e6ce8533f28d8c43e4404543fe050b63ea50b5b3f0e4db63ea50b5b3f0e4db63e8a3f5b3f6c46c53e6ce8533f28d8c43e6ce8533f28d8c43e7b684d3f70c5d73ef358463fa237c53e94af613fa237c53ed8125b3f70c5d73e8a3f5b3f6c46c53e8a3f5b3f6c46c53ed8125b3f70c5d73e6ce8533f28d8c43ef358463fa237c53e3e83463f2a58b63e4404543fe050b63e4404543fe050b63e6ce8533f28d8c43ef358463fa237c53e8a3f5b3f6c46c53ea50b5b3f0e4db63e4985613f2a58b63e4985613f2a58b63e94af613fa237c53e8a3f5b3f6c46c53e6ce8533f28d8c43e4404543fe050b63ea50b5b3f0e4db63ea50b5b3f0e4db63e8a3f5b3f6c46c53e6ce8533f28d8c43e2f422c3fc85d683f028c283fa2985e3feebc153fca18683f704b193f036e713f47c2d73e81dc6c3fef4a023f672f6d3fe301ff3e6b70643f9f80d43e0d64673f74fb063f9b95753f05d3da3e3652733faeeea43e1231683fe6da123fd8a65f3f7a2e353fc4ad5f3f00000000000000000000003f0000003f0000000000000000000000000100000012000000130000000000003f0000003f000000000000000000000000010000001200000000000000a9b6333f2e346d3e9840833d0000000000000000010000001200000014000000eb0be83ecdbe513e9a72303e00000000000000001400000001000000130000000000803f000000000000000000000000010000000000000003000000000000000000003f0000003f0000000000000000000000000100000003000000120000000000803f000000000000000000000000010000000300000000000000130000000000803f000000000000000000000000000000001200000001000000000000000000803f000000000000000000000000010000000300000012000000000000000000003f0000003f0000000000000000000000000100000012000000130000000000803f000000000000000000000000000000001200000001000000130000003333733fcdcc4c3d0000000000000000000000001300000012000000140000000000803f000000000000000000000000000000001500000014000000120000000000803f000000000000000000000000000000001600000012000000140000000000803f000000000000000000000000000000001200000001000000000000000000003f0000003f0000000000000000130000001400000012000000000000000000803f000000000000000000000000000000001400000012000000130000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000000000001200000001000000000000000000803f000000000000000000000000010000001200000000000000030000003333333f9a99993e0000000000000000010000001300000012000000000000000000803f000000000000000000000000010000000300000000000000130000000000803f000000000000000000000000010000000000000003000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000010000000000000003000000000000000000803f000000000000000000000000010000000000000003000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000500000001000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000000000001000000000000000000803f000000000000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000000000001000000000000000000003f0000003f0000000000000000030000000100000000000000000000003333333f9a99993e0000000000000000010000001300000012000000000000000000803f000000000000000000000000130000000300000012000000000000000000003f0000003f0000000000000000000000000100000012000000130000000000803f000000000000000000000000010000000000000003000000000000000000003f0000003f0000000000000000130000001400000015000000120000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000000000001400000012000000130000000000003f0000003f0000000000000000120000000000000001000000000000000000003f0000003f0000000000000000120000000000000001000000000000000000803f000000000000000000000000000000001200000001000000130000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000019000000000000000000803f000000000000000000000000120000001700000019000000000000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000019000000000000000000803f000000000000000000000000120000001700000018000000190000000000003f0000003f000000000000000017000000120000001a000000180000000000003f0000003f0000000000000000170000001200000018000000190000000000803f000000000000000000000000190000001a00000017000000180000000000803f000000000000000000000000000000001200000001000000000000000000003f0000003f0000000000000000120000000000000001000000000000000000003f0000003f0000000000000000120000000000000019000000010000003333733fcdcc4c3d0000000000000000000000001300000012000000140000000000803f000000000000000000000000190000001a00000017000000180000009a99193fcccccc3e0000000000000000170000001900000018000000120000000000803f000000000000000000000000190000001a00000017000000180000000000803f000000000000000000000000190000001a00000017000000180000000000803f000000000000000000000000170000001900000018000000120000000000803f000000000000000000000000190000001a00000017000000180000000000803f000000000000000000000000190000001a00000017000000180000000000803f000000000000000000000000190000001a00000017000000180000000000803f00000000000000000000000017000000190000001a000000180000006666663fcdcccc3d0000000000000000170000001b00000018000000120000006666663fcdcccc3d0000000000000000170000001b00000018000000120000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a000000180000000000003f0000003f00000000000000001b0000001d00000000000000000000000000803f0000000000000000000000001b0000001700000018000000120000000000803f0000000000000000000000001b0000001700000018000000120000000000003f0000003f00000000000000001b0000001d00000019000000000000006666663fcdcccc3d0000000000000000170000001b00000018000000120000000000803f0000000000000000000000001b0000001700000018000000120000006666663fcdcccc3d0000000000000000170000001b00000018000000120000000000003f0000003f00000000000000001b0000001d00000019000000180000000000803f0000000000000000000000001d0000000000000000000000000000000000803f0000000000000000000000001d0000000000000000000000000000000000003f0000003f00000000000000001d0000001e00000000000000000000000000803f0000000000000000000000001d0000000000000000000000000000000000003f0000003f00000000000000001d0000001e00000000000000000000000000003f0000003f00000000000000001a00000019000000170000001c0000000000803f00000000000000000000000017000000190000001a000000180000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a000000180000000000803f000000000000000000000000190000001a00000017000000180000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000190000001a00000017000000180000000000803f000000000000000000000000190000001a00000017000000180000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a000000180000000000003f0000003f00000000000000001a0000001900000017000000180000000000003f0000003f00000000000000001a0000001900000017000000180000000000003f0000003f00000000000000001a0000001f00000020000000190000000000003f0000003f00000000000000001a0000001f00000020000000190000000000003f0000003f00000000000000001a0000001f00000020000000190000000000803f0000000000000000000000001a0000001f00000019000000170000000000003f0000003f00000000000000001a000000190000001f000000170000000000003f0000003f00000000000000001a0000001f00000019000000180000000000003f0000003f00000000000000001a0000001900000017000000180000000000803f0000000000000000000000001a0000001f00000019000000170000000000003f0000003f00000000000000001a0000001f00000019000000170000000000003f0000003f00000000000000001a0000001f00000020000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000003f0000003f00000000000000001a0000001f00000020000000190000000000003f0000003f00000000000000001a0000001f00000020000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000003f0000003f00000000000000001a0000001f00000020000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000003f0000003f00000000000000001a00000019000000170000001c0000000000803f0000000000000000000000001f000000200000001a000000190000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000018000000190000006666663fcdcccc3d0000000000000000170000001b00000018000000120000000000003f0000003f00000000000000001d0000001e00000000000000000000000000003f0000003f0000000000000000120000000000000001000000000000000000803f000000000000000000000000000000001200000001000000000000000000803f000000000000000000000000120000001700000019000000000000000000003f0000003f0000000000000000170000001200000018000000190000000000803f000000000000000000000000170000001900000018000000120000000000803f000000000000000000000000170000001900000018000000120000006666663fcdcccc3d0000000000000000170000001b00000018000000120000000000803f000000000000000000000000170000001900000018000000120000000000003f0000003f0000000000000000120000000000000001000000000000000000803f000000000000000000000000000000001200000001000000000000000000803f000000000000000000000000120000001700000018000000190000000000003f0000003f0000000000000000170000001200000018000000190000000000803f000000000000000000000000170000001900000018000000120000000000003f0000003f00000000000000001e0000002100000022000000000000000000003f0000003f00000000000000001e0000002100000022000000000000000000003f0000003f00000000000000001e0000002100000022000000000000000000003f0000003f0000000000000000210000002200000000000000000000000000003f0000003f0000000000000000210000002200000000000000000000000000003f0000003f0000000000000000210000002200000000000000000000000000803f000000000000000000000000220000002100000000000000000000000000803f000000000000000000000000220000002100000000000000000000000000803f000000000000000000000000220000002100000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f0000000000000000200000001f0000001a000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000803f0000000000000000000000001f000000200000001a000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000002400000000000000000000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000001a0000001f000000190000000000803f000000000000000000000000200000001a0000001f000000190000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000000000000000803f000000000000000000000000200000002500000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000006be5623f5dddd73d4cba073c00000000200000001f00000019000000000000000000803f000000000000000000000000200000001a0000001f000000190000000000003f0000003f0000000000000000200000001f0000001a000000190000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001a0000001f000000190000000000803f000000000000000000000000200000001900000024000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000002500000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000001a0000001f000000190000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000002400000000000000000000000000803f000000000000000000000000200000000000000000000000000000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000002400000000000000000000000000803f000000000000000000000000200000002400000000000000000000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000130000001400000003000000120000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000130000000300000012000000000000003333333f9a99993e0000000000000000010000001300000012000000000000003333333f9a99993e0000000000000000010000001300000012000000000000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000130000001400000012000000000000000000003f0000003f0000000000000000130000001400000015000000120000000000803f000000000000000000000000130000001400000012000000000000000000003f0000003f0000000000000000130000001400000015000000120000000000803f000000000000000000000000130000001400000003000000120000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000140000001500000013000000120000000000803f000000000000000000000000140000001500000013000000120000000000803f00000000000000000000000013000000140000001200000000000000d27c043f3cd4993ec894da3d000000001500000014000000000000001300000053e6053fabd09a3ef2cbec3d0000000015000000140000000000000013000000e634073fa0688b3e636a043e00000000150000001400000000000000130000000000803f00000000000000000000000015000000130000001400000012000000d27c043f3cd4993ec894da3d00000000150000001400000000000000130000000000803f000000000000000000000000150000001300000014000000120000000000803f000000000000000000000000150000001300000014000000120000000000803f000000000000000000000000150000001300000014000000120000000000803f000000000000000000000000150000001300000014000000120000000000003f0000003f0000000000000000130000001400000012000000000000000000803f000000000000000000000000150000001300000026000000140000000000803f000000000000000000000000150000001300000014000000120000000000003f0000003f0000000000000000130000001400000015000000120000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000150000001300000014000000120000000000803f000000000000000000000000150000001300000014000000120000000000003f0000003f0000000000000000000000000100000012000000130000000000003f0000003f0000000000000000130000001400000015000000120000000000803f00000000000000000000000013000000140000001200000000000000a4703d3fb81e853e000000000000000015000000260000001400000000000000a4703d3fb81e853e000000000000000015000000260000001400000000000000a4703d3fb81e853e000000000000000015000000260000001400000012000000a4703d3fb81e853e000000000000000015000000260000002700000014000000a4703d3fb81e853e0000000000000000150000002600000014000000120000000000803f00000000000000000000000015000000130000001400000012000000a4703d3fb81e853e000000000000000015000000260000001400000012000000f678023f058bf93e0241413b00000000260000001500000000000000270000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f00000000000000000000000026000000150000002700000000000000a4703d3fb81e853e0000000000000000150000002600000014000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f00000000000000000000000026000000150000002800000000000000a4703d3fb81e853e0000000000000000150000002600000014000000000000000000803f000000000000000000000000260000001500000028000000000000000000803f00000000000000000000000026000000150000002900000000000000a4703d3fb81e853e000000000000000015000000260000001400000000000000a4703d3fb81e853e000000000000000015000000260000001400000000000000a4703d3fb81e853e000000000000000015000000260000001400000000000000a4703d3fb81e853e0000000000000000150000002600000014000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f00000000000000000000000026000000150000002700000000000000a4703d3fb81e853e000000000000000015000000260000001400000000000000a4703d3fb81e853e000000000000000015000000260000002700000014000000a4703d3fb81e853e000000000000000015000000260000002700000014000000a4703d3fb81e853e000000000000000015000000260000002700000014000000a4703d3fb81e853e000000000000000015000000260000001400000012000000a4703d3fb81e853e000000000000000015000000260000001400000000000000a4703d3fb81e853e0000000000000000150000002600000014000000120000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000270000001500000026000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000260000002800000000000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000260000002900000028000000000000000000803f000000000000000000000000260000002a00000029000000000000000000803f000000000000000000000000260000002800000000000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000260000002900000015000000280000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000260000002800000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000260000002800000000000000000000000000803f000000000000000000000000260000002900000028000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000260000002900000028000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f00000000000000000000000026000000290000002a000000280000000000803f000000000000000000000000260000002a00000029000000000000000000803f000000000000000000000000260000002900000028000000000000000000803f000000000000000000000000290000002600000000000000000000000000803f000000000000000000000000290000002a00000026000000000000000000803f000000000000000000000000290000002a00000026000000000000000000803f000000000000000000000000260000002a00000029000000000000000000803f000000000000000000000000290000002600000000000000000000000000803f000000000000000000000000290000002a00000026000000000000000000803f000000000000000000000000290000002600000000000000000000000000803f000000000000000000000000260000002900000028000000000000000000803f000000000000000000000000290000002600000000000000000000000000803f000000000000000000000000260000002a00000000000000000000000000803f000000000000000000000000260000002a00000029000000000000000000803f000000000000000000000000260000002a00000000000000000000000000803f000000000000000000000000260000002a00000000000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000260000002a00000029000000000000000000803f0000000000000000000000002a0000002900000026000000000000000000803f0000000000000000000000002a0000002600000000000000000000000000803f0000000000000000000000002a0000002600000000000000000000000000803f0000000000000000000000002a0000002600000000000000000000000000803f0000000000000000000000002a0000002600000000000000000000000000803f000000000000000000000000260000002a00000000000000000000000000803f0000000000000000000000002a0000002900000026000000000000000000803f000000000000000000000000260000002a00000029000000000000000000803f0000000000000000000000002a0000002900000026000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000000000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000270000001500000026000000000000000000803f000000000000000000000000270000001500000026000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f0000000000000000000000002a0000002600000000000000000000000000803f0000000000000000000000002a0000002600000000000000000000000000803f0000000000000000000000002a0000002900000026000000000000000000803f000000000000000000000000290000002a00000026000000000000000000803f000000000000000000000000290000002600000000000000000000000000803f000000000000000000000000290000002600000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000280000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000002600000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000002900000026000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f000000000000000000000000290000000000000000000000000000000000803f000000000000000000000000290000002a00000026000000000000000000803f000000000000000000000000290000000000000000000000000000000000803f000000000000000000000000290000002600000000000000000000000000803f000000000000000000000000290000000000000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000280000000000000000000000000000000000803f000000000000000000000000280000002600000000000000000000000000803f000000000000000000000000270000002600000000000000000000000000803f000000000000000000000000270000001500000026000000000000000000803f000000000000000000000000270000001500000026000000000000000000803f000000000000000000000000270000002600000000000000000000000000803f000000000000000000000000270000001500000026000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000260000001500000027000000000000000000803f000000000000000000000000270000001500000026000000000000000000803f00000000000000000000000027000000150000002600000000000000a4703d3fb81e853e0000000000000000150000002600000014000000120000000000803f00000000000000000000000026000000280000000000000000000000a4703d3fb81e853e0000000000000000150000002600000014000000000000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000130000001400000012000000000000000000803f000000000000000000000000230000001900000020000000240000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000002000000000000000000000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000002000000000000000000000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000001900000020000000240000000000803f000000000000000000000000230000002000000000000000000000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000001900000020000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000230000001900000020000000240000000000803f000000000000000000000000230000001900000025000000200000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000230000001900000020000000240000000d9f0e3f43fa7f3e5388453e0000000025000000200000002300000019000000a1e53f3fbd34803e0000000000000000250000002000000000000000000000003895723f7eac563d000000000000000025000000200000000000000000000000a1e53f3fbd34803e000000000000000025000000200000000000000000000000a6ce413f6ca76b3e7b75013c00000000250000002000000019000000230000003895723f7eac563d000000000000000025000000200000000000000000000000a6ce413f6ca76b3e7b75013c00000000250000002000000019000000230000000d9f0e3f43fa7f3e5388453e00000000250000002000000023000000190000003895723f7eac563d000000000000000025000000200000000000000000000000a1e53f3fbd34803e0000000000000000250000002000000000000000000000000d9f0e3f43fa7f3e5388453e00000000250000002000000023000000190000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000230000000000803f00000000000000000000000020000000190000002500000023000000a1e53f3fbd34803e000000000000000025000000200000000000000000000000a6ce413f6ca76b3e7b75013c0000000025000000200000001900000023000000a1e53f3fbd34803e0000000000000000250000002000000000000000000000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000230000000000803f00000000000000000000000020000000190000002500000023000000a6ce413f6ca76b3e7b75013c00000000250000002000000019000000230000000d9f0e3f43fa7f3e5388453e0000000025000000200000002300000019000000a6ce413f6ca76b3e7b75013c00000000250000002000000019000000230000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000230000000000803f000000000000000000000000200000001900000025000000230000000d9f0e3f43fa7f3e5388453e00000000250000002000000023000000190000000000803f000000000000000000000000240000001900000020000000000000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000002000000000000000000000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000002000000000000000000000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000001900000020000000000000000000803f000000000000000000000000240000002000000000000000000000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000001900000020000000000000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000240000001900000020000000000000000000803f000000000000000000000000240000001900000023000000200000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000200000001900000023000000240000000000803f000000000000000000000000240000001900000020000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000003f0000003f00000000000000000000000001000000120000002b0000005b53e83e8ab4513e80352f3e000000000000000016000000010000002b0000000000803f000000000000000000000000000000001200000001000000000000000000803f000000000000000000000000000000001200000001000000000000000000003f0000003f0000000000000000000000000100000012000000030000000000803f000000000000000000000000010000002b00000012000000000000000000803f0000000000000000000000000000000016000000120000002b0000000000803f000000000000000000000000000000002c00000016000000120000000000803f0000000000000000000000000000000016000000120000002b0000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000000000000016000000120000002b0000000000803f000000000000000000000000010000002b00000000000000030000000000803f000000000000000000000000010000000000000003000000000000000000803f000000000000000000000000010000002b00000000000000030000000000803f000000000000000000000000010000002b00000012000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000010000000000000003000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000500000000000000010000000000803f000000000000000000000000030000000000000001000000000000000000803f000000000000000000000000030000000100000000000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000030000000000000001000000000000000000003f0000003f0000000000000000030000000100000000000000000000000000803f000000000000000000000000010000002b00000012000000000000000000803f0000000000000000000000002b0000000300000012000000000000000000003f0000003f0000000000000000000000000100000016000000120000000000803f0000000000000000000000002b0000001600000012000000000000000000803f000000000000000000000000010000000000000003000000000000000000803f000000000000000000000000000000002c00000016000000120000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000003f0000003f0000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f0000000000000000000000000000000016000000120000002b0000000000803f000000000000000000000000000000001200000001000000000000000000003f0000003f0000000000000000120000000000000001000000000000000000003f0000003f0000000000000000120000000000000001000000000000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001800000017000000000000000000803f000000000000000000000000120000001800000017000000000000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001800000017000000000000000000003f0000003f000000000000000017000000120000001c000000180000000000003f0000003f0000000000000000170000001200000018000000190000000000803f00000000000000000000000018000000170000001c000000190000000000803f0000000000000000000000000000000016000000120000002b0000000000003f0000003f0000000000000000120000000000000018000000010000000000803f000000000000000000000000180000001700000019000000120000000000803f00000000000000000000000018000000170000001c000000190000000000803f00000000000000000000000018000000170000001c000000190000000000803f00000000000000000000000018000000170000001c00000019000000cdcc4c3fcdcc4c3e0000000000000000170000001800000019000000120000000000803f00000000000000000000000018000000170000001c000000190000000000803f00000000000000000000000018000000170000001c000000190000000000803f00000000000000000000000017000000190000001c000000180000000000803f00000000000000000000000018000000170000001c000000190000006666663fcdcccc3d0000000000000000170000001b00000018000000120000000000803f00000000000000000000000017000000190000001c000000180000000000803f00000000000000000000000017000000190000001a0000001c0000000000003f0000003f00000000000000001b0000001d00000018000000000000000000803f0000000000000000000000001b0000001700000018000000120000006666663fcdcccc3d0000000000000000170000001b00000018000000120000000000803f0000000000000000000000001d0000000000000000000000000000000000003f0000003f00000000000000001d0000001e00000000000000000000000000003f0000003f00000000000000001c00000018000000170000001a0000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001c000000180000000000803f00000000000000000000000017000000190000001c000000180000000000803f00000000000000000000000018000000170000001c000000190000000000803f00000000000000000000000018000000170000001c000000190000000000803f00000000000000000000000018000000170000001c000000190000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f00000000000000000000000017000000190000001c000000180000000000003f0000003f00000000000000001c0000001800000019000000170000000000003f0000003f00000000000000001c0000001800000019000000170000000000003f0000003f00000000000000001c0000002d000000190000002e0000000000003f0000003f00000000000000001c0000002d0000002e000000190000000000003f0000003f00000000000000001c0000002d000000190000002e0000000000003f0000003f00000000000000001c00000018000000190000002d0000000000803f0000000000000000000000001c00000017000000190000002d0000000000003f0000003f00000000000000001c0000002d00000019000000180000000000003f0000003f00000000000000001c0000001800000019000000170000000000803f0000000000000000000000001c00000017000000190000002d0000000000003f0000003f00000000000000001c0000002d00000019000000170000000000003f0000003f00000000000000001c0000002d000000170000001a0000000000803f0000000000000000000000002d0000001c0000002e000000190000000000803f0000000000000000000000002d0000001c0000002e000000190000000000003f0000003f00000000000000001c0000002d0000002e000000190000000000803f0000000000000000000000002d0000001c0000002e000000190000000000803f0000000000000000000000002d0000001c0000002e000000190000000000003f0000003f00000000000000001c0000002d000000170000001a0000000000003f0000003f00000000000000001c0000002d0000002e000000190000000000803f0000000000000000000000002d0000002e0000001c000000180000000000803f0000000000000000000000002d0000001c0000002e000000190000000000803f0000000000000000000000002d0000001c0000002e000000190000000000803f0000000000000000000000002d0000002e0000001c000000180000000000003f0000003f00000000000000001c00000018000000170000001a0000000000003f0000003f00000000000000001c00000018000000170000001a0000000000003f0000003f00000000000000001c00000018000000170000001a0000000000803f0000000000000000000000002d0000002e0000001c000000180000000000803f00000000000000000000000017000000190000001a0000001c0000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000120000001700000018000000190000000000803f000000000000000000000000000000001200000001000000000000000000003f0000003f0000000000000000120000000000000001000000000000000000803f000000000000000000000000120000001800000017000000000000000000003f0000003f0000000000000000170000001200000018000000190000000000803f000000000000000000000000170000001900000018000000120000000000803f000000000000000000000000170000001900000018000000120000000000003f0000003f00000000000000001e0000002100000022000000000000000000003f0000003f0000000000000000210000002200000000000000000000000000803f000000000000000000000000220000002100000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000803f0000000000000000000000002d0000001c0000002e000000190000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000003f0000003f00000000000000002e0000002d000000190000001c0000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e0000003000000000000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000001c0000002d000000180000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e0000001c0000002d000000180000000000803f0000000000000000000000002e0000001800000031000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000003100000000000000000000000000803f0000000000000000000000002e0000002d00000018000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000003f0000003f00000000000000002e0000002d0000001c000000180000000000803f0000000000000000000000002e0000001c0000002d000000180000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e0000001800000030000000000000000000803f0000000000000000000000002e0000001c0000002d000000180000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000003100000000000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000001c0000002d000000180000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e0000003000000000000000000000000000803f0000000000000000000000002e0000000000000000000000000000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e0000003000000000000000000000000000803f0000000000000000000000002e0000003000000000000000000000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002b0000000300000016000000120000000000803f000000000000000000000000010000002b00000012000000000000000000803f0000000000000000000000002b0000000300000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000803f000000000000000000000000010000002b00000012000000000000000000803f000000000000000000000000010000002b00000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000003f0000003f00000000000000002b000000160000002c000000120000000000003f0000003f00000000000000002b000000160000002c000000120000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002b0000000300000016000000120000000000803f0000000000000000000000002b0000001600000012000000000000000000803f000000000000000000000000160000002c0000002b000000120000000000803f000000000000000000000000160000002c0000002b000000120000000000803f0000000000000000000000002b0000001600000012000000000000000000003f0000003f00000000000000002c000000160000002b000000120000000000003f0000003f00000000000000002c000000160000002b000000120000000000003f0000003f00000000000000002c000000160000002b000000120000000000003f0000003f00000000000000002c000000160000002b000000120000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f0000000000000000000000000000000016000000120000002b0000000000803f0000000000000000000000002c0000002b00000032000000160000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f000000000000000000000000000000002c00000016000000120000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f0000000000000000000000002c0000002b00000016000000120000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000803f000000000000000000000000000000002c00000016000000120000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000003f0000003f00000000000000002c0000003200000016000000120000000000003f0000003f00000000000000002c0000003200000033000000160000000000003f0000003f00000000000000002c0000003200000016000000120000000000803f0000000000000000000000002c0000002b00000016000000120000000000003f0000003f00000000000000002c0000003200000016000000120000000000803f000000000000000000000000320000002c00000033000000000000000000803f000000000000000000000000320000002c00000000000000000000000000803f000000000000000000000000320000002c00000033000000000000000000803f000000000000000000000000320000002c00000033000000000000000000803f000000000000000000000000320000002c00000033000000000000000000803f000000000000000000000000320000002c00000000000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000803f000000000000000000000000320000002c00000034000000000000000000803f000000000000000000000000320000002c00000034000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000803f000000000000000000000000320000002c00000035000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000803f000000000000000000000000320000002c0000000000000000000000bcbfec3e7beeb73e93a3363e0000000033000000320000002c00000000000000a52fec3e8a32a53e87b95c3e0000000033000000320000002c00000000000000f68a023fa834a93e7169233e0000000033000000320000002c000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000003f0000003f00000000000000002c0000003200000033000000160000000000003f0000003f00000000000000002c0000003200000033000000160000000000003f0000003f00000000000000002c0000003200000033000000160000000000003f0000003f00000000000000002c0000003200000016000000120000000000003f0000003f00000000000000002c0000003200000016000000000000000000003f0000003f00000000000000002c0000003200000016000000120000000000803f000000000000000000000000320000002c0000000000000000000000bcbfec3e7beeb73e93a3363e0000000033000000320000002c00000000000000f68a023fa834a93e7169233e0000000033000000320000002c000000000000000000803f000000000000000000000000330000002c00000032000000000000000000803f000000000000000000000000320000002c00000000000000000000000000803f000000000000000000000000320000002c00000033000000000000000000803f000000000000000000000000320000003400000000000000000000000000803f000000000000000000000000320000002c00000000000000000000000000803f000000000000000000000000320000002c00000000000000000000000000803f000000000000000000000000320000003500000034000000000000000000803f000000000000000000000000320000003600000035000000000000000000803f000000000000000000000000320000003400000000000000000000000000803f000000000000000000000000320000002c00000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f00000000000000000000000032000000350000002c000000340000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000320000003400000000000000000000000000803f000000000000000000000000320000003400000000000000000000000000803f000000000000000000000000320000003500000034000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000320000003500000034000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000320000003500000036000000340000000000803f000000000000000000000000320000003600000035000000000000000000803f000000000000000000000000320000003500000034000000000000000000803f000000000000000000000000350000003200000000000000000000000000803f000000000000000000000000350000003600000032000000000000000000803f000000000000000000000000350000003600000032000000000000000000803f000000000000000000000000350000003200000000000000000000000000803f000000000000000000000000320000003600000035000000000000000000803f000000000000000000000000350000003600000032000000000000000000803f000000000000000000000000350000003200000000000000000000000000803f000000000000000000000000320000003500000034000000000000000000803f000000000000000000000000350000003200000000000000000000000000803f000000000000000000000000320000003600000000000000000000000000803f000000000000000000000000320000003600000035000000000000000000803f000000000000000000000000320000003600000000000000000000000000803f000000000000000000000000320000002c00000000000000000000000000803f000000000000000000000000320000003600000000000000000000000000803f000000000000000000000000320000003600000035000000000000000000803f000000000000000000000000360000003500000032000000000000000000803f000000000000000000000000360000003200000000000000000000000000803f000000000000000000000000320000003600000000000000000000000000803f000000000000000000000000360000003200000000000000000000000000803f000000000000000000000000360000003200000000000000000000000000803f000000000000000000000000360000003200000000000000000000000000803f000000000000000000000000360000003500000032000000000000000000803f000000000000000000000000320000003600000035000000000000000000803f00000000000000000000000036000000350000003200000000000000f68a023fa834a93e7169233e0000000033000000320000002c000000000000000000803f000000000000000000000000320000002c00000033000000000000000000803f000000000000000000000000320000002c00000000000000000000000000803f000000000000000000000000330000002c00000032000000000000000000803f000000000000000000000000330000002c00000032000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000360000003200000000000000000000000000803f000000000000000000000000360000003200000000000000000000000000803f000000000000000000000000360000003500000032000000000000000000803f000000000000000000000000350000003600000032000000000000000000803f000000000000000000000000350000003200000000000000000000000000803f000000000000000000000000350000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000000000000000000000000000000000803f000000000000000000000000360000000000000000000000000000000000803f000000000000000000000000360000003200000000000000000000000000803f000000000000000000000000360000000000000000000000000000000000803f000000000000000000000000360000000000000000000000000000000000803f000000000000000000000000360000003500000032000000000000000000803f000000000000000000000000350000000000000000000000000000000000803f000000000000000000000000350000003600000032000000000000000000803f000000000000000000000000350000000000000000000000000000000000803f000000000000000000000000350000000000000000000000000000000000803f000000000000000000000000350000003200000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000340000000000000000000000000000000000803f000000000000000000000000340000003200000000000000000000000000803f000000000000000000000000330000003200000000000000000000000000803f000000000000000000000000330000002c00000032000000000000000000803f000000000000000000000000330000003200000000000000000000000000803f000000000000000000000000330000002c00000032000000000000000000803f000000000000000000000000330000002c0000003200000000000000f68a023fa834a93e7169233e0000000033000000320000002c00000000000000bcbfec3e7beeb73e93a3363e0000000033000000320000002c00000000000000f68a023fa834a93e7169233e0000000033000000320000002c000000000000000000803f000000000000000000000000330000002c00000032000000000000000000803f000000000000000000000000330000002c00000032000000000000000000003f0000003f00000000000000002c0000003200000016000000120000000000803f000000000000000000000000320000003400000000000000000000000000003f0000003f00000000000000002c0000003200000016000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002b0000001600000012000000000000000000803f0000000000000000000000002f000000180000002e000000300000000000803f0000000000000000000000002f0000002e00000000000000000000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f0000002e00000000000000000000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f0000002e00000000000000000000000000803f0000000000000000000000002f000000180000002e000000300000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002f000000180000002e000000300000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f000000180000002e000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002f00000018000000310000002e0000000000803f0000000000000000000000002f000000180000002e000000300000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f000000000000000000000000310000002e00000000000000000000000000803f000000000000000000000000310000002e00000000000000000000000000803f000000000000000000000000310000002e00000000000000000000000000803f000000000000000000000000310000002e00000000000000000000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f000000000000000000000000310000002e00000000000000000000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f000000000000000000000000310000002e00000000000000000000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f000000000000000000000000310000002e00000000000000000000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f000000000000000000000000310000002e00000000000000000000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f0000000000000000000000002e00000018000000310000002f0000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f00000000000000000000000031000000180000002e0000002f0000000000803f00000000000000000000000030000000180000002e000000000000000000803f000000000000000000000000300000002e00000000000000000000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f000000000000000000000000300000002e00000000000000000000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f000000000000000000000000300000002e00000000000000000000000000803f00000000000000000000000030000000180000002e000000000000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f00000000000000000000000030000000180000002e000000000000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f00000000000000000000000030000000180000002e000000000000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f0000000000000000000000002e000000180000002f000000300000000000803f00000000000000000000000030000000180000002f0000002e0000000000803f00000000000000000000000030000000180000002e000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000300000001000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000300000000000000000000000000803f00000000000000000000000005000000030000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0.000000029802322, y: 1.0522766, z: -0.38481712} + m_Extent: {x: 0.5993655, y: 1.0925698, z: 2.4977763} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh.meta new file mode 100644 index 0000000000..af09c499c1 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f24cbf5dc6d703439bdce10454fc74d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab new file mode 100644 index 0000000000..3e9e1dabc2 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab @@ -0,0 +1,227 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3139798544021071472 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4248421055907430200} + - component: {fileID: 5258186185066603184} + - component: {fileID: 8810594842797734427} + - component: {fileID: 3894974196943821174} + m_Layer: 0 + m_Name: jj_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4248421055907430200 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3139798544021071472} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5258186185066603184 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3139798544021071472} + m_Mesh: {fileID: 4300000, guid: 6f24cbf5dc6d703439bdce10454fc74d, type: 2} +--- !u!137 &8810594842797734427 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3139798544021071472} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: ca5fc3b9396b59149be9546cf0d8efb1, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 6f24cbf5dc6d703439bdce10454fc74d, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &3894974196943821174 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3139798544021071472} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 5258186185066603184} + _skinnedMeshRenderer: {fileID: 8810594842797734427} + BoneNames: + - Bip01 Spine1 + - Bip01 Spine2 + - Bone29 + - Bip01 Neck + - Bone14 + - Bip01 Head + - Bone15 + - Bone16 + - Bone31 + - Bone33 + - Bone17 + - Bone20 + - Bone09 + - Bone10 + - Bone11 + - Bone23 + - Bone27 + - Bone12 + - Bip01 Spine + - Bip01 L Clavicle + - Bip01 L UpperArm + - Bip01 L ForeArm + - Bip01 R UpperArm + - Bip01 Pelvis + - Bip01 R Thigh + - Bip01 L Thigh + - Bip01 L Calf + - Bip01 Tail + - Bip01 R Calf + - Bip01 Tail1 + - Bip01 Tail2 + - Bip01 L HorseLink + - Bip01 L Foot + - Bip01 Tail3 + - Bip01 Tail4 + - Bip01 L Toe1 + - Bip01 L Toe2 + - Bip01 L Toe0 + - Bip01 L Hand + - Bip01 L Finger0 + - Bip01 L Finger1 + - Bip01 L Finger2 + - Bip01 L Finger3 + - Bip01 R Clavicle + - Bip01 R ForeArm + - Bip01 R HorseLink + - Bip01 R Foot + - Bip01 R Toe1 + - Bip01 R Toe2 + - Bip01 R Toe0 + - Bip01 R Hand + - Bip01 R Finger0 + - Bip01 R Finger1 + - Bip01 R Finger2 + - Bip01 R Finger3 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab.meta new file mode 100644 index 0000000000..b99a302703 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/狮鹫/狮鹫/jj_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 46145ea768841284fa8025643b6e5ac2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5.meta new file mode 100644 index 0000000000..4cb77775e9 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25052c52ee4efc84f9c9d68c57e8f308 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1.meta new file mode 100644 index 0000000000..dc86acb65d --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa728ebb5de8f6d4bac8af17b3302dd5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat new file mode 100644 index 0000000000..99be748d1e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u96D5_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4ed1cc8d0fda28f44aeb1ed6357e5036, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4ed1cc8d0fda28f44aeb1ed6357e5036, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &64181654402494893 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat.meta new file mode 100644 index 0000000000..bb51e60154 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 97ae23d1299e3a6459ad557351dcfa74 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh new file mode 100644 index 0000000000..d2eddf0ae3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh @@ -0,0 +1,959 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u96D5_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 3930 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 935 + localAABB: + m_Center: {x: 0, y: -1.089094, z: -0.27775502} + m_Extent: {x: 4.48984, y: 1.2959532, z: 2.621605} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0 + e01: 0 + e02: 1 + e03: -0.060355537 + e10: 1 + e11: 0 + e12: 0 + e13: 0.0000000026391551 + e20: 0 + e21: 0.9999999 + e22: 0 + e23: 0.67932487 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000005960465 + e01: 0.00000026822087 + e02: 1 + e03: -1.1265773 + e10: 1 + e11: 0.000000059604645 + e12: 0.000000059604638 + e13: 0.000000022575602 + e20: -0.000000059604638 + e21: 0.9999999 + e22: -0.0000002682209 + e23: 0.67932516 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000009092993 + e01: -0.052103072 + e02: 0.9986418 + e03: -1.6550092 + e10: 1 + e11: -0.000000061914385 + e12: 0.00000008782329 + e13: -0.000000113586914 + e20: 0.000000057254436 + e21: 0.9986418 + e22: 0.052103084 + e23: 0.59390044 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000001198788 + e01: -0.022721553 + e02: -0.9997419 + e03: -0.083059795 + e10: 1 + e11: 0.00000006095519 + e12: 0.0000001185244 + e13: 0.00000004549484 + e20: 0.000000058246414 + e21: -0.9997419 + e22: 0.022721559 + e23: -0.6607536 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 4.705498e-10 + e01: -0.010525707 + e02: -0.9999447 + e03: -1.1628348 + e10: 1 + e11: 0.000000089405724 + e12: -4.705569e-10 + e13: -0.000000013765749 + e20: 0.00000008940573 + e21: -0.99994457 + e22: 0.010525711 + e23: -0.67498726 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000006143435 + e01: -0.131153 + e02: -0.99136215 + e03: -2.012901 + e10: 1 + e11: -0.000000033655034 + e12: -0.000000057517255 + e13: -0.00000023284197 + e20: -0.000000025820764 + e21: -0.99136215 + e22: 0.13115303 + e23: -0.43519026 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.11320345 + e01: -0.52423424 + e02: -0.8440167 + e03: -0.64701766 + e10: 0.99357176 + e11: 0.059729144 + e12: 0.09616362 + e13: -0.3901474 + e20: 0.00000015315631 + e21: -0.8494772 + e22: 0.5276258 + e23: -0.6743324 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.10422415 + e01: -0.814217 + e02: -0.57113016 + e03: -1.6813508 + e10: 0.99357164 + e11: 0.059728887 + e12: 0.09616354 + e13: -0.39014766 + e20: -0.04418499 + e21: -0.57748085 + e22: 0.8152076 + e23: -0.019632727 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00000022802803 + e01: -0.29250532 + e02: -0.95626515 + e03: -1.9666225 + e10: 0.9999997 + e11: 0.0000000892262 + e12: 0.00000005080929 + e13: -0.62961406 + e20: 0.00000019498376 + e21: -0.9562646 + e22: 0.29250437 + e23: -1.472996 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 7.549549e-10 + e01: -0.99934816 + e02: 0.03612053 + e03: -1.9768893 + e10: 0.9999996 + e11: -0.00000016148887 + e12: 0.0000000043398387 + e13: -0.6296146 + e20: -0.00000012064892 + e21: 0.03612157 + e22: 0.9993481 + e23: 1.6956242 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.21415192 + e01: -0.9345904 + e02: -0.2840132 + e03: -2.160294 + e10: -0.06343537 + e11: -0.27684033 + e12: 0.9588203 + e13: 0.7630232 + e20: -0.9747379 + e21: 0.22335187 + e22: 0.00000009313226 + e23: 1.0593321 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.16407132 + e01: -0.51227254 + e02: -0.84300065 + e03: -2.2319992 + e10: -0.22667766 + e11: -0.8121287 + e12: 0.5376403 + e13: -0.9292313 + e20: -0.9600506 + e21: 0.27930236 + e22: 0.01712644 + e23: 1.19985 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15027383 + e01: -0.9886448 + e02: -0.00000043958426 + e03: -2.125901 + e10: 0.19710416 + e11: 0.029960135 + e12: 0.979925 + e13: 1.2706444 + e20: -0.96879673 + e21: -0.14725699 + e22: 0.19936818 + e23: 0.6338171 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.03645607 + e01: -0.7033059 + e02: -0.7099531 + e03: -2.5216522 + e10: 0.20472598 + e11: -0.7006135 + e12: 0.68354076 + e13: -0.7762103 + e20: -0.97813976 + e21: -0.12042644 + e22: 0.16952656 + e23: 0.65958655 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.268898 + e01: -0.8996372 + e02: -0.34402153 + e03: -2.5170507 + e10: 0.82965064 + e11: 0.3977772 + e12: -0.39173043 + e13: -0.36524335 + e20: 0.48925808 + e21: -0.1800815 + e22: 0.853345 + e23: 0.45541006 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.07377832 + e01: -0.6173989 + e02: -0.78318536 + e03: -2.4135044 + e10: 0.8296504 + e11: 0.39777714 + e12: -0.39173034 + e13: -0.36524302 + e20: 0.55338645 + e21: -0.67867166 + e22: 0.4828764 + e23: -1.2128565 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.14780916 + e01: -0.41486484 + e02: -0.89779735 + e03: -0.53003544 + e10: -0.98901594 + e11: 0.062001742 + e12: 0.13417652 + e13: -0.34819907 + e20: -0.00000013041274 + e21: 0.90776837 + e22: -0.4194724 + e23: 0.8218507 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.12263312 + e01: -0.8509649 + e02: -0.5107057 + e03: -1.701006 + e10: -0.9890162 + e11: 0.062001888 + e12: 0.13417661 + e13: -0.34819913 + e20: -0.082514845 + e21: 0.5215507 + e22: -0.8492215 + e23: -0.15396315 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.23561202 + e01: -0.8592905 + e02: -0.45399052 + e03: -2.5760396 + e10: -0.37341008 + e11: -0.3512401 + e12: 0.8586019 + e13: 0.18336535 + e20: -0.89724743 + e21: 0.37182134 + e22: -0.23811124 + e23: -0.2552042 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15345244 + e01: -0.35357013 + e02: -0.92273605 + e03: -2.0163522 + e10: -0.38076258 + e11: -0.8828456 + e12: 0.27496415 + e13: -1.8584092 + e20: -0.91185176 + e21: 0.30914924 + e22: -0.27010095 + e23: -0.45286694 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000007567755 + e01: -0.3925656 + e02: -0.9197245 + e03: -2.121737 + e10: -1.0000004 + e11: 0.000000051790416 + e12: 0.00000008758329 + e13: -0.63158727 + e20: -0.000000026297169 + e21: 0.91972435 + e22: -0.3925658 + e23: 1.2432426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000000011419433 + e01: -0.99975353 + e02: -0.022217497 + e03: -2.07719 + e10: -1.0000005 + e11: 0.000000021995778 + e12: 0.00000008826042 + e13: -0.6315875 + e20: -0.000000076574125 + e21: 0.022217553 + e22: -0.99975413 + e23: -1.5708567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22495127 + e01: -0.9476524 + e02: -0.22661203 + e03: -2.1197739 + e10: -0.97437054 + e11: -0.21878275 + e12: -0.052317422 + e13: -1.1144668 + e20: -0.000000033012554 + e21: 0.23257309 + e22: -0.9725798 + e23: -0.8382406 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.14550503 + e01: -0.43560165 + e02: -0.8883023 + e03: -2.1247628 + e10: -0.97437066 + e11: -0.21878275 + e12: -0.052317303 + e13: -1.1144665 + e20: -0.17155568 + e21: 0.87314767 + e22: -0.4562714 + e23: 1.2092459 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060546603 + e01: -0.9582464 + e02: -0.27946177 + e03: -2.421733 + e10: -0.9725518 + e11: 0.11965249 + e12: -0.19956848 + e13: -0.6919164 + e20: 0.22467394 + e21: 0.25970784 + e22: -0.9391884 + e23: -0.5317966 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15774874 + e01: -0.2914463 + e02: -0.9434911 + e03: -1.849478 + e10: -0.972552 + e11: 0.119652726 + e12: -0.19956864 + e13: -0.6919163 + e20: 0.17105472 + e21: 0.94907534 + e22: -0.26457182 + e23: 1.935926 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.91456366 + e01: 0.29237187 + e02: -0.2794502 + e03: -0.07784885 + e10: -0.27961043 + e11: 0.95630485 + e12: 0.08543656 + e13: 0.19829732 + e20: 0.29221863 + e21: -0.00000023841855 + e22: 0.95635164 + e23: -0.80517966 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9442588 + e01: -0.117592156 + e02: 0.30748636 + e03: -1.0525054 + e10: 0.054529473 + e11: 0.9769943 + e12: 0.20617723 + e13: -0.18181151 + e20: -0.32465726 + e21: -0.17791763 + e22: 0.9289473 + e23: -0.20983559 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9980572 + e01: -0.039142277 + e02: 0.04847808 + e03: -2.654272 + e10: 0.028413028 + e11: 0.9783542 + e12: 0.20497845 + e13: -0.11236912 + e20: -0.05545208 + e21: -0.20320287 + e22: 0.9775651 + e23: -0.9675871 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9987444 + e01: -0.036251094 + e02: 0.03458324 + e03: -4.571264 + e10: 0.028413072 + e11: 0.9783542 + e12: 0.20497847 + e13: -0.11236894 + e20: -0.0412654 + e21: -0.20373854 + e22: 0.9781553 + e23: -1.0326436 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.639965 + e01: -0.02617691 + e02: -0.76795805 + e03: -1.2230978 + e10: 0.016757905 + e11: 0.9996578 + e12: -0.020109683 + e13: 0.1463927 + e20: 0.7682215 + e21: -0.000000059604638 + e22: 0.64018416 + e23: -2.92316 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.61829674 + e01: -0.27563718 + e02: -0.7360253 + e03: -2.2399154 + e10: 0.17721155 + e11: 0.96126246 + e12: -0.21112041 + e13: -0.42807215 + e20: 0.76570606 + e21: 0.00010269879 + e22: 0.6431911 + e23: -2.914259 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.16578084 + e01: -0.18223552 + e02: -0.9691784 + e03: 0.379241 + e10: 0.030725569 + e11: 0.98325515 + e12: -0.17962673 + e13: 0.07028848 + e20: 0.9856841 + e21: -0.000000044703476 + e22: 0.1686039 + e23: -1.6385378 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.18857336 + e01: -0.29230073 + e02: -0.93754995 + e03: -0.8435761 + e10: 0.05240953 + e11: 0.95631284 + e12: -0.28760904 + e13: -0.02537018 + e20: 0.98065984 + e21: 0.0050986405 + e22: 0.19565426 + e23: -1.6156397 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9538207 + e01: 0.2419219 + e02: -0.17804675 + e03: -0.20945713 + e10: 0.23781398 + e11: 0.97029585 + e12: 0.044391844 + e13: 0.23690578 + e20: 0.18349726 + e21: -0.00000023841858 + e22: -0.9830204 + e23: 0.8135123 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9455129 + e01: -0.1343198 + e02: 0.29658774 + e03: -1.3015473 + e10: -0.09106211 + e11: 0.98367894 + e12: 0.15518992 + e13: -0.22161472 + e20: -0.31259233 + e21: 0.11972613 + e22: -0.9423124 + e23: 0.19646147 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99689054 + e01: -0.06405019 + e02: 0.045915037 + e03: -2.7498026 + e10: -0.056305587 + e11: 0.9865152 + e12: 0.1536811 + e13: -0.12572521 + e20: -0.055139363 + e21: 0.15061782 + e22: -0.98705375 + e23: 0.9448591 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99794424 + e01: -0.005029484 + e02: 0.06390393 + e03: -4.627871 + e10: 0.004626259 + e11: 0.9886665 + e12: 0.1500598 + e13: 0.15709287 + e20: -0.063934535 + e21: 0.15004678 + e22: -0.98661 + e23: 0.9040458 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.56478715 + e01: -0.06104862 + e02: -0.82297635 + e03: -0.8704923 + e10: -0.0345439 + e11: 0.9981351 + e12: -0.05033561 + e13: 0.10466534 + e20: 0.82451403 + e21: -0.0000002533197 + e22: -0.5658423 + e23: 3.0716965 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.56739426 + e01: -0.25036237 + e02: -0.78446406 + e03: -1.998223 + e10: -0.1454809 + e11: 0.96815133 + e12: -0.20376213 + e13: -0.28179145 + e20: 0.81049377 + e21: -0.0014890728 + e22: -0.58574575 + e23: 3.0234432 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.2867679 + e01: -0.07845922 + e02: -0.95478237 + e03: 0.17368673 + e10: -0.039280623 + e11: 0.9967659 + e12: -0.07011147 + e13: -0.01144731 + e20: 0.9571952 + e21: 0.017398445 + e22: -0.28892207 + e23: 1.4390562 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.19919279 + e01: -0.41347346 + e02: -0.888461 + e03: -0.8239969 + e10: -0.11430174 + e11: 0.9102441 + e12: -0.39798456 + e13: -0.31209272 + e20: 0.9732722 + e21: 0.022276698 + e22: -0.22857456 + e23: 1.4971577 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.9925434, y: -0.955603, z: -0.6052159} + m_Max: {x: 1.5113046, y: 1.30275, z: 0.886184} + - m_Min: {x: -0.41897845, y: -0.37930995, z: -0.4921258} + m_Max: {x: 0.4725827, y: 0.37931007, z: 0.36445406} + - m_Min: {x: -0.30280292, y: -0.33391297, z: -0.37559295} + m_Max: {x: 0.7255596, y: 0.33391303, z: 0.25093782} + - m_Min: {x: -0.55364096, y: -0.786698, z: -0.66246605} + m_Max: {x: 1.3775, y: 0.786698, z: 0.62556636} + - m_Min: {x: -0.541963, y: -0.73903203, z: -0.66883904} + m_Max: {x: 1.0841023, y: 0.7390319, z: 0.2518204} + - m_Min: {x: -0.75760734, y: -0.92717004, z: -0.4164822} + m_Max: {x: 0.9443455, y: 0.9271699, z: 0.06678492} + - m_Min: {x: -0.15117437, y: -0.37679088, z: -0.33983016} + m_Max: {x: 1.1714869, y: 0.33174163, z: 0.3605548} + - m_Min: {x: -0.247329, y: -0.2973831, z: -0.28983065} + m_Max: {x: 0.9236907, y: 0.20645776, z: 0.28016832} + - m_Min: {x: -0.026986241, y: -0.0657835, z: -0.057383657} + m_Max: {x: 0.2726301, y: 0.07881045, z: 0.11113322} + - m_Min: {x: -0.053097844, y: -0.0657835, z: -0.07777226} + m_Max: {x: 0.18315375, y: 0.05265248, z: 0.06452668} + - m_Min: {x: -0.027062654, y: -0.026270568, z: -0.047083616} + m_Max: {x: 0.21918082, y: 0.059639394, z: 0.062517405} + - m_Min: {x: -0.025900126, y: -0.08076316, z: -0.060722947} + m_Max: {x: 0.16762686, y: 0.07362175, z: 0.06555927} + - m_Min: {x: 0.05980158, y: -0.07547879, z: -0.042690754} + m_Max: {x: 0.22930145, y: 0.06912851, z: 0.05592233} + - m_Min: {x: -0.005550146, y: -0.1444403, z: -0.05365646} + m_Max: {x: 0.21160173, y: 0.057643175, z: 0.061458826} + - m_Min: {x: 0.028161287, y: -0.09746894, z: -0.07528776} + m_Max: {x: 0.25562692, y: 0.053661972, z: 0.065811336} + - m_Min: {x: -0.039063215, y: -0.04199952, z: -0.0498116} + m_Max: {x: 0.20898414, y: 0.05366212, z: 0.083008766} + - m_Min: {x: -0.11576033, y: -0.3612158, z: -0.31624752} + m_Max: {x: 1.194979, y: 0.36124116, z: 0.5429518} + - m_Min: {x: -0.26538622, y: -0.2885144, z: -0.30432248} + m_Max: {x: 0.7936183, y: 0.20529282, z: 0.242612} + - m_Min: {x: 0.017224789, y: -0.03166437, z: -0.05856338} + m_Max: {x: 0.12779689, y: 0.06456947, z: 0.04339719} + - m_Min: {x: -0.082716346, y: -0.061848402, z: -0.050220042} + m_Max: {x: 0.17438197, y: 0.06390655, z: 0.04944262} + - m_Min: {x: -0.04206705, y: -0.058190346, z: -0.07399917} + m_Max: {x: 0.24575806, y: 0.07683772, z: 0.05166495} + - m_Min: {x: -0.05860138, y: -0.067756414, z: -0.06068194} + m_Max: {x: 0.1777687, y: 0.050679624, z: 0.080574274} + - m_Min: {x: 0.033201933, y: -0.05440235, z: -0.054964483} + m_Max: {x: 0.20571208, y: 0.05334592, z: 0.029892027} + - m_Min: {x: -0.020680904, y: -0.058912992, z: -0.07965958} + m_Max: {x: 0.18180871, y: 0.064706564, z: 0.06462288} + - m_Min: {x: -0.09808302, y: -0.053016603, z: -0.030040324} + m_Max: {x: 0.27725124, y: 0.07781696, z: 0.08446294} + - m_Min: {x: -0.041216135, y: -0.052214563, z: -0.064496994} + m_Max: {x: 0.22114778, y: 0.06287819, z: 0.09362316} + - m_Min: {x: -0.34860042, y: -0.59595734, z: -1.2642877} + m_Max: {x: 1.2246747, y: 0.18838978, z: 0.22961944} + - m_Min: {x: -0.0045069456, y: -0.3658238, z: -0.99951494} + m_Max: {x: 2.0135207, y: 0.12150353, z: 0.11513358} + - m_Min: {x: -0.063163996, y: -0.081523106, z: -0.7768208} + m_Max: {x: 0.9789512, y: 0.080347314, z: 0.1580069} + - m_Min: {x: -0.4568696, y: -0.052222177, z: -0.5039985} + m_Max: {x: -0.031375885, y: -0.028965443, z: 0.09941566} + - m_Min: {x: -0.3483283, y: -0.122962385, z: -0.77957296} + m_Max: {x: 0.61579883, y: 0.19876319, z: 0.25387096} + - m_Min: {x: -0.3395052, y: -0.03558609, z: -0.9911063} + m_Max: {x: -0.06086564, y: 0.02721712, z: 0.6488259} + - m_Min: {x: 0.0866296, y: -0.14471251, z: -0.49235857} + m_Max: {x: 0.9757351, y: 0.2654571, z: 0.90373003} + - m_Min: {x: -0.31034577, y: 0.0025742128, z: -0.93724} + m_Max: {x: 0.2022959, y: 0.14079382, z: 1.3571713} + - m_Min: {x: -0.14742, y: -0.53972256, z: -0.18263835} + m_Max: {x: 1.1108714, y: 0.25622812, z: 1.3392103} + - m_Min: {x: -0.22736168, y: -0.28065717, z: -0.15341946} + m_Max: {x: 1.7581918, y: 0.12574399, z: 0.68721735} + - m_Min: {x: -0.15751815, y: -0.08622098, z: -0.17813367} + m_Max: {x: 0.88210726, y: 0.1024681, z: 0.33546758} + - m_Min: {x: -0.5032358, y: 0.018546477, z: -0.12022793} + m_Max: {x: -0.06379557, y: 0.04320623, z: 0.47305006} + - m_Min: {x: -0.261267, y: -0.15078002, z: -0.24051142} + m_Max: {x: 0.70391756, y: 0.19227839, z: 0.80969} + - m_Min: {x: -0.22716367, y: -0.01547724, z: -0.6839223} + m_Max: {x: -0.020597577, y: 0.06840029, z: 0.9640682} + - m_Min: {x: -0.20463817, y: -0.2594185, z: -1.0693572} + m_Max: {x: 0.92355114, y: 0.19232756, z: 0.33272028} + - m_Min: {x: -0.28232098, y: -0.20909496, z: -1.0979449} + m_Max: {x: 0.21845353, y: 0.021968096, z: 0.8431797} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 02000100000000000100030003000400000003000600050009000800070007000a00090009000a000b000b000c0009000f000e000d00110010000d0014001300120012001500140002001700160016000100020001001600180018000300010003001800190019001a0003001d001c001b001e0018001600210020001f0024002300220022001200240026000c0025002500270026000b002800250025000c000b002b002a00290029002c002b002d002a00280028000b002d002a002d00290030002f002e002e003100300031002e0032003200330031003600350034003400370036003300320038003800390033003c003b003a003a003d003c003f003e003500420041004000400039004200440043003c0045003c003d00480047004600460049004800490046004a004a004b00490047004d004c004c004600470046004c004e004e004a00460050004f004c004c004d0050004c004f00510051004e004c004f0053005200520051004f0050005400530053004f00500052005300550055005300540044003c0056005600570044003c0045005800580056003c0056005a00590059005700560058005b005a005a00560058005a005d005c005c0059005a005b005e005d005d005a005b00610060005f005f0063006200620061005f006300650064006400620063006700660064006400650067006700680066005d005e005c006a001900690012006b0015006a006c0019006d001c001d001d006e006d006f00120022002100710070007000200021001e00720018007200690018000800740073007300070008007700760075007a00790078007c007b0078007e007d0077007f0074000800080080007f000800090081008100800008008400830082008700860085008500840087008a008900880088008b008a008d0089008c008e008a008b008b008f008e008d008c009000900091008d0092008400820084009200930093008700840089008a00940089009600950095008c008900970094008a008a008e0097008c009500900003001a00060007009900980098001d00070006009b009a009a009c0006009d007500880088009e009d00a0000f009f00a200a000a100a100a300a200a600a500a400a400a700a6001600a900a800a8001e0016009f00aa00a100a100a0009f00a300a100ab00ab00ac00a300a500ae00ad00ad00a400a500a900b000af00af00a800a900aa00b100ab00ab00a100aa00ac00ab00b200b200b300ac00b600b500b400b400b700b600b800af00b000b100b900b200b200ab00b100ba003d003a003a004000ba0048004900bb003e003f00bc00bc00bd003e00c000bf00be00be00c100c000390040003a003a003300390033003a003b003b003100330031003b00c200c200300031001300c30024004b00ba004900bd00c4003e000000c600c500c500020000000400c700c600c60000000400ca00c900c800c800cb00ca0026008100090009000c002600a000a200cc00cc000f00a000cc00cd000e000e000f00cc00ce000e00cd00d100d000cf00d200cf00d000d000d300d200c500d400170017000200c500d300d600d500d500d700d300d800360037003700d900d8004300c2003b003b003c0043003600d800c100c100be003600db00da0048004800dc00db004800da00dd00dd00470048004700dd00de00de004d0047004d00de00df00df0050004d005000df00e000e000540050005400e0005500ca00e100c9007f008000c900c900e1007f00e300e200a500a500a600e300e200e400ae00ae00a500e200e600e500b500b500b600e6001500e800e700e70014001500e900e800150015006b00e90035003e00ea00ea004200350041004200ea00bc00bb00bd00db00dc00bf00bf00c000db004900ba00eb00eb00ec004900350042003800380034003500c300d700d500d500ed00c300ec00bb00490013001400cf00cf00d2001300d100cf0014001400e700d100d200d700c300c3001300d200d300d700d2002d000b000a000a001b002d00ee002d001b0029002d00ee00bb00dc0048002400120013002100ee001b001b001c002100710021001c001c006d0071001d001b000a000a0007001d00ef001000e800e800e900ef00e700e800100010001100e7001100ce00d100d100e700110011000e00ce001000ef00f000f100ca00cb00cb00f200f1007c00f400f300f300f5007c00f7008200f600f600f800f7006c009b00060006001a006c001a0019006c006c006a00f900f90098006c009800f9006e006e001d0098006f006b0012009b0099009a000d001000f0006c009800990099009b006c0073009a00990099000700730011000d000e00ba004b00450045003d00ba004a0045004b00690019001800fc00fb00fa00fa00fd00fc00ff00fe00fd00fd00fa00ff00020101010001000103010201060105010401040107010601fe00ff00080108010901fe000b010a010901090108010b01fc000d010c010c01fb00fc0005010e01040110010f01010101010201100125002e002f002f0027002500280032002e002e0025002800370034002b002b00110137002a0038003200320028002a00420039003800d9003700110111011201d900340038002a002a002b00340021001f0029002900ee0021001401130124002400c300140117011601150115011801170118011501190119011a0118011d011c011b011b011e011d011d011e011f011f0120011d011c011a01190119011b011c011601220121012101150116011501210123012301190115011b012501240124011e011b011e012401260126011f011e0119012301250125011b0119011f0126012701270128011f01210122012901210129012a012a0123012101240125012b012b012c012401260124012d0123012f012e012e0125012301300127012601330132013101310134013301350129012201360126012d012c012b013701370138012c012d013a013901390136012d013c013b01370137012b013c013f013e013d013d0140013f01420141013d013d013e01420145014401430143014601450149014801470147014a01490135014c014b014b0129013501300126014d014d014e013001510150014f014f0152015101360153014d014d012601360154014e014d014d0156015501550154014d0150015801570157014f01500153015901560156014d015301550156015a015a015b01550158015d015c015c015e01580159015f015a015a015601590143016101600160014601430148016301620162014701480165016401610161014301650166016001610163016801670167016201630164016a0169016901610164013d016c016b016b0140013d013d0141016c0133016d01320170016f016e016e016c01700141017201710171016c0141016d0174017301730132016d0137017601750175013801370139013a017701770178013901760137013b013b017901760176017b017a017a017501760177017a017c017c0178017701270151012801510127013001510130014e014e01500151014e01540150015001540155015501580150015d015801550123012a012f01450146014801480149014501480146016001600163014801600166017d017d01630160012b0125012e013f0140013301330134013f01330140016b016b016d0133016d016e016f012d0124012c012c0138013a013a012d012c013a0138017501750177013a017a01770175011f0128017e017e0120011f017b017601790179017f017b016e016b016c016d016b016e018201810180018001830182018501840181018101820185018301800184018401850183018201830186018501820187018501870186018601830185018801820186018801870182018801860187018b018a01890189018c018b018e018d018c018c0189018e018a018b018d018d018e018a018a0190018f018f0189018a0189018f01910191018e0189018e019101900190018a018e0192018f019001920191018f01920190019101950194019301930196019501980197019401940195019801960193019701970198019601950196019901980195019a0198019a0199019901960198019b01950199019b019a0195019b0199019a019e019d019c019c019f019e01a101a0019d019d019e01a1019f019c01a001a001a1019f019e019f01a201a1019e01a301a101a301a201a2019f01a101a4019e01a201a401a3019e01a401a201a3017b007c00f500a601a5017b00a7018b00880088007500a7018f008b00a701a701a8018f009e00aa01a901a9019d009e008300ab01f600f600820083007d00ac01a801a701750076009d0006009c007e007700740074007f007e00740077007500750073007400730075009c009c009a007300ae01ad018800ad01ae01af01af01b001ad01b301b201b1019d00a9010500050006009d00f500f300b201b201b301f5008600a6017b007b008500860085007b00f500f500b30185009c0075009d00ad019e0088009e00ad01b001b001aa019e00b101b401b3017b00a5017a007d0076007700a70176007d007d00a801a7017e00ac017d009600890094009400b5019600b501940097009700b601b501b701930092009200b801b701b801920082008200f700b80189008d00ae01ae0188008900ae018d0091009100af01ae01b401ab0183008300b301b4018300840085008500b301830078007b007a00dc00bb00bc00bc00bf00dc00bf00bc003f003f00be00bf00be003f00350035003600be004100eb00ba00ba0040004100b901ec00eb00b901bd00bb00bb00ec00b901c400ea003e00c4004100ea00c400eb004100b901eb00c400bd00b901c400bc01bb01ba01ba01be01bd01bd01bc01ba01c001bd01bf01c301c201c101c101c401c301c301c601c501c501c201c301c901c801c701cb01ca01c701ce01cd01cc01cc01cf01ce01bb01bc01d001d001d101bb01bc01bd01d201d201d001bc01bd01d401d301d301d201bd01d701d601d501d201d801d001db01da01d901dd01cc01dc01dc01de01dd0126002700df01df01c6012600c501c601df01df01e001c501e301e201e101e101e401e301e501c501e001e001e401e501e501e401e1013000e701e601e6012f003000e701e901e801e801e601e701ec01eb01ea01ea01ed01ec01e901ef01ee01ee01e801e901f201f101f001f001f301f201f501f401ed01f701ef01f601f601f801f701f20143004400f201f901f101fc01fb01fa01fa01fd01fc01fb01ff01fe01fe01fa01fb01fd01fa01000200020102fd01fa01fe01020202020002fa01030201020002000204020302000202020502050204020002040205020602060207020402030204020702070208020302070206020902070209020802440057000a020a02f2014400f2010a020b020b02f901f2010a025700590059000c020a020b020a020c020c020d020b020c0259005c005c000e020c020d020c020e020e020f020d021102610010021002610062006200120210021202620064006400130212021402130264006400660014021502140266000f020e025c00d301170216021802cc01cd0119021702d3011b021a02d601d601d7011b02cc011c02dc01da01db011d021d021e02da011f02d801d20116021f02d201c401c101200220022102c4012402230222022702260225022902280225022b022a0223022c028000c401c40121022c02c401800081008100c301c4012f022e022d0231022e0230023002320231023502340233023302360235023602380237023a0239023402340235023a0238023c023b023b02370238022e023d022d022e0231023e023e023d022e02350236023f0236023702400240024102360242023a02350235023f024202400237023b02d401bd01c001c101d601430243024402c101c0014602450245024702c001490248023302330222024902c8014b024a02a200a3004c024c024b02a2004f024e024d024d0250024f02d001d801510251025202d0014a024b024c024c0253024a02a300ac00540254024c02a30050024d02550255025602500252025102570257025802520253024c025402540259025302ac00b3005a025a025402ac005d025c025b025b025e025d0257025f025802590254025a025a02600259026102f601f001f001f1016102fb01fc016202f501640263026302f401f501c000c100650265026602c000ef01e901f001f001f601ef01e901e701f301f301f001e901e7013000c200c200f301e7016702cf01dd016102ff01fb01f50168026402ba01bb01c500c500c600ba01be01ba01c600c600c700be016a026902c800c800c9006a022600c601c301c301810026004b02c801cc00cc00a2004b02cc00c801c901c901cd00cc00c901ce00cd00d000d1006b026c02d300d000d0006b026c02c500bb01d101d101d400c500d3006e026d026d02d600d300d800d900eb01eb01ec01d8004300f201f301f301c2004300ec016502c100c100d800ec01db006f02fc01fc01da00db00fc01fd01dd00dd00da00fc01fd010102de00de00dd00fd0101020302df00df00de00010203020802e000e000df000302e0000802090270026a02c9002c027002c900c90080002c02e3004f0250025002e200e300e200500256025602e400e200e6005d025e025e02e500e600cd01ce01710271027202cd0173021802cd01cd0172027302ed01f70174027402f501ed01f701f8017402620263026402db00c000660266026f02db00fb017602750275026102fb01ed01ea01ee01ee01f701ed01670277026d026d026e02670262027602fb01cf016c026b026b02ce01cf01d1007102ce01ce016b02d1006c02cf01670267026e026c026e02d3006c02e501d501c201c201c501e501e5017802d501e501e10178026f026202fc01cc01dd01cf01da01d701d501d5017802da011e021b02d701d701da011e02d601c101c201c201d501d6017902730272027202cb0179027102ca01cb01cb0172027102ca017102d100d100ce00ca01c901ca01ce007902cb017a027c027b02690269026a027c0228027e027d027d027f02280282028102800280022d0282021902d401c001c00147021902d301d40119021902430283028302170219024302d6011a021a028302430218021c02cc01440247024502cb01c7017a021902470244024402430219022002c1014402440245022002c701ca01c9016102f101f901f901ff016102f901fe01ff01d3011602d2018602850284028402870286028802840285028502890288028c028b028a028a028d028c0290028f028e028e0291029002890293029202920288028902940292029302930295029402860287029602960297028602980291028e0299028c028d028d029a029902df0127002f002f00e601df01e001df01e601e601e801e001eb019b02e301e301ea01eb01e401e001e801e801ee01e401ef01f701ee01d90012019b029b02eb01d900ea01e301e401e401ee01ea01da017802e101e101d901da019c026702dd01dd019d029c02a0029f029e029e02a102a0029f02a302a202a2029e029f02a602a502a402a402a702a602a602a902a802a802a502a602a702a402a202a202a302a702a1029e02aa02aa02ab02a1029e02a202ac02ac02aa029e02a402a502ad02ad02ae02a402a502a802af02af02ad02a502a202a402ae02ae02ac02a202a802b102b002b002af02a802ab02aa02b202aa02ac02b302b302b202aa02ad02b502b402b402ae02ad02ad02af02b602ac02ae02b702b702b802ac02b002b902af02bc02bb02ba02ba02bd02bc02b202be02ab02af02bf02b602b502c102c002c002b402b502b602bf02c202c202c302b602c402b402c002c002c502c402c802c702c602c602c902c802ca02c902c602c602cb02ca02ce02cd02cc02cc02cf02ce02d202d102d002d002d302d202be02b202d402d402d502be02b902d702d602d602af02b902da02d902d802d802db02da02bf02af02d602d602dc02bf02d702dd02d602d602dd02de02de02df02d602db02d802e002e002e102db02dc02d602df02df02e202dc02de02e402e302e302df02de02e102e602e502e502e702e102e202df02e302e302e802e202cc02cd02e902e902ea02cc02d302d002eb02eb02ec02d302ed02cc02ea02ea02ee02ed02e902ef02ea02ec02eb02f002f002f102ec02ee02ea02f202f202f302ee02c602c702f402f402f502c602cb02c602f502f602bc02bd02f802f502f702f702f902f802cb02f502fa02fa02fb02cb02f602bd02fc02fc02fd02f602c002c102fe02fe02ff02c002c202010300030003c302c202ff020203c502c502c002ff02ff02fe02030303030403ff02000301030503050303030003da02b002b102b002da02b902da02db02d702d702b902da02dd02d702db02db02e102de02de02dd02db02e102e702de02b302ac02b802ce02d202d302d302cd02ce02d302ec02e902e902cd02d302e902ec0206030603ef02e902ae02b402b702c802bb02bc02bc02c702c802bc02f602f402f402c702bc02f702f602f902ad02b602b502b502b602c302c302c102b502c3020003fe02fe02c102c30200030303fe02a802a90207030703b102a8020403080302030203ff020403f402f702f502f402f602f7020b030a03090309030c030b030d030b030c030c030e030d030a030d030e030e0309030a030a030b030f030b030d0310030d030a030f030f0310030d030b0311030f03100311030b030f0311031003140313031203120315031403160312031303130317031603150316031703170314031503150312031803180319031503120316031a031a031803120316031503190319031a03160318031b0319031a031b03180319031b031a031e031d031c031c031f031e0320031e031f031f03210320031d032003210321031c031d031d031e0322031e032003230320031d0322032203230320031e0324032203230324031e0322032403230327032603250325032803270329032703280328032a032903260329032a032a0325032603260327032b03270329032c03290326032b032b032c03290327032d032b032c032d0327032b032d032c03280229027e022f032e0329023003220233023302340230033902310330033003340239024802490232033203330348022f022d028002800234032f0235032b023103220230032402c001490246022a022c022102210223022a022102200222022202230221022002450246024602220220023703360333023703390338033803360337033c033b033a034902c001bf01bf01320349027e023b033c033c037d027e0232023002290229022e03320230023b037e027e02290230022202460249024802370333024802330339033903370348023d033a033b032f032902260224022b022302240230032b0231032b02300335032a022b0241023e033f023f02360241023e033f03420242023f023e03410340033d023d023e024103400382022d022d023d024003360233023603360338023602360338033c023c02380236033d033b032f022f0234033d032f023b03300230022e022f022902250226026f0266026302630262026f0266026502f401f401630266026502ec01ed01ed01f4016502f801f601610261027502f80176024203750242037602620262026402420374026802f501f8016802740275026802f8017502420368024203640268024303fc00fd00fd004403430346034503fe00fe000901460302010301470347034803020105010601490349034a0305010a014b034603460309010a014d034c034303430344034d034e034503460346034f034e034a0349035003500351034a0346034b03520352034f0346035503540353035303560355035703540355035503580357035b035a03590359035c035b035d035703580358035e035d035b0360035f035f03600361035403570362036203630354035d0364036203620357035d0353035403630363036503530366030d01fc00fc00430366034c03660343034403fd00fe00fe00450344035003680367036703510350036b036a03690369036c036b03440345034e034e034d03440348036d031001100102014803480347035c0359036d03480348035c0359035e0358034f034f0352035e03580355034e034e034f0358036a0367036803680369036a035b036e035a036f0365036303630370036f036203710370037003630362036403710362035f036103720373035f0372035f036e035b037403560353036503740353036f0374036503550356034d034d034e035503560374034c034c034d0356037603750385028502860276037703930289028902780377038c027a03790379038b028c0291027c037b037b039002910295029302770377037d0395027e037503760376037f037e038103800377037703780381037c038303820382037b037c0377038003840384037d0377038703860385038503880387038a0389038703870388038a038d038c038b038b038e038d0390038f03890389038a03900392038d03910392039103930388039503940394038a03880390038a03940394039603900385039703950395038803850398037603860286029702980398037f03760375037803890289028502750382038303990399039a0382039d039c039b039b039e039d0375037e0381038103780375037a038c02990299029f037a0379037a038c038b038c037a037a039f038b038f0384038003800389038f038903800381038103870389039e039b039a039a0399039e03a0038d038e03a203a103950395039703a20394039503a103a103a3039403a3039603940393039103a4039103a503a403a00391038d038603a6038503a60397038503a603a2039703870381037e037e038603870386037e037f037f03a6038603 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 935 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 59856 + _typelessdata: caa5913e08c344bfc1ddb5bff90dbf3e7c0762bf0de591be1d02e73e5c891cbffd26b8bfb6d32e3fa33935bf3a9038befdbbae3ed85e0fbfaa09eebffc10de3ede0f4cbf0818d7bef206043f42dc20bfb2ea8bbfebc53f3fc6831fbf224666be13d57b3efa8b54bfcb7a89bfd878b23e16d46dbf5450febd942ff03ed60c44bfa40e7ebf9fc2003ff56e21bd1d085dbf8b34293fb27a4bbf080f56bf4573683fb56bac3d8b20d2be5e9d2f3fbe996cbf06eea03d22426a3f670095be29f38e3e116d073f78e697bf724a023e72e7cb3e256362bf867f793e1c5ce23e4d5f95bf148ee93e232f0d3f05c14abf8f12863e1bf6133f048a6cbfc4e4ee3e5ccc653f31edb7beb0b6823e76e2f23e283e62bfe804553f7b384e3f834f03bf4ae0973ebb0ab13e97368ebf22d3463fbb28da3e530358bf9e0ba73ec991063fa00a5dbe1c8b75bff220963ecc765b3f78acd8be3a77833e0024f3bd18f97cbfe4f7473ed7df6f3fdd4894be2578bb3e302290be3c2cb4bf6229923e91b06b3f015188be72e11c3f0000103ca89915bf9eb801bd92d8653f81dde0be44a3eb3e00d4a9bc67e51ebffb125a3d414a783f9b6273be0eda2f3f0052223d07dc273f64373cbeea76573ffffc013f780bf43e40a542bdf8972d3f35b349be29fb603f9c80de3e19a9b73e00987e3cfc15bb3eaaa346be38c1783fbb0a0a3ee38d1c3fd04d0b3e27b8b93ee667aabe37c86e3f22f60d3e02450c3f8c3a06bf880cbfbf0341713f33bfa8bea6dd69bd2498c23ec43febbe99cef2bf2e6ca63ed42305bec6cc6fbf56622a3f5801cdbe1a4c9bbf4632743f2918423e4a506ebe9e0c2e3f48d5cebedbd167bf90df6f3f658cfabdc185a7be1a4f1c3f5aab11bfdda36ebf51776d3f3bedddbd590bb7be97e2263fb8a925bfac87f83e7e54683f5a73bcbe9d164f3e16a73e3f889feebe6e81f53e68c63f3feaac1cbf68c9813ef626423f1edb1ebfec7b063e8576663feb2fd2beb07e143ea33e093fe4f9cbbe3250c1bf0e565c3fd563013fe90f7bbdbc20223f802a6cbe3537573f57bd243fcf9070bd9d5f433f4f203c3f0045efbd2089433fb52cfa3ea304a5bd82675e3fe9d23f3f284fbfbeb65b3b3f936e383f7585aabe98ba1b3f4f203c3f0045efbd2089433f0de4053ee03a0a3f5ddb543fbc20223f802a6cbe3537573f5e419a3edd32ab3ec99a643fd21a0f3f70c804bebcf4533ffe79e0bcac801b3ff43c4b3fa8c7763e9dd481bf6a8c8e3f4623be3eb09c65bfaacd753e000000001af295bf3725353f8c6188b1c28c75bf1fcb903e00000000bbb087bfc49e863f81d74a329ae17abfaebf4b3e268db93e60f262bfc9ef993fcb2f5a3f759cedbe9b16773e3aaf093ff8ddacbee3b7693f37d6443ff5550d3e35d21f3fec34c23e0e5c29bf3f969e3f66326d3fe261df3cca17c03e6553ae3e18c3e4be621a9a3f25d42f3f48190a3f3464f93e408ada3ee0436ebe50b35c3f396cd83e4355373f352e0e3f6fb80f3f36702bbf150a613f96f1663f4f4874be8e14b83ea9a15d3e435380bf7997b33f35d3ba3efed56bbf06130a3e00000000124685bff8afac3faabe9c31edb57ebf7a49cd3d00000000b0db7bbf039ad43f906d96b126e479bf7b5d5e3eab7b443ea44872bfb828d73fc40fa83e4cf968bf9895813e4e7fa63eeadc68bf4248ba3f651f663fb205d1be2ad3223e088e933e26a461bf16c6da3f5d5a5f3f1e54d5be4eb9823ecccfa53e264309bf04cfb53fb4c5543f4045013f686e6e3e344c9d3ed28118bf524ed43f64e45e3ff0afdd3e20f56e3e72a4333e589cf9be47b1cc3f7058c83e21be673f5b8d293e9d68473e6846debedc8aad3f360a903e9720693ff8ed9a3ea5f6aa3eb0a137bfe167bc3f66617c3f428c253bd9902b3e6058963ec4a142bf242ddd3f35d6753fcb71f63cf1ff8d3ecbbf663ebc5656bf327cf03f891a493f04f2babe56c8ff3e9a981e3e4e3f64bf8aeaed3f8f78a93e740060bf74e0b43e7806c23d04335abfef94fe3f49fffe3e41f03abf4773ef3e7c802e3ed0044ebfb593f93fd64f3c3f6a7592be6b331d3f508d673e3c3e1dbf66c2eb3f5f1f6a3fbafd29bef2dabc3e9085783e829d16bf69cbe93f2ec72c3f9cfb2b3ff7469c3ee739623e543442bf742ef13f2742603ff742f63dfe22ef3ed4f1583ea6b234bf4c76f03fea8c633ffc16ab3d6fa5e63ee23a8e3ea4822ebffcaedc3fa68a723f692d813d039ca03e00000000584b65bfb576fb3fa9dcbb31405670bfac57b03e00000000daa65cbff06d0240bf421332f2e968bf5c7bd43ecf67103eaa5547bf547400400e62463f3731d3bedd30f53ec5a59f3d6e0736bfc66d08402e82643f3967d03e1e78463e429e333df0ee24bfd4430a40cc9c443f11c8193ffe5b633e8b046e3d129521bf6efa0340280e293f6f01153fd3edf23ec85cb93dbe9e33bf79af0240b586573fc0dfa23e652edf3e6971e63d268743bf650107403f555b3f2c1dec3ec35b6c3e236b0d3e586d42bf2f170140e290593fbd23cf3ea1e8ac3e181d753dbc3439bf7d3f0f401c49653f7bc0b23e21158d3ec9ebdc3c36fc2abf1f4b1140f48a453fe18e063ffc60b73e70d9a73dd24c43bff0a20d409d44623f1877c63e2a0a863e13a3223d36533dbf62f812407734593f75ae543e0d3ff93ebdbb9f3cf21934bf1add13403ba83b3fc9dcad3e69e0163f2b8b5d3d3edd44bf341112404f795f3fe397603e3118df3e1487fd3c383f49bf910f1440ebe2513f468866bd01dd113f2435a33c52e745bf7d5c1540d000473fc777023d3fd5203faa931a3caa8a44bfc9e51540705ef43e64fbc73d14915f3fa803b43adc5854bf276615405a121c3fd23f5cbe354f433fe847483dde834bbfa8520940493cfa3ed60649bf3aa0c23e00000000122151bff52d0940470950322dab6fbf98f1b33eedef913d967242bf9ace0840bbf9443f2189f7be2eb6d53e0000000050f64abfbd350e40ac9e00b2dfc178bf45da713e57c8c13c705949bfb8400e4013ed363f89de21bf5843993ee8cd123db65742bfd6e20d4005a1633f840aa5be0b45a63e0000000048b947bfb2461340de985a31da707abfd33d543ef2a7153c046847bf52271240a353603fe2e9cabe3f498c3edf7b493c00d844bfec341240fc77663fdda59ebed18f9c3e6971e63d268743bf65010740106babbe748b70bf98ec903dcf67103eaa5547bf54740040b29c6fbe562378bfacf29a3d0000000080eb3ebfd3fbfe3f00000000b7d17dbf3760053e0000000026f135bf70250d408b7acab1b3fc7fbfb479243c70d9a73dd24c43bff0a20d402f6a04bf127054bf4a6256be0000000082463cbf11701240de7c0cb1738167bf098ddabe2b8b5d3d3edd44bf34111240cb2e02bf1bd63ebf7fa2dcbe00000000563845bf446e1440a3eb1a32c96ce4be3a1c65bf1487fd3c383f49bf910f1440dd8acebea0baffbefe4444bfa803b43adc5854bf2766154080a697bee13579be34716cbfc991063fa00a5dbe1c8b75bf848e273f085e253f0c24c9bea375543f305423be3a3030bf32996d3f2fcb20be18d3acbe7fbe593f1085313eb88dd73e76a906bebeb5733f2d898d3efbe63e3f2ef404bf748807bff383773f3b6239bef65a38be40c06e3f685e9dbedb7eda3e3a35473fde5e1bbfa183253e8eca6d3f38779abe5df6ab3d61af653f3489d9be469df6bdb08d743f00a34b3cbca02e3f71af583c9dcf423f470d263fb08d743f00a34b3cbca02e3feb1bdc3e4e74e9bd6a49653f66a2743fe07554be7f75253fba042a3f459517bfa2afe93e2578bb3e302290be3c2cb4bfc183ff3ecc4d533f232087bea3cd453f664879bf159e66bdc26c743f1d2052be054a5c3ebb42133f49b79fbf7ba742bdd3481b3f294234bf52febc3e481b533fb0188fbfbbe50ebf7f4d7c3f846d23be8de4673df8542e3f76bbb0bf5adccebee02f3a3fbeae21bf9b89893e8c81293f0ce2a9bf339191be8a50103f8f882ebf88b9ee3e9fe40e3e17b48ebf7a441cbf65fa51bf83ac0fbf1ab3e2bde5b8a33ecd6da4bfbaf0adbd849e50bf565f12bfc12dc23d52f1b73ec422b0bff61498be95774fbf39dd15bf25f1ba3cac38753ed55898bffa3545bf65735cbfd9c6f0be5bc045bed57b7a3e32db69bf84206fbf07411abfc84349bede0346bfac8df93e52d1b8bf8fb1d2be67ba063e41ce6dbf4533b13e52f1b73ec422b0bff61498bee2b8a83dba6166bfe43adb3ee5b8a33ecd6da4bfbaf0adbdda3456be76ee79bf88aa63bd00000000d66ba4bfd83dbe3d309e6ab2d2e57dbf31f602be00000000c4cba1bff26fd83e00000000f2077dbf74801b3efc8ffc3e5084d6bf926f96bf282a54bf39d3aebcbd260fbfa6d3f23ef0f9c7bf7d6f8fbfe4e152bff8acfcbcf0eb10bf5436dc3e32fddcbff7d77ebfd21774bf096095be1c339bbd0c93b93ee253b2bfe58b71bf66a974bfc6d583bef2f511be1c44eb3e70c8c2bf2fb13dbff15e5fbf23eaf8bea928453d2522043ff2eae4bff1035fbf30b061bfe3dab4bebb4ba03ec170463fe923aebfe6bd75bf199f7f3fb6c621bdb0fd18bd0075473f4ec9d3bf698787bfa0247a3f967811bee91322be86712f3f1cffdfbfed7067bf319c3c3f5bc1cebee3d50a3f14d02c3fa6cfbebf5a3d43bf5663153f98070bbf56901a3fb515333fe80bd3bfa2e998bfda78253f026c9cbee0fd32bf0e83313f30d4c7bf4d979dbfc107393f8268e13dcea82ebf2522043ff2eae4bff1035fbfb107653ef50305bf5d1a533f1c44eb3e70c8c2bf2fb13dbf2271373e25a34fbff78b0e3f16fa183f0a26d2bfb1ba9dbff58b9a3e536873bee6596cbf8ae3143fed09c6bff545a2bfca999b3ef8209f3e698c66bf897ef53ecd19e1bfd9ac8abfe3064ebfdb3d07bf5a8b8abe077e0c3fc970eebf531d82bf6fb23ebfd7312abf36c364bdc346293fa208ebbf137982bf36b5323fcef436bf2ff7333d97ac223f167edabf5d4b9cbf0091333f13217abe20692bbfc3642a3f3995e2bf616796bf137b503ff402e9be015fb8be077e0c3fc970eebf531d82bfde7a813edc9d6abffabd9e3ea184453fa6900fbf901b0cbe1272773f7bee7cbef2768cbd0a65493fe40431bff87744be7aab7d3f8412703da630f83d59c4483f96383ebf28a1abbe07bb7c3f7dfdd43db926f7bdc4ec3d3f727a2abf3eb6e4be8a3d7b3f38921f3b5e8644be27a5443f4c836ebfb59724bf18cc783f13d2283e5b432cbe8d29283fe0b684bf7c7373bffc454d3f5c8f963e202905bf02b8293fa8be99bf69bc8cbf289c133ff2c00d3fc2cb19bfa33e093fe4f9cbbe3250c1bfe38df63ecf04563f37ae86be3bdfc73e6829c8be9dd2e5bf193e8c3e022c6a3ff01598be5ef4d53e845405bf3a5805c08f3ea73e98b4663f88da91be000000002842b2bec802f2bf89d294b12218703fe2a8b1be00000000a80cebbe282c0bc000000000fd31763f49578cbe33313d3fb8f631bf9448eabfffa503bf9c6857bf90e2293eb075d13e880615bfb1e109c0ea6296be819c6bbf7a33843e2498c23ec43febbe99cef2bf907ed3be8cce5ebfb244893e02450c3f8c3a06bf880cbfbf8a1b0fbfcbb652bf4edfcc3d17d83b3f3af61fbf6d17f2bf0fb06b3f02fc683e5a6aa23e33313d3fb8f631bf9448eabfe8bd6e3fa7338c3e40ce703e17d83b3f3af61fbf6d17f2bfffeecd3e0317643f0dbc57be2233f73e324f22bf24d61ec0be948b3e3070703f26b855be00000000523e10bfdcba25c001e630b29e40793ff28d69be2ae4563f8cb84cbf92e80dc0f523d8be284c63bfe84d3b3e473ce13ed2fa2fbf74ea1ec043b888be21226fbfa697723e0d8b553f0eb83abfffcf11c0d833743fb9ce6f3ef91e403e2ae4563f8cb84cbf92e80dc0e70f743f07f9703e2383413e0d8b553f0eb83abfffcf11c00a2faf3e81766c3f699630be2104043f6a9e37bfb4ab34c0051a863e33cc713f0ff14abe00000000c8df21bf1d8f39c00000000092e6793fda315ebe035b6d3ff21e53bf6d9027c0183a89be369d76bf6712473c2104043f6a9e37bfb4ab34c024fb56be24f679bfb8934e3d473ce13ed2fa2fbf74ea1ec05eca79bed63378bffa84b43c2ae4563f8cb84cbf92e80dc016be8abeed6b76bfd1d33a3a035b6d3ff21e53bf6d9027c08a99733f89c1743e7c08463e035b6d3ff21e53bf6d9027c0cec3a73e46e06d3fa8072fbe7e6f233ea49a3dbfc84bfb3fda0f523f3328c13dd650103f4ad2f53dfe7221bf32030140bf102e3fd057993d10bc3a3fd0284d3e52ad19bff3eff73fee402a3f5b720a3f73d7033f6935343ec87020bfef5afa3fa064563f226942be412f033f04ad203e8cd3ffbef96be23f924dde3e8fa45f3fb10a613e0de1f83dfcc009bf4d89f43fabd7c33eb1dd573f4162c13e00000000fc80ffbe9e80f23f61ff04b1fbff703f64afac3e00000000702ce7beabb7de3f11354431fc247e3f4422f63d00000000cccb6dbf3793eb3f0ce80bb27f5f74bf9c8c983e408ada3ee0436ebe50b35c3ff6de143ed00b423f5fc7223fc9764e3e94eb29bf7194f43f28f2633f559c02bd1477e83e000000007a8218bf0850f3bf3802b3b1a1bb49bf469b1dbf00000000e82053bf39afb5bfbc863e31a2e175bf6d868ebe000000002ea760bf675c88bf88b9353286327dbf9b1b17be000000002ea760bf675c88bff28c02b149bf75bf9c728fbe00000000cc3a6fbfe39b39bf3a6784b233cc70bf65cfadbed57b7a3e32db69bf84206fbfb08ea3bd8ea865bf777cdebe13d57b3efa8b54bfcb7a89bfd8dba73ed2f443bfebbf0dbf00000000509658be7762babf0192d0b1d052753ff15192be00000000602fb4bd065f80bf9c1e15311bab783fc44f73be0000000000dc53bc47f224bf30dc85b037017b3fd74c49be8e57703e0063aa3c0ca4bc3e1f1e95bdb8a57b3fa59c2c3e00000000006e02bcb1b8b83e000000001994793f09ea633e00000000c085443d55393bbe0686acb0b2de7f3fb79302bd11c78a3e80638bbd3f622c3f49588fbd1d376b3f4ae2c63e0000000050f718be8305503f9a9af431f747693f3cddd23e0000000048c6e9be9105ecbf3ffe8bb149f6c13e4eeb6cbf6f12533e1095aebe553a943fb9bb283ee4d6573fb308033f00000000c036a1be117a923f71069d32f314653ff689e43ee8a1863ed04822be294c583f7e10e13d52155c3f9667ff3e000000009c7ee8be292cc93f17a88431de447d3f552c153e000000004c6ed3be5d8faa3f07567131b1a96f3f86f9b33e00000000ba0e19bf8c2d04402cb65532eddf673ffbfad83e000000006e070ebf7cf20040dab85eb1838d593fb9ee063f4b91ac3d845415bf9e2401407157cd3e383b303f75b71a3f0000000044801fbf6b480a40545e22b37236783f70a57a3e00000000bcd827bf29b31140000000008bb26f3f51cab33e00000000aa2032bfda1b144053f3fb32396c173f3d6a4e3f000000007e0d44bfa3011640e415b9b041a1923ef946753f9fe40e3e17b48ebf7a441cbf4c6a30bf69352fbfb1d273be00000000106a0abf9b720fc071188931a26779bfdbef663e0000000048c6e9be9105ecbf74ed6b31015774bff9c2983e00000000a6561bbff70126c000000000f99c7bbf9ec13c3e00000000c8df21bf1d8f39c000000000561c7fbfd98eaa3d00000000a6561bbff70126c058754a314a7a7fbfe5c1823da9c1ac3e40ec0d3dd17f3dbe8c0a73bee038783f679e72bdcf9f163fb0b72f3ed65d27bec31d90be5c0b723faab827be60774e3fe0d2533e086001be1e0b18bebf9d7c3f00f684bdcd58643ec64a28bfa727ec3f46c86b3f9bddbd3ac16cc73e76a6303eb2ee33bf070df93f9ab5493fa9760d3c069f1d3f0bd2ec3d181b2ebf832f004004c5453fefb758bda0fc213f6553ae3e18c3e4be621a9a3f9770c63e3be73b3f92c50e3fbbd22a3f2cc406bf6a06453f37b7563fcd8c9ebecc55e53e10b2403f00727d3cc73e08bfd7a50a3d0e0a643f9806e8bea375543f305423be3a3030bfb24c9f3e10a6413f4a4813bf942ff03ed60c44bfa40e7ebf63afd33e94e935bf63be11bff206043f42dc20bfb2ea8bbf668ad73ef9e41fbff36328bf033ff23e522481bfee897dbf2cccb9bee83ae23d0ade6cbf942ff03ed60c44bfa40e7ebf77cc79be9a8046bc273f78bfdc11a63eac318abf4d226ebfdc853bbf02da123c16422ebf16fa183f0a26d2bfb1ba9dbfd11c14bf14490ebd0e9d50bfacad0c3f5486ddbf40b79bbf8c6fdbbe660f3dbd8bfe66bf97ac223f167edabf5d4b9cbfd38790bbd31730be0f2f7cbfa60f553f580684bed62695be1ea2733f6aa08bbeca7e10be60774e3fe0d2533e086001be7ea20b3e0152763f927371be10b2403f00727d3cc73e08bf7876f73dfd75553fcee309bf37c3a53f805bbf3c14f3cbbe7236e03d5e1e683f5488d0be878a953f90e51f3e5ad602bd19a9f23d30967c3f6783e4bdc9e58f3f4075f73dce67f13eceabec3ca677793f08f1633e7fbe593f1085313eb88dd73e7492093eefd57a3ff680173ea375543f305423be3a3030bfbea41e3d9a847cbf029423bea60f553f580684bed62695be47a4143ef42e7bbf765a02bed00ab03f90f24abebd59a2bee221be3d196e7ebfb30e76bdbf82bc3f70c01ebe445f45bfd1aa613d1dbb7ebf5f8fa9bd40c06e3f685e9dbedb7eda3eeda4823e7d4376bfc0b7c73d6ccfa03f709537bee7b9323f7b6f0b3ead207dbf67967b3d83c0a63f501e4dbe3e98ff3d7223633e217279bfe255163d8eca6d3f38779abe5df6ab3d82f3863e7fe676bf0c4e9abcb08d743f00a34b3cbca02e3f9d9d8e3c4c9b303ffe45393f6e17963f0000cdb960a2323f743dfbbd924bdc3eb7f2643f6ccfa03f709537bee7b9323f073065bed6f08f3c0f77793f66a2743fe07554be7f75253f0cfcffbdb26ae9bd9b4f7c3fa375543f305423be3a3030bff281763c65aa553f5bf40cbfbf82bc3f70c01ebe445f45bf90905f3dd917693f5dd7d1be66a2743fe07554be7f75253f63bc693c0c2569bf3157d33e8eca6d3f38779abe5df6ab3def308d3effa871bf1a9639be83c0a63f501e4dbe3e98ff3d51081e3e12ce7cbfa5c500bd6f12533e1095aebe553a943f7a3b3f3e05f4603fb0e9e03e00000000c036a1be117a923f3b3089320202633f1aacec3ebc20223f802a6cbe3537573f5d3f9a3e8931ab3e5f9b643f3aaf093ff8ddacbee3b7693fc110bd3d26c6bc3ebbc96c3ffe2a143f6adaf3bf0bcda5bf11ee7cbfe80e96bdf42c0bbe64051b3f4814eebf30b6a8bf4f366fbff242723e6d5088beacad0c3f5486ddbf40b79bbf1a2257bf122fcc3de26308bff94b073fdee0e5bf019f97bf0ec76fbfa8c8b1bea4f43dbd6d75193fdb10f7bf6037a0bf7b3e02bf73b919bf98ed1d3f70b5123f66d4eabfcfb391bf1fbfdfbe5a353cbf44a8043f666b253f9acaf6bffa579ebfe9ad1b3fc35291be3cca3d3fd750223f3079e9bf215491bf787bce3e1d0b24bfc33b273fc3642a3f3995e2bf616796bf3cb07c3f8fac2e3c51cf233ecafd2e3f36c4f2bfaf03a3bf4bf66d3f5730a13ec18d443e198e2b3fe6e3ecbfc073a7bf8d8df33eaee82c3fd74010bf97ac223f167edabf5d4b9cbf9975e13eb6770a3fc77337bff7e5103f567f00c0955baabf770c76bf946ecf3d9582833e25ca123f8db0fcbfb224b8bf08d96abf9b68013e943ec1be46b41d3ffad001c03637a2bff227f3be17e988bed8a2563fafec423fc64cfebf8633abbf2562563fdad6a03efbfbe43e48df2c3f7f8201c0dd71a2bfa123d63e185f1abe254f653f575b353f58a7f8bf9196babfaf39413ff3160c3f8033b9be145c243fd66bf6bf8d40b8bf9a294abee3d85e3fc9d4e6be64051b3f4814eebf30b6a8bf4b2749becbcf403f2ab820bf4695093fd78507c0d9e6b2bfc55463bf5b57163d2fadeabec9cc153ff14309c03250a9bf81262fbf598b3ebe4d86343f1a503f3f204108c057caaabf1523903ec3c1e1bef42c5a3f79ae4b3febfb05c0c9fdaebfd8fc523f744eb43d8e380f3fd1ad4b3fd6e402c0f1cdb6bf5494363fea10af3efda51cbfd219343f085907c00bc8a6bffff2073e2fafb3beb34b6d3fa5dc253f593007c0cebda7bfcc13f4bcc99deebeb85e623f3316213ff946f8bf1934c0bfc975b9bd6dcc6f3f6726adbebc072c3fb75d04c09cbabebf3a8c5a3ff5666a3ded8104bf8674303f2b1110c042c5b8bf2f9b363f6938a13e514a20bfe607423f136110c0023eafbf89517d3f9d5ad13be8ad13be1a503f3f204108c057caaabf5bc57b3f42bcf43d863a0bbebc072c3fb75d04c09cbabebfeb6cfcbec3f7dabd60095dbfbc072c3fb75d04c09cbabebfb038403f2c73b9bde37a27bfc4d1493fc8780bc0c94fb2bff37ec6be3f012fbf014d1e3fea21563f5f5e0ac003ffb3bf2040403f9ade0bbe3263253f92e8413f338a0ac03992bbbfb941873e5c7dd23e005a5fbf187c563fc82109c0faaeb8bf8cd04d3f2809ea3e48c3c2be92e8413f338a0ac03992bbbf72da61bff175d0be8911723ebc072c3fb75d04c09cbabebff4b43cbf650e2abf32d1fd3dcc0a2d3f4fe810c082faaabfcf776cbf313383beb3d0913ea5dc253f593007c0cebda7bf7d2b79bf079e4bbe3d7cea3dd219343f085907c00bc8a6bf27978c3ed9902cbe8859723f8cd6393f016711c0a206abbf978cc23ee503c8beeba4563f8674303f2b1110c042c5b8bfc9507cbff786133e991fb5bdbc072c3fb75d04c09cbabebfe83d7abf48b511be6b671fbe3b36063f751b0dc0d421b3bf046164bfc1d8d93d69d5e03e4695093fd78507c0d9e6b2bfe9b251bf6a6be53d8c03103fc9cc153ff14309c03250a9bf0320c5be50f22ebe9f2e683f59a60f3fb3e910c055d4acbf3a6bd4becca9a4be6fe4593fc0e8163f3ae40bc08c28b5bfb9706e3fdf428ebee4c070becff91d3fd9ad10c0270ab0bf9f39653fd8649cbe4edba53ea5dc253f593007c0cebda7bf6d535f3f6eb6f9be9e31083dbc072c3fb75d04c09cbabebf15974e3f14e516bf607515bd3b36063f751b0dc0d421b3bf0c82e3be86a8dfbdb8a063bfc0e8163f3ae40bc08c28b5bf2d057fbdd40a01bfaf855cbf6fb72c3f436e00c03784cebf20065f3f1a3d973e63c7c8be5e2c203f26dcfdbf243bcebf4f94fcbe6ee64b3f0b04b3beab5c243f8e5905c0db46c7bf757f1fbf570b32bf3d44b73eddcd133f90d501c0bbb3cabffffc7fbfeaf500bc00c8b23b25ca123f8db0fcbfb224b8bf680b79bf4ef4533e586bd4bdbc072c3fb75d04c09cbabebf082003bf1d0042bfa0f0ce3eab5c243f8e5905c0db46c7bf63b7703f0bf19cbec778173ee86b1e3fd78500c0db4bd2bf57f1b5bec27d103fefbd3ebf809e1e3f978e06c0696ad9bf392779bebd97623e2bc271bf0da92e3f854006c042e2d6bf21627d3fd0a9acbdbb91ebbdd26e243f309a07c0a57ecabf4ecd1fbfe764e0be2990253f3a57103f61a507c01a0dd4bf8be46fbf0c4e8dbea4ee5a3ed26e243f309a07c0a57ecabf94936d3fc29c44be3b6ea33edd5c283f46590ac06f5fd3bf1102493f6bfefdbe24c6bdbe7fa11b3f28280bc07ce8d2bf3395b73d1fb715bf87624ebf7ae3243f79ac0ac00a46cdbfab7127bf3a3fbfbe6d63283f7fa11b3f28280bc07ce8d2bf8cd93cbfebbd21bfcfae73bed26e243f309a07c0a57ecabf99f025bfead7aabe16392f3f7ae3243f79ac0ac00a46cdbfafee753f7e35acbd607f873ee717093fa27714c021e0b4bf1020f8beaf8f3ebfa035eb3efca5fd3ef03011c0e730bbbfdf0a54bfc4c7db3eed5eb8bea052153fa92d0fc0374abebf80886e3f996e083e3be9acbe2d091c3fd11715c0a8fbb8bf2721583f2cbe04bf2cc20abea052153fa92d0fc0374abebf7e4ce0be99972f3f71bf14bfc0e8163f3ae40bc08c28b5bf6159c6be75533f3f102f0abf32c7063fdce113c09ee5c1bf926b22bf8ad945bfebb655bc37170f3ff9f011c0dc5ec2bf79084f3f23e230bd922b16bfe8bb0f3f149c14c0bb57c1bf62cb4c3f717688bd44a818bf32c7063fdce113c09ee5c1bf0f1aecbe5bf11a3f4d1c26bf37170f3ff9f011c0dc5ec2bfe93027bf80fe263f09f0c4be0ef5373ff12818c05352b7bf2c26a43eb1453fbfc50b153fd74f273f95fc17c082ddb8bf11996fbf426599be8b943d3e7d77433f43d515c08c7fbbbf6dc1653f9cab603ec5e4c3be9eb6363f9da418c069c1bfbfdcda503ebf8e70bf69988cbe118a313fb33316c09f6cc6bfc33f033f8df415bf15b220bf94a4273f6c9316c07c79c5bf61c87cbe9cff68bf4757aabe94a4273f6c9316c07c79c5bf854a70bfde0eb03eb592dbbce1f12d3f27e613c01c20c4bfd8ee4bbf1bc8093fb4e78cbee1f12d3f27e613c01c20c4bf76441f3f802d183feb6d02bf118a313fb33316c09f6cc6bfe375233fd546073fb73c0fbf1a8b5a3f579210c0321bbcbf156b523f1a3decbe23f9aa3e88644c3fef5612c02c60babfe81518bf85212cbff311e23ea1f75a3f139c0dc00a98c0bf55baf43e9caa043f6a8e35bf36e5423fa2270dc0dc0cc3bfe39f483e185f2d3f6b8e35bf36e5423fa2270dc0dc0cc3bfdb8771bf652b78be4b81673ec7464c3fac6e11c02c21c7bf0be72c3f7ffc14bf10e5e7be1571463fc3cd12c05cbfc4bf8a1556bff81bf1be3cd08f3e1745433ff3c910c05851c7bfc8414e3e9266023fea2d56bfe8bb0f3f149c14c0bb57c1bf278d4abe68d27abfa53ff8bcacad0c3f5486ddbf40b79bbfc898b8bd96b60b3fef4455bf1745433ff3c910c05851c7bfa7b870bfd18d42be578c903e7fa11b3f28280bc07ce8d2bfaf9545bfabc020bf87b9cc3d7ae3243f79ac0ac00a46cdbf569e183f122ddc3d72ae4b3facc6263fbd6e0cc0590dcdbfaec16e3cee06c33ecbab6c3f520f213f098a0cc0b9bdd0bf953cfcbeaf332ebfccdd0abfdd5c283f46590ac06f5fd3bfe6d0e43e4431d5be27b14abfdecc283f11170cc0dfbed2bfb1145d3f5c949fbe55e8cabec11b263f04020ec0aae7ccbf459824bf0dbb41bf52b9f1bda46f2a3f940f0ec0ec47cebfcec37d3f8744debdcf5b99bd72a6293f2ea90dc02991c8bfda31093f17198ebc7216583f79590f3fe52812c0f315c4bfde931d3fde063e3f0b93873e919d0f3f760814c0a7e3c5bf4190fc3eaf8744bf3a6dd1bee8bb0f3f149c14c0bb57c1bf176c423fafd621bf3c301dbe37170f3ff9f011c0dc5ec2bf61119bbe46c3733f3250233d32c7063fdce113c09ee5c1bfc98a44bfd38516bfad6282bec11d083fa04d13c0db63c5bf601962bfd9abc53d8afceabe1100103f3b3311c093a4c7bf8331523f0f60913e7b8bfd3e95d5103f93df11c08829c9bf8aec343e663306bfdb4255bf41ba0c3f728611c038eec8bf95f649bf6ce8193fa62e02be0b0a133f31920fc00dbec8bfaf11403e2997423f7a431fbf118a313fb33316c09f6cc6bf5b69573fda78ec3d492107bfe1f12d3f27e613c01c20c4bf4dedc3be771a623f07cd8a3e406c293f16ad13c07bb8c8bfe944be3e1b21623fdb4c923e36012e3f9b2515c03fc1c9bffe60d43e7c9e0bbf10753abf94a4273f6c9316c07c79c5bff6021dbfb59635bf41ddb1bec68a263ff18515c09b50c8bf3c0d7cbf2ffb28be46026ebddff9293f2cb413c03adfcbbf438bfa3e63bf20becd9b5bbf8be2253ff5d313c09908cbbf78c97dbfbf3bccbd109eaebd8d7d253fe23d11c06037ccbfd15607be44a57d3f5c9dedbcc7464c3fac6e11c02c21c7bf51232f3f1a0a043f270404bf1745433ff3c910c05851c7bf803d77bfab06833ea08c2cbd494a423f9b3512c0e192cbbf3350d4bea2a3643f3f7a32befce3493fec8412c09330cbbf60d26b3fd7ca9fbebf036ebe1571463fc3cd12c05cbfc4bf1cf7523e88196abf2558b23e5796443f29d013c05981c9bf63a2fbbe05ae5abf03ad2d3e9ab1443f95a912c0955bcebf9e60323fe94ddcbc827e37bf378d413fbb4f13c08477cdbf64bf2abf62603ebf83fb3bbd022b3b3f908011c08bf3cfbf2e6734bfcaca063f5e7df3be7348ba3eb8c5b6bfcf1ddcbe1a0f69bf8990d2be8e023a3d5b42c63eff3abbbf8f7c05bf982456bf8e2e0abf806cc1bdb37b2e3f72b9b3bf078904bfb86a263f2c633bbfcfe5503e5b42c63eff3abbbf8f7c05bfbdb2193ece8b76bf3de5643e033ff23e522481bfee897dbf4213873e4e0ae33e194a5bbfd656083fd40699bfd42193bfab659b3e7d1e1f3fe1e038bf8ae3143fed09c6bff545a2bf18c54ebff109b0bb77ee16bf7348ba3eb8c5b6bfcf1ddcbe19f82dbe601b6dbf6d55ac3e20d32e3f4eb1a4bfa4da93bf0b392e3fa20f503e993634bf5c032f3fdd78b1bff7df92bf0646433f6186663ec72f1bbf670b103ff1d4b1bfbfe797bf3af4933e793b443e3d1e70bf5dfd0c3f0f25a4bf7bb898bf830d973e2a93b23e12ba63bf5dfd0c3f0f25a4bf7bb898bfe1c225bf709e3b3d26bc42bfd656083fd40699bfd42193bf34cc1abf7ed99e3e71ca3bbf97e3dd3e65f9a8bf57398cbfc06b44bf8a002a3c632824bf670b103ff1d4b1bfbfe797bf6ee32ebf8e63323dd69d3abfd750223f3079e9bf215491bf254bbb3eed0569bfbfa746be70b5123f66d4eabfcfb391bfc62b353e2a4c77bf9f0441be70b5123f66d4eabfcfb391bfa45a2fbfab9833bf934749bef94b073fdee0e5bf019f97bfd07b55bf081bd3be97d2bbbe6c24293e3c0429bf3225fa3f83563b3ff67120be75cc293fcaa591be08c344bfc1ddb5bff90dbfbe7c0762bf0de591befdbbaebed85e0fbfaa09eebffd10debedd0f4cbf0818d7be1d02e7be5c891cbffd26b8bfb4d32ebfa23935bf3b9038bef20604bf42dc20bfb2ea8bbfebc53fbfc3831fbf1b4666be13d57bbefa8b54bfcb7a89bfd878b2be16d46dbf5250febd942ff0bed60c44bfa40e7ebf9fc200bff46e21bd1c085dbf8b3429bfb27a4bbf080f56bf457368bfb56bac3d8a20d2be5e9d2fbfbe996cbf06eea03d22426abf650095be29f38e3e1bf613bf048a6cbfc4e4ee3e5bcc65bf2fedb7beaeb6823e1c5ce2be4d5f95bf148ee93e232f0dbf05c14abf8f12863e116d07bf78e697bf724a023e71e7cbbe246362bf867f793e76e2f2be283e62bfe804553f7b384ebf824f03bf4ae0973ebb0ab1be97368ebf22d3463fbc28dabe520358bf9e0ba73ec99106bfa00a5dbe1c8b75bff32096becc765b3f78acd8be2578bbbe302290be3c2cb4bf622992be91b06b3f015188be3a7783be0024f3bd18f97cbfe4f747bed7df6f3fdd4894be44a3ebbe00d4a9bc67e51ebffb125abd414a783f9b6273be72e11cbf0000103ca89915bf9ab8013d92d8653f81dde0be0eda2fbf0052223d07dc273f64373c3eea76573ffffc013fe38d1cbfd04d0b3e27b8b93ee567aa3e37c86e3f22f60d3e19a9b7be00987e3cfc15bb3eaaa3463e38c1783fba0a0a3e780bf4be40a542bdf8972d3f35b3493e29fb603f9c80de3e02450cbf8c3a06bf880cbfbf044171bf36bfa8bea8dd69bd2498c2bec43febbe99cef2bf2f6ca6bed22305bec6cc6fbf56622abf5801cdbe1a4c9bbf483274bf1a18423e3b506ebe9e0c2ebf48d5cebecad167bf90df6fbf668cfabdc185a7be1a4f1cbf5aab11bfdda36ebf52776dbfc1ecddbd5f0bb7be97e226bfb8a925bfac87f83e7e5468bf5973bcbe9e164f3ef62642bf1edb1ebfec7b063e857666bfea2fd2beb17e143e16a73ebf889feebe6e81f53e68c63fbfeaac1cbf69c9813ea33e09bfe4f9cbbe3250c1bf0e565cbfd563013ff00f7bbdbc2022bf802a6cbe3537573f57bd24bfcf9070bd9c5f433fe9d23fbf284fbfbeb65b3b3f936e38bf7585aabe97ba1b3f4f203cbf0045efbd2089433fb32cfabea304a5bd82675e3f4f203cbf0045efbd2089433f0de405bee03a0a3f5ddb543fd21a0fbf70c804bebcf4533ffa79e03cab801b3ff43c4b3fbc2022bf802a6cbe3537573f5e419abedf32ab3ec99a643fa8c776be9dd481bf6a8c8e3f4623bebeb09c65bfaacd753e268db9be60f262bfc9ef993fcb2f5abf749cedbe9b16773e3aaf09bff8ddacbee3b7693f37d644bff5550d3e36d21f3f408adabee0436ebe50b35c3f3a6cd8be4355373f352e0e3f6553aebe18c3e4be621a9a3f24d42fbf49190a3f3464f93eec34c2be0e5c29bf3f969e3f66326dbfe261df3cca17c03e6fb80fbf36702bbf150a613f96f166bf4f4874be8e14b83ea9a15dbe435380bf7997b33f35d3babefed56bbf06130a3eab7b44bea44872bfb828d73fc60fa8be4bf968bf9895813e4e7fa6beeadc68bf4248ba3f651f66bfb205d1be2bd3223e088e93be26a461bf16c6da3f5e5a5fbf9653d5be2bba823ecccfa5be264309bf04cfb53fb5c554bf4045013f686e6e3e9d6847be6846debedc8aad3f350a90be9720693ff8ed9a3e72a433be589cf9be47b1cc3f7058c8be22be673f5a8d293e344c9dbed28118bf524ed43f62e45ebfeeafdd3e1ff56e3ea5f6aabeb0a137bfe167bc3f66617cbf4a8c253bd9902b3e605896bec4a142bf242ddd3f3dd675bff472f63cbcff8d3ecbbf66be145656bf327cf03f881a49bf03f2babe56c8ff3e7c802ebed0044ebfb593f93f5f503cbf707692be8a321d3f7806c2bd04335abfef94fe3f6c00ffbe08f03abfbf72ef3e9a981ebe4e3f64bf8aeaed3f167ba9beacff5fbffbe1b43e908578be829d16bf69cbe93f2ec72cbf9cfb2b3ff8469c3e508d67be3c3e1dbf66c2eb3f5f1f6abfb8fd29bef1dabc3ee73962be543442bf742ef13f284260bf6f46f63dc422ef3ee23a8ebea4822ebffcaedc3fa68a72bf672d813d029ca03ed4f158bea6b234bf4c76f03fea8c63bfff16ab3d71a5e63ecf6710beaa5547bf547400400c6246bf3731d3bedd30f53ec5a59fbd6e0736bfc66d08402e8264bf3867d03e1c78463ec85cb9bdbe9e33bf79af0240b58657bfc1dfa23e662edf3e8b046ebd129521bf6efa0340280e29bf7001153fd2edf23e429e33bdf0ee24bfd4430a40cc9c44bf11c8193ffe5b633e6971e6bd268743bf650107403f555bbf2c1dec3ec35b6c3e236b0dbe586d42bf2f170140e39059bfbe23cf3ea2e8ac3e181d75bdbc3439bf7d3f0f401c4965bf7bc0b23e22158d3ec9ebdcbc36fc2abf1f4b1140f58a45bfe28e063fff60b73e70d9a7bdd24c43bff0a20d409d4462bf1877c63e2a0a863ebdbb9fbcf21934bf1add13403ca83bbfcadcad3e68e0163f13a322bd36533dbf62f81240763459bf76ae543e0e3ff93e2b8b5dbd3edd44bf341112404f795fbfe397603e3118df3e1487fdbc383f49bf910f1440ece251bf458866bd02dd113f2435a3bc52e745bf7d5c1540d00047bfc577023d3fd5203faa931abcaa8a44bfc9e51540705ef4be66fbc73d14915f3fa803b4badc5854bf276615405c121cbfd53f5cbe364f433fe84748bdde834bbfa85209404a3cfabed80649bf3ba0c23eedef91bd967242bf9ace0840bbf944bf2389f7be30b6d53e57c8c1bc705949bfb8400e4013ed36bf89de21bf5943993ee8cd12bdb65742bfd6e20d4005a163bf850aa5be0c45a63ef2a715bc046847bf52271240a35360bfe2e9cabe3f498c3edf7b49bc00d844bfec341240fb7766bfdba59ebed18f9c3e6971e6bd268743bf65010740106bab3e748b70bf96ec903dcf6710beaa5547bf54740040b39c6f3e572378bfabf29a3d70d9a7bdd24c43bff0a20d402f6a043f127054bf4a6256be2b8b5dbd3edd44bf34111240cc2e023f1bd63ebf7fa2dcbe1487fdbc383f49bf910f1440de8ace3ea0baffbefe4444bfa803b4badc5854bf2766154080a6973ee23579be35716cbfc99106bfa00a5dbe1c8b75bf928e27bffb5d253f0a24c9bea37554bf305423be3a3030bf2d996dbf65cb20be1fd3acbe7fbe59bf1085313eb88dd73e76a9063ebeb5733f2d898d3efbe63ebf2ef404bf748807bff28377bf2c6239beff5a38be8eca6dbf38779abe5df6ab3d61af65bf3489d9be469df6bd40c06ebf685e9dbedb7eda3e3b3547bfde5e1bbfa283253eb08d74bf00a34b3cbca02e3f77af58bc9dcf423f470d263fb08d74bf00a34b3cbca02e3fea1bdcbe4d74e9bd6949653f66a274bfe07554be7f75253fba042abf459517bfa3afe93e2578bbbe302290be3c2cb4bfc183ffbecc4d533f232087bea3cd45bf664879bf159e66bdc26c74bf1d2052be064a5c3ebb4213bf49b79fbf7ba742bdd3481bbf294234bf52febc3e481b53bfb0188fbfbbe50ebf7f4d7cbf826d23be8ce4673d8c8129bf0ce2a9bf339191be8a5010bf8f882ebf88b9ee3ef8542ebf76bbb0bf5adccebedf2f3abfbeae21bf9a89893e9fe40ebe17b48ebf7a441cbf65fa513f83ac0fbf19b3e2bd52f1b7bec422b0bff61498be95774f3f39dd15bf27f1ba3ce5b8a3becd6da4bfbaf0adbd849e503f575f12bfc22dc23dd57b7abe32db69bf84206fbf06411a3fc74349bedf0346bfac3875bed55898bffa3545bf64735c3fdcc6f0be5dc045be52f1b7bec422b0bff61498bee1b8a8bdb96166bfe23adb3eac8df9be52d1b8bf8fb1d2be66ba06be41ce6dbf4433b13ee5b8a3becd6da4bfbaf0adbdd734563e76ee79bf8caa63bdfc8ffcbe5084d6bf926f96bf272a543f36d3aebcbe260fbf5436dcbe32fddcbff7d77ebfd217743f096095be1c339bbda6d3f2bef0f9c7bf7d6f8fbfe2e1523ff8acfcbcf0eb10bf0c93b9bee253b2bfe58b71bf66a9743fc6d583bef1f511be252204bff2eae4bff1035fbf31b0613fe3dab4bebb4ba03e1c44ebbe70c8c2bf2fb13dbff15e5f3f21eaf8beaa28453dc17046bfe923aebfe6bd75bf199f7fbfb8c621bdb7fd18bd14d02cbfa6cfbebf5a3d43bf566315bf97070bbf55901a3f86712fbf1cffdfbfed7067bf319c3cbf5bc1cebee3d50a3f007547bf4ec9d3bf698787bfa1247abf977811beea1322beb51533bfe80bd3bfa2e998bfda7825bf026c9cbee0fd32bf0e8331bf30d4c7bf4d979dbfc10739bf8468e13dcea82ebf1c44ebbe70c8c2bf2fb13dbf237137be25a34fbff88b0e3f252204bff2eae4bff1035fbfae0765bef50305bf5d1a533f16fa18bf0a26d2bfb1ba9dbff68b9abe556873bee5596cbf8ae314bfed09c6bff545a2bfca999bbef7209f3e6a8c66bf897ef5becd19e1bfd9ac8abfe2064e3fda3d07bf588b8abe077e0cbfc970eebf531d82bf6fb23e3fd7312abf2fc364bdc34629bfa208ebbf137982bf35b532bfcef436bf34f7333d97ac22bf167edabf5d4b9cbf009133bf17217abe20692bbfc3642abf3995e2bf616796bf137b50bff502e9be025fb8be077e0cbfc970eebf531d82bfde7a81bedd9d6abffabd9e3ea18445bfa6900fbf901b0cbe137277bf7bee7cbef2768cbd0a6549bfe40431bff87744be7aab7dbf8412703da430f83d59c448bf96383ebf28a1abbe07bb7cbf7dfdd43db926f7bd27a544bf4c836ebfb59724bf17cc78bf12d2283e5b432cbec4ec3dbf727a2abf3eb6e4be8a3d7bbf5c921f3b5e8644be02b829bfa8be99bf69bc8cbf289c13bff2c00d3fc2cb19bf8d2928bfe0b684bf7c7373bffc454dbf5c8f963e212905bfa33e09bfe4f9cbbe3250c1bfe28df6becf04563f37ae86be3bdfc7be6829c8be9dd2e5bf193e8cbe042c6a3ff11598be5ef4d5be845405bf3a5805c08d3ea7be98b4663f88da91be33313dbfb8f631bf9448eabfffa5033f9c6857bf90e2293e02450cbf8c3a06bf880cbfbf891b0f3fcbb652bf4ddfcc3d2498c2bec43febbe99cef2bf907ed33e8cce5ebfb344893eb075d1be880615bfb1e109c0e962963e819c6bbf7a33843e17d83bbf3af61fbf6d17f2bf0db06bbf03fc683e596aa23e33313dbfb8f631bf9448eabfe7bd6ebfa7338c3e40ce703e17d83bbf3af61fbf6d17f2bfffeecdbe0517643f0fbc57be2233f7be324f22bf24d61ec0bf948bbe3070703f26b855be2ae456bf8cb84cbf92e80dc0f523d83e284c63bfe64d3b3e473ce1bed2fa2fbf74ea1ec043b8883e21226fbfa597723e0d8b55bf0eb83abfffcf11c0d83374bfb8ce6f3ef91e403e2ae456bf8cb84cbf92e80dc0e70f74bf03f9703e2383413e0d8b55bf0eb83abfffcf11c00a2fafbe81766c3f699630be210404bf6a9e37bfb4ab34c0051a86be32cc713f0ef14abe035b6dbff21e53bf6d9027c0193a893e369d76bf7112473c2ae456bf8cb84cbf92e80dc016be8a3eed6b76bfd1d33a3a473ce1bed2fa2fbf74ea1ec05eca793ed63378bff984b43c210404bf6a9e37bfb4ab34c024fb563e24f679bfb7934e3d035b6dbff21e53bf6d9027c08a9973bf86c1743e7e08463e035b6dbff21e53bf6d9027c0cfc3a7be46e06d3fa8072fbe7e6f23bea49a3dbfc84bfb3fe10f52bf5b29c13dc250103f4ad2f5bdfe7221bf32030140be102ebfd157993d11bc3a3fd0284dbe52ad19bff3eff73fee402abf5b720a3f73d7033f693534bec87020bfef5afa3fa06456bf236942be402f033f04ad20be8cd3ffbef96be23f934ddebe8ea45f3fb10a613e0de1f8bdfcc009bf4d89f43facd7c3beafdd573f4062c13e408adabee0436ebe50b35c3ff7de14bed00b423f5ec7223fc9764ebe94eb29bf7194f43f28f263bf589c02bd1477e83e13d57bbefa8b54bfcb7a89bfd6dba7bed3f443bfeabf0dbfd57b7abe32db69bf84206fbfb18ea33d8ea865bf787cdebe8e5770be0063aa3c0ca4bc3e1f1e953db8a57b3fa59c2c3e11c78abe80638bbd3f622c3f49588f3d1d376b3f4ae2c63e6f1253be1095aebe553a943fb8bb28bee4d6573fb308033fe8a186bed04822be294c583f7e10e1bd52155c3f9667ff3e4b91acbd845415bf9e2401407057cdbe383b303f75b71a3f9fe40ebe17b48ebf7a441cbf4d6a303f68352fbfb4d273bea9c1acbe40ec0d3dd17f3dbe8c0a733ee038783f679e72bdcf9f16bfb0b72f3ed65d27bec31d903e5c0b723faab827be60774ebfe0d2533e086001be1e0b183ebf9d7c3f00f684bdcd5864bec64a28bfa727ec3f46c86bbfbfddbd3ac16cc73e76a630beb2ee33bf070df93f9ab549bf9f760d3c079f1d3f0bd2ecbd181b2ebf832f004004c545bff3b758bda0fc213f6553aebe18c3e4be621a9a3f9770c6be3be73b3f92c50e3fbbd22abf2cc406bf6a06453f37b756bfcd8c9ebecc55e53e10b240bf00727d3cc73e08bfdba50abd0e0a643f9906e8bea37554bf305423be3a3030bfb24c9fbe10a6413f4a4813bff20604bf42dc20bfb2ea8bbf658ad7bef9e41fbff26328bf942ff0bed60c44bfa40e7ebf63afd3be94e935bf63be11bf033ff2be522481bfee897dbf2cccb93ee93ae23d0ade6cbfdc11a6beac318abf4d226ebfdc853b3f0dda123c16422ebf942ff0bed60c44bfa40e7ebf76cc793e9b8046bc273f78bf16fa18bf0a26d2bfb1ba9dbfd11c143f1c490ebd0e9d50bf97ac22bf167edabf5d4b9cbfc087903bd31730be0f2f7cbfacad0cbf5486ddbf40b79bbf8c6fdb3e670f3dbd8afe66bfa60f55bf580684bed62695be1ea273bf6aa08bbeca7e10be60774ebfe0d2533e086001be7fa20bbe0152763f907371be878a95bf90e51f3e5ad602bd19a9f2bd30967c3f6783e4bd37c3a5bf805bbf3c14f3cbbe7236e0bd5e1e683f5288d0be10b240bf00727d3cc73e08bf7776f7bdfd75553fcee309bf7fbe59bf1085313eb88dd73e769209beefd57a3ff580173ec9e58fbf4075f73dce67f13ed1abecbca677793f08f1633ea37554bf305423be3a3030bfbea41ebd9a847cbf029423bebf82bcbf70c01ebe445f45bfd4aa61bd1ebb7ebf5e8fa9bdd00ab0bf90f24abebd59a2bee221bebd196e7ebfb30e76bda60f55bf580684bed62695be47a414bef42e7bbf765a02be40c06ebf685e9dbedb7eda3eeda482be804376bfc0b7c73d8eca6dbf38779abe5df6ab3d81f386be7fe676bf014e9abc83c0a6bf501e4dbe3e98ff3d712363be227279bfe355163d6ccfa0bf709537bee7b9323f7d6f0bbead207dbf67967b3db08d74bf00a34b3cbca02e3fa49d8ebc4c9b303ffe45393f6e1796bf0000cdb960a2323f723dfb3d924bdc3eb7f2643f66a274bfe07554be7f75253f0bfcff3db26ae9bd9b4f7c3f6ccfa0bf709537bee7b9323f0730653ed9f08f3c0f77793fa37554bf305423be3a3030bfee8176bc65aa553f5bf40cbfbf82bcbf70c01ebe445f45bf92905fbdd917693f5dd7d1be66a274bfe07554be7f75253f63bc69bc0c2569bf3057d33e83c0a6bf501e4dbe3e98ff3d51081ebe10ce7cbfa5c500bd8eca6dbf38779abe5df6ab3dee308dbefea871bf1c9639be6f1253be1095aebe553a943f793b3fbe05f4603fb1e9e03e3aaf09bff8ddacbee3b7693fc310bdbd27c6bc3ebbc96c3fbc2022bf802a6cbe3537573f5d3f9abe8b31ab3e5f9b643ffe2a14bf6adaf3bf0bcda5bf11ee7c3fe70e96bdf32c0bbef94b07bfdee0e5bf019f97bf0ec76f3fa9c8b1beadf43dbdacad0cbf5486ddbf40b79bbf1a22573f122fcc3de36308bf64051bbf4814eebf30b6a8bf4f366f3ff142723e6c5088be6d7519bfdb10f7bf6037a0bf7b3e023f73b919bf99ed1d3f70b512bf66d4eabfcfb391bf21bfdf3e5c353cbf44a8043f666b25bf9acaf6bffa579ebfe9ad1bbfc35291be3cca3d3fcafd2ebf36c4f2bfaf03a3bf4cf66dbf5730a13ec28d443ec3642abf3995e2bf616796bf3fb07cbf85ac2e3c53cf233ed75022bf3079e9bf215491bf777bcebe1c0b24bfc23b273f198e2bbfe6e3ecbfc073a7bf908df3beade82c3fd74010bf97ac22bf167edabf5d4b9cbf9775e1beb6770a3fc77337bff7e510bf567f00c0955baabf770c763f926ecf3d9482833e25ca12bf8db0fcbfb224b8bf08d96a3f9b68013e943ec1be46b41dbffad001c03637a2bff227f33e17e988bed8a2563fafec42bfc64cfebf8633abbf256256bfdad6a03efbfbe43e48df2cbf7f8201c0dd71a2bf9f23d6be175f1abe264f653f575b35bf58a7f8bf9196babfaf3941bff3160c3f8033b9be145c24bfd66bf6bf8d40b8bf99294a3ee3d85e3fcad4e6be64051bbf4814eebf30b6a8bf4927493ecbcf403f2ab820bf469509bfd78507c0d9e6b2bfc554633f5757163d2fadeabec9cc15bff14309c03250a9bf82262f3f578b3ebe4d86343f1a503fbf204108c057caaabf182390bec3c1e1bef42c5a3f79ae4bbfebfb05c0c9fdaebfd8fc52bf724eb43d8e380f3fd1ad4bbfd6e402c0f1cdb6bf549436bfea10af3efda51cbfd21934bf085907c00bc8a6bffff207be2fafb3beb34b6d3fa5dc25bf593007c0cebda7bfc213f43cc99deebeb95e623f331621bff946f8bf1934c0bfcb75b93d6dcc6f3f6726adbebc072cbfb75d04c09cbabebf3a8c5abff9666a3ded8104bf1a503fbf204108c057caaabf5bc57bbf41bcf43d863a0bbee60742bf136110c0023eafbf89517dbfb45ad13be8ad13be867430bf2b1110c042c5b8bf309b36bf6938a13e514a20bfbc072cbfb75d04c09cbabebfe86cfc3ebff7dabd5e095dbfbc072cbfb75d04c09cbabebfb13840bf2d73b9bde17a27bfc4d149bfc8780bc0c94fb2bff07ec63e3e012fbf004d1e3fea2156bf5f5e0ac003ffb3bf214040bf9ade0bbe3263253f92e841bf338a0ac03992bbbfb94187be5d7dd23e005a5fbf187c56bfc82109c0faaeb8bf8dd04dbf2d09ea3e4ac3c2bebc072cbfb75d04c09cbabebff4b43c3f650e2abf35d1fd3d92e841bf338a0ac03992bbbf71da613fef75d0be8a11723ecc0a2dbf4fe810c082faaabfcf776c3f313383beb3d0913e8cd639bf016711c0a206abbf948cc2bee603c8beeba4563fd21934bf085907c00bc8a6bf26978cbed9902cbe8859723fa5dc25bf593007c0cebda7bf7e2b793f079e4bbe3d7cea3dbc072cbfb75d04c09cbabebfe83d7a3f48b511be6b671fbe867430bf2b1110c042c5b8bfc9507c3ff686133e971fb5bd3b3606bf751b0dc0d421b3bf0461643fc1d8d93d65d5e03e59a60fbfb3e910c055d4acbf376bd43ecca9a4be6fe4593fc9cc15bff14309c03250a9bf0420c53e51f22ebea02e683f469509bfd78507c0d9e6b2bfe9b2513f6c6be53d8b03103fc0e816bf3ae40bc08c28b5bfb9706ebfde428ebee4c070bebc072cbfb75d04c09cbabebf15974ebf13e516bf637515bda5dc25bf593007c0cebda7bf6d535fbf6eb6f9be9e31083dcff91dbfd9ad10c0270ab0bf9e3965bfd5649cbe4ddba53e3b3606bf751b0dc0d421b3bf0a82e33e88a8dfbdb9a063bfc0e816bf3ae40bc08c28b5bf15057f3dd20a01bfb0855cbf6fb72cbf436e00c03784cebf20065fbf1a3d973e63c7c8be5e2c20bf26dcfdbf243bcebf4e94fc3e6de64b3f0b04b3beab5c24bf8e5905c0db46c7bf767f1f3f580b32bf3d44b73ebc072cbfb75d04c09cbabebf0920033f1d0042bf9ef0ce3e25ca12bf8db0fcbfb224b8bf670b793f4ef4533e5c6bd4bdddcd13bf90d501c0bbb3cabffffc7f3fcbf500bc00c8b23bab5c24bf8e5905c0db46c7bf62b770bf0af19cbec578173ee86b1ebfd78500c0db4bd2bf57f1b53ec27d103fefbd3ebf809e1ebf978e06c0696ad9bf3727793ebc97623e2ac271bf0da92ebf854006c042e2d6bf21627dbfd0a9acbdbf91ebbdd26e24bf309a07c0a57ecabf4dcd1f3fe664e0be2990253f3a5710bf61a507c01a0dd4bf8be46f3f0c4e8dbea1ee5a3ed26e24bf309a07c0a57ecabf94936dbfc39c44be3b6ea33edd5c28bf46590ac06f5fd3bf110249bf6efefdbe27c6bdbe7fa11bbf28280bc07ce8d2bf2f95b7bd1fb715bf87624ebf7ae324bf79ac0ac00a46cdbfac71273f3c3fbfbe6d63283fd26e24bf309a07c0a57ecabf99f0253fead7aabe16392f3f7fa11bbf28280bc07ce8d2bf8cd93c3fecbd21bfd3ae73be7ae324bf79ac0ac00a46cdbfafee75bf7e35acbd617f873ee71709bfa27714c021e0b4bf1020f83eaf8f3ebf9d35eb3efca5fdbef03011c0e730bbbfdf0a543fc2c7db3eec5eb8bea05215bfa92d0fc0374abebf81886ebf996e083e39e9acbe2d091cbfd11715c0a8fbb8bf252158bf2cbe04bf2cc20abec0e816bf3ae40bc08c28b5bf6159c63e74533f3f102f0abfa05215bfa92d0fc0374abebf7e4ce03e97972f3f71bf14bf32c706bfdce113c09ee5c1bf926b223f8ad945bfebb655bc37170fbff9f011c0dc5ec2bf78084fbf22e230bd902b16bfe8bb0fbf149c14c0bb57c1bf64cb4cbf727688bd43a818bf32c706bfdce113c09ee5c1bf101aec3e5bf11a3f4d1c26bf37170fbff9f011c0dc5ec2bfe930273f80fe263f0cf0c4be0ef537bff12818c05352b7bf2b26a4beb2453fbfc50b153fd74f27bf95fc17c082ddb8bf10996f3f406599be8c943d3e7d7743bf43d515c08c7fbbbf6dc165bf9cab603ec5e4c3be9eb636bf9da418c069c1bfbfdada50bebf8e70bf69988cbe94a427bf6c9316c07c79c5bf63c87c3e9cff68bf4657aabe118a31bfb33316c09f6cc6bfc33f03bf8df415bf15b220bf94a427bf6c9316c07c79c5bf864a703fdf0eb03eb392dbbce1f12dbf27e613c01c20c4bfd6ee4b3f1bc8093fb5e78cbee1f12dbf27e613c01c20c4bf76441fbf812d183feb6d02bf118a31bfb33316c09f6cc6bfe27523bfd546073fb63c0fbf1a8b5abf579210c0321bbcbf156b52bf1c3decbe23f9aa3e88644cbfef5612c02c60babfe815183f85212cbff311e23ea1f75abf139c0dc00a98c0bf55baf4be9caa043f6a8e35bf36e542bfa2270dc0dc0cc3bfe29f48be195f2d3f6a8e35bf36e542bfa2270dc0dc0cc3bfdb87713f642b78be4b81673ec7464cbfac6e11c02c21c7bf0ce72cbf80fc14bf11e5e7be157146bfc3cd12c05cbfc4bf8a15563ff81bf1be3cd08f3e174543bff3c910c05851c7bfc8414ebe9266023fea2d56bfe8bb0fbf149c14c0bb57c1bf298d4a3e68d27abfa53ff8bcacad0cbf5486ddbf40b79bbfc898b83d96b60b3ff04455bf174543bff3c910c05851c7bfa7b8703fd18d42be578c903e7fa11bbf28280bc07ce8d2bfae95453fadc020bf87b9cc3d520f21bf098a0cc0b9bdd0bf943cfc3ead332ebfccdd0abfacc626bfbd6e0cc0590dcdbfafc16ebced06c33eccab6c3f7ae324bf79ac0ac00a46cdbf579e18bf122ddc3d72ae4b3fdecc28bf11170cc0dfbed2bfaf145dbf5a949fbe55e8cabedd5c28bf46590ac06f5fd3bfe6d0e4be4231d5be27b14abfc11b26bf04020ec0aae7ccbf4598243f0dbb41bf55b9f1bda46f2abf940f0ec0ec47cebfcdc37dbf8644debdd25b99bd72a629bf2ea90dc02991c8bfda3109bf17198ebc7216583f79590fbfe52812c0f315c4bfdf931dbfde063e3f0a93873e37170fbff9f011c0dc5ec2bf61119b3e46c3733f3350233de8bb0fbf149c14c0bb57c1bf176c42bfafd621bf3c301dbe919d0fbf760814c0a7e3c5bf4090fcbeae8744bf386dd1bec11d08bfa04d13c0db63c5bf6019623fddabc53d8afceabe32c706bfdce113c09ee5c1bfc98a443fd28516bfad6282be110010bf3b3311c093a4c7bf833152bf0e60913e798bfd3e95d510bf93df11c08829c9bf8aec34be663306bfdb4255bf41ba0cbf728611c038eec8bf94f6493f6ce8193faa2e02be0b0a13bf31920fc00dbec8bfae1140be2897423f7e431fbf118a31bfb33316c09f6cc6bf5c6957bfd578ec3d4a2107bf36012ebf9b2515c03fc1c9bfff60d4be7c9e0bbf10753abf406c29bf16ad13c07bb8c8bfea44bebe1b21623fdc4c923ee1f12dbf27e613c01c20c4bf4fedc33e751a623f07cd8a3ec68a26bff18515c09b50c8bf3c0d7c3f2ffb28be48026ebd94a427bf6c9316c07c79c5bff6021d3fb59635bf41ddb1bedff929bf2cb413c03adfcbbf438bfabe61bf20becd9b5bbf8be225bff5d313c09908cbbf78c97d3fbe3bccbd199eaebd8d7d25bfe23d11c06037ccbfd156073e44a57d3fae9dedbcc7464cbfac6e11c02c21c7bf4f232fbf1a0a043f260404bffce349bfec8412c09330cbbf60d26bbfd6ca9fbebe036ebe494a42bf9b3512c0e192cbbf3150d43ea2a3643f407a32be174543bff3c910c05851c7bf803d773fab06833e9d8c2cbd579644bf29d013c05981c9bf5ea2fb3e06ae5abf05ad2d3e157146bfc3cd12c05cbfc4bf1ef752be88196abf2558b23e9ab144bf95a912c0955bcebf9e6032bff04ddcbc827e37bf378d41bfbb4f13c08477cdbf64bf2a3f63603ebf83fb3bbd022b3bbf908011c08bf3cfbf3167343fc9ca063f5b7df3be5b42c6beff3abbbf8f7c05bf9824563f8e2e0abf7e6cc1bd7348babeb8c5b6bfcf1ddcbe1a0f693f8a90d2be8c023a3db37b2ebf72b9b3bf078904bfb86a26bf2c633bbfd0e5503e5b42c6beff3abbbf8f7c05bfbdb219bece8b76bf3de5643e033ff2be522481bfee897dbf431387be4e0ae33e194a5bbfd65608bfd40699bfd42193bfab659bbe7d1e1f3fe1e038bf8ae314bfed09c6bff545a2bf19c54e3f080ab0bb77ee16bf7348babeb8c5b6bfcf1ddcbe1af82d3e601b6dbf6d55ac3e5c032fbfdd78b1bff7df92bf064643bf6186663ec92f1bbf20d32ebf4eb1a4bfa4da93bf0b392ebfa00f503e973634bf670b10bff1d4b1bfbfe797bf3af493be783b443e3d1e70bf5dfd0cbf0f25a4bf7bb898bf840d97be2a93b23e12ba63bf5dfd0cbf0f25a4bf7bb898bfe0c2253f739e3b3d25bc42bf97e3ddbe65f9a8bf57398cbfc06b443f96002a3c622824bfd65608bfd40699bfd42193bf34cc1a3f7ed99e3e73ca3bbf670b10bff1d4b1bfbfe797bf6fe32e3f9163323dd79d3abfd75022bf3079e9bf215491bf254bbbbeed0569bfbea746be70b512bf66d4eabfcfb391bfc62b35be2a4c77bf9f0441bef94b07bfdee0e5bf019f97bfd07b553f091bd3be9ad2bbbe70b512bf66d4eabfcfb391bfa45a2f3fab9833bf934749be6c2429be3c0429bf3225fa3f82563bbff77120be75cc293fd977ed3f008f463cfb294cbe105f123eb130733f32348ebeb3d2dc3fd023083e4d420b3e1453d73da9587e3f5be82ebd87a7d33f20a6d63d4383093fd67e193d9dcf793fd87c5c3e7424cf3f00b8acbb04f0473f258e00beca33403f2704263f53ae0440c07ce7bdc8bfd6bee048ad3d77f37ebf2abf02bd50c2ec3f70dc00be8ad036be2b6b343d04867fbf25c32cbd7901de3f00de19becef3193e6392d23ce6e67fbf541528bc4642cf3f60552dbe2e49523f290cbbbc19147fbfc031a7bd4642cf3f60552dbe2e49523f6997aebe388c643e70c6693f5f412e40e07cedbd72ae80bea0ad063e5604783f890857be0894214000ff863c5f39a33e7735263e021a7b3fbf2adcbd1a8b18408061b43ccb3b333f1a9ea73d620a793ffbd65d3e14ae0b402032dabdcb1a853f0e81d6bdbafc443f2949213f70b11840b00939be80ab1d3f7300abbc38c17dbfd99f05bee2af094028e584be9da7863f8cd447bdbb5a7abf17f34fbee2af094028e584be9da7863ff344b2becc19313e96dc6b3f46993f40a07891bd332bbc3e05fbf83d88197e3fed8b56bb74983940201fa2bde6ba4d3fab9fb33d08fe7a3f696e343eed992d4040fd35bd65b8463f3c7a0d3e0dbf793f82e52e3e14223840406d3ebd5d2cb53eb4f7213e97027c3f9b709dbd71033640903232bee3e9953ff7e9bc3cc81b633f87fdeb3e36592340b09520be9379903f760dca3b7224593f3495073f70b11840b00939be80ab1d3f1a8bb93ab25c7fbfa77590bdff5b2d40c0a83bbef3a03d3f70f9dd3cc79e7fbf3a7441bdff094440406906beeb0b1fbeeb77ab3932c07fbf41b034bd5f412e40e07cedbd72ae80bef96fb6ba395a7fbf5a8c91bd3fa93240209695be873d993f1192f0bde032863e8336753f6bd42140c0f891beca93943f0df553be686c583eb28a743ff9835d40b0f025be61624c3f02a902bd078a7ebff97ad0bd1d036c40309326be22f34a3e58a34ebde9a17fbfb38593bc12da824060c34abe86f52b3f5c2c97bdf7657ebfc3a8abbd9964644040b37bbe346da33ff01a983dbcf6723f70c19c3e56bc5d40605201be671d4e3f6034ec3d554f7d3f8a96b23d72c46240283d9bbebc0aa53f2d4139bdcc2a6f3e6fa6783fbc57534040bad4bd18c4b83e4004f13d22d77d3fd3865ebd53ae0440c07ce7bdc8bfd6beaa500e3e98186a3f969ec2be6bd42140c0f891beca93943fa64da93c668a7abfda4751beff5b2d40c0a83bbef3a03d3f39f86b3d7cfc78bfc3a066bef7923a4040b832be2f074a3f5942063dba3476bf14428bbe3fa93240209695be873d993f980bf63cf42177bf50b384be72c46240283d9bbebc0aa53f1e27b93cfe0476bf41188dbef9835d40b0f025be61624c3fc464da3cb4a475bf75828fbe7901de3f00de19becef3193e407e363dcf4e7fbf965c6fbdf7923a4040b832be2f074a3ff11f003d2fa97fbf105727bd1d036c40309326be22f34a3e9b3af43d7cf57d3f33f326bd12da824060c34abe86f52b3f8cd2d63d26ed7c3f254de83dc5ac8f40e892a0bee705a43f2314903da8a1783f9b08693ec5ac8f40e892a0bee705a43f08913ebdc4247abf798054be72c46240283d9bbebc0aa53f573453bc532976bf586c8cbeff094440406906beeb0b1fbe8544e03d55e97c3f4446e0bdb3d2dcbfd023083e4d420b3e1553d7bda9587e3f60e82ebdd977edbf008f463cfb294cbe115f12beb130733f32348ebe7424cfbf00b8acbb04f0473f248e003eca33403f2704263f87a7d3bf20a6d63d4383093fd67e19bd9dcf793fd67c5c3e53ae04c0c07ce7bdc8bfd6bedf48adbd77f37ebf2abf02bd50c2ecbf70dc00be8ad036be2b6b34bd05867fbf26c32cbd7901debf00de19becef3193e6192d2bce5e67fbf521528bc4642cfbf60552dbe2e49523f290cbb3c19147fbfc031a7bd4642cfbf60552dbe2e49523f6897ae3e368c643e70c6693f089421c000ff863c5f39a33e763526be021a7b3fbf2adcbd5f412ec0e07cedbd72ae80bea0ad06be5604783f890857be14ae0bc02032dabdcb1a853f0c81d63dbafc443f2949213f1a8b18c08061b43ccb3b333f1a9ea7bd640a793ffad65d3e70b118c0b00939be80ab1d3f7300ab3c38c17dbfd99f05bee2af09c028e584be9da7863f8cd4473dbb5a7abf16f34fbee2af09c028e584be9da7863ff344b23ecc19313e96dc6b3f46993fc0a07891bd332bbc3e03fbf8bd88197e3ff88b56bb142238c0406d3ebd5d2cb53eb4f721be99027c3f9d709dbded992dc040fd35bd65b8463f3c7a0dbe0dbf793f83e52e3e749839c0201fa2bde6ba4d3fab9fb3bd09fe7a3f6b6e343e365923c0b09520be9379903f680dcabb7224593f3395073f710336c0903232bee3e9953ff4e9bcbcc81b633f87fdeb3e70b118c0b00939be80ab1d3f0d8bb9bab35c7fbfa87590bd5f412ec0e07cedbd72ae80bef96fb63a395a7fbf5a8c91bdff0944c0406906beeb0b1fbe0f78abb932c07fbf43b034bdff5b2dc0c0a83bbef3a03d3f72f9ddbcc69e7fbf3d7441bd6bd421c0c0f891beca93943f0ff5533e6b6c583eb38a743f3fa932c0209695be873d993f1292f03de132863e8336753ff9835dc0b0f025be61624c3f03a9023d078a7ebffb7ad0bd1d036cc0309326be22f34a3e59a34e3de8a17fbfb48593bc12da82c060c34abe86f52b3f5c2c973df5657ebfc3a8abbd996464c040b37bbe346da33fef1a98bdbcf6723f70c19c3e56bc5dc0605201be671d4e3f6034ecbd554f7d3f8b96b23d72c462c0283d9bbebc0aa53f2d41393dcc2a6f3e6fa6783fbc5753c040bad4bd18c4b83e4104f1bd23d77d3fd3865ebd53ae04c0c07ce7bdc8bfd6beaa500ebe98186a3f969ec2be6bd421c0c0f891beca93943fa84da9bc668a7abfdd4751beff5b2dc0c0a83bbef3a03d3f3af86bbd7dfc78bfc3a066bef7923ac040b832be2f074a3f574206bdba3476bf14428bbef9835dc0b0f025be61624c3fb864dabcb4a475bf74828fbe72c462c0283d9bbebc0aa53f1927b9bcfe0476bf41188dbe3fa932c0209695be873d993f980bf6bcf42177bf50b384be7901debf00de19becef3193e3d7e36bdcf4e7fbf935c6fbdf7923ac040b832be2f074a3ff21f00bd2fa97fbf105727bd12da82c060c34abe86f52b3f8bd2d6bd26ed7c3f254de83d1d036cc0309326be22f34a3e9c3af4bd7cf57d3f33f326bdc5ac8fc0e892a0bee705a43f231490bda8a1783f9b08693ec5ac8fc0e892a0bee705a43f07913e3dc4247abf7b8054be72c462c0283d9bbebc0aa53f4834533c522976bf586c8cbeff0944c0406906beeb0b1fbe8544e0bd55e97c3f4446e0bd0000000000000000d6ad4a3fba874c3f01c0513f6bd5423f21ad613f7f69593f6ea7413f3a56393f6ec13a3f49f6403f8c11393f76c03d3f07f02e3f3df1343f3606fd3e7e57203f72fce03ed315303f7828c23eb2f61f3f4965d23eac35103fb6bba73e8e1bfe3e97c4a13ed594103ff48bd23e0813df3db5a8cf3e9019683de5eca53e586ba83d9301f83e882afc3d9964f43e981ac83d889d393fd8a00f3ecfba3a3f78ead13d302c2b3f00e4c43d2d0a2b3f7883083e0af2573f12d93f3f5f9a663f43aa543fa54d4d3f7ff82d3f323c3e3f2022253fde713a3f9ace2e3faa43de3e12bd003f6aa5e83eec83f43ec2c1023ffca40e3fe8d85d3fd6393a3f527dd73eda8bb83e1e53e73eea77b13e1902d83e3ab2d23efc17403fd432223e8194443fa83f0b3efce3413f60ecfd3dd0286d3e4a47f93e8ca1943e234d203f11e55b3efcff083fe813793ed290e13e7365c83ea8e7bd3e20ee8a3e162dc83e02849f3e22a7af3e75acd23e6e2dab3efef3b43ea264e23e177f3b3ed899e23e5beb2b3ef83cf73e08e5fd3d4691dd3efad50c3e9603cd3eae49473e7aa6cf3e0abf143e4676bd3e3bfc853e80f1a43e6c06583ef4a19b3ed1cf743ebca9903eaed3983ee435973ef4315f3ed445ba3eb56f1e3eb437b03e2e74e53d40c0aa3e1b17c93dbe6db63e0c3aa63d3a03a33e596ec43daa4d9c3e0d54263eaa13903ef1f42a3eaab48d3e081eff3dba9ca23e4e7c153eccf19a3e0ef7313ec687a13e5c99863d32c5b43e3b7f843d26dea13e0f45b13d880e993ed6b3863df8c3873e96e38a3d1c7a7b3e2ce9bd3dac04833e9eb1b43d868e8d3e2f89833d4e828f3ecb7bb13dc217963e73ad2c3d6611823efdd22c3d6c9e733ee199303d128b883ec9c1d13cbc757e3e0fe9dc3c9813743e5c18ce3cc4b0833ea8058a3ce25c833ea6db6d3c3ca97f3ef985573c8c1d7d3e72de013c2425853e477e533d782d993e8bf44c3db8c59c3ee129643dfad5943ee5f3053de063983eba490c3de8a1963e72821b3d8ed1923e9e51c43ca2e9943ec0c9db3c58fe943e8d2ade3c22a3933e8b328b3ee493553e68e87f3ee469593ea299a73e3c81203ea299a73eb0c23d3e8ae9923eec51583ea299a73eac4b4d3e78f2993e70f85d3ea299a73ec00a603ebcc99f3e8083663e8e8fa63ec848763e69c54b3f4e5c1a3ff4313b3f828b0d3f4ef02d3ffcd92f3e3a7a283f10211e3fefc7fd3e2c48e33e03b20b3fd653f33e52ee3a3f3824453eac73fc3e46b6ab3edc11ee3ea08ec73e76895e3f85402e3fdba3033f8252243f1b65f53e96cd343f24b6173fcfa2373f6e15083fd046423f7fdf033ff8f83c3fd3a0543f189b063e446b413f04d23e3eb8044c3fb0714d3e56665e3f6430163e80f0653f2058b53d27d9063f40a3483fcd05023f855f4e3fef1df53e26e1463fbcb3c63eef8f473fb0e6a83e6e6e343fd828773f70ce783ef833743f1494623edb6b6d3f5c59823ef35a693f4816403e6ea6623f64b3633e22fa693f88328c3e06d4233fe8d74e3fb0fe1f3f506d603fdd7a153fcc79623f622d163fbf62513ff6b5263f88d7653f35272b3f2e21633fa7b10d3f3817683f6bd60d3f9e085a3f00542d3f5f7f693fd09c313f52d1643fe3a6723f3292853e0762713f4e83923eca70183ff6196a3f6b2b263fefa66a3ff607223f2d756b3fa25d113fda496e3f5c59123f4e99133f6fd8123f9c4d1b3f4f3f183f60ae213f01fc1f3faa62223fb075213f3414333f42262d3f82fe423f4a602f3fc6504e3f9eb59b3e0095f13d9dda813e703aa93def1f2b3ec02cb43d59dc6f3e80a4dd3b8200193e80a4dd3ba791263e6e840d3f112cc83dbad71d3f9978bc3d863c0a3f1e53073e84bbeb3e2c9e663fe068473f7a8d613f751e493f395e513e68f3183e0cb7b73dc004ce3d56d88c3d80a4dd3b0ccc3a3e2103213fab96d43d34662e3f65a96d3faaef503feab06a3fa322523fe65a043ed4ed2c3eecb4bf3cf01adb3da43c0c3c80a4dd3b17bc583e140b343fda20f33df9853f3fab96d43d34662e3f0ccc3a3e2103213faf26773f42965d3fcba08a3d288b4b3ebc91d93dc43e993ea3cedc3dfc04883e48fc0a3eb6db863efa0d033ef2b3893ec842443eeacc853e68b0193e3cbe7d3eeaae2c3e0c6b6a3e1bba593ea0af793e438fa83d8655c43e82e2433fa88cbf3d056e0d3e0424923eca6a623f21c8653fc904483f7557563f1d93393f4b05513f7974fb3efb68713f64cbe23e1d03623ff6b2093f30636a3f59da013f095a773fa018a13e80a4dd3bb631ce3e80a4dd3bf9dcf13e80a4dd3bdb522b3fd0246a3d56f12a3f80a4dd3b86e50f3f80a4dd3ba67e3a3f6078733da96b413f80a4dd3b382d683f8692613f2386513f80c93f3de0d7503f80a4dd3b6c07433ff0056d3d2cf1883ee239833e51f5ab3ec4b1863e83fccc3d8452743ec688043e8c15653eabeae53d14147f3e7a60963d6c7a703e3e82313df49e6a3e349ddd3c24b8713e6ed4543c74697c3e546f053f14235f3f5a338d3c3f39223f5a338d3c9c330e3f5a338d3c38fb333f5a338d3cd95e433f5a338d3c38fb333f4417103fb8a8b63d87dc103f184e023e0bb5123f6c25243e9bac213e8e3c983eb5ff013e745a973e2672e13d50a58e3e11e4543f20c29f3d9142c93e3082de3e8507fd3ee0d31c3e0681ed3e18312c3e84a0173f36e5743f84d7163f0a777e3f30486e3f3804ee3d80456e3f30138c3d36c9673f609cff3dfa617c3fec58753ed6737a3f1aaa823efad57c3f503d823e26aa1f3f2ead023fff427b3f10ae043fc3d5793ffc54153f41bc663fc8b60c3fe49f6d3f7009f83ead13733fb03dd33ef8367d3ff27bdb3eba6b753ff31e1b3feaec783f58740b3f3716643ff0bc083f43ca5f3f16fd193ff452793f747bd93ecea76e3fe835be3ec214693f5ceae83ef99e793fde04f73eeeb27b3f287ac03eadbf713f1671ba3e31b2703f8ac8983e3f1b7d3fa8569f3eba6b753ff31e1b3f43ca5f3f16fd193f1c97793fcc79c63ef99e793fde04f73ec214693f5ceae83e1b9dbb3e06109e3e95f3cd3e22fe893e378e443f502f083e4aeb473f9011e93de294a13e6553423f7026a63ea6d33e3fee949e3efb3d313f1d1e9a3ea778343fe6039a3e41f4443f36cd933e6c74363fbb9c923e287f473f226e8e3efd84373feca2883e4868373fa4728b3ee65a483f10e7813e7cec463f5fef7e3e0d54363f5437a73edf6e493f431db63ef8c0463f5517a03e3ca04c3fc39e8e3e0283543f8028983e3963503fb2687a3e844c563f7f84713e1a314f3f2ecb773e18b2463f857ab23e85cf523fdb6ba93e5359543ff3589b3e42275c3fb77e923e94a25d3f7217893e6b615e3f9d4a9e3ec7ba583f9a0aa13e0cc8563fe36b6f3e101e553f01f7fc3d56b9603ff5a2b13dc53b643f959add3debad683f75e7093e3bdd663fccd4c43e8b19513f7590773eaef6643f41f3993e6423643f395f943ec03f653f57cc883e1c14673fcec28e3e344b663f94bea03e01f9623fd3c1a23e399a5b3fd49ef23da7616d3f5ef7163ed79d6b3ff7ad163e74f5683f6761ef3dc0cf6a3fa7afe73d68ae723f247f203e645b743fc2dad83d900b673f96e9073ebdc8643fe3c2113e085b693f43c5d83db1566c3fb136e63d899b723f917bda3de8996f3f6005183eef356d3fd027223e8385743f5d31b33e15fe5c3fedf5be3eb8915e3fcc245a3ec0ec5e3f8a55533e52485a3f0455433eaf954c3f49bb413e7e35533f44f9623e0187503fbcb3563edc654b3f99655f3eab21653f0cb2453e16dd5a3f56d4303eae2a5b3fb6f63e3ebff1613f6bf32f3e1cf04d3fb16b2b3e1806543fedd3413e68ac683f081e2f3eaef0623f5531253edc63613fba12213ec2f5503f7c0a203e72f7553f2349303e1e704d3fdba7333e5ad5683fa4ca9b3dba3c6c3fd94e9a3d38e3673fc29da03dad1c733faefa973d4e246f3f43098e3d5e81643f89ced23dc37f623f44af553d52f36a3f4679663dd5f5723fcb55623d44e8703f28c04b3d5d30673fc2bb413d7e34643f89019c3d75ac6c3fa0b09a3d39c36f3fdc118e3d1b6c693f1f36673d50a06c3f8db8403d7b816c3fe47e4c3d58976e3fd690983dab1c753fb7e0b63dc70d753f83075c3d80d3633f8aa2313df81b653fd927983edd8b6d3ff3009e3e7c096c3fc66e8f3ee9fb6d3f67d3893ea4ad6f3f0a64a63e8bf56a3f0e9e913ef9b4753f67ee993eab70743fdee88b3e5b4f753f77704b3df11c6c3fc95a733e718f353f1e179d3edafd733f5726d43e6ea1633f5933d23e35c96f3fc45bbf3ec5946f3f392bc23e8862663f93e3d63ef835623fb9aac43eee27633f9d46b23e65226e3f7db3ad3e3c8f6b3fa2efae3ec95e7a3ffc35c93edbf26e3fbfd5c23ee09d643fa54fdb3e1f66633fd4b7d43e4aa26f3f359bd73e09e2683f1287c43e98326a3f1937b53efd55723f3562ae3e8e1f6e3f1b2daf3e70e6703f10ebad3e1d0a7a3f425fd23e83dc613f1092d53e9e436f3fc3d4be3ed2826d3ffef1be3e80d2643f42afd73ed7fa623fafb2c63eb7d0653f6afbaf3e19b16a3f7b31b43eeea86b3f42b4ae3ed1607a3f04cbd13ebec36a3f40bfd73e2a766f3f04ffbb3e1c816f3f5663b93ec5456c3f5eb9d63e02d3613fee5dbb3edba6643f6b9eab3efd39713fb1fdac3e55696d3f096cae3ec25b7a3fc825523fb091543ecee1563f043f5a3e58e70c3fe57f463f1155083f96ed533f774c353f10af473fd786363f5f0a533f89957d3fe0b4603e008e053fc80a523f5f7e2f3f6e35533fb6142c3fc766573fb876323fd2fa5b3f3605363f78b2573f946c793ffc232c3ef0fc763ffc051b3ec407723f30c6303e5070793f844c423e616f1e3fae756d3f7bf8163fc15c723f8082773f76a88e3ec878783f1022893edd98fe3d9e2a8f3ed6ad4a3fba874c3f21ad613f7f69593f01c0513f6bd5423f6ea7413f3a56393f6ec13a3f49f6403f8c11393f76c03d3f07f02e3f3df1343f3606fd3e7e57203f4965d23eac35103f7828c23eb2f61f3f72fce03ed315303fb6bba73e8e1bfe3e97c4a13ed594103ff48bd23e0813df3de5eca53e586ba83db5a8cf3e9019683d9964f43e981ac83d9301f83e882afc3d889d393fd8a00f3e2d0a2b3f7883083e302c2b3f00e4c43dcfba3a3f78ead13d0af2573f12d93f3f5f9a663f43aa543fa54d4d3f7ff82d3f323c3e3f2022253fde713a3f9ace2e3faa43de3e12bd003fc2c1023ffca40e3f6aa5e83eec83f43ee8d85d3fd6393a3f527dd73eda8bb83e1902d83e3ab2d23e1e53e73eea77b13efc17403fd432223efce3413f60ecfd3d8194443fa83f0b3ed0286d3e4a47f93ee813793ed290e13e7365c83ea8e7bd3e75acd23e6e2dab3e02849f3e22a7af3e20ee8a3e162dc83efef3b43ea264e23e177f3b3ed899e23efad50c3e9603cd3eae49473e7aa6cf3e0abf143e4676bd3e3bfc853e80f1a43eaed3983ee435973ed1cf743ebca9903e6c06583ef4a19b3ef4315f3ed445ba3eb56f1e3eb437b03e2e74e53d40c0aa3e596ec43daa4d9c3e0c3aa63d3a03a33e1b17c93dbe6db63ef1f42a3eaab48d3e0d54263eaa13903e081eff3dba9ca23e0ef7313ec687a13e4e7c153eccf19a3e0f45b13d880e993ed6b3863df8c3873e9eb1b43d868e8d3e2ce9bd3dac04833e96e38a3d1c7a7b3e2f89833d4e828f3ecb7bb13dc217963e73ad2c3d6611823efdd22c3d6c9e733ee199303d128b883e0fe9dc3c9813743ec9c1d13cbc757e3e5c18ce3cc4b0833ea8058a3ce25c833ea6db6d3c3ca97f3ef985573c8c1d7d3e72de013c2425853e477e533d782d993ee129643dfad5943eba490c3de8a1963e72821b3d8ed1923ec0c9db3c58fe943e8d2ade3c22a3933e8b328b3ee493553e68e87f3ee469593e8ae9923eec51583e78f2993e70f85d3ebcc99f3e8083663e8e8fa63ec848763e69c54b3f4e5c1a3ff4313b3f828b0d3f4ef02d3ffcd92f3e3a7a283f10211e3f03b20b3fd653f33eefc7fd3e2c48e33e52ee3a3f3824453eac73fc3e46b6ab3edc11ee3ea08ec73e76895e3f85402e3fdba3033f8252243f1b65f53e96cd343f24b6173fcfa2373f7fdf033ff8f83c3f6e15083fd046423fd3a0543f189b063eb8044c3fb0714d3e446b413f04d23e3e80f0653f2058b53d56665e3f6430163ecd05023f855f4e3f27d9063f40a3483fef1df53e26e1463fd828773f70ce783edb6b6d3f5c59823ef833743f1494623ef35a693f4816403e22fa693f88328c3e6ea6623f64b3633e06d4233fe8d74e3f622d163fbf62513fdd7a153fcc79623fb0fe1f3f506d603ff6b5263f88d7653f35272b3f2e21633f6bd60d3f9e085a3fa7b10d3f3817683f00542d3f5f7f693fd09c313f52d1643fe3a6723f3292853e0762713f4e83923eca70183ff6196a3f6b2b263fefa66a3ff607223f2d756b3fa25d113fda496e3f5c59123f4e99133f6fd8123f9c4d1b3f4f3f183f60ae213fb075213f3414333f01fc1f3faa62223f4a602f3fc6504e3f42262d3f82fe423f9eb59b3e0095f13d9dda813e703aa93def1f2b3ec02cb43da791263e6e840d3f1e53073e84bbeb3e9978bc3d863c0a3f112cc83dbad71d3f2c9e663fe068473f7a8d613f751e493f395e513e68f3183e0cb7b73dc004ce3d0ccc3a3e2103213fab96d43d34662e3f65a96d3faaef503feab06a3fa322523fe65a043ed4ed2c3eecb4bf3cf01adb3d17bc583e140b343f0ccc3a3e2103213fab96d43d34662e3fda20f33df9853f3faf26773f42965d3fcba08a3d288b4b3ebc91d93dc43e993ea3cedc3dfc04883e48fc0a3eb6db863efa0d033ef2b3893ec842443eeacc853e68b0193e3cbe7d3e82e2433fa88cbf3d056e0d3e0424923e59da013f095a773ff6b2093f30636a3fdb522b3fd0246a3da67e3a3f6078733d2386513f80c93f3d6c07433ff0056d3dabeae53d14147f3e546f053f14235f3f4417103fb8a8b63d87dc103f184e023e0bb5123f6c25243e9bac213e8e3c983eb5ff013e745a973e2672e13d50a58e3e11e4543f20c29f3d9142c93e3082de3e8507fd3ee0d31c3e0681ed3e18312c3e84d7163f0a777e3f84a0173f36e5743f30486e3f3804ee3d36c9673f609cff3d80456e3f30138c3dfa617c3fec58753efad57c3f503d823ed6737a3f1aaa823e26aa1f3f2ead023fff427b3f10ae043fe49f6d3f7009f83e41bc663fc8b60c3fc3d5793ffc54153ff8367d3ff27bdb3ead13733fb03dd33eba6b753ff31e1b3f43ca5f3f16fd193f3716643ff0bc083feaec783f58740b3ff452793f747bd93ef99e793fde04f73ec214693f5ceae83ecea76e3fe835be3eeeb27b3f287ac03eadbf713f1671ba3e3f1b7d3fa8569f3e31b2703f8ac8983eba6b753ff31e1b3f43ca5f3f16fd193f1c97793fcc79c63ec214693f5ceae83ef99e793fde04f73e1b9dbb3e06109e3e4aeb473f9011e93d378e443f502f083ee294a13e6553423f1d1e9a3ea778343fee949e3efb3d313f7026a63ea6d33e3fe6039a3e41f4443f36cd933e6c74363fbb9c923e287f473fa4728b3ee65a483feca2883e4868373f226e8e3efd84373f10e7813e7cec463f5fef7e3e0d54363f5437a73edf6e493f431db63ef8c0463f5517a03e3ca04c3fc39e8e3e0283543f8028983e3963503fb2687a3e844c563f7f84713e1a314f3f2ecb773e18b2463f857ab23e85cf523fdb6ba93e5359543ff3589b3e42275c3fb77e923e94a25d3f7217893e6b615e3f9d4a9e3ec7ba583f9a0aa13e0cc8563fe36b6f3e101e553f01f7fc3d56b9603f75e7093e3bdd663f959add3debad683ff5a2b13dc53b643fccd4c43e8b19513f7590773eaef6643f41f3993e6423643f395f943ec03f653f57cc883e1c14673fcec28e3e344b663fd3c1a23e399a5b3f94bea03e01f9623fd49ef23da7616d3f6761ef3dc0cf6a3ff7ad163e74f5683f5ef7163ed79d6b3f247f203e645b743fa7afe73d68ae723fc2dad83d900b673f43c5d83db1566c3fe3c2113e085b693f96e9073ebdc8643fb136e63d899b723fd027223e8385743f6005183eef356d3f917bda3de8996f3f5d31b33e15fe5c3fedf5be3eb8915e3fcc245a3ec0ec5e3f8a55533e52485a3f0455433eaf954c3fbcb3563edc654b3f44f9623e0187503f49bb413e7e35533f99655f3eab21653f0cb2453e16dd5a3f56d4303eae2a5b3fb6f63e3ebff1613f6bf32f3e1cf04d3fb16b2b3e1806543fedd3413e68ac683f081e2f3eaef0623f5531253edc63613fba12213ec2f5503f2349303e1e704d3f7c0a203e72f7553fdba7333e5ad5683fa4ca9b3dba3c6c3fd94e9a3d38e3673fc29da03dad1c733faefa973d4e246f3f89ced23dc37f623f43098e3d5e81643f44af553d52f36a3f4679663dd5f5723fcb55623d44e8703f28c04b3d5d30673fc2bb413d7e34643f89019c3d75ac6c3fa0b09a3d39c36f3fdc118e3d1b6c693f1f36673d50a06c3fe47e4c3d58976e3f8db8403d7b816c3fd690983dab1c753fb7e0b63dc70d753f83075c3d80d3633f8aa2313df81b653fd927983edd8b6d3ff3009e3e7c096c3fc66e8f3ee9fb6d3f67d3893ea4ad6f3f0a64a63e8bf56a3f0e9e913ef9b4753f67ee993eab70743fdee88b3e5b4f753f77704b3df11c6c3fc95a733e718f353f1e179d3edafd733f5726d43e6ea1633f392bc23e8862663fc45bbf3ec5946f3f5933d23e35c96f3fb9aac43eee27633f93e3d63ef835623f9d46b23e65226e3f7db3ad3e3c8f6b3fa2efae3ec95e7a3ffc35c93edbf26e3fd4b7d43e4aa26f3fa54fdb3e1f66633fbfd5c23ee09d643f1287c43e98326a3f359bd73e09e2683f1937b53efd55723f3562ae3e8e1f6e3f1b2daf3e70e6703f10ebad3e1d0a7a3f425fd23e83dc613ffef1be3e80d2643fc3d4be3ed2826d3f1092d53e9e436f3fafb2c63eb7d0653f42afd73ed7fa623f6afbaf3e19b16a3f7b31b43eeea86b3f42b4ae3ed1607a3f04cbd13ebec36a3f5663b93ec5456c3f04ffbb3e1c816f3f40bfd73e2a766f3fee5dbb3edba6643f5eb9d63e02d3613f6b9eab3efd39713fb1fdac3e55696d3f096cae3ec25b7a3fcee1563f043f5a3ec825523fb091543e58e70c3fe57f463f1155083f96ed533f774c353f10af473fd786363f5f0a533f89957d3fe0b4603e008e053fc80a523fb6142c3fc766573f5f7e2f3f6e35533fb876323fd2fa5b3f3605363f78b2573f946c793ffc232c3ec407723f30c6303ef0fc763ffc051b3e5070793f844c423e616f1e3fae756d3f7bf8163fc15c723fc878783f1022893e8082773f76a88e3edd98fe3d9e2a8f3e5b23523f0838003fda1f583f001dde3e33c15c3fecf7c43e6170613f22ada93e902f413f9529063f2253523f3e79003f7313593f48ddd63e1fbe603f724cae3e1216613fbc38913e807e2f3f8e26e73e99f3383f342fc73e2784423f463faa3eb9fc4b3f6af28c3e05323f3f9c8baf3ee0bc4c3f5ce0923eba654b3fd0b97b3eb492263faef7b33e09a52b3fbc5a963eed9d353fce899d3ee4832a3f3657b53e3d0b323fe02d703e9dd63d3f52b6803e05323f3f9c8baf3e226d333f9eef9f3ea037213f3c6dd53e807e2f3f8e26e73ef758323f642c633e728c3c3fcc606c3e47ac193f8a708b3ed7db063fc874c03e1151f43e622c933e7d05153f14204a3eee95193f4ed48a3e8926143f80ed403e7a1a1c3fa800b03e902f413f9529063fc51e3e3f30ed833e226d333f9eef9f3e2b172a3fee74973e6f9d333f687a793ecc7e153fd458523e47ac193f8a708b3e7313593f48ddd63e2b172a3fee74973ed7db063fc874c03e1151f43e622c933eab25dd3ec470353eab25dd3ec470353ecc7e153fd458523ea037213f3c6dd53eda1f583f001dde3e5b23523f0838003f6170613f22ada93e33c15c3fecf7c43e902f413f9529063f2253523f3e79003f7313593f48ddd63e1fbe603f724cae3e1216613fbc38913e99f3383f342fc73e807e2f3f8e26e73eb9fc4b3f6af28c3e2784423f463faa3e05323f3f9c8baf3ee0bc4c3f5ce0923eba654b3fd0b97b3eb492263faef7b33ee4832a3f3657b53eed9d353fce899d3e09a52b3fbc5a963e9dd63d3f52b6803e3d0b323fe02d703e05323f3f9c8baf3e807e2f3f8e26e73ea037213f3c6dd53e226d333f9eef9f3e728c3c3fcc606c3ef758323f642c633e47ac193f8a708b3ed7db063fc874c03e1151f43e622c933e7d05153f14204a3eee95193f4ed48a3e8926143f80ed403e7a1a1c3fa800b03e902f413f9529063fc51e3e3f30ed833e226d333f9eef9f3e2b172a3fee74973e47ac193f8a708b3ecc7e153fd458523e6f9d333f687a793e7313593f48ddd63e2b172a3fee74973e1151f43e622c933ed7db063fc874c03eab25dd3ec470353eab25dd3ec470353ecc7e153fd458523ea037213f3c6dd53e00000000000000000000803f000000000000000000000000050000000400000006000000000000000000403fd8ab713e6442653c000000000500000006000000040000000000000089d4053fed56f43e000000000000000005000000060000000000000000000000b28d053f9ce4f43e0000000000000000040000000500000000000000000000004f8a053f61ebf43e00000000000000000400000005000000000000000000000098251e3fcfb4c33e0000000000000000040000000500000000000000000000000000803f000000000000000000000000040000000000000000000000000000005f467c3f39686e3c0000000000000000040000000700000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000006666663fcdcccc3d000000000000000001000000020000000000000000000000403c3d3f8087853e00000000000000000400000005000000000000000000000099387f3f6567473b0000000000000000050000000400000000000000000000007cc53e3f8f19813e29bc2d3b00000000050000000600000004000000000000009c80143fc7fed63e00000000000000001b00000001000000040000000000000002e5c53e52b89e3e6f3a3e3e0000000001000000050000001b000000040000000bd7233fea51b83e00000000000000001b000000010000001c00000000000000b81e053f90c2f53e0000000000000000010000001b0000000000000000000000b81e053f90c2f53e0000000000000000010000001b00000000000000000000000bd7233fea51b83e00000000000000001b0000000100000000000000000000007b142e3f0bd7a33e0000000000000000050000000600000000000000000000002631353fb39d953e000000000000000005000000060000000000000000000000fe2f503f08403f3e000000000000000005000000060000000000000000000000a514453f6cad6b3e000000000000000004000000050000000000000000000000ffac6f3f0798823d000000000000000004000000050000000000000000000000f6285c3f285c0f3e00000000000000000100000004000000000000000000000085eb513feb51383e0000000000000000010000001b0000000000000000000000f6285c3f64d0bd3dd9cf413d0000000001000000040000001b00000000000000ac503c3fa85e873e000000000000000005000000060000000000000000000000fea7473f0a60613e0000000000000000010000001b000000000000000000000051b81e3f5e8fc23e0000000000000000010000001b0000001c00000000000000c08e483f00c55d3e0000000000000000010000001b000000000000000000000051b81e3f5e8fc23e0000000000000000010000001b0000001c00000000000000fea7473f0a60613e0000000000000000010000001b00000000000000000000002ed67f3f3347273a0000000000000000010000001b00000000000000000000000000003f0000003f0000000000000000010000000200000000000000000000006666663fcdcccc3d0000000000000000010000000200000000000000000000002c02213fa8fbbd3e0000000000000000020000000100000000000000000000000000003f0000003f0000000000000000010000000200000000000000000000000000803f000000000000000000000000010000001b00000000000000000000006176003f3e13ff3e0000000000000000010000000200000000000000000000000000003f0000003f00000000000000000100000002000000000000000000000008132b3ff1d9a93e0000000000000000010000001b00000000000000000000000000803f00000000000000000000000001000000000000000000000000000000cdcc4c3fcdcc4c3e000000000000000002000000030000000100000000000000cdcc4c3fcdcc4c3e0000000000000000020000000300000001000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000e6524c3fcdcc4c3e00cef33a00000000020000000300000001000000000000000000803f00000000000000000000000003000000000000000000000000000000cdcc4c3fcdcc4c3e0000000000000000020000000300000001000000000000000000803f00000000000000000000000003000000000000000000000000000000cdcc4c3fcccc4c3e000000000000000003000000020000000000000000000000cdcc4c3fcdcc4c3e000000000000000002000000030000000100000000000000cdcc4c3fcdcc4c3e0000000000000000020000000300000001000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000403c3d3f8087853e0000000000000000040000000500000000000000000000003333333f9a99993e00000000000000001b00000022000000040000000100000048e13a3f6f3d8a3e00000000000000001b000000010000001c000000000000001a61393fcc3d8d3e0000000000000000040000001b00000000000000000000003333333f805e993efb63ec39000000001b000000010000001c000000000000003333333f9a99993e00000000000000001b000000010000000000000000000000e60a3e3f34ea833e00000000000000001b000000010000001c00000000000000e60a3e3f34ea833e00000000000000001b000000010000001c000000000000003333333f9a99993e00000000000000001b000000010000001c000000000000007cc53e3f8f19813e29bc2d3b00000000050000000600000004000000000000001ba0543f947f2d3e0000000000000000040000000700000000000000000000005c3a7e3f2dd2e23b0000000000000000070000000400000000000000000000000000803f000000000000000000000000070000000000000000000000000000000000803f000000000000000000000000070000000000000000000000000000000000803f000000000000000000000000070000000000000000000000000000007f957f3f9402d53a0000000000000000040000000700000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f0000000000000000000000000700000000000000000000000000000094a47e3fd27fad3b85aad9360000000007000000040000000800000000000000690e293f2de3ad3e0000000000000000040000000500000000000000000000000000803f000000000000000000000000070000000000000000000000000000000000803f000000000000000000000000070000000000000000000000000000000000803f00000000000000000000000004000000000000000000000000000000fb557f3fab042a3b0000000000000000040000000100000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f0000000000000000000000000800000000000000000000000000000042c1773fdfeb033d0000000000000000080000000700000000000000000000000000803f00000000000000000000000008000000000000000000000000000000e32e023f39a2fb3e0000000000000000080000000700000000000000000000003548333f976f993e0000000000000000070000000800000000000000000000000000803f00000000000000000000000008000000000000000000000000000000f5aa073f15aaf03e0000000000000000080000000700000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000003013003fa0d9ff3e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000003548333f976f993e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f00000000000000000000000008000000000000000000000000000000f6285c3f496dbb3d0f96463d0000000001000000040000001b00000000000000eadf7f3f7b58003a000000000000000004000000070000000000000000000000e0024b3f7ff4533e0000000000000000070000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f00000000000000000000000007000000000000000000000000000000448b7c3ff12e5d3c0000000000000000070000000800000000000000000000000600003ff4ffff3e000000000000000008000000070000000000000000000000ac503c3fa85e873e0000000000000000050000000600000000000000000000007c771a3f0911cb3e0000000000000000050000000600000000000000000000000bd7633fa447e13d000000000000000006000000050000000000000000000000e45c023f3846fb3e0000000000000000050000000600000000000000000000000bd7633fa447e13d0000000000000000060000000500000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000000bd7633fa447e13d0000000000000000060000000500000000000000000000002631353fb39d953e0000000000000000050000000600000000000000000000007b142e3f0bd7a33e0000000000000000050000000600000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f0000000000000000000000000300000000000000000000000000000008132b3ff1d9a93e0000000000000000010000001b00000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000050000000600000000000000000000000000803f0000000000000000000000000500000004000000060000000000000026bd073fb585f03e00000000000000000400000005000000000000000000000026bd073fb585f03e000000000000000004000000050000000000000000000000159c703faa3e763d000000000000000004000000050000000000000000000000690e293f2de3ad3e0000000000000000040000000500000000000000000000004f8a053f61ebf43e00000000000000000400000005000000000000000000000028ce443fe3ca603ebec73f3c00000000050000000600000004000000000000004b567c3f386d6a3c0000000000000000050000000400000000000000000000003433333f9899993e0000000000000000040000000500000001000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000400000000000000000000000000803f000000000000000000000000010000001b000000000000000000000072da7f3f6939163a0000000000000000010000001b00000000000000000000002631353fb39d953e0000000000000000050000000600000000000000000000008b44103feb76df3e0000000000000000010000000200000000000000000000000000003f0000003f000000000000000001000000020000000000000000000000fcee4e3f0f44443e0000000000000000010000001b0000000000000000000000cdcc4c3f0ec8443edb4b003c0000000003000000020000000100000000000000cdcc4c3fcdcc4c3e0000000000000000020000000300000001000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000007f957f3f9402d53a0000000000000000040000000700000000000000000000000bd7633fa447e13d0000000000000000060000000500000000000000000000002631353fb39d953e0000000000000000050000000600000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f00000000000000000000000006000000050000000000000000000000b81e053f90c2f53e0000000000000000010000001b0000000400000000000000ea02133f2bfad93e00000000000000001b0000000100000004000000000000000bd7233fea51b83e00000000000000001b0000000100000004000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000010000000200000000000000000000000000803f00000000000000000000000001000000000000000000000000000000cbc0423fd4fc743e00000000000000001b0000000100000004000000000000003333333f9a99993e00000000000000001b00000022000000040000000100000098251e3fcfb4c33e000000000000000004000000050000000000000000000000b28d053f9ce4f43e000000000000000004000000050000000000000000000000d20d683f06a4a93d6b6b2f3c000000000700000004000000080000000500000098251e3fcfb4c33e000000000000000004000000050000000000000000000000a9a17c3f1593503c1d58e03900000000070000000400000008000000050000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000003333333f9a99993e00000000000000001b0000000100000000000000000000000bd7233fea51b83e00000000000000001b000000010000000400000000000000cbc0423fd4fc743e00000000000000001b000000010000000400000000000000ddf9fe3e7b142e3ee6fb293e0000000021000000010000001b0000001c0000009f3c0c3f857c903e7b142e3e000000001c00000021000000010000001b00000043e5b23e00f39b3ed681683e000000001c0000001b000000210000000100000048e13a3f6f3d8a3e00000000000000001b000000010000001c000000000000003333333f9a99993e00000000000000001b0000002200000004000000010000003333333f9a99993e00000000000000001b000000010000000000000000000000d4c7bf3e78589b3e28d0463e00000000210000001b0000001c000000010000000000803f000000000000000000000000220000001b0000001c000000210000003333333f805e993efb63ec39000000001b000000010000001c00000000000000b3a10b3f0644aa3e1704f13d000000001c0000001b0000000100000021000000d2c2033f78e9a63ecdcf203e000000001c0000001b00000001000000210000003333333f9a99993e00000000000000001b000000010000000000000000000000e60a3e3f34ea833e00000000000000001b000000010000001c00000000000000b22e2e3f5c8f423edbb5043e000000001c0000001b0000000100000021000000b3a10b3f0644aa3e1704f13d000000001c0000001b00000001000000210000003333333f9a99993e00000000000000001b000000010000001c000000000000003333333f9a99993e00000000000000001b0000002200000004000000010000000000803f000000000000000000000000220000001b0000001c000000210000003333333f9a99993e00000000000000001b000000010000001c000000000000003333333f9a99993e00000000000000001b000000010000000000000000000000d2c2033f78e9a63ecdcf203e000000001c0000001b00000001000000210000008b44103feb76df3e0000000000000000010000000200000000000000000000000000003f0000003f000000000000000001000000020000000000000000000000fea7473f0a60613e0000000000000000010000001b00000000000000000000000000803f000000000000000000000000010000001b00000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000005fb27e3f6bd0a63b0000000000000000080000000b0000000000000000000000b67f133f9400d93e0000000000000000080000000900000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000f00000000000000000000000000803f000000000000000000000000080000000000000000000000000000001cc55a3f92eb143e000000000000000008000000090000000f000000000000004b52283f6b5baf3e0000000000000000080000000900000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f0000000000000000000000000b000000080000000c000000000000009a03543f99f12f3e00000000000000000b000000080000000c00000000000000583e163f8c1d543e12e9523e000000000d0000000f0000000800000010000000f9fc403f1d0c7c3e00000000000000000f0000000800000010000000000000009b0a523f93d5373e00000000000000000f0000000800000010000000000000002e561f3fa353c13e00000000000000000d000000080000000e000000000000002c081a3fbdc3a63eb1af943d000000000b0000000d000000080000000e0000005530133f559fd93e0000000000000000090000000800000000000000000000000000803f00000000000000000000000008000000090000000f0000000d000000c1c1113f7d7cdc3e00000000000000000e0000000d000000080000001000000028c9163fd211d23ea1bc373a000000000d0000000e0000000f00000008000000583e163f8c1d543e12e9523e000000000d0000000f00000008000000100000000000803f00000000000000000000000008000000090000000f0000000d0000000000803f00000000000000000000000008000000090000000f0000000d0000006d9a023f26cbfa3e00000000000000000f00000010000000080000000000000044b9013f778dfc3e00000000000000000f000000100000000800000000000000a04d043fbf64f73e0000000000000000100000000f0000000800000000000000d925043f4db4f73e00000000000000000f000000100000000800000000000000a04d043fbf64f73e0000000000000000100000000f00000008000000000000000000803f00000000000000000000000008000000090000000f0000000d000000dfc5323f42749a3e00000000000000000d0000000e00000008000000000000002c081a3fbdc3a63eb1af943d000000000b0000000d000000080000000e0000002e561f3fa353c13e00000000000000000d000000080000000e00000000000000e2be1a3f3d82ca3e00000000000000000d0000000e0000000800000000000000c1c1113f7d7cdc3e00000000000000000e0000000d00000008000000100000000000803f00000000000000000000000008000000090000000f0000000d000000cc3e103f6982df3e00000000000000000b0000000c00000008000000000000000000803f0000000000000000000000000b000000080000000c000000000000009a03543f99f12f3e00000000000000000b000000080000000c000000000000005501003f56fdff3e00000000000000000c0000000b0000000800000000000000bc54183f8956cf3e00000000000000000c0000000b0000000800000000000000b008003f9feeff3e00000000000000000b0000000c00000008000000000000002c081a3fbdc3a63eb1af943d000000000b0000000d000000080000000e0000000000803f00000000000000000000000008000000090000000f0000000d000000cc3e103f6982df3e00000000000000000b0000000c0000000800000000000000bc54183f8956cf3e00000000000000000c0000000b00000008000000000000008489073ff8ecf03e0000000000000000090000000a0000000800000000000000420c113f7be7dd3e0000000000000000090000000a00000008000000000000003245013f9c75fd3e0000000000000000090000000a0000000800000000000000f476233f1712b93e0000000000000000090000000a0000000800000000000000b67f133f9400d93e0000000000000000080000000900000000000000000000000000803f00000000000000000000000008000000090000000f0000000d0000003245013f9c75fd3e0000000000000000090000000a00000008000000000000000000003f0000003f0000000000000000090000000a000000080000000000000046cd553fe7ca283e00000000000000000a000000090000000000000000000000aed34c3f46b14c3e00000000000000000a0000000900000000000000000000003e076c3f0cc69f3d00000000000000000a0000000900000008000000000000009924743f6ab63d3d00000000000000000a0000000900000000000000000000003e076c3f0cc69f3d00000000000000000a0000000900000008000000000000000000803f451c523200000000000000000a0000000900000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000800000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000003e076c3f0cc69f3d00000000000000000a0000000900000008000000000000000000803f0000000000000000000000000a0000000800000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000800000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c000000080000000000000000000000bc54183f8956cf3e00000000000000000c0000000b00000008000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e0000000c00000000000000000000000000803f0000000000000000000000000e0000000c00000000000000000000000000803f0000000000000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e000000100000000000000000000000a674683fd15abc3d0000000000000000100000000f0000000000000000000000bc1c7a3f8468bc3c0000000000000000100000000f0000000000000000000000b621593f27791b3e0000000000000000100000000f0000000000000000000000d74a6e3f47a98d3d0000000000000000100000000f0000000800000000000000d74a6e3f47a98d3d0000000000000000100000000f00000008000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000800000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f451c523200000000000000000a0000000900000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000000000000000000000000000000803f0000000000000000000000000a0000000800000010000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000000000000000000000000000000803f0000000000000000000000000c0000000a00000000000000000000000000803f0000000000000000000000000c0000000a00000000000000000000000000803f0000000000000000000000000c0000000a00000000000000000000000000803f0000000000000000000000000c0000000a00000000000000000000000000803f0000000000000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e000000100000000a0000000c0000000000803f0000000000000000000000000e0000001000000000000000000000000000803f0000000000000000000000000e0000000c00000000000000000000000000803f0000000000000000000000000e0000000c00000000000000000000000000803f0000000000000000000000000e000000100000000a0000000c0000000000803f0000000000000000000000000e0000000a0000000c000000000000000000803f0000000000000000000000000e0000000c0000000a000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000a00000000000000000000000000803f000000000000000000000000070000000000000000000000000000000000803f000000000000000000000000070000000000000000000000000000000000803f000000000000000000000000070000000000000000000000000000000000803f00000000000000000000000007000000000000000000000000000000d20d683f06a4a93d6b6b2f3c0000000007000000040000000800000005000000cd0d003f67e4ff3e0000000000000000080000000700000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f0000000000000000000000000700000000000000000000000000000089911b3feedcc83e0000000000000000080000000700000000000000000000007bfb463f1412643e00000000000000000800000007000000000000000000000065e14f3f6d7a403e000000000000000008000000070000000000000000000000e9c91f3f2e6cc03e000000000000000008000000070000000000000000000000e9c91f3f2e6cc03e000000000000000008000000070000000000000000000000cd0d003f67e4ff3e000000000000000008000000070000000000000000000000347a0a3f990beb3e00000000000000000800000007000000000000000000000065e14f3f6d7a403e0000000000000000080000000700000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000050000000400000006000000000000008dd4053fe556f43e0000000000000000050000000600000000000000000000000000403f0d91613e9e77f33c00000000050000000600000004000000000000008c46613fa2cbf53d0000000000000000050000000400000000000000000000004b8a053f6bebf43e00000000000000000400000005000000000000000000000003021f3f06ac6f3eee4b143e00000000110000000400000005000000000000000000803f000000000000000000000000110000000000000000000000000000008887073ff0f0f03e0000000000000000110000000400000000000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000000000000000000000000000008887073ff0f0f03e0000000000000000110000000400000000000000000000000000803f000000000000000000000000010000000000000000000000000000006666663fcdcccc3d000000000000000001000000020000000000000000000000eb18453f529c6b3e000000000000000004000000050000000000000000000000b9c13c3f5a16853ea319333b0000000005000000060000000400000000000000c857323f71509b3e000000000000000005000000040000000000000000000000db90a73e52b89e3e5137463e000000000400000005000000230000000100000020152e3fc0d5a33e000000000000000023000000010000000400000000000000f93b443f1c106f3e0000000000000000230000000100000000000000000000005b8f423f94c2753e0000000000000000230000000100000000000000000000003c7b133f8709d93e000000000000000023000000010000000000000000000000389f4d3f2283493e0000000000000000230000000100000000000000000000007b142e3f0ad7a33e0000000000000000050000000600000000000000000000002631353fb39d953e0000000000000000050000000600000000000000000000000000803f00000000000000000000000005000000000000000000000000000000c597153f8fc2753e5dde333e00000000040000000100000005000000000000007d8cc83e3c92bc3e8fc2753e00000000050000000400000001000000000000007646703fa0987b3d00000000000000000100000023000000000000000000000031f2603fbbe4d93de94d743c0000000001000000230000000400000000000000f4e7093f1830ec3e000000000000000001000000230000000000000000000000bfa30a3f82b8ea3e000000000000000005000000060000000000000000000000389f4d3f2283493e000000000000000023000000010000000000000000000000f4e7093f1830ec3e000000000000000001000000230000000000000000000000389f4d3f2283493e000000000000000023000000010000000000000000000000389f4d3f2283493e000000000000000023000000010000000000000000000000389f4d3f2283493e000000000000000023000000010000000000000000000000389f4d3f2283493e0000000000000000230000000100000000000000000000000000003f0000003f0000000000000000010000000200000000000000000000000000003f0000003f000000000000000001000000020000000000000000000000159d073fd6c5f03e000000000000000001000000230000000000000000000000f1f2313f1e1a9c3e0000000000000000010000002300000000000000000000000000003f0000003f000000000000000001000000020000000000000000000000c20f513ff8c03b3e0000000000000000020000000100000000000000000000000000803f00000000000000000000000001000000000000000000000000000000b395303fcdcc4c3ed2b8e13d00000000020000000300000001000000000000000000803f00000000000000000000000003000000000000000000000000000000657a4c3fcdcc4c3e2bd0a43a00000000020000000300000001000000000000000000803f00000000000000000000000003000000000000000000000000000000cdcc4c3fcdcc4c3e000000000000000002000000030000000100000000000000cdcc4c3fcdcc4c3e000000000000000002000000030000000100000000000000cdcc4c3fcccc4c3e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000cdcc4c3fcdcc4c3e0000000000000000020000000300000001000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000eb18453f529c6b3e0000000000000000040000000500000000000000000000003333333f9a99993e00000000000000002a0000002300000004000000010000005b8f423f94c2753e000000000000000023000000010000002900000000000000295c0f3f5ec9833ea0fc3a3e0000000001000000040000002300000000000000295c4f3f5c8f423e000000000000000023000000010000000000000000000000dc59583f8e981e3e000000000000000023000000010000000000000000000000a1ef4b3f2183493e18cbd73b0000000023000000010000002900000024000000a1ef4b3f2183493e18cbd73b00000000230000000100000029000000240000009a99593f9999193e000000000000000023000000010000002400000000000000b9c13c3f5a16853ea319333b00000000050000000600000004000000000000003a4c683f329ebd3d0000000000000000110000000400000000000000000000009236773fdd960c3d0000000000000000110000000400000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000803f000000000000000000000000110000000000000000000000000000008d743d3fe516853e0000000000000000040000001100000000000000000000000000803f00000000000000000000000011000000000000000000000000000000ed76753f2e91283d00000000000000001100000004000000000000000000000077b40b3ff200a13e432c0f3e000000001100000004000000050000000000000095b0403f4a110b3ec658e43d00000000110000001200000004000000000000000000803f000000000000000000000000110000000000000000000000000000000000803f00000000000000000000000011000000000000000000000000000000ed76753f2e91283d0000000000000000110000000400000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f0000000000000000000000001200000000000000000000000000000082137e3f093ff63b000000000000000012000000110000000000000000000000e2933f3f3dd8803e0000000000000000120000001100000000000000000000000000803f000000000000000000000000120000000000000000000000000000006939273f2e8db13e000000000000000012000000110000000000000000000000efed453f4448683e0000000000000000120000001100000000000000000000000976333fed13993e0000000000000000120000001100000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000006939273f2e8db13e0000000000000000120000001100000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f00000000000000000000000012000000000000000000000000000000c3f5283fa1ad303e547b2b3e0000000001000000230000000400000000000000016b473ffe53623e000000000000000011000000040000000000000000000000214d7c3fc0b76c3c0000000000000000110000000400000000000000000000000000803f000000000000000000000000110000000000000000000000000000001ade193fcb43cc3e0000000000000000110000000400000000000000000000009203533fb6f1333e000000000000000012000000110000000000000000000000be45633f14d2e53d000000000000000011000000120000000000000000000000bfa30a3f82b8ea3e00000000000000000500000006000000000000000000000079771a3f0e11cb3e0000000000000000050000000600000000000000000000000bd7633fa447e13d0000000000000000060000000500000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000007b142e3f0ad7a33e0000000000000000050000000600000000000000000000002631353fb39d953e0000000000000000050000000600000000000000000000000bd7633fa447e13d0000000000000000060000000500000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000000100403ffcff7f3e0000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000500000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000f1f2313f1e1a9c3e0000000000000000010000002300000000000000000000000000803f000000000000000000000000030000000000000000000000000000004b8a053f6bebf43e00000000000000000400000005000000000000000000000077b40b3ff200a13e432c0f3e00000000110000000400000005000000000000000000803f000000000000000000000000010000000000000000000000000000000000803f000000000000000000000000010000002300000000000000000000007244103f1c77df3e00000000000000000100000002000000000000000000000068a7383f30b18e3e0000000000000000230000000100000000000000000000000000803f000000000000000000000000030000000000000000000000000000008d743d3fe516853e0000000000000000040000001100000000000000000000007c88023f08effa3e0000000000000000230000000100000004000000000000005b8f423f94c2753e0000000000000000230000000100000004000000000000005b8f423f94c2753e0000000000000000230000000100000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f00000000000000000100000002000000000000000000000051657f3f91ae1a3b00000000000000000100000023000000000000000000000085eb513fec51383e0000000000000000230000000100000004000000000000003333333f9a99993e00000000000000002a0000002300000004000000010000008c46613fa2cbf53d00000000000000000500000004000000000000000000000003021f3f06ac6f3eee4b143e000000001100000004000000050000000000000076e97c3f6ca2453c000000000000000011000000040000000500000000000000add46b3f9a5aa13d00000000000000001100000004000000050000000000000003021f3f06ac6f3eee4b143e00000000110000000400000005000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f0000000000000000000000001200000000000000000000000000000008dd483fe28b5c3e0000000000000000230000000100000000000000000000005b8f423f94c2753e0000000000000000230000000100000000000000000000009999d93e9999d93e9b99193e0000000029000000230000002400000000000000d3001c3f5bfec73e00000000000000002900000023000000000000000000000085eb513fec51383e0000000000000000230000000100000004000000000000005b8f423f94c2753e0000000000000000230000000100000029000000000000009999d93e9999d93e9b99193e00000000230000002900000024000000000000003333333f9a99993e00000000000000002a0000002300000004000000010000000000803f0000000000000000000000002a0000002900000023000000240000001111913e1111913e1111913e00000000290000002a000000230000002400000008dd483fe28b5c3e000000000000000023000000010000000000000000000000dc59583f8e981e3e000000000000000023000000010000000000000000000000295c4f3f5c8f423e0000000000000000230000000100000000000000000000009999d93e9999d93e9b99193e00000000290000002300000024000000000000009999d93e9999d93e9b99193e0000000023000000290000002400000000000000a1ef4b3f2183493e18cbd73b00000000230000000100000029000000240000009999d93e9999d93e9b99193e00000000230000002900000024000000000000009a99593f9999193e0000000000000000230000000100000024000000000000009999d93e9999d93e9b99193e00000000230000002900000024000000000000003333333f9a99993e00000000000000002a0000002300000004000000010000000000803f0000000000000000000000002a0000002900000023000000240000009a99593f9999193e0000000000000000230000000100000024000000000000009999d93e9999d93e9b99193e0000000029000000230000002400000000000000295c4f3f5c8f423e0000000000000000230000000100000000000000000000007244103f1c77df3e000000000000000001000000020000000000000000000000159d073fd6c5f03e000000000000000001000000230000000000000000000000389f4d3f2283493e0000000000000000230000000100000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f00000000000000000000000012000000170000000000000000000000e8c0183f2f7ece3e0000000000000000120000001500000017000000000000000000803f000000000000000000000000120000001700000000000000000000008eff7f3fbe19e3360000000000000000120000001900000013000000000000000000803f00000000000000000000000012000000170000000000000000000000ea41443f57f86e3e000000000000000012000000150000000000000000000000bc325a3f1035173e0000000000000000120000001500000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000170000001800000000000000000000000000803f00000000000000000000000017000000180000000000000000000000349f513f2e83393e0000000000000000190000001300000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f000000000000000000000000130000000000000000000000000000000000803f00000000000000000000000019000000170000001300000000000000abb4023faa96fa3e00000000000000001900000017000000000000000000000022c70d3fbd71e43e0000000000000000150000001200000000000000000000000000803f00000000000000000000000015000000000000000000000000000000349f513f2e83393e000000000000000019000000130000000000000000000000ebff193f2a00cc3e0000000000000000190000001a00000013000000140000005a8a403f99d67d3e00000000000000001a0000001900000018000000130000000000803f000000000000000000000000150000000000000000000000000000000000803f00000000000000000000000015000000000000000000000000000000bee35b3f0971103e0000000000000000130000001400000000000000000000008c7e573fd205223e0000000000000000130000001400000000000000000000006909443f5dda6f3e000000000000000013000000140000000000000000000000449c563fef8e253e0000000000000000130000001400000000000000000000000000803f000000000000000000000000150000000000000000000000000000006909443f5dda6f3e000000000000000013000000140000000000000000000000b6a5173f93b4d03e0000000000000000190000001a0000001700000018000000f559213f164cbd3e0000000000000000190000001a00000000000000000000000000803f00000000000000000000000019000000170000001300000000000000abb4023faa96fa3e0000000000000000190000001700000000000000000000000000803f000000000000000000000000150000000000000000000000000000005a8a403f99d67d3e00000000000000001a000000190000001800000013000000bf5c013f8346fd3e0000000000000000170000001800000000000000000000000600003ff4ffff3e0000000000000000170000001800000000000000000000000000803f000000000000000000000000170000001800000000000000000000000000803f000000000000000000000000170000001800000000000000000000000627193ff4b1cd3e0000000000000000170000001800000000000000000000000000803f00000000000000000000000015000000000000000000000000000000abb4023faa96fa3e0000000000000000190000001700000000000000000000001900003fcfffff3e000000000000000017000000180000000000000000000000bf5c013f8346fd3e0000000000000000170000001800000000000000000000000627193ff4b1cd3e0000000000000000170000001800000000000000000000001e68063fc32ff33e00000000000000001500000016000000000000000000000072c0113f1b7fdc3e0000000000000000150000001600000000000000000000006865033f3035f93e0000000000000000160000001500000000000000000000000000803f00000000000000000000000015000000000000000000000000000000e8c0183f2f7ece3e00000000000000001200000015000000170000000000000003f11b3ffb1dc83e0000000000000000150000001600000000000000000000006865033f3035f93e0000000000000000160000001500000000000000000000001300003fdbffff3e0000000000000000160000001500000000000000000000000000803f00000000000000000000000016000000150000000000000000000000891b4a3fdd91573e0000000000000000160000001500000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000180000001700000000000000000000000000803f000000000000000000000000180000001700000000000000000000000000803f000000000000000000000000180000001700000000000000000000000000803f000000000000000000000000180000001700000000000000000000000627193ff4b1cd3e0000000000000000170000001800000000000000000000000000803f000000000000000000000000180000001700000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f0000000000000000000000001a000000000000000000000000000000fe007d3f67c03f3c00000000000000001a0000001900000014000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f0000000000000000000000001a0000001800000000000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f0000000000000000000000001a0000001800000000000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f000000000000000000000000140000001300000000000000000000000000803f000000000000000000000000140000001300000000000000000000000000803f000000000000000000000000140000001300000000000000000000000000803f000000000000000000000000140000001300000000000000000000000000803f000000000000000000000000140000001300000000000000000000000000803f000000000000000000000000140000001300000000000000000000000000803f00000000000000000000000014000000130000001a000000000000000000803f00000000000000000000000014000000130000001a000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f00000000000000000000000014000000130000001a000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000001500000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000160000001400000000000000000000000000803f000000000000000000000000160000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000000000000000000000000000000000803f000000000000000000000000180000001600000000000000000000000000803f000000000000000000000000180000001600000000000000000000000000803f000000000000000000000000180000001600000000000000000000000000803f000000000000000000000000180000001600000000000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f0000000000000000000000001a0000001400000000000000000000000000803f0000000000000000000000001a0000001800000016000000000000000000803f0000000000000000000000001a0000000000000000000000000000000000803f0000000000000000000000001a0000001800000000000000000000000000803f0000000000000000000000001a0000001800000000000000000000000000803f0000000000000000000000001a0000001800000016000000140000000000803f0000000000000000000000001a0000001800000016000000000000000000803f0000000000000000000000001a0000001800000016000000000000000000803f000000000000000000000000140000001300000000000000000000000000803f000000000000000000000000140000000000000000000000000000000000803f000000000000000000000000140000000000000000000000000000000000803f00000000000000000000000014000000130000001a000000000000000000803f000000000000000000000000140000000000000000000000000000000000803f00000000000000000000000014000000130000001a000000000000000000803f000000000000000000000000140000000000000000000000000000000000803f000000000000000000000000140000000000000000000000000000000000803f000000000000000000000000140000001a00000016000000000000000000803f000000000000000000000000110000001200000000000000000000000000803f000000000000000000000000110000000000000000000000000000000000803f000000000000000000000000110000001200000000000000000000000000803f0000000000000000000000001100000012000000000000000000000076e97c3f6ca2453c00000000000000001100000004000000050000000000000093b3613f6b63f23d0000000000000000120000001100000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f00000000000000000000000011000000000000000000000000000000152c5f3fad4f033e0000000000000000120000001100000000000000000000004f455a3fc3ea163e0000000000000000120000001100000000000000000000005aa4633f2edde23d000000000000000012000000110000000000000000000000d25a5f3fb994023e000000000000000012000000110000000000000000000000d25a5f3fb994023e000000000000000012000000110000000000000000000000429e3d3f7cc3843e00000000000000001200000011000000000000000000000093b3613f6b63f23d0000000000000000120000001100000000000000000000005aa4633f2edde23d0000000000000000120000001100000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000009a99193fcccc4c3ecccc4c3e0000000021000000220000001c00000000000000c2f5283f7c14ae3e00000000000000001c000000210000000000000000000000c2f5283f7c14ae3e00000000000000001c0000002100000000000000000000000000803f0000000000000000000000001c0000002100000000000000000000000000803f00000000000000000000000022000000210000001c000000000000009a99193fcccc4c3ecccc4c3e0000000021000000220000001c00000000000000c2f5283f7c14ae3e00000000000000001c0000002100000000000000000000000000803f0000000000000000000000001c0000002100000000000000000000000000803f0000000000000000000000001c0000002100000000000000000000000000003f0000003f000000000000000022000000200000001f0000001c000000d6ad333fe9e7373e7bc1f23d000000001c0000001f000000210000001d000000d6ad333fe9e7373e7bc1f23d000000001c0000001f000000210000001d0000000000803f0000000000000000000000001c000000000000000000000000000000ed48ae3e8837ab3e8b7fa63e00000000210000001c0000001f000000000000000000803f0000000000000000000000001c0000000000000000000000000000000000803f0000000000000000000000001c00000000000000000000000000000033c2ec3ef63ea93eadfd533e000000001f0000001c0000001d000000000000005ca9b43e4316ae3e60409d3e000000001d0000001f0000001c00000000000000bf0fc43e8e1bb13eb3d48a3e000000001d0000001f0000001c000000000000006627ca3e2ccdb23e6d0b833e000000001f0000001d0000001c000000000000003cf2183f891bce3e00000000000000001c0000001d0000001f000000000000003a25263f8cb5b33e00000000000000001d0000001c0000000000000000000000ed48ae3e8837ab3e8b7fa63e00000000210000001c0000001f000000000000001ad0b83e8837ab3e5df89b3e000000001d0000001c0000001f000000000000000000003f0000003f000000000000000020000000220000001f000000210000000000003f0000003f000000000000000022000000200000001f0000001c0000007bbc093fbe75ec3ebd5a0a39000000001c0000001d0000001f00000000000000f6281c3f14aec73e00000000000000001d0000001c0000000000000000000000ec6b323f29289b3e00000000000000001d0000001f00000000000000000000000000803f000000000000000000000000200000001f0000001d000000000000000000003f0000003f00000000000000001e000000200000001d0000001f0000000000803f0000000000000000000000001d000000000000000000000000000000c2f5283f7c14ae3e00000000000000001d0000001f00000000000000000000000000803f0000000000000000000000001d0000000000000000000000000000001a56163fcb53d33e00000000000000001f0000001d00000000000000000000000000803f00000000000000000000000022000000210000001c00000000000000f6281c3f14aec73e00000000000000001d0000001c00000000000000000000001ad0b83e8837ab3e5df89b3e000000001d0000001c0000001f00000000000000d95f443fc6a4353e556f633d000000001d0000001c0000001f000000000000007bbc093fbe75ec3ebd5a0a39000000001c0000001d0000001f000000000000000000803f0000000000000000000000001d000000000000000000000000000000ec6b323f29289b3e00000000000000001d0000001f0000000000000000000000c2f5283f7c14ae3e00000000000000001c000000210000000000000000000000d95f443fc6a4353e556f633d000000001d0000001c0000001f000000000000000000803f000000000000000000000000200000001f0000001d000000000000000000003f0000003f00000000000000001e000000200000001d0000001f0000000000803f0000000000000000000000001e0000001d00000000000000000000000000803f0000000000000000000000001e0000001d00000000000000000000000000803f0000000000000000000000001d0000000000000000000000000000000000003f0000003f000000000000000020000000220000001f00000021000000692a1e3f2eabc33e00000000000000002400000029000000000000000000000066df7f3f9d69023a0000000000000000290000002a00000000000000000000000000803f000000000000000000000000240000002900000000000000000000000000803f000000000000000000000000240000002900000000000000000000000000803f0000000000000000000000002a000000290000000000000000000000ccf87f3f717ce6380000000000000000290000002a00000000000000000000004a2a673fb1adc63d00000000000000002400000029000000000000000000000090c42c3fe076a63e00000000000000002400000029000000000000000000000090c42c3fe076a63e000000000000000024000000290000000000000000000000e0a6f93e523dda3e386fb03d00000000240000002900000027000000000000000000003f0000003f00000000000000002a0000002800000027000000000000000000803f00000000000000000000000024000000290000000000000000000000c8f74b3f4cc3fa3d727ea53d000000002400000029000000270000000000000027b41a3fb197ca3e000000000000000024000000290000000000000000000000be51073f845cf13e000000000000000029000000240000000000000000000000be51073f845cf13e0000000000000000290000002400000000000000000000000000803f000000000000000000000000270000000000000000000000000000000000803f0000000000000000000000002700000000000000000000000000000035f1193f6945c63ebb053b3c00000000250000002700000024000000000000005d953a3faad1893ef4cd013b00000000250000002700000024000000000000008769203ff32cbf3e000000000000000024000000250000000000000000000000097f193feef58e3efe2ff83d000000002500000024000000270000000000000027b41a3fb197ca3e0000000000000000240000002900000000000000000000000000003f0000003f00000000000000002a0000002800000027000000000000000000803f000000000000000000000000280000002a000000270000000000000041b2243f7e9bb63e00000000000000002400000025000000000000000000000069f6233f2d13b83e000000000000000024000000250000000000000000000000f8a8193f37fac23e923d9b3c0000000025000000240000002700000000000000494c363f6e67933e0000000000000000250000002700000000000000000000000000803f000000000000000000000000280000002700000000000000000000000000003f0000003f0000000000000000280000002600000027000000250000000000803f0000000000000000000000002500000000000000000000000000000060b94a3f7f1a553e0000000000000000250000002700000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000803f000000000000000000000000270000000000000000000000000000000000803f0000000000000000000000002a00000029000000000000000000000069f6233f2d13b83e00000000000000002400000025000000000000000000000041b2243f7e9bb63e00000000000000002400000025000000000000000000000080bd1a3f55c8c83e1e565e3b0000000027000000250000002400000000000000494c363f6e67933e0000000000000000250000002700000000000000000000000000803f00000000000000000000000025000000000000000000000000000000f8a8193f37fac23e923d9b3c00000000250000002400000027000000000000004a2a673fb1adc63d00000000000000002400000029000000000000000000000080bd1a3f55c8c83e1e565e3b00000000270000002500000024000000000000000000003f0000003f0000000000000000280000002600000027000000250000000000803f000000000000000000000000280000002700000000000000000000000000803f000000000000000000000000260000002500000000000000000000000000803f000000000000000000000000260000002500000000000000000000000000803f000000000000000000000000250000000000000000000000000000000000803f000000000000000000000000280000002a0000002700000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0, y: -1.089094, z: -0.27775502} + m_Extent: {x: 4.48984, y: 1.2959532, z: 2.621605} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh.meta new file mode 100644 index 0000000000..c739cc8b0d --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b18c4e82dccb684fbee02990fc3afdd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab new file mode 100644 index 0000000000..5accf415ff --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab @@ -0,0 +1,160 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7303457112254812152 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6909541310437257850} + - component: {fileID: 1451698047070337693} + - component: {fileID: 8293477240983951783} + - component: {fileID: 1874907820469225205} + m_Layer: 0 + m_Name: "\u96D5_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6909541310437257850 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7303457112254812152} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1451698047070337693 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7303457112254812152} + m_Mesh: {fileID: 4300000, guid: 6b18c4e82dccb684fbee02990fc3afdd, type: 2} +--- !u!137 &8293477240983951783 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7303457112254812152} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 97ae23d1299e3a6459ad557351dcfa74, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 6b18c4e82dccb684fbee02990fc3afdd, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &1874907820469225205 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7303457112254812152} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 1451698047070337693} + _skinnedMeshRenderer: {fileID: 8293477240983951783} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab.meta new file mode 100644 index 0000000000..3f0e1cc491 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ddd0e2556c61277489b643d7ac0d9cd4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat new file mode 100644 index 0000000000..1673e66855 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u96D5\u7FC5_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2b48b8738d542854390a5eedb838e080, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2b48b8738d542854390a5eedb838e080, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.015 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8630336691868796987 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat.meta new file mode 100644 index 0000000000..fb6ce225db --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86034364dffa35c48b30584ae435b6f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh new file mode 100644 index 0000000000..d5d833e189 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh @@ -0,0 +1,959 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u96D5\u7FC5_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 300 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 134 + localAABB: + m_Center: {x: 0, y: -1.0295883, z: -1.3167949} + m_Extent: {x: 8.30622, y: 1.0077575, z: 2.8507152} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0 + e01: 0 + e02: 1 + e03: -0.060355537 + e10: 1 + e11: 0 + e12: 0 + e13: 0.0000000026391551 + e20: 0 + e21: 0.9999999 + e22: 0 + e23: 0.67932487 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000005960465 + e01: 0.00000026822087 + e02: 1 + e03: -1.1265773 + e10: 1 + e11: 0.000000059604645 + e12: 0.000000059604638 + e13: 0.000000022575602 + e20: -0.000000059604638 + e21: 0.9999999 + e22: -0.0000002682209 + e23: 0.67932516 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000009092993 + e01: -0.052103072 + e02: 0.9986418 + e03: -1.6550092 + e10: 1 + e11: -0.000000061914385 + e12: 0.00000008782329 + e13: -0.000000113586914 + e20: 0.000000057254436 + e21: 0.9986418 + e22: 0.052103084 + e23: 0.59390044 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.0000001198788 + e01: -0.022721553 + e02: -0.9997419 + e03: -0.083059795 + e10: 1 + e11: 0.00000006095519 + e12: 0.0000001185244 + e13: 0.00000004549484 + e20: 0.000000058246414 + e21: -0.9997419 + e22: 0.022721559 + e23: -0.6607536 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 4.705498e-10 + e01: -0.010525707 + e02: -0.9999447 + e03: -1.1628348 + e10: 1 + e11: 0.000000089405724 + e12: -4.705569e-10 + e13: -0.000000013765749 + e20: 0.00000008940573 + e21: -0.99994457 + e22: 0.010525711 + e23: -0.67498726 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000006143435 + e01: -0.131153 + e02: -0.99136215 + e03: -2.012901 + e10: 1 + e11: -0.000000033655034 + e12: -0.000000057517255 + e13: -0.00000023284197 + e20: -0.000000025820764 + e21: -0.99136215 + e22: 0.13115303 + e23: -0.43519026 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.11320345 + e01: -0.52423424 + e02: -0.8440167 + e03: -0.64701766 + e10: 0.99357176 + e11: 0.059729144 + e12: 0.09616362 + e13: -0.3901474 + e20: 0.00000015315631 + e21: -0.8494772 + e22: 0.5276258 + e23: -0.6743324 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.10422415 + e01: -0.814217 + e02: -0.57113016 + e03: -1.6813508 + e10: 0.99357164 + e11: 0.059728887 + e12: 0.09616354 + e13: -0.39014766 + e20: -0.04418499 + e21: -0.57748085 + e22: 0.8152076 + e23: -0.019632727 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.00000022802803 + e01: -0.29250532 + e02: -0.95626515 + e03: -1.9666225 + e10: 0.9999997 + e11: 0.0000000892262 + e12: 0.00000005080929 + e13: -0.62961406 + e20: 0.00000019498376 + e21: -0.9562646 + e22: 0.29250437 + e23: -1.472996 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 7.549549e-10 + e01: -0.99934816 + e02: 0.03612053 + e03: -1.9768893 + e10: 0.9999996 + e11: -0.00000016148887 + e12: 0.0000000043398387 + e13: -0.6296146 + e20: -0.00000012064892 + e21: 0.03612157 + e22: 0.9993481 + e23: 1.6956242 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.21415192 + e01: -0.9345904 + e02: -0.2840132 + e03: -2.160294 + e10: -0.06343537 + e11: -0.27684033 + e12: 0.9588203 + e13: 0.7630232 + e20: -0.9747379 + e21: 0.22335187 + e22: 0.00000009313226 + e23: 1.0593321 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.16407132 + e01: -0.51227254 + e02: -0.84300065 + e03: -2.2319992 + e10: -0.22667766 + e11: -0.8121287 + e12: 0.5376403 + e13: -0.9292313 + e20: -0.9600506 + e21: 0.27930236 + e22: 0.01712644 + e23: 1.19985 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15027383 + e01: -0.9886448 + e02: -0.00000043958426 + e03: -2.125901 + e10: 0.19710416 + e11: 0.029960135 + e12: 0.979925 + e13: 1.2706444 + e20: -0.96879673 + e21: -0.14725699 + e22: 0.19936818 + e23: 0.6338171 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.03645607 + e01: -0.7033059 + e02: -0.7099531 + e03: -2.5216522 + e10: 0.20472598 + e11: -0.7006135 + e12: 0.68354076 + e13: -0.7762103 + e20: -0.97813976 + e21: -0.12042644 + e22: 0.16952656 + e23: 0.65958655 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.268898 + e01: -0.8996372 + e02: -0.34402153 + e03: -2.5170507 + e10: 0.82965064 + e11: 0.3977772 + e12: -0.39173043 + e13: -0.36524335 + e20: 0.48925808 + e21: -0.1800815 + e22: 0.853345 + e23: 0.45541006 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.07377832 + e01: -0.6173989 + e02: -0.78318536 + e03: -2.4135044 + e10: 0.8296504 + e11: 0.39777714 + e12: -0.39173034 + e13: -0.36524302 + e20: 0.55338645 + e21: -0.67867166 + e22: 0.4828764 + e23: -1.2128565 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.14780916 + e01: -0.41486484 + e02: -0.89779735 + e03: -0.53003544 + e10: -0.98901594 + e11: 0.062001742 + e12: 0.13417652 + e13: -0.34819907 + e20: -0.00000013041274 + e21: 0.90776837 + e22: -0.4194724 + e23: 0.8218507 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.12263312 + e01: -0.8509649 + e02: -0.5107057 + e03: -1.701006 + e10: -0.9890162 + e11: 0.062001888 + e12: 0.13417661 + e13: -0.34819913 + e20: -0.082514845 + e21: 0.5215507 + e22: -0.8492215 + e23: -0.15396315 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.23561202 + e01: -0.8592905 + e02: -0.45399052 + e03: -2.5760396 + e10: -0.37341008 + e11: -0.3512401 + e12: 0.8586019 + e13: 0.18336535 + e20: -0.89724743 + e21: 0.37182134 + e22: -0.23811124 + e23: -0.2552042 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15345244 + e01: -0.35357013 + e02: -0.92273605 + e03: -2.0163522 + e10: -0.38076258 + e11: -0.8828456 + e12: 0.27496415 + e13: -1.8584092 + e20: -0.91185176 + e21: 0.30914924 + e22: -0.27010095 + e23: -0.45286694 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000007567755 + e01: -0.3925656 + e02: -0.9197245 + e03: -2.121737 + e10: -1.0000004 + e11: 0.000000051790416 + e12: 0.00000008758329 + e13: -0.63158727 + e20: -0.000000026297169 + e21: 0.91972435 + e22: -0.3925658 + e23: 1.2432426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.000000011419433 + e01: -0.99975353 + e02: -0.022217497 + e03: -2.07719 + e10: -1.0000005 + e11: 0.000000021995778 + e12: 0.00000008826042 + e13: -0.6315875 + e20: -0.000000076574125 + e21: 0.022217553 + e22: -0.99975413 + e23: -1.5708567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.22495127 + e01: -0.9476524 + e02: -0.22661203 + e03: -2.1197739 + e10: -0.97437054 + e11: -0.21878275 + e12: -0.052317422 + e13: -1.1144668 + e20: -0.000000033012554 + e21: 0.23257309 + e22: -0.9725798 + e23: -0.8382406 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.14550503 + e01: -0.43560165 + e02: -0.8883023 + e03: -2.1247628 + e10: -0.97437066 + e11: -0.21878275 + e12: -0.052317303 + e13: -1.1144665 + e20: -0.17155568 + e21: 0.87314767 + e22: -0.4562714 + e23: 1.2092459 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060546603 + e01: -0.9582464 + e02: -0.27946177 + e03: -2.421733 + e10: -0.9725518 + e11: 0.11965249 + e12: -0.19956848 + e13: -0.6919164 + e20: 0.22467394 + e21: 0.25970784 + e22: -0.9391884 + e23: -0.5317966 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.15774874 + e01: -0.2914463 + e02: -0.9434911 + e03: -1.849478 + e10: -0.972552 + e11: 0.119652726 + e12: -0.19956864 + e13: -0.6919163 + e20: 0.17105472 + e21: 0.94907534 + e22: -0.26457182 + e23: 1.935926 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.91456366 + e01: 0.29237187 + e02: -0.2794502 + e03: -0.07784885 + e10: -0.27961043 + e11: 0.95630485 + e12: 0.08543656 + e13: 0.19829732 + e20: 0.29221863 + e21: -0.00000023841855 + e22: 0.95635164 + e23: -0.80517966 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9442588 + e01: -0.117592156 + e02: 0.30748636 + e03: -1.0525054 + e10: 0.054529473 + e11: 0.9769943 + e12: 0.20617723 + e13: -0.18181151 + e20: -0.32465726 + e21: -0.17791763 + e22: 0.9289473 + e23: -0.20983559 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9980572 + e01: -0.039142277 + e02: 0.04847808 + e03: -2.654272 + e10: 0.028413028 + e11: 0.9783542 + e12: 0.20497845 + e13: -0.11236912 + e20: -0.05545208 + e21: -0.20320287 + e22: 0.9775651 + e23: -0.9675871 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9987444 + e01: -0.036251094 + e02: 0.03458324 + e03: -4.571264 + e10: 0.028413072 + e11: 0.9783542 + e12: 0.20497847 + e13: -0.11236894 + e20: -0.0412654 + e21: -0.20373854 + e22: 0.9781553 + e23: -1.0326436 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.639965 + e01: -0.02617691 + e02: -0.76795805 + e03: -1.2230978 + e10: 0.016757905 + e11: 0.9996578 + e12: -0.020109683 + e13: 0.1463927 + e20: 0.7682215 + e21: -0.000000059604638 + e22: 0.64018416 + e23: -2.92316 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.61829674 + e01: -0.27563718 + e02: -0.7360253 + e03: -2.2399154 + e10: 0.17721155 + e11: 0.96126246 + e12: -0.21112041 + e13: -0.42807215 + e20: 0.76570606 + e21: 0.00010269879 + e22: 0.6431911 + e23: -2.914259 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.16578084 + e01: -0.18223552 + e02: -0.9691784 + e03: 0.379241 + e10: 0.030725569 + e11: 0.98325515 + e12: -0.17962673 + e13: 0.07028848 + e20: 0.9856841 + e21: -0.000000044703476 + e22: 0.1686039 + e23: -1.6385378 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.18857336 + e01: -0.29230073 + e02: -0.93754995 + e03: -0.8435761 + e10: 0.05240953 + e11: 0.95631284 + e12: -0.28760904 + e13: -0.02537018 + e20: 0.98065984 + e21: 0.0050986405 + e22: 0.19565426 + e23: -1.6156397 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9538207 + e01: 0.2419219 + e02: -0.17804675 + e03: -0.20945713 + e10: 0.23781398 + e11: 0.97029585 + e12: 0.044391844 + e13: 0.23690578 + e20: 0.18349726 + e21: -0.00000023841858 + e22: -0.9830204 + e23: 0.8135123 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9455129 + e01: -0.1343198 + e02: 0.29658774 + e03: -1.3015473 + e10: -0.09106211 + e11: 0.98367894 + e12: 0.15518992 + e13: -0.22161472 + e20: -0.31259233 + e21: 0.11972613 + e22: -0.9423124 + e23: 0.19646147 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99689054 + e01: -0.06405019 + e02: 0.045915037 + e03: -2.7498026 + e10: -0.056305587 + e11: 0.9865152 + e12: 0.1536811 + e13: -0.12572521 + e20: -0.055139363 + e21: 0.15061782 + e22: -0.98705375 + e23: 0.9448591 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99794424 + e01: -0.005029484 + e02: 0.06390393 + e03: -4.627871 + e10: 0.004626259 + e11: 0.9886665 + e12: 0.1500598 + e13: 0.15709287 + e20: -0.063934535 + e21: 0.15004678 + e22: -0.98661 + e23: 0.9040458 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.56478715 + e01: -0.06104862 + e02: -0.82297635 + e03: -0.8704923 + e10: -0.0345439 + e11: 0.9981351 + e12: -0.05033561 + e13: 0.10466534 + e20: 0.82451403 + e21: -0.0000002533197 + e22: -0.5658423 + e23: 3.0716965 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.56739426 + e01: -0.25036237 + e02: -0.78446406 + e03: -1.998223 + e10: -0.1454809 + e11: 0.96815133 + e12: -0.20376213 + e13: -0.28179145 + e20: 0.81049377 + e21: -0.0014890728 + e22: -0.58574575 + e23: 3.0234432 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.2867679 + e01: -0.07845922 + e02: -0.95478237 + e03: 0.17368673 + e10: -0.039280623 + e11: 0.9967659 + e12: -0.07011147 + e13: -0.01144731 + e20: 0.9571952 + e21: 0.017398445 + e22: -0.28892207 + e23: 1.4390562 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.19919279 + e01: -0.41347346 + e02: -0.888461 + e03: -0.8239969 + e10: -0.11430174 + e11: 0.9102441 + e12: -0.39798456 + e13: -0.31209272 + e20: 0.9732722 + e21: 0.022276698 + e22: -0.22857456 + e23: 1.4971577 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.6908343, y: -1.4873401, z: -0.18858978} + m_Max: {x: 2.2438223, y: 1.4873399, z: 0.15837997} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.11532366, y: -0.20520356, z: -0.32370612} + m_Max: {x: 0.667719, y: 0.36202082, z: 0.23652527} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.10613382, y: -0.21946546, z: -0.2607056} + m_Max: {x: 0.662526, y: 0.35312063, z: 0.30512124} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.82637525, y: -0.2449407, z: -1.2210119} + m_Max: {x: 0.82637525, y: -0.2449407, z: -1.2210119} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.4568696, y: -0.7946495, z: -2.3653612} + m_Max: {x: 3.7319598, y: 0.4072098, z: 0.14323783} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.3395052, y: -0.21206391, z: -2.1071002} + m_Max: {x: 3.0811057, y: 0.7557818, z: 3.3629045} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.081967294, y: -0.13510758, z: -1.2424303} + m_Max: {x: 1.5468305, y: 0.12529956, z: 1.6771796} + - m_Min: {x: 0.6655836, y: -0.14564979, z: 1.3378716} + m_Max: {x: 0.6655836, y: -0.14564979, z: 1.3378716} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.5032358, y: -0.6858885, z: -0.12574208} + m_Max: {x: 3.6546845, y: 0.3288075, z: 2.4327068} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.22716367, y: -0.16500881, z: -3.6326885} + m_Max: {x: 2.9043565, y: 0.63529235, z: 1.998534} + - m_Min: {x: 1.3443077, y: -0.054071862, z: 0.24941361} + m_Max: {x: 1.3443077, y: -0.054071862, z: 0.24941361} + - m_Min: {x: -0.010402262, y: -0.12976599, z: -1.7367548} + m_Max: {x: 1.6175624, y: 0.112167716, z: 1.1695644} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000600050004000400070006000900080005000500060009000a000300000000000b000a000d000c000100010002000d000e000000010001000f000e0010000400050005001100100011000500080008001200110013000b00000000000e0013000f0001000c000c0014000f000b000800090009000a000b0013001200080008000b00130015000c000d000d0016001500170014000c000c00150017001a001900180018001b001a001e001d001c001c001f001e002200210020002000230022002600250024002400270026002800260027002700290028002b002a002000200021002b002c002200230023002d002c002f002e002300230020002f0031003000270027002400310030003200290029002700300033002f00200020002a0033002e0034002d002d0023002e002a002b002800280029002a0033002a002900290032003300360035002c002c002d003600370036002d002d00340037003a003900380038003b003a003d003c001c001c001d003d0040003f003e003f00400041004400430042004300440045004800470046004600490048004c004b004a004a004d004c0050004f004e004e00510050005400530052005300540055005800570056005600590058005c005b005a005a005d005c0060005f005e005f00600061006400630062006300640065006800670066006700680069006c006b006a006d006a006b0070006f006e0071006e006f007400730072007500720073007800770076007700780079007c007b007a007d007a007b0080007f007e0081007e007f00840083008200830084008500 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 134 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 8576 + _typelessdata: ba2c7c40c0a6d6be83983bbf2f64bd3d6bc7723f475b9bbe4911a34080dfc5be1142cfbe07760d3d0716783f22287abe1d036c40309326be22f34a3e061fdc3d4d6c7a3fc5dd35beff094440406906be2e0c1fbedf50213e5150753fbc5174be0378373f0879dcbef601a4bf7ed294bdfd27693fd71dd0be3220bb3f582db8be517ea2bfe10b393cecb3663f72d8ddbebf82bc3f70c01ebe445f45bf0814c7bb97b66b3f72bac7bee752543f305423be3a3030bfa3c06fbd187e693f99c6cfbe1b471640f850a1bef3328ebf6a157a3d3e806a3fd8fccabe53ae0440c07ce7bdc8bfd6bee7268a3d1ce9743f2c0191be5f412e40e07cedbd72ae80bea2e0f23dcaed753fca9480bebea44b40a8d2aebe51036dbfbc8e043e52fb6f3fdd7ca5bedb6dbb4010ac89be5317723ec90977bcaa557d3fc39112be12da824060c34abe86f52b3f6febff3c18d87f3f78a07ebcf92c9f40402a51bf01bcd5bf0ce7ae3c734f713fb097aabea2d1d540e82023bf114e9bbf54d8fdba04a1763ff34189bedd0a3d3fe2482bbf735ee3bfa02bb3bcb9ef5d3f34f1febe0b5ec03f1c6c45bf8e53f4bf811d20bb82565d3fbea000bf836924408a1925bf90d0e6bf6ac94c3dae61683f0c45d5be8b4f6b40f0623dbf122ccabf45ede83de99a693f722ac9be47e60441a8f3a7bef00504be43970abcf5037a3fbef25bbee6e8c84068c390bee52cb43f35aa44bd64247f3f839f873dc5ac8f40e892a0bee705a43f27b900bde95f7a3f140c533ec11cff4080d6b2bc7f57c43f27005ebd54517e3fb974cebd5e688a3f621d7abf8b4f77c01979833ec66f763f58f2afbd2861be3f18387cbf38f83ac0ee786a3e9d20783f10a5b8bd035b6d3ff21e53bf6d9027c01979833ec66f763f58f2afbd2104043f6a9e37bfb4ab34c0a318943e942e743f2c84a5bd00000000c8df21bff38e39c0d20c80b182e1793fe68c5ebe00000000486774bf3e5c85c0d7eeb4b1d51b783fa9497cbe5e688a3f621d7abf8b4f77c0416eee3d832e783f7b095dbe2104043f6a9e37bfb4ab34c0aeea393ead07793fc77f13beba2c7cc0c0a6d6be83983bbf2e64bdbd6bc7723f475b9bbeff0944c0406906be2e0c1fbee05021be5150753fb85174be1d036cc0309326be22f34a3e061fdcbd4d6c7a3fc4dd35be4911a3c080dfc5be1142cfbe04760dbd0716783f20287abe037837bf0879dcbef601a4bf81d2943dfd27693fd71dd0bee75254bf305423be3a3030bfa7c06f3d187e693f99c6cfbebf82bcbf70c01ebe445f45bf2b14c73b97b66b3f72bac7be3220bbbf582db8be517ea2bfe20b39bcecb3663f72d8ddbe53ae04c0c07ce7bdc8bfd6bee7268abd1ce9743f2d0191be1b4716c0f850a1bef3328ebf6c157abd3e806a3fdafccabebea44bc0a8d2aebe51036dbfbe8e04be52fb6f3fdf7ca5be5f412ec0e07cedbd72ae80bea4e0f2bdcaed753fca9480be12da82c060c34abe86f52b3f6eebffbc18d87f3f6fa07ebcdb6dbbc010ac89be5317723ec709773caa557d3fc29112bea2d1d5c0e82023bf114e9bbf1fd8fd3a04a1763ff34189bef92c9fc0402a51bf01bcd5bf07e7aebc734f713fb097aabe0b5ec0bf1c6c45bf8e53f4bf631d203b82565d3fbea000bfdd0a3dbfe2482bbf735ee3bfa22bb33cb9ef5d3f33f1febe836924c08a1925bf90d0e6bf6bc94cbdad61683f0c45d5be8b4f6bc0f0623dbf122ccabf40ede8bde89a693f722ac9be47e604c1a8f3a7bef00504be40970a3cf5037a3fbff25bbec5ac8fc0e892a0bee705a43f28b9003de95f7a3f140c533ee6e8c8c068c390bee52cb43f35aa443d64247f3f839f873dc11cffc080d6b2bc7f57c43f27005e3d54517e3fba74cebd5e688abf621d7abf8b4f77c0197983bec66f763f59f2afbd210404bf6a9e37bfb4ab34c0a31894be942e743f2c84a5bd035b6dbff21e53bf6d9027c0197983bec66f763f59f2afbd2861bebf18387cbf38f83ac0ee786abe9d20783f11a5b8bd210404bf6a9e37bfb4ab34c0adea39beae07793fc67f13be5e688abf621d7abf8b4f77c0406eeebd822e783f7a095dbe191d683f98d9b9bfec81aabf85093f3f0e92df3e74a0003fc269713f0ca7ccbf9812a1bf881a3f3fa965e23ef091fe3e3aad3b3fda33b7bf2ccf8bbf881a3f3fa965e23ef091fe3ef0db3c3f6648c9bfa39f78bfa3263f3f47c3e43e9c4dfc3e986e763f3ea8cdbf4d2890bf9822353febc9fe3df113323fc895623fc77de5bf0bcd81bf62ce2d3f2fc4d93d6cf9393ffe45403f69dcb9bfb34e70bf62ce2d3f2fc4d93d6cf9393fce6c2f3face1d0bf88025dbf5d75243f4865ac3d0800433fecbe533fd633c6bf5e5ea8bfdcd35c3fd04bcf3e9a489b3e234d5c3f1951d8bf67ae9fbfa0a3623ff523b53e89809a3e0e313e3ffe24ccbfc8c881bfdcd35c3fd04bcf3e9a489b3eea42383fe813c1bfc0738bbfaaed513f0f5af83e83849b3ebaa0763f9751e2bffd9aa0bfa6f82f3f1348f3bd376d373ff4fc593f6abbf1bf5f0297bf06412b3fc9472fbe7a2b393f12bf3a3ff4bcd3bfdd7681bfa6f82f3f1348f3bd376d373fe7c74f3f2c7ecbbfffc58bbfb973363f053907bd5060333f5c38503f7ea4f2bfb0a78dbf1aefe63e0383eebe61e3423f0f28273f6016fcbf4bc388bf58acd33ef6c701bf8da0413f3b71193ffb1addbf547f60bf1aefe63e0383eebe61e3423f9a79363f7c95d8bfad266fbf7552023f13c5cabeb0a2433fcc5e463f28cdcebfeaadb9bfc682f23edeb3523ff677a0be78436e3f10e7d1bfc0ada3bf549ae53e979a4f3ff36dc0bee6581a3f6168b5bf304298bf549ae53e979a4f3ff36dc0be6c403c3f8808b7bf6d6e8cbf4ce1ce3e08ae483f655cf1be101fe03e421feebfedb1a4bf862879bf9a8ea83de0885b3e2aaddf3ebc3cddbff063b0bf39f77abf1f1bdd3db627293e97cafb3e7d57cabff60693bf862879bf9a8ea83de0885b3e5da9ff3e6169d8bf16f18dbffc9074bf245c243d52e7953ea242f53e7c3ddbbfa145b2bf3f4e7cbf1e7d2a3e5760fabc2eab043f1a67c5bf64fcb7bf26df79bf185a533e26778cbd2bf7023fe671bcbffae890bf3f4e7cbf1e7d2a3e5760fabc7c2aff3e4e3ccdbf19a890bfef927ebf661bce3d9b55003d417ddb3ee06302c0abad90bf017b7ebf986ba73d5704933db2b9da3e976cf2bfff39a8bf159c7ebf5e41a73cbd02d13dd3a5ef3ed990dbbfbba673bf159c7ebf5e41a73cbd02d13d88b8e13e18afd1bfe8b78bbfc85c7cbf672b9ebd30c0183e191d68bf98d9b9bfec81aabf85093fbf0e92df3e74a0003f3aad3bbfda33b7bf2ccf8bbf881a3fbfa965e23ef091fe3ec26971bf0ca7ccbf9812a1bf881a3fbfa965e23ef091fe3ef0db3cbf6648c9bfa39f78bfa4263fbf47c3e43e9c4dfc3e986e76bf3ea8cdbf4d2890bf982235bfebc9fe3df013323ffe4540bf69dcb9bfb34e70bf62ce2dbf2dc4d93d6bf9393fc89562bfc77de5bf0bcd81bf62ce2dbf2dc4d93d6bf9393fce6c2fbface1d0bf88025dbf5d7524bf4565ac3d0700433fecbe53bfd633c6bf5e5ea8bfdcd35cbfd34bcf3e9a489b3e0e313ebffe24ccbfc8c881bfdcd35cbfd34bcf3e9a489b3e234d5cbf1951d8bf67ae9fbfa0a362bff623b53e89809a3eea4238bfe813c1bfc0738bbfa9ed51bf105af83e82849b3ebaa076bf9751e2bffd9aa0bfa7f82fbf1548f3bd376d373f12bf3abff4bcd3bfdd7681bfa7f82fbf1548f3bd376d373ff4fc59bf6abbf1bf5f0297bf06412bbfc6472fbe7a2b393fe7c74fbf2c7ecbbfffc58bbfb97336bf133907bd5060333f5c3850bf7ea4f2bfb0a78dbf18efe6be0483eebe61e3423f3b7119bffb1addbf547f60bf18efe6be0483eebe61e3423f0f2827bf6016fcbf4bc388bf57acd3bef7c701bf8da0413f9a7936bf7c95d8bfad266fbf745202bf14c5cabeb0a2433fcc5e46bf28cdcebfeaadb9bfc582f2bedeb3523ff577a0bee6581abf6168b5bf304298bf549ae5be989a4f3ff36dc0be78436ebf10e7d1bfc0ada3bf549ae5be989a4f3ff36dc0be6c403cbf8808b7bf6d6e8cbf4ce1cebe08ae483f655cf1be101fe0be421feebfedb1a4bf8628793f9b8ea83de0885b3e97cafbbe7d57cabff60693bf8628793f9b8ea83de0885b3e2aaddfbebc3cddbff063b0bf39f77a3f201bdd3db627293e5da9ffbe6169d8bf16f18dbffd90743f285c243d53e7953ea242f5be7c3ddbbfa145b2bf3f4e7c3f1e7d2a3e5760fabc2bf702bfe671bcbffae890bf3f4e7c3f1e7d2a3e5760fabc2eab04bf1a67c5bf64fcb7bf27df793f1a5a533e27778cbd7c2affbe4e3ccdbf19a890bfef927e3f661bce3d9b55003d417ddbbee06302c0abad90bf017b7e3f996ba73d5804933dd3a5efbed990dbbfbba673bf159c7e3f5c41a73cbd02d13db2b9dabe976cf2bfff39a8bf159c7e3f5c41a73cbd02d13d88b8e1be18afd1bfe8b78bbfc85c7c3f692b9ebd2fc0183ed7ddcc3eb2f5003f94c2003f3657253f8272033f2c84cd3eac56e63e5af6ac3e6265d43da0269a3d556b213ef0b6423e2ec9893e28c40c3ef9127a3e709e313df60a6b3e807a9b3e643fab3e6ce34f3ebaf8cb3e4acc8b3e8197a13eae44d03efddb213f960a323fd6a7183f9241de3e95f39d3e72a3343f36b0f53ea089683f0828833c484cd03dedab613dc0ca713e7855c13dfa45c93ebf81393e5e7e0f3f79ce2a3fbd15743fe258533f3e992f3f3acc2f3f7a3bea3e9eef773f66b1723f3a1e473f3099fa3eb8e7653f2c7f0a3f11e3793ffeb7ba3e787b603f486fa03e6ef74e3f5cf97c3e40862e3f6cb0c83e3a1e473f3099fa3e787b603f486fa03ed7ddcc3eb2f5003fac56e63e5af6ac3e8272033f2c84cd3e94c2003f3657253f6265d43da0269a3df9127a3e709e313d2ec9893e28c40c3e556b213ef0b6423e643fab3e6ce34f3ef60a6b3e807a9b3e8197a13eae44d03ebaf8cb3e4acc8b3ed6a7183f9241de3efddb213f960a323f36b0f53ea089683f95f39d3e72a3343fedab613dc0ca713e0828833c484cd03d7855c13dfa45c93ebf81393e5e7e0f3f79ce2a3fbd15743f3acc2f3f7a3bea3ee258533f3e992f3f9eef773f66b1723f3a1e473f3099fa3e787b603f486fa03e11e3793ffeb7ba3eb8e7653f2c7f0a3f787b603f486fa03e3a1e473f3099fa3ecfa3423dec89423fb0713d3da14c773fe8faae3eafcf443f8508b83e1a65763f7a38413d10b4423f547a413d1462773f253eaf3e8bc4443f4df6b73ef354763f34e3433d7aa7423f1b163e3d5a1b773f96e9b73ea760763f3201af3ed42b453f4529413dabb3423f45bd403d943f773fbe12b83eab46763f8b1baf3e51d9443f4529413dabb3423f45bd403d943f773fbe12b83eab46763f8b1baf3e51d9443fcfa3423dec89423fb0713d3da14c773fe8faae3eafcf443f8508b83e1a65763f34e3433d7aa7423f1b163e3d5a1b773f96e9b73ea760763f3201af3ed42b453f4529413dabb3423f45bd403d943f773fbe12b83eab46763f8b1baf3e51d9443fcfa3423dec89423fb0713d3da14c773fe8faae3eafcf443f8508b83e1a65763fcfa3423dec89423fe8faae3eafcf443fb0713d3da14c773f8508b83e1a65763f7a38413d10b4423f253eaf3e8bc4443f547a413d1462773f4df6b73ef354763f34e3433d7aa7423f96e9b73ea760763f1b163e3d5a1b773f3201af3ed42b453f4529413dabb3423fbe12b83eab46763f45bd403d943f773f8b1baf3e51d9443f4529413dabb3423fbe12b83eab46763f45bd403d943f773f8b1baf3e51d9443fcfa3423dec89423fe8faae3eafcf443fb0713d3da14c773f8508b83e1a65763f34e3433d7aa7423f96e9b73ea760763f1b163e3d5a1b773f3201af3ed42b453f4529413dabb3423fbe12b83eab46763f45bd403d943f773f8b1baf3e51d9443fcfa3423dec89423fe8faae3eafcf443fb0713d3da14c773f8508b83e1a65763f0000803f00000000000000000000000020000000000000000000000000000000cdcc4c3fcdcc4c3e0000000000000000200000001e00000000000000000000000000803f000000000000000000000000200000001f00000000000000000000000000003f0000003f0000000000000000200000002200000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000003333333f9a99993e00000000000000001b0000002200000000000000000000009a99193fcdcccc3e0000000000000000220000002000000000000000000000000000803f000000000000000000000000220000002100000000000000000000000000003f0000003f000000000000000020000000220000000000000000000000cdcc4c3fcdcc4c3e000000000000000020000000220000000000000000000000cdcc4c3fcdcc4c3e00000000000000001e0000002000000000000000000000000000003f0000003f00000000000000001e0000002000000000000000000000000000803f00000000000000000000000020000000000000000000000000000000cdcc4c3fcdcc4c3e0000000000000000200000001e00000000000000000000000000803f000000000000000000000000220000000000000000000000000000000000803f000000000000000000000000220000000000000000000000000000009a99193fcdcccc3e000000000000000022000000200000000000000000000000cdcc4c3fcdcc4c3e000000000000000020000000220000000000000000000000cdcc4c3fcdcc4c3e00000000000000001e0000002000000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000803f0000000000000000000000001e0000001d00000000000000000000000000803f0000000000000000000000001e0000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000280000000000000000000000000000000000803f000000000000000000000000280000000000000000000000000000000000803f00000000000000000000000028000000270000000000000000000000cdcc4c3fcdcc4c3e0000000000000000280000002600000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000003333333f9a99993e00000000000000002a000000230000000000000000000000bd016a3f17f2af3d00000000000000002a0000002900000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000003333333f9a99993e00000000000000002a0000002800000000000000000000003333333f9a99993e0000000000000000280000002a00000000000000000000000000003f0000003f00000000000000002a0000002800000000000000000000000000003f0000003f0000000000000000280000002600000000000000000000000000003f0000003f000000000000000028000000260000000000000000000000cdcc4c3fcdcc4c3e0000000000000000280000002600000000000000000000000000803f000000000000000000000000280000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000000000803f0000000000000000000000002a0000000000000000000000000000003333333f9a99993e00000000000000002a0000002800000000000000000000003333333f9a99993e0000000000000000280000002a00000000000000000000000000003f0000003f0000000000000000280000002600000000000000000000000000803f000000000000000000000000260000002500000000000000000000000000803f000000000000000000000000260000000000000000000000000000000000803f000000000000000000000000260000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000060000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f000000000000000000000000120000000000000000000000000000000000803f00000000000000000000000012000000000000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0, y: -1.0295883, z: -1.3167949} + m_Extent: {x: 8.30622, y: 1.0077575, z: 2.8507152} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh.meta new file mode 100644 index 0000000000..5960d8293f --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c08cfa96cbfcf44da3bd4cdbd0d0e9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab new file mode 100644 index 0000000000..82b9488dff --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab @@ -0,0 +1,160 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &562455905061171865 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1861726425634926457} + - component: {fileID: 729623961213630407} + - component: {fileID: 3119980002784657919} + - component: {fileID: 3985521240481815826} + m_Layer: 0 + m_Name: "\u96D5\u7FC5_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1861726425634926457 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562455905061171865} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &729623961213630407 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562455905061171865} + m_Mesh: {fileID: 4300000, guid: 7c08cfa96cbfcf44da3bd4cdbd0d0e9c, type: 2} +--- !u!137 &3119980002784657919 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562455905061171865} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 86034364dffa35c48b30584ae435b6f3, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 7c08cfa96cbfcf44da3bd4cdbd0d0e9c, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &3985521240481815826 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562455905061171865} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 729623961213630407} + _skinnedMeshRenderer: {fileID: 3119980002784657919} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab.meta new file mode 100644 index 0000000000..38fa004dd6 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕1/雕翅_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: af4a9c23e6961a44b8ad257a2ea0890c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab new file mode 100644 index 0000000000..8679d1b6a1 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab @@ -0,0 +1,2114 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &236109726696315444 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3792199250469584262} + m_Layer: 0 + m_Name: Bone19 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3792199250469584262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236109726696315444} + serializedVersion: 2 + m_LocalRotation: {x: -0.17180693, y: 0.7430847, z: -0.088572025, w: 0.64067346} + m_LocalPosition: {x: 0.6129895, y: 0.038055237, z: -0.10327028} + m_LocalScale: {x: 1.0000002, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 216797200395905996} + m_Father: {fileID: 6370246793948074414} + m_LocalEulerAnglesHint: {x: -7.2289696, y: 89.79444, z: -6.317127} +--- !u!1 &676771168983033967 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6370246793948074414} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6370246793948074414 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 676771168983033967} + serializedVersion: 2 + m_LocalRotation: {x: 0.05717367, y: -0.3161748, z: -0.16850851, w: 0.9318634} + m_LocalPosition: {x: 0.6272875, y: -0.0000002384186, z: 0.00000010430813} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5070147684384994544} + - {fileID: 3792199250469584262} + m_Father: {fileID: 5772812914203539479} + m_LocalEulerAnglesHint: {x: 5.5025034, y: -14.334015, z: 27.599154} +--- !u!1 &686164409691292620 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3292602729683119914} + - component: {fileID: 9072660320289785900} + m_Layer: 0 + m_Name: "\u96D51" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3292602729683119914 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 686164409691292620} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3849564266951634471} + - {fileID: 6829781641976879068} + - {fileID: 1677880631688163806} + - {fileID: 1480044670052033544} + m_Father: {fileID: 1419466904125523213} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &9072660320289785900 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 686164409691292620} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 6e074510bcef3cb479c93d8702cd50a4, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &968901665338757148 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8242342604902092966} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8242342604902092966 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 968901665338757148} + serializedVersion: 2 + m_LocalRotation: {x: -0.3821451, y: 0.5949498, z: 0.48482794, w: -0.514725} + m_LocalPosition: {x: 0.69153357, y: -0.4054012, z: 0.50012857} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1859790406866139898} + m_Father: {fileID: 2873217434745205208} + m_LocalEulerAnglesHint: {x: -9.083356, y: -95.14072, z: -76.97032} +--- !u!1 &1072336228217862353 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1668711674044395507} + m_Layer: 0 + m_Name: Bone26 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1668711674044395507 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1072336228217862353} + serializedVersion: 2 + m_LocalRotation: {x: 0.005438931, y: -0.03084543, z: -0.17356305, w: 0.9843246} + m_LocalPosition: {x: 1.1467438, y: 0.00000028312212, z: -0.0000001192093} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7937720863169737544} + m_LocalEulerAnglesHint: {x: -1.2090816, y: -2.2163992, z: -13.077705} +--- !u!1 &1139694713323064615 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4210773055987900598} + m_Layer: 0 + m_Name: Bone05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4210773055987900598 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1139694713323064615} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000059604645, y: 0.99993545, z: 0.000000029802322, w: 0.01136151} + m_LocalPosition: {x: -0.12838054, y: 0.0000000055879354, z: 0.016854761} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1377475614675660864} + - {fileID: 6917607150799635668} + - {fileID: 1521101416352375625} + m_Father: {fileID: 2873217434745205208} + m_LocalEulerAnglesHint: {x: -0.000002245252, y: 173.46689, z: 0.0000053163726} +--- !u!1 &1168721454130009995 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 618697325756339154} + m_Layer: 0 + m_Name: Bone31 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &618697325756339154 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168721454130009995} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000006705522, y: -0.19914667, z: -0.000000111758695, w: 0.9799697} + m_LocalPosition: {x: 0.8933068, y: -0.000000119209275, z: 0.00000004470349} + m_LocalScale: {x: 0.9999996, y: 1.0000001, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8533579790946451143} + - {fileID: 7995489102971776941} + - {fileID: 2640164378961565298} + - {fileID: 8308555477219814566} + m_Father: {fileID: 6917607150799635668} + m_LocalEulerAnglesHint: {x: 0.000005801289, y: -10.027251, z: -0.000006400329} +--- !u!1 &1185719307783204195 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5596640696963614402} + m_Layer: 0 + m_Name: Bone45 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5596640696963614402 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185719307783204195} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000005029142, y: -0.42022032, z: 0.000000055879354, w: 0.9074222} + m_LocalPosition: {x: 0.17679809, y: -0.0000001313165, z: 0.00000008381906} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 651730992814362182} + m_LocalEulerAnglesHint: {x: -0.000005041843, y: -49.754963, z: -0.0000003254749} +--- !u!1 &1211186709384934394 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1419466904125523213} + m_Layer: 0 + m_Name: "\u96D55" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1419466904125523213 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1211186709384934394} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3292602729683119914} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1245562436250740557 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2510392416931938433} + m_Layer: 0 + m_Name: Bone33 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2510392416931938433 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1245562436250740557} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000005681067, y: -0.60919106, z: -0.00000011513474, w: 0.79302347} + m_LocalPosition: {x: 0.18128724, y: 0.0000000027939673, z: 0.000000078231096} + m_LocalScale: {x: 0.99999976, y: 1.0000001, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8533579790946451143} + m_LocalEulerAnglesHint: {x: 0.000006029549, y: -60.909576, z: -0.00001065772} +--- !u!1 &1305701384909090377 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5269114254243438565} + m_Layer: 0 + m_Name: Bone22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5269114254243438565 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1305701384909090377} + serializedVersion: 2 + m_LocalRotation: {x: -0.10597368, y: 0.44402522, z: -0.039789002, w: 0.8888352} + m_LocalPosition: {x: 0.41807854, y: -0.0092331935, z: -0.18509729} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3204170381915132448} + m_Father: {fileID: 5070147684384994544} + m_LocalEulerAnglesHint: {x: -8.218118, y: 58.95478, z: -7.256882} +--- !u!1 &1673540930964261718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4858162342605912698} + m_Layer: 0 + m_Name: Bone48 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4858162342605912698 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1673540930964261718} + serializedVersion: 2 + m_LocalRotation: {x: 0.514556, y: 0.012158113, z: -0.06216684, w: -0.85511386} + m_LocalPosition: {x: 0.8499278, y: 0.097261846, z: 0.01642349} + m_LocalScale: {x: 0.99999994, y: 0.9999996, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5644792101773639832} + m_Father: {fileID: 5856420895907156492} + m_LocalEulerAnglesHint: {x: -54.159176, y: -21.962406, z: 54.134117} +--- !u!1 &1874090034400896822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7995489102971776941} + m_Layer: 0 + m_Name: Bone38 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7995489102971776941 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1874090034400896822} + serializedVersion: 2 + m_LocalRotation: {x: -0.70251805, y: 0.22231656, z: -0.012169004, w: -0.67594063} + m_LocalPosition: {x: 0.8159345, y: -0.027253179, z: 0.03705594} + m_LocalScale: {x: 1.0000087, y: 0.9999998, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1866891957763510799} + m_Father: {fileID: 618697325756339154} + m_LocalEulerAnglesHint: {x: 69.82066, y: -109.2575, z: -76.30043} +--- !u!1 &1950065186616626348 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 651730992814362182} + m_Layer: 0 + m_Name: Bone44 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &651730992814362182 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1950065186616626348} + serializedVersion: 2 + m_LocalRotation: {x: -0.032588452, y: -0.15912724, z: 0.16551922, w: -0.9727384} + m_LocalPosition: {x: 0.8161567, y: -0.05507668, z: -0.027108056} + m_LocalScale: {x: 0.9999997, y: 0.99999994, z: 0.99999964} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5596640696963614402} + m_Father: {fileID: 5856420895907156492} + m_LocalEulerAnglesHint: {x: 11.6148405, y: 33.866447, z: -25.709068} +--- !u!1 &2343398604091273904 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2922571134014908863} + m_Layer: 0 + m_Name: Bone42 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2922571134014908863 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2343398604091273904} + serializedVersion: 2 + m_LocalRotation: {x: -0.020581134, y: 0.30503723, z: 0.07119317, w: -0.94945264} + m_LocalPosition: {x: 0.80560565, y: -0.042435568, z: 0.11009457} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4885120737526214586} + m_Father: {fileID: 5856420895907156492} + m_LocalEulerAnglesHint: {x: -1.847856, y: -46.40165, z: -8.298194} +--- !u!1 &2356700746471467424 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7461313099431430798} + m_Layer: 0 + m_Name: HH_FX + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7461313099431430798 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2356700746471467424} + serializedVersion: 2 + m_LocalRotation: {x: -0.0024765672, y: -0.7067009, z: -0.0029870295, w: 0.7075018} + m_LocalPosition: {x: -0.9599609, y: -0.0017409236, z: 0.12775742} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2873217434745205208} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2761568623259446487 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3849564266951634471} + - component: {fileID: 3593288152182847153} + - component: {fileID: 1761531043090768729} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &3849564266951634471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2761568623259446487} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3292602729683119914} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3593288152182847153 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2761568623259446487} + m_Mesh: {fileID: 0} +--- !u!137 &1761531043090768729 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2761568623259446487} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &2809337315257319321 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1866891957763510799} + m_Layer: 0 + m_Name: Bone39 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1866891957763510799 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2809337315257319321} + serializedVersion: 2 + m_LocalRotation: {x: 0.010563761, y: -0.028254107, z: -0.35004812, w: 0.936246} + m_LocalPosition: {x: 0.20202419, y: -0.000000007450582, z: 0.0000052452087} + m_LocalScale: {x: 0.9999997, y: 1.0000001, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7995489102971776941} + m_LocalEulerAnglesHint: {x: -0.0000016106692, y: -3.4570994, z: -32.944107} +--- !u!1 &2997685535048669120 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3204170381915132448} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3204170381915132448 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2997685535048669120} + serializedVersion: 2 + m_LocalRotation: {x: 0.0002474263, y: -0.0019451675, z: -0.1261987, w: 0.9920031} + m_LocalPosition: {x: 1.0412056, y: -0.00000002980233, z: 0.00000029802322} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5269114254243438565} + m_LocalEulerAnglesHint: {x: -0.012630826, y: -0.22376561, z: -10.868578} +--- !u!1 &3101178482271246942 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6917607150799635668} + m_Layer: 0 + m_Name: Bone04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6917607150799635668 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3101178482271246942} + serializedVersion: 2 + m_LocalRotation: {x: -0.014932682, y: -0.26297134, z: 0.054690868, w: 0.9631366} + m_LocalPosition: {x: 0.08987417, y: 0.46088415, z: 0.22426069} + m_LocalScale: {x: 0.99999976, y: 1.0000001, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 618697325756339154} + m_Father: {fileID: 4210773055987900598} + m_LocalEulerAnglesHint: {x: -1.2468346, y: -12.627349, z: 2.755961} +--- !u!1 &3174429637633442020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1826490467727421733} + m_Layer: 0 + m_Name: Bone02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1826490467727421733 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3174429637633442020} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000029802322, y: 0.00000013411045, z: 0.000000029802322, w: -1} + m_LocalPosition: {x: 1.066222, y: -0.00000004659477, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 951237150592659260} + m_Father: {fileID: 2873217434745205208} + m_LocalEulerAnglesHint: {x: -0.101281285, y: 8.11729, z: -0.008080799} +--- !u!1 &3360513534731427326 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7937720863169737544} + m_Layer: 0 + m_Name: Bone25 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7937720863169737544 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3360513534731427326} + serializedVersion: 2 + m_LocalRotation: {x: 0.11200983, y: -0.70702946, z: -0.029276444, w: 0.6976433} + m_LocalPosition: {x: 0.12644608, y: -0.010540235, z: 0.06431465} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1668711674044395507} + m_Father: {fileID: 1859790406866139898} + m_LocalEulerAnglesHint: {x: 2.4574978, y: -102.26065, z: -8.69912} +--- !u!1 &3554849128754273389 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4672360326441002460} + m_Layer: 0 + m_Name: Bone07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4672360326441002460 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3554849128754273389} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000059350953, y: -0.060466122, z: -0.000000032818186, w: 0.99817026} + m_LocalPosition: {x: 0.7828153, y: 0.000000022914717, z: 0.00000005463709} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1377475614675660864} + m_LocalEulerAnglesHint: {x: 9.3707905, y: -4.463987, z: -0.33176148} +--- !u!1 &4050014709982334134 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2873217434745205208} + m_Layer: 0 + m_Name: Bone01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2873217434745205208 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4050014709982334134} + serializedVersion: 2 + m_LocalRotation: {x: -0.5, y: -0.5, z: -0.5, w: 0.5} + m_LocalPosition: {x: -0.0000000026391551, y: -0.6793249, z: 0.060355537} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1826490467727421733} + - {fileID: 4210773055987900598} + - {fileID: 5772812914203539479} + - {fileID: 8242342604902092966} + - {fileID: 7461313099431430798} + m_Father: {fileID: 6829781641976879068} + m_LocalEulerAnglesHint: {x: -88.105576, y: 0.97572696, z: -90.91148} +--- !u!1 &4924149002954092579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8533579790946451143} + m_Layer: 0 + m_Name: Bone32 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8533579790946451143 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4924149002954092579} + serializedVersion: 2 + m_LocalRotation: {x: -0.0040223133, y: 0.32348984, z: -0.05654983, w: 0.94453186} + m_LocalPosition: {x: 0.82752365, y: -0.022484759, z: -0.08368303} + m_LocalScale: {x: 0.9999994, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2510392416931938433} + m_Father: {fileID: 618697325756339154} + m_LocalEulerAnglesHint: {x: 2.308327, y: 43.69364, z: -6.0779552} +--- !u!1 &5346596838845061897 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4311870069965083601} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4311870069965083601 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5346596838845061897} + serializedVersion: 2 + m_LocalRotation: {x: -0.0022961085, y: -0.13154557, z: 0.01730065, w: 0.9911566} + m_LocalPosition: {x: 1.593667, y: 0.00000035762793, z: 0.00000036507853} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 407126879820044803} + - {fileID: 1510499801673588942} + m_Father: {fileID: 1859790406866139898} + m_LocalEulerAnglesHint: {x: 1.1309571, y: -16.74265, z: -9.913099} +--- !u!1 &5381384421366774601 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4885120737526214586} + m_Layer: 0 + m_Name: Bone43 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4885120737526214586 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5381384421366774601} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000037252903, y: -0.54180133, z: 0.000000013504177, w: -0.8405066} + m_LocalPosition: {x: 0.16663681, y: 0.000000081956394, z: 0.00000022724271} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999964} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2922571134014908863} + m_LocalEulerAnglesHint: {x: 0.0000014503426, y: 65.51504, z: 0.00001093661} +--- !u!1 &5393250714921895143 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6829781641976879068} + m_Layer: 0 + m_Name: Box01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6829781641976879068 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5393250714921895143} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2873217434745205208} + - {fileID: 6677743402508872991} + m_Father: {fileID: 3292602729683119914} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5618512546925038478 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1521101416352375625} + m_Layer: 0 + m_Name: Bone40 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1521101416352375625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5618512546925038478} + serializedVersion: 2 + m_LocalRotation: {x: -0.9763545, y: 0.072555624, z: -0.20307593, w: 0.015091075} + m_LocalPosition: {x: 0.02277611, y: -0.42271838, z: 0.2814387} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5856420895907156492} + m_Father: {fileID: 4210773055987900598} + m_LocalEulerAnglesHint: {x: -1.3678801, y: 175.3857, z: -174.72215} +--- !u!1 &6128185890771644182 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5772812914203539479} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5772812914203539479 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6128185890771644182} + serializedVersion: 2 + m_LocalRotation: {x: 0.5000401, y: 0.49995998, z: 0.6243117, w: 0.33201647} + m_LocalPosition: {x: 0.6709825, y: 0.36193222, z: 0.5124531} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6370246793948074414} + m_Father: {fileID: 2873217434745205208} + m_LocalEulerAnglesHint: {x: -11.188493, y: 88.12874, z: 95.48906} +--- !u!1 &6751363642935704051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4561461438287759327} + m_Layer: 0 + m_Name: Bone37 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4561461438287759327 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6751363642935704051} + serializedVersion: 2 + m_LocalRotation: {x: -0.019420443, y: 0.0068752607, z: 0.3937417, w: -0.9189902} + m_LocalPosition: {x: 0.1935865, y: -0.00000049918896, z: -0.000000074505806} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2640164378961565298} + m_LocalEulerAnglesHint: {x: 1.735189, y: -1.6012156, z: -37.742004} +--- !u!1 &6903856989863021462 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5856420895907156492} + m_Layer: 0 + m_Name: Bone41 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5856420895907156492 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6903856989863021462} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000028870996, y: 0.2918291, z: 0.00000006705522, w: 0.95647043} + m_LocalPosition: {x: 0.9671911, y: 0.00000026822093, z: -0.00000011920932} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4858162342605912698} + - {fileID: 2922571134014908863} + - {fileID: 651730992814362182} + - {fileID: 1256303309846460685} + m_Father: {fileID: 1521101416352375625} + m_LocalEulerAnglesHint: {x: 0.00000042682277, y: 25.865929, z: 0.0000013286343} +--- !u!1 &6947937149283604817 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 407126879820044803} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &407126879820044803 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6947937149283604817} + serializedVersion: 2 + m_LocalRotation: {x: 0.0001347207, y: 0.0044103563, z: 0.030538285, w: 0.9995239} + m_LocalPosition: {x: 1.8708677, y: 0.00000029895455, z: 0.000000081956394} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4311870069965083601} + m_LocalEulerAnglesHint: {x: 23.267763, y: -11.274836, z: -4.8831577} +--- !u!1 &6968569937219225195 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1377475614675660864} + m_Layer: 0 + m_Name: Bone06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1377475614675660864 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6968569937219225195} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000015212382, y: 0.006098766, z: -0.00000005925277, w: 0.9999814} + m_LocalPosition: {x: 1.0879215, y: -0.00000005870687, z: 0.00000008940699} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4672360326441002460} + m_Father: {fileID: 4210773055987900598} + m_LocalEulerAnglesHint: {x: 0.0000028763575, y: -2.7304223, z: -0.0000045768884} +--- !u!1 &7034743965235686332 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9010954183329616563} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9010954183329616563 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7034743965235686332} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000011757949, y: 0.007104532, z: -0.0000000067811934, w: 0.9999748} + m_LocalPosition: {x: 1.9312022, y: -0.0000002605375, z: 0.00000043213362} + m_LocalScale: {x: 0.9999998, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5070147684384994544} + m_LocalEulerAnglesHint: {x: -14.92177, y: 6.702487, z: -5.1445837} +--- !u!1 &7534589822213833401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2640164378961565298} + m_Layer: 0 + m_Name: Bone36 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2640164378961565298 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7534589822213833401} + serializedVersion: 2 + m_LocalRotation: {x: 0.5564176, y: -0.21263596, z: 0.21087824, w: 0.7750585} + m_LocalPosition: {x: 0.8394334, y: 0.034396663, z: 0.01394158} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4561461438287759327} + m_Father: {fileID: 618697325756339154} + m_LocalEulerAnglesHint: {x: 72.21192, y: -18.105425, z: 24.795563} +--- !u!1 &7812224411940667701 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 216797200395905996} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &216797200395905996 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7812224411940667701} + serializedVersion: 2 + m_LocalRotation: {x: 0.00079318136, y: -0.013968229, z: -0.056687184, w: 0.998294} + m_LocalPosition: {x: 1.1747336, y: 0.00000014901161, z: 0.00000035762787} + m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3792199250469584262} + m_LocalEulerAnglesHint: {x: 0.5023883, y: -2.3016255, z: -10.134528} +--- !u!1 &8048738599889568391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5644792101773639832} + m_Layer: 0 + m_Name: Bone49 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5644792101773639832 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8048738599889568391} + serializedVersion: 2 + m_LocalRotation: {x: -0.014183907, y: 0.033013962, z: -0.39448893, w: 0.9181979} + m_LocalPosition: {x: 0.18542641, y: -0.0000004922042, z: 0.000000070780516} + m_LocalScale: {x: 1, y: 0.99999964, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4858162342605912698} + m_LocalEulerAnglesHint: {x: -0.000000690309, y: 4.118386, z: -46.70552} +--- !u!1 &8063990835459651506 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5070147684384994544} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5070147684384994544 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8063990835459651506} + serializedVersion: 2 + m_LocalRotation: {x: 0.00179803, y: 0.13735126, z: 0.012965549, w: 0.99043596} + m_LocalPosition: {x: 1.761198, y: -0.000000029802326, z: -0.000000029802319} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9010954183329616563} + - {fileID: 5269114254243438565} + m_Father: {fileID: 6370246793948074414} + m_LocalEulerAnglesHint: {x: 4.991537, y: 16.374832, z: -6.440895} +--- !u!1 &8280268695604543945 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1256303309846460685} + m_Layer: 0 + m_Name: Bone46 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1256303309846460685 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8280268695604543945} + serializedVersion: 2 + m_LocalRotation: {x: 0.16475856, y: 0.12493892, z: -0.039996173, w: 0.97757107} + m_LocalPosition: {x: 0.8428605, y: 0.037644602, z: -0.075153194} + m_LocalScale: {x: 0.99999976, y: 0.9999997, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5471671635871319037} + m_Father: {fileID: 5856420895907156492} + m_LocalEulerAnglesHint: {x: 18.915915, y: 35.821342, z: 6.4272094} +--- !u!1 &8383077819590981618 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1523801532217793141} + m_Layer: 0 + m_Name: Bone35 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1523801532217793141 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8383077819590981618} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000059604645, y: 0.31222993, z: 0.000000037252903, w: 0.9500066} + m_LocalPosition: {x: 0.14539601, y: 0.000000057741993, z: 0.00000058300805} + m_LocalScale: {x: 0.9999997, y: 1.0000002, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8308555477219814566} + m_LocalEulerAnglesHint: {x: 0.0000010295641, y: 30.829878, z: 0.000004545077} +--- !u!1 &8386102410774175325 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3067235693775358992} + m_Layer: 0 + m_Name: Bone29 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3067235693775358992 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8386102410774175325} + serializedVersion: 2 + m_LocalRotation: {x: -0.0011689736, y: 0.012139497, z: -0.095838666, w: 0.9953222} + m_LocalPosition: {x: 1.070446, y: -0.000000059604645, z: 0.0000001788139} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1510499801673588942} + m_LocalEulerAnglesHint: {x: -3.6002188, y: 1.395724, z: -9.323327} +--- !u!1 &8418230998870457902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6677743402508872991} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6677743402508872991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8418230998870457902} + serializedVersion: 2 + m_LocalRotation: {x: -0.0038633354, y: 0.00056633406, z: -0.00036096195, w: 0.9999923} + m_LocalPosition: {x: -0.06530468, y: 0.57669836, z: -0.03839636} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6829781641976879068} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8572639596196495737 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1859790406866139898} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1859790406866139898 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8572639596196495737} + serializedVersion: 2 + m_LocalRotation: {x: -0.044449877, y: 0.2520878, z: -0.16786271, w: 0.95199686} + m_LocalPosition: {x: 0.8219537, y: 0.00000017881396, z: 0} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4311870069965083601} + - {fileID: 7937720863169737544} + m_Father: {fileID: 8242342604902092966} + m_LocalEulerAnglesHint: {x: -9.762403, y: 16.568262, z: 17.869884} +--- !u!1 &8664715410591089541 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5471671635871319037} + m_Layer: 0 + m_Name: Bone47 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5471671635871319037 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8664715410591089541} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000001192093, y: -0.48301366, z: 0.000000044703487, w: 0.87561285} + m_LocalPosition: {x: 0.20230329, y: 0.00000009685758, z: 0.0000000046566146} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.99999964} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1256303309846460685} + m_LocalEulerAnglesHint: {x: -0.000006495663, y: -57.86776, z: 0.000006282925} +--- !u!1 &8718865751379675119 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 951237150592659260} + m_Layer: 0 + m_Name: Bone03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &951237150592659260 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8718865751379675119} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000006037119, y: -0.026060522, z: 0.00000001568794, w: -0.9996604} + m_LocalPosition: {x: 0.4952395, y: 0.0000000078461575, z: 0.000000105584974} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1826490467727421733} + m_LocalEulerAnglesHint: {x: -0.000000059373328, y: 2.9866447, z: -0.000000031105404} +--- !u!1 &8792083621429862392 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1510499801673588942} + m_Layer: 0 + m_Name: Bone28 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1510499801673588942 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8792083621429862392} + serializedVersion: 2 + m_LocalRotation: {x: 0.09645703, y: -0.48391062, z: -0.035410203, w: 0.8690642} + m_LocalPosition: {x: 0.31873402, y: 0.046694905, z: 0.07400453} + m_LocalScale: {x: 0.9999999, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3067235693775358992} + m_Father: {fileID: 4311870069965083601} + m_LocalEulerAnglesHint: {x: 9.274331, y: -50.01845, z: -2.8067245} +--- !u!1 &9034837717734370231 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8308555477219814566} + m_Layer: 0 + m_Name: Bone34 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8308555477219814566 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9034837717734370231} + serializedVersion: 2 + m_LocalRotation: {x: -0.30354923, y: -0.1372713, z: 0.051523563, w: 0.9414668} + m_LocalPosition: {x: 0.85443354, y: 0.10595048, z: -0.016025886} + m_LocalScale: {x: 0.9999987, y: 1.0000001, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1523801532217793141} + m_Father: {fileID: 618697325756339154} + m_LocalEulerAnglesHint: {x: -29.4294, y: -37.285114, z: 26.05963} +--- !u!1001 &1053606856517918375 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 3292602729683119914} + m_Modifications: + - target: {fileID: 562455905061171865, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_Name + value: "\u96D5\u7FC5_0" + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 6829781641976879068} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 6829781641976879068} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 2873217434745205208} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 1826490467727421733} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 951237150592659260} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 4210773055987900598} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 1377475614675660864} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 4672360326441002460} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 6917607150799635668} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 618697325756339154} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 8533579790946451143} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 2510392416931938433} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 7995489102971776941} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 1866891957763510799} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 2640164378961565298} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 4561461438287759327} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 8308555477219814566} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 1523801532217793141} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 1521101416352375625} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 5856420895907156492} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 4858162342605912698} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 5644792101773639832} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 2922571134014908863} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 4885120737526214586} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 651730992814362182} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 5596640696963614402} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 1256303309846460685} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 5471671635871319037} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 5772812914203539479} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 6370246793948074414} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 5070147684384994544} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 9010954183329616563} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[31]' + value: + objectReference: {fileID: 5269114254243438565} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[32]' + value: + objectReference: {fileID: 3204170381915132448} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[33]' + value: + objectReference: {fileID: 3792199250469584262} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[34]' + value: + objectReference: {fileID: 216797200395905996} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[35]' + value: + objectReference: {fileID: 8242342604902092966} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[36]' + value: + objectReference: {fileID: 1859790406866139898} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[37]' + value: + objectReference: {fileID: 4311870069965083601} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[38]' + value: + objectReference: {fileID: 407126879820044803} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[39]' + value: + objectReference: {fileID: 1510499801673588942} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[40]' + value: + objectReference: {fileID: 3067235693775358992} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[41]' + value: + objectReference: {fileID: 7937720863169737544} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[42]' + value: + objectReference: {fileID: 1668711674044395507} + - target: {fileID: 3119980002784657919, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + propertyPath: 'm_Bones.Array.data[43]' + value: + objectReference: {fileID: 6829781641976879068} + m_RemovedComponents: + - {fileID: 3985521240481815826, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} +--- !u!4 &1677880631688163806 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1861726425634926457, guid: af4a9c23e6961a44b8ad257a2ea0890c, type: 3} + m_PrefabInstance: {fileID: 1053606856517918375} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5434072335400736370 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 3292602729683119914} + m_Modifications: + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7303457112254812152, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_Name + value: "\u96D5_0" + objectReference: {fileID: 0} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 6829781641976879068} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 6829781641976879068} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 2873217434745205208} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 1826490467727421733} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 951237150592659260} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 4210773055987900598} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 1377475614675660864} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 4672360326441002460} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 6917607150799635668} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 618697325756339154} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 8533579790946451143} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 2510392416931938433} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 7995489102971776941} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 1866891957763510799} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 2640164378961565298} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 4561461438287759327} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 8308555477219814566} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 1523801532217793141} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 1521101416352375625} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 5856420895907156492} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 4858162342605912698} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 5644792101773639832} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 2922571134014908863} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 4885120737526214586} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 651730992814362182} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 5596640696963614402} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 1256303309846460685} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 5471671635871319037} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 5772812914203539479} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[28]' + value: + objectReference: {fileID: 6370246793948074414} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[29]' + value: + objectReference: {fileID: 5070147684384994544} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[30]' + value: + objectReference: {fileID: 9010954183329616563} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[31]' + value: + objectReference: {fileID: 5269114254243438565} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[32]' + value: + objectReference: {fileID: 3204170381915132448} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[33]' + value: + objectReference: {fileID: 3792199250469584262} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[34]' + value: + objectReference: {fileID: 216797200395905996} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[35]' + value: + objectReference: {fileID: 8242342604902092966} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[36]' + value: + objectReference: {fileID: 1859790406866139898} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[37]' + value: + objectReference: {fileID: 4311870069965083601} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[38]' + value: + objectReference: {fileID: 407126879820044803} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[39]' + value: + objectReference: {fileID: 1510499801673588942} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[40]' + value: + objectReference: {fileID: 3067235693775358992} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[41]' + value: + objectReference: {fileID: 7937720863169737544} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[42]' + value: + objectReference: {fileID: 1668711674044395507} + - target: {fileID: 8293477240983951783, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + propertyPath: 'm_Bones.Array.data[43]' + value: + objectReference: {fileID: 6829781641976879068} + m_RemovedComponents: + - {fileID: 1874907820469225205, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} +--- !u!4 &1480044670052033544 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6909541310437257850, guid: ddd0e2556c61277489b643d7ac0d9cd4, type: 3} + m_PrefabInstance: {fileID: 5434072335400736370} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab.meta new file mode 100644 index 0000000000..2e8f3e8f2f --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/雕5/雕5.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 80976ca065b4fe848ade2a8dff4fcea8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐.meta new file mode 100644 index 0000000000..718974ae05 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92391731aaa048d41b525027f56b4f24 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.meta new file mode 100644 index 0000000000..be0c0c157f --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ce8f4e52af1e09647a3600f204ccaf73 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab new file mode 100644 index 0000000000..513e28fb33 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab @@ -0,0 +1,1474 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1325006021604110541 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5352302429396370951} + m_Layer: 0 + m_Name: Bone19 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5352302429396370951 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1325006021604110541} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000042260466, y: 0.025293363, z: -2.3828806e-10, w: 0.9996801} + m_LocalPosition: {x: 0.9270634, y: 0.000000028628032, z: 0.000000109197586} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7002589281438438359} + m_LocalEulerAnglesHint: {x: 17.383364, y: 10.106312, z: 17.277973} +--- !u!1 &1433471770172025085 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8444747855062865069} + m_Layer: 0 + m_Name: Bone03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8444747855062865069 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1433471770172025085} + serializedVersion: 2 + m_LocalRotation: {x: -2.9732347e-10, y: -0.00966823, z: -0.000000008477646, w: 0.99995327} + m_LocalPosition: {x: 0.5548431, y: -0.0000000089736565, z: 0.0000001192093} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1140073972753241643} + m_LocalEulerAnglesHint: {x: 0.17562345, y: -1.1022524, z: 3.8054578} +--- !u!1 &1553971980879024909 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2580969066183175922} + m_Layer: 0 + m_Name: Bone01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2580969066183175922 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553971980879024909} + serializedVersion: 2 + m_LocalRotation: {x: 3.9205513e-16, y: 0.7071068, z: -3.6419195e-16, w: 0.7071068} + m_LocalPosition: {x: 0.0009263158, y: -0.31267777, z: 1.0875984} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8136322475389112319} + - {fileID: 6217944402708935204} + - {fileID: 7355570851764251459} + - {fileID: 1140073972753241643} + - {fileID: 609224175925128566} + - {fileID: 3500703959312746015} + - {fileID: 3168284215742987636} + m_Father: {fileID: 7338671842435912161} + m_LocalEulerAnglesHint: {x: 0.000009713934, y: -90.47333, z: 0.00008209787} +--- !u!1 &1672013276176733078 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7002589281438438359} + m_Layer: 0 + m_Name: Bone07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7002589281438438359 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1672013276176733078} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000043082236, y: -0.06616142, z: -0.0000000015292981, w: 0.99780893} + m_LocalPosition: {x: 0.5424666, y: -0.00000000247655, z: -0.00000017881396} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5352302429396370951} + m_Father: {fileID: 609224175925128566} + m_LocalEulerAnglesHint: {x: 0.14926483, y: -7.562317, z: 18.844193} +--- !u!1 &1952664085874990668 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7152831254450685801} + m_Layer: 0 + m_Name: Bone21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7152831254450685801 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1952664085874990668} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000057631424, y: 0.052749563, z: -0.000000005029047, w: 0.99860775} + m_LocalPosition: {x: 0.56906664, y: -0.000000006754001, z: 0.00000029802328} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6685137997862311528} + m_Father: {fileID: 3500703959312746015} + m_LocalEulerAnglesHint: {x: 1.0763297, y: 6.2037544, z: 16.48816} +--- !u!1 &2020463236744484584 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5104688467856162541} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5104688467856162541 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2020463236744484584} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000013735894, y: -0.6516312, z: 0.0000000026064402, w: 0.75853604} + m_LocalPosition: {x: 0.6094567, y: -0.008281412, z: 0.32652542} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7825072778777877331} + m_Father: {fileID: 8136322475389112319} + m_LocalEulerAnglesHint: {x: -22.591543, y: -88.21244, z: 20.227867} +--- !u!1 &2352765670595610496 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 609224175925128566} + m_Layer: 0 + m_Name: Bone06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &609224175925128566 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2352765670595610496} + serializedVersion: 2 + m_LocalRotation: {x: 6.948694e-10, y: -0.6618026, z: 0.000000003658291, w: 0.7496782} + m_LocalPosition: {x: 0.93991625, y: -0.00828141, z: 0.29279852} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7002589281438438359} + m_Father: {fileID: 2580969066183175922} + m_LocalEulerAnglesHint: {x: -0.5130734, y: -82.89383, z: 4.108742} +--- !u!1 &2476658289399724655 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1228786418753517209} + - component: {fileID: 2195027877997919898} + - component: {fileID: 5863816200025998607} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1228786418753517209 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2476658289399724655} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4529673157333226217} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2195027877997919898 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2476658289399724655} + m_Mesh: {fileID: 0} +--- !u!137 &5863816200025998607 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2476658289399724655} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &2496650445757714395 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3500703959312746015} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3500703959312746015 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2496650445757714395} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000067678023, y: 0.6438996, z: 0.0000000020604831, w: 0.7651101} + m_LocalPosition: {x: 0.92496073, y: -0.00828141, z: -0.305287} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7152831254450685801} + m_Father: {fileID: 2580969066183175922} + m_LocalEulerAnglesHint: {x: 0.67652583, y: 80.189995, z: 3.9067614} +--- !u!1 &2831412355953884537 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8153603161139544533} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8153603161139544533 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2831412355953884537} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000016169329, y: 0.021501828, z: 0.000000004650035, w: 0.99976885} + m_LocalPosition: {x: 0.9198916, y: -0.00000005934527, z: 0.000000099833414} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2705302534761422879} + m_Father: {fileID: 6402994389668102416} + m_LocalEulerAnglesHint: {x: -12.085618, y: 8.635911, z: -16.6916} +--- !u!1 &2845287011506262633 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3168284215742987636} + m_Layer: 0 + m_Name: HH_FX + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3168284215742987636 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2845287011506262633} + serializedVersion: 2 + m_LocalRotation: {x: -0.0024765646, y: -0.70670086, z: -0.0029870418, w: 0.7075019} + m_LocalPosition: {x: 0.88387054, y: 0.02808406, z: -0.05655617} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2580969066183175922} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3390218882374214225 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2506006206427515726} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2506006206427515726 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3390218882374214225} + serializedVersion: 2 + m_LocalRotation: {x: 2.721566e-10, y: 0.009767057, z: -3.9768647e-10, w: 0.9999523} + m_LocalPosition: {x: 1.1207635, y: -0.000000003284653, z: 0.00000028390687} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4212931197923572129} + m_Father: {fileID: 8136322475389112319} + m_LocalEulerAnglesHint: {x: 0.08179648, y: 1.3674359, z: -12.999301} +--- !u!1 &3643560978077236801 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7338671842435912161} + m_Layer: 0 + m_Name: Box01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7338671842435912161 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3643560978077236801} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2580969066183175922} + - {fileID: 4177507734482950832} + m_Father: {fileID: 4529673157333226217} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4187529514274283865 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6685137997862311528} + m_Layer: 0 + m_Name: Bone22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6685137997862311528 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4187529514274283865} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000016390891, y: 0.01875698, z: -7.7375706e-10, w: 0.99982405} + m_LocalPosition: {x: 1.0189703, y: -0.0000000019991346, z: 0.00000026763882} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7152831254450685801} + m_LocalEulerAnglesHint: {x: -12.1691475, y: -1.6454738, z: 13.709258} +--- !u!1 &4514223426462680001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6217944402708935204} + m_Layer: 0 + m_Name: Bone18 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6217944402708935204 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4514223426462680001} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000003980137, y: -0.9999745, z: 7.664848e-12, w: -0.0071423342} + m_LocalPosition: {x: -0.0077006826, y: 2.7070507e-18, z: 0.0022474239} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2580969066183175922} + m_LocalEulerAnglesHint: {x: 0.0000038224916, y: 179.18155, z: -8.857617} +--- !u!1 &4700864335215490992 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8809025389573895523} + m_Layer: 0 + m_Name: "\u98DE\u9CD0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8809025389573895523 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4700864335215490992} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4529673157333226217} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4791122375592435263 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6402994389668102416} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6402994389668102416 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4791122375592435263} + serializedVersion: 2 + m_LocalRotation: {x: 5.999318e-11, y: -0.03156801, z: -0.0000000016585536, w: 0.99950165} + m_LocalPosition: {x: 1.0356121, y: -0.009224209, z: 0.78470737} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8153603161139544533} + m_Father: {fileID: 8136322475389112319} + m_LocalEulerAnglesHint: {x: -0.000000069611104, y: -3.6180308, z: -6.203149} +--- !u!1 &5159168768660766753 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4212931197923572129} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4212931197923572129 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5159168768660766753} + serializedVersion: 2 + m_LocalRotation: {x: -3.1448188e-10, y: -0.014308028, z: 0.0000000068986084, w: 0.9998977} + m_LocalPosition: {x: 1.0467571, y: -0.0000000022400393, z: 0.00000043453832} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5809650165809317263} + m_Father: {fileID: 2506006206427515726} + m_LocalEulerAnglesHint: {x: -0.0000001737753, y: -1.639623, z: -0.90280604} +--- !u!1 &5293234662695309978 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3180584615263983118} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3180584615263983118 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5293234662695309978} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000014231043, y: -0.04503967, z: -2.4928676e-10, w: 0.9989853} + m_LocalPosition: {x: 0.8165702, y: -0.000000035881957, z: -0.0000001560411} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 802804106620777458} + m_LocalEulerAnglesHint: {x: -5.434375, y: -7.9277477, z: 7.6019278} +--- !u!1 &5309798814515184525 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1604194906798480292} + m_Layer: 0 + m_Name: Bone25 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1604194906798480292 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5309798814515184525} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000018487354, y: 0.6275299, z: -3.398816e-10, w: 0.7785925} + m_LocalPosition: {x: 0.5820275, y: -0.008281412, z: -0.33933052} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7820839309772467748} + m_Father: {fileID: 8136322475389112319} + m_LocalEulerAnglesHint: {x: 23.223602, y: 85.996635, z: 23.409307} +--- !u!1 &5580011040829718419 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4529673157333226217} + - component: {fileID: 1132645421304529984} + m_Layer: 0 + m_Name: "\u98DE\u9CD0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4529673157333226217 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5580011040829718419} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1228786418753517209} + - {fileID: 7338671842435912161} + - {fileID: 1175571869040380909} + - {fileID: 5767150526225982288} + m_Father: {fileID: 8809025389573895523} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &1132645421304529984 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5580011040829718419} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 63641816614452a4e9a1cdb2e09e1b7d, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &5771311123170692762 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5760080501168613951} + m_Layer: 0 + m_Name: Bone04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5760080501168613951 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5771311123170692762} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000004045654, y: 0.03131318, z: 4.4765924e-10, w: 0.9995097} + m_LocalPosition: {x: 0.53604054, y: 0.000000010727292, z: 0.00000005960465} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7355570851764251459} + m_LocalEulerAnglesHint: {x: -0.17244457, y: 3.5818071, z: 4.694864} +--- !u!1 &5934226422633239688 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7825072778777877331} + m_Layer: 0 + m_Name: Bone24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7825072778777877331 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5934226422633239688} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000006602508, y: -0.031807568, z: -0.0000000022911084, w: 0.9994941} + m_LocalPosition: {x: 0.59808636, y: -0.000000001294264, z: 0.00000005960466} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5104688467856162541} + m_LocalEulerAnglesHint: {x: 1.8609111, y: 2.3086152, z: -8.280109} +--- !u!1 &6227813338627419138 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5509813161923339177} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5509813161923339177 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6227813338627419138} + serializedVersion: 2 + m_LocalRotation: {x: 3.2884812e-10, y: 0.050851412, z: -0.0000000012399164, w: 0.9987063} + m_LocalPosition: {x: 1.0736119, y: -0.009224209, z: -0.7910624} + m_LocalScale: {x: 0.9999997, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 802804106620777458} + m_Father: {fileID: 8136322475389112319} + m_LocalEulerAnglesHint: {x: 0.000001601084, y: 5.8296814, z: -4.2751927} +--- !u!1 &6699465295736065041 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 802804106620777458} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &802804106620777458 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6699465295736065041} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000007892312, y: -0.01600008, z: 0.0000000033720666, w: 0.999872} + m_LocalPosition: {x: 0.84819776, y: -7.2166867e-10, z: 0.00000009423822} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3180584615263983118} + m_Father: {fileID: 5509813161923339177} + m_LocalEulerAnglesHint: {x: 13.699383, y: -10.705219, z: -19.354992} +--- !u!1 &7320644356282596670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2705302534761422879} + m_Layer: 0 + m_Name: Bone13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2705302534761422879 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7320644356282596670} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000004375371, y: 0.024506025, z: -0.00000001931967, w: 0.9996997} + m_LocalPosition: {x: 0.81746083, y: 0.00000005197713, z: 0.00000045606066} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8153603161139544533} + m_LocalEulerAnglesHint: {x: 5.4862356, y: 4.448313, z: 14.953} +--- !u!1 &8060488995089910329 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7355570851764251459} + m_Layer: 0 + m_Name: Bone02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7355570851764251459 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8060488995089910329} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000007300994, y: -0.7161979, z: -0.0000000068449784, w: 0.69789726} + m_LocalPosition: {x: 0.3578751, y: -0.009224206, z: 0.32070434} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5760080501168613951} + m_Father: {fileID: 2580969066183175922} + m_LocalEulerAnglesHint: {x: -0.36521935, y: -91.43723, z: -14.254804} +--- !u!1 &8365029627334445323 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5809650165809317263} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5809650165809317263 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8365029627334445323} + serializedVersion: 2 + m_LocalRotation: {x: -1.5663191e-11, y: 0.005153514, z: -0.000000012871841, w: 0.99998677} + m_LocalPosition: {x: 1.1420547, y: -0.000000018192928, z: 0.00000019532038} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4212931197923572129} + m_LocalEulerAnglesHint: {x: 0.05328817, y: 0.40810272, z: 11.529407} +--- !u!1 &8809563314778768454 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7820839309772467748} + m_Layer: 0 + m_Name: Bone26 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7820839309772467748 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8809563314778768454} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000025529523, y: 0.061864577, z: 0.0000000056977587, w: 0.99808455} + m_LocalPosition: {x: 0.7155975, y: -0.0000000012816456, z: 0.00000023841858} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1604194906798480292} + m_LocalEulerAnglesHint: {x: 3.2220256, y: 0.9870464, z: -13.86364} +--- !u!1 &8913011434751302687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1140073972753241643} + m_Layer: 0 + m_Name: Bone05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1140073972753241643 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8913011434751302687} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000060348073, y: 0.69756395, z: 0.000000005410852, w: 0.71652263} + m_LocalPosition: {x: 0.35067052, y: -0.009224206, z: -0.34308538} + m_LocalScale: {x: 1, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8444747855062865069} + m_Father: {fileID: 2580969066183175922} + m_LocalEulerAnglesHint: {x: -0.5171821, y: 88.553406, z: -19.668745} +--- !u!1 &9049764546786271340 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8136322475389112319} + m_Layer: 0 + m_Name: Bone08 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8136322475389112319 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9049764546786271340} + serializedVersion: 2 + m_LocalRotation: {x: -1.1270817e-11, y: -0.004716813, z: 0.0000000014653272, w: 0.99998885} + m_LocalPosition: {x: 1.0467042, y: -4.1244853e-17, z: 0.00000011920929} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2506006206427515726} + - {fileID: 6402994389668102416} + - {fileID: 5509813161923339177} + - {fileID: 1604194906798480292} + - {fileID: 5104688467856162541} + m_Father: {fileID: 2580969066183175922} + m_LocalEulerAnglesHint: {x: 0.0000001001295, y: -0.5405059, z: -0.83137333} +--- !u!1 &9116728846386146166 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4177507734482950832} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4177507734482950832 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9116728846386146166} + serializedVersion: 2 + m_LocalRotation: {x: -0.0038633368, y: 0.00056633406, z: -0.0003609631, w: 0.9999923} + m_LocalPosition: {x: -0.06530468, y: 0.57669836, z: -0.03839636} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7338671842435912161} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2936148853885127126 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 4529673157333226217} + m_Modifications: + - target: {fileID: 984863657992187334, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_Name + value: "\u98DE\u9CD0\u9CCD_0" + objectReference: {fileID: 0} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 7338671842435912161} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 7338671842435912161} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 2580969066183175922} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 8136322475389112319} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 2506006206427515726} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 4212931197923572129} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 5809650165809317263} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 6402994389668102416} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 8153603161139544533} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 2705302534761422879} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 5509813161923339177} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 802804106620777458} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 3180584615263983118} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 1604194906798480292} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 7820839309772467748} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 5104688467856162541} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 7825072778777877331} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 6217944402708935204} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 7355570851764251459} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 5760080501168613951} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 1140073972753241643} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 8444747855062865069} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 609224175925128566} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 7002589281438438359} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 5352302429396370951} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 3500703959312746015} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 7152831254450685801} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 6685137997862311528} + - target: {fileID: 7196570178492882645, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 7338671842435912161} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 3383927946424684169, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} +--- !u!4 &5767150526225982288 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8698213443000756870, guid: cb32e394b9c93f14a9e207f61c85f269, type: 3} + m_PrefabInstance: {fileID: 2936148853885127126} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7142908301320064162 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 4529673157333226217} + m_Modifications: + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 7338671842435912161} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 7338671842435912161} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 2580969066183175922} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 8136322475389112319} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 2506006206427515726} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 4212931197923572129} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 5809650165809317263} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 6402994389668102416} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 8153603161139544533} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 2705302534761422879} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 5509813161923339177} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 802804106620777458} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 3180584615263983118} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 1604194906798480292} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 7820839309772467748} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 5104688467856162541} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 7825072778777877331} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 6217944402708935204} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 7355570851764251459} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 5760080501168613951} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 1140073972753241643} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 8444747855062865069} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 609224175925128566} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 7002589281438438359} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 5352302429396370951} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 3500703959312746015} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 7152831254450685801} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 6685137997862311528} + - target: {fileID: 9009444974776281064, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 7338671842435912161} + - target: {fileID: 9123058302444839043, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + propertyPath: m_Name + value: "\u98DE\u9CD0_0" + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 6645666059111945641, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} +--- !u!4 &1175571869040380909 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8318374065002186575, guid: 95de5f425940e5741a39843ae6c2eccf, type: 3} + m_PrefabInstance: {fileID: 7142908301320064162} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab.meta new file mode 100644 index 0000000000..c1f64d1860 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a5fd8e1d3fa1cf4448bc6c9731a8e9e0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat new file mode 100644 index 0000000000..8267ef5345 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8315822609302460058 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 796248075bbb499428d14e237e63c753, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 796248075bbb499428d14e237e63c753, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat.meta new file mode 100644 index 0000000000..e71c1194eb --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80e73e9a3079fdf4aa56818863768b38 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh new file mode 100644 index 0000000000..3c73202cae --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh @@ -0,0 +1,671 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 1896 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 415 + localAABB: + m_Center: {x: 0, y: -0.2611611, z: -1.2714314} + m_Extent: {x: 2.77094, y: 0.32596284, z: 3.07622} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011920929 + e01: 3.9404502e-17 + e02: -1.0000001 + e03: 1.0875986 + e10: 1.0694949e-15 + e11: 1 + e12: 3.9404502e-17 + e13: 0.31267777 + e20: 1.0000001 + e21: -1.0694949e-15 + e22: -0.00000011920929 + e23: -0.0009261863 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.009433403 + e01: 0.000000002930728 + e02: -0.9999556 + e03: 0.0408839 + e10: -3.6363315e-11 + e11: 1 + e12: 0.0000000029305158 + e13: 0.31267777 + e20: 0.9999555 + e21: 8.716963e-12 + e22: 0.009433402 + e23: -0.0013120426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.010100711 + e01: 0.00000000213998 + e02: -0.99994904 + e03: -1.0796483 + e10: 5.0768445e-10 + e11: 1 + e12: 0.000000002134961 + e13: 0.31267777 + e20: 0.9999488 + e21: -4.860939e-10 + e22: -0.010100713 + e23: -0.022405561 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.018515091 + e01: 0.00000001593 + e02: -0.9998288 + e03: -2.1261759 + e10: -1.7932714e-10 + e11: 1 + e12: 0.00000001592941 + e13: 0.3126778 + e20: 0.9998286 + e21: -1.1563791e-10 + e22: 0.018515097 + e23: 0.038446285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.008208985 + e01: -0.000000009813158 + e02: -0.9999667 + e03: -3.2684536 + e10: 1.33342e-10 + e11: 1 + e12: -0.000000009812396 + e13: 0.31267774 + e20: 0.9999663 + e21: -5.2787438e-11 + e22: 0.008208987 + e23: 0.004758754 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.07251635 + e01: -3.938046e-10 + e02: -0.99736744 + e03: -1.0423472 + e10: 2.19508e-10 + e11: 1 + e12: -3.7888453e-10 + e13: 0.32190198 + e20: 0.9973672 + e21: -1.914548e-10 + e22: 0.07251635 + e23: -0.72168094 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029568776 + e01: 0.000000008843177 + e02: -0.999563 + e03: -1.9293966 + e10: -0.0000000034849497 + e11: 0.9999999 + e12: 0.000000008743957 + e13: 0.32190204 + e20: 0.99956274 + e21: 0.0000000032248781 + e22: 0.029568765 + e23: -0.80537766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.019442642 + e01: -0.00000002973874 + e02: -0.9998112 + e03: -2.7040973 + e10: 0.0000000054613714 + e11: 0.99999976 + e12: -0.00000002985058 + e13: 0.3219018 + e20: 0.99981093 + e21: -0.000000006040713 + e22: -0.019442663 + e23: -0.9389995 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.09218214 + e01: 4.715061e-10 + e02: -0.9957427 + e03: -1.1076031 + e10: 5.1803384e-10 + e11: 1 + e12: 4.2556428e-10 + e13: 0.32190198 + e20: 0.9957423 + e21: -4.765988e-10 + e22: -0.09218213 + e23: 0.6807706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060275115 + e01: 0.000000006946731 + e02: -0.9981824 + e03: -1.933018 + e10: 0.00000001677088 + e11: 1 + e12: 0.0000000059466796 + e13: 0.321902 + e20: 0.9981819 + e21: -0.000000016381952 + e22: -0.06027509 + e23: 0.7429999 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029793758 + e01: 0.0000000050744946 + e02: -0.9995567 + e03: -2.671572 + e10: 0.0000000139174 + e11: 1 + e12: 0.0000000054915854 + e13: 0.32190204 + e20: 0.9995561 + e21: -0.000000014074833 + e22: 0.029793821 + e23: 0.9874153 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.97513276 + e01: 0.0000000024050197 + e02: -0.22162108 + e03: -0.44525054 + e10: 0.0000000024426599 + e11: 1 + e12: 1.04243045e-10 + e13: 0.32095918 + e20: 0.2216211 + e21: -4.3969384e-10 + e22: -0.975133 + e23: -0.4569956 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99503726 + e01: 0.000000013498726 + e02: -0.09950344 + e03: -1.0955272 + e10: 0.000000012868366 + e11: 1 + e12: 0.0000000069768484 + e13: 0.3209592 + e20: 0.09950348 + e21: 0.000000005661777 + e22: -0.9950375 + e23: -0.5968534 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9899499 + e01: 0.000000002614446 + e02: -0.14142136 + e03: -0.40980524 + e10: -0.0000000014035346 + e11: 1 + e12: 0.0000000086621785 + e13: 0.3209592 + e20: 0.14142133 + e21: -0.000000008376631 + e22: 0.98995 + e23: 0.5126524 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99693894 + e01: -0.0000000020833346 + e02: -0.07819128 + e03: -0.9732565 + e10: 0.0000000017002195 + e11: 1 + e12: -0.0000000049663225 + e13: 0.32095918 + e20: 0.078191265 + e21: 0.00000000481817 + e22: 0.99693906 + e23: 0.5756998 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.014284189 + e01: -0.000000007960181 + e02: 0.9998982 + e03: -1.0951422 + e10: -7.218223e-11 + e11: 1 + e12: 0.0000000079599625 + e13: 0.31267777 + e20: -0.9998981 + e21: 4.15267e-11 + e22: -0.014284187 + e23: 0.018818876 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99966544 + e01: -0.000000020012104 + e02: 0.025878796 + e03: -0.3404073 + e10: 0.000000019995408 + e11: 1 + e12: 9.037282e-10 + e13: 0.32190198 + e20: -0.025878794 + e21: -3.8596953e-10 + e22: 0.9996653 + e23: -0.72115564 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9993251 + e01: -0.000000018800456 + e02: -0.036746662 + e03: -0.829588 + e10: 0.000000019144093 + e11: 1 + e12: 0.000000008999786 + e13: 0.32190198 + e20: 0.036746677 + e21: -0.000000009697191 + e22: 0.9993251 + e23: -0.77460355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9996408 + e01: 0.000000016173326 + e02: -0.02680898 + e03: -0.3222799 + e10: 0.000000016196987 + e11: 1 + e12: -6.6533373e-10 + e13: 0.32190198 + e20: 0.026808985 + e21: -0.0000000010993216 + e22: -0.99964094 + e23: 0.7458364 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9989357 + e01: -7.9970414e-10 + e02: -0.046132583 + e03: -0.862538 + e10: -7.687193e-10 + e11: 1 + e12: -6.894839e-10 + e13: 0.32190198 + e20: 0.04613259 + e21: -6.532898e-10 + e22: -0.99893594 + e23: 0.7626567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99227816 + e01: 0.000000004565349 + e02: -0.12403479 + e03: -0.27313882 + e10: -0.0000000038002748 + e11: 1 + e12: 0.0000000064048162 + e13: 0.32095918 + e20: 0.12403479 + e21: -0.0000000058839906 + e22: 0.99227816 + e23: -0.18297398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99996775 + e01: 0.0000000012666821 + e02: 0.008064457 + e03: -0.83262366 + e10: -0.0000000012475698 + e11: 1.0000001 + e12: -0.000000002374815 + e13: 0.3209592 + e20: -0.008064457 + e21: 0.0000000023646742 + e22: 0.9999679 + e23: -0.07368517 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9990963 + e01: 4.5527254e-10 + e02: -0.04251479 + e03: -1.7537096 + e10: -9.166995e-10 + e11: 1.0000001 + e12: -0.000000010833868 + e13: 0.32095918 + e20: 0.042514782 + e21: 0.000000010863045 + e22: 0.9990965 + e23: -0.1625793 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9853084 + e01: 0.000000011868566 + e02: -0.17078647 + e03: -0.27211288 + e10: 0.000000013009718 + e11: 1 + e12: -0.0000000055625797 + e13: 0.32095918 + e20: 0.1707865 + e21: -0.0000000077027416 + e22: -0.9853085 + e23: 0.21222913 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99781775 + e01: 0.0000000019619206 + e02: -0.06603157 + e03: -0.858857 + e10: 0.0000000016558587 + e11: 1 + e12: 0.000000004689764 + e13: 0.32095918 + e20: 0.06603161 + e21: 0.000000004570182 + e22: -0.997818 + e23: 0.1224277 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9995925 + e01: 1.8039277e-10 + e02: -0.028559614 + e03: -1.8810982 + e10: -4.4994893e-11 + e11: 1 + e12: 0.000000007891071 + e13: 0.32095918 + e20: 0.028559659 + e21: 0.000000007889128 + e22: -0.99959254 + e23: 0.05190885 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.4260701, y: -0.27444616, z: -0.5942974} + m_Max: {x: 1.8008041, y: 0.37747952, z: 0.5818587} + - m_Min: {x: -0.26549658, y: -0.27444616, z: -0.7594219} + m_Max: {x: 1.3956368, y: 0.37747952, z: 0.7287189} + - m_Min: {x: -0.37090397, y: -0.13655451, z: -0.7592271} + m_Max: {x: 1.0481637, y: 0.18819752, z: 0.7781297} + - m_Min: {x: -0.006860733, y: -0.10874048, z: -0.11809086} + m_Max: {x: 1.0976293, y: 0.054921508, z: 0.108888224} + - m_Min: {x: -0.04853058, y: -0.085490495, z: -0.09378321} + m_Max: {x: 1.0790219, y: 0.024635524, z: 0.042858988} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.043506533, y: -0.11866507, z: -0.2642836} + m_Max: {x: 1.0558904, y: 0.18068391, z: 0.53494585} + - m_Min: {x: -0.21309859, y: -0.11191204, z: -1.0538521} + m_Max: {x: 1.596158, y: 0.08101694, z: 0.4521097} + - m_Min: {x: -0.05989173, y: -0.12226206, z: -0.7352401} + m_Max: {x: 1.0272229, y: 0.18068394, z: 0.4035693} + - m_Min: {x: -0.11547333, y: -0.11734906, z: -0.49641585} + m_Max: {x: 1.7758105, y: 0.05503893, z: 1.1959419} + - m_Min: {x: -0.03460574, y: -0.2292867, z: -0.58858997} + m_Max: {x: 0.7095164, y: 0.28355053, z: 0.5905078} + - m_Min: {x: -0.12605838, y: -0.23694909, z: -0.19006616} + m_Max: {x: 0.951647, y: 0.3383987, z: 0.99405885} + - m_Min: {x: -0.13087666, y: -0.10890427, z: -0.39229822} + m_Max: {x: 1.8081899, y: 0.10306074, z: 0.54817027} + - m_Min: {x: -0.15750879, y: -0.23694909, z: -0.78319633} + m_Max: {x: 0.91859066, y: 0.3383987, z: 0.10190874} + - m_Min: {x: -0.16701573, y: -0.100773275, z: -0.5683745} + m_Max: {x: 1.7703408, y: 0.10306072, z: 0.35890985} + - m_Min: {x: -0.1257263, y: -0.2435092, z: -0.7999066} + m_Max: {x: 1.0761096, y: 0.38576093, z: 0.9115815} + - m_Min: {x: -0.083705306, y: -0.1471501, z: -0.7943643} + m_Max: {x: 1.5021927, y: 0.12038791, z: 1.0299002} + - m_Min: {x: -0.0043462515, y: -0.11085412, z: -0.6616359} + m_Max: {x: 1.0074453, y: 0.006113887, z: 0.791227} + - m_Min: {x: -0.15642916, y: -0.2435092, z: -0.87600887} + m_Max: {x: 1.0777959, y: 0.38576093, z: 0.80807984} + - m_Min: {x: -0.18625528, y: -0.14715007, z: -1.0726192} + m_Max: {x: 1.4239864, y: 0.12038791, z: 0.98404425} + - m_Min: {x: -0.33904195, y: -0.11085406, z: -0.87538946} + m_Max: {x: 0.8838216, y: 0.0061139166, z: 0.57703143} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000600050004000400070006000a000900080008000b000a000e000d000c000c000f000e0002000300100010001100020014001300120012001500140014001700160016000f0014001a001900180018001b001a001d001c000e0008000e000b0014000f000c000c001300140017001e001100110010001700060020001f001f00050006000f0016001d001d000e000f002300220021002100240023000b000e001c001c0025000b000a000b00250018000a0025001b00180025002600150012001200270026002a002900280028002b002a002e002d002c002c002f002e0031003000110011001e00310003001d00160016001000030015003200170017001400150011002d0002002d002e000100010002002d00220019001a001a002100220033001d00030003000000330017003200340034001e001700320004000500050034003200150026000400040032001500040026002700270035000400200036001f0024002b0028002800230024002d0030003700370038002d00340005001f00390037003000300031003900310034001f001f00390031003a002c002d003c003b003a000d000e00080008003d000d003d000800090009003e003d002d0038003a003f00370039003f0040003800380037003f00400041003a003a003800400041003c003a001700100016001e003400310029002a0042002f002c003b003b0043002f003a003b002c004600450044001d0033001c004400480047004a00490048004c001b004b004b004d004c004f004e004400440047004f0051004d005000460044004e0045004800440045004a00480046004a004500360039001f00360052003f003f003900360052005300400040003f00520053005400410041004000530055003c0041004100540055005800570056005600590058005c005b005a005a005d005c0060005f005e005e006100600064006300620062006500640064005b006600660067006400640065005a005a005b00640067005e005f005f006800670058005900690069006a0058005b005c006b006b0066005b0061006d006c006c00600061006e006b005c006b006e006f006f0070006b00720071006200620063007200750074007300730076007500770068005f005f007800770061005e00660066006b00610063006400670067007900630078005f00600060007600780070006d00610061006b007000670068007a007a007900670079007a00590059005600790063007900560056007200630057007b0056007c006a006900760060006c006c007500760076007e007d007d007800760059007a0069007f007700780078007d007f0077007f00690069007a0077008100800073005d0082006e006e005c005d00820083006f006f006e0082007e00760073007d0084007f0084007d007e007e008500840085007e0073007300860085008000860073005e00670066007a00680077007400870081008100730074007f007c0069007c007f008400840088007c0088008400850085008900880089008500860086008a00890080008b0086008a0086008b008d008c003b003b003c008d000c000d008e008e008f000c000600070090009000910006000d003d00920092008e000d0036002000930093009400360027001200950095009600270052003600940094009700520054005300980098009900540055005400990099009a0055009b0092003d003d003e009b009c0095001200120013009c008f009c00130013000c008f0035002700960096009d0035009100930020002000060091009700980053005300520097009a008d003c003c0055009a0087009f009e009e00810087003b008c00a000a000a1003b0043003b00a100a100a2004300a500a400a300a300a600a500a800a700a500a500a600a800aa00a900a700a700a800aa00ad00ac00ab00ab00ae00ad00af00ac00ad00ad00b000af00b300b200b100a20042004300ac00b500b400b400ab00ac00af00b600b500b500ac00af00b700b600af00af00b800b700b900b300b100b100ba00b900bd00bc00bb00bb00bf00be00be00bd00bb00b300b900bf00bf00bb00b300b000b900ba00ba00c000b000bb00bc00b200b200b300bb00a600a300b400b400b500a600b600a800a600a600b500b600b700aa00a800a800b600b700bf00ad00ae00ae00be00bf00b000ad00bf00bf00b900b000b000c000b800b800af00b0003500070004009d0090000700070035009d0071007200560056007b007100110030002d00c200c100240024002100c200c100c3002b002b002400c10000000100c100c100c200000001002e00c300c300c1000100c3002f002a002a002b00c3002a002f004300430042002a002e002f00c300510033004c004c004d00510033000000c200c2004c0033004c001a001b004c00c200210021001a004c004b0050004d00c600c500c400c400c700c600ca00c900c800c800cb00ca000a00cd00cc00cc0009000a00d000cf00ce00ce00d100d000c600d300d200d200c500c600d600d500d400d400d700d600d600cf00d800d800d900d600db00da00180018001900db00dd00dc00d000d000cc00cd00d600d700ce00ce00cf00d600d900d200d300d300de00d900ca00cb00df00df00e000ca00cf00d000dc00dc00d800cf002300e200e100e10022002300cd00e300dd00dd00d000cd001800da00e3000a001800e300cd000a00e300e500e400d400d400d500e500e700e600280028002900e700ea00e900e800e800eb00ea00ec00de00d300d300ed00ec00c500d200d800d800dc00c500d500d600d900d900ee00d500eb00d300c600eb00c600c700c700ea00eb002200e100db00db0019002200ef00c400c500c500dc00ef00d900de00f000f000ee00d900ee00f000cb00cb00c800ee00d500ee00c800c800e500d500c800f100e400e400e500c800f200e000df00e200230028002800e600e200eb00f400f300f300ed00eb00cb00f000df00f500ec00ed00ed00f300f500ec00f500df00df00f000ec00e800f600eb00f800f700f600d100f900cc00cc00d000d100f9003e0009000900cc00f900f400eb00f600f300fa00f500fa00f300f400f400fb00fa00fb00f400f600f600fc00fb00f700fc00f600d200d900d800f000de00ec00e70029004200e900fd00f800f800e800e900f800f600e8000001ff00fe00ef00dc00dd000201fe0001010401030102010701060105010501da00070108010101fe00fe000901080106010b010a01fe00ff00090102010001fe000301000102010301ff000001f500f200df00f200f500fa00fa000c01f2000c01fa00fb00fb000d010c010d01fb00fc00fc000e010d01f7000f01fc000e01fc000f011201110110011001130112011601150114011401170116011a011901180118011b011a011e011d011c011c011f011e011e0121012001200117011e011e011701140114011d011e01210122011b011b011801210112012401230123011101120117012001250125011601170119011a016c006c006d001901250126011601250170006f006f002601250127011f011c011c012801270175002a0129012901740075002c012b011b011b0122012c011901250120012001180119011f012d01210121011e011f012b012a011a011a011b012b0170002501190119016d00700021012d012e012e01220121012d011001110111012e012d011f012701100110012d011f012f01130110012401300123012a0175006c006c001a012a012a012b013101310132012a012e0111012301330131012b012b012c0133012c012e012301230133012c01350134012901150116012601260136011501360126016f006f00830036012a013201290137013101330137013801320132013101370138013901290129013201380139013501290121011801200122012e012c0174002901340134018700740030013301230130013a0137013701330130013a013b013801380137013a013b013c013901390138013b013d013501390139013c013d013e01f700f800f8003f013e01ce00410140014001d100ce00ca00430142014201c900ca00d100400144014401f900d100f200460145014501e000f200e400480147014701d400e4000c01490146014601f2000c010e014b014a014a010d010e010f014c014b014b010e010f019b003e00f900f90044019b004d01d700d400d40047014d014101ce00d700d7004d014101f1004e0148014801e400f1004301ca00e000e0004501430149010c010d010d014a0149014c010f01f700f7003e014c01870034014f014f019f008700f8005101500150013f01f800fd00a20051015101f800fd0053015201a300a300a4005301540152015301530155015401aa00540155015501a900aa005601ae00ab00ab0057015601590158015601560157015901b2005a01b1004200a200fd005701ab00b400b4005b015701590157015b015b015c015901b700b800590159015c01b7005d01ba00b100b1005a015d01bc00bd005e015e01bd00be00be005f015e015a015e015f015f015d015a015801c000ba00ba005d0158015e015a01b200b200bc005e0152015b01b400b400a30052015c015b015201520154015c01b7005c0154015401aa00b7005f01be00ae00ae0056015f0158015d015f015f015601580158015901b800b800c0005801c900f100c8004e01f100c900c90042014e0128012f011001100127012801ed00d300eb006001e100e200e200610160016101e200e600e60062016101c400600161016101c700c400c700610162016201ea00c7006201e600e700e700e9006201e7004200fd00fd00e900e700e900ea0062010b01060107010701ef000b01ef00070160016001c400ef00db000701da000701db00e100e100600107010a01050106016501640163016301660165016801670165016501660168016b016a0169016e016d016c01670170016f016f0165016701710165016f016401650171017401730172017201750174017601730174017401770176017a01790178017d017c017b01770174017e017e017f0177017e01740180018001740175018301820181018101840183018101860185018501840181018901880187018c018b018a018e018d018601860181018e018f018e01810182018f0181019201910190019001930192019001910194019401950190019801970196019b019a0199019c019001950195019d019c019c019e0190019e0193019001 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 415 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 26576 + _typelessdata: 6056a03ec00004bd0021443f1130d53e6698673f8c72b93d2508a73e40bd4bbc1c71953e4e84ce3ef3b5693ff57c7ebdabb1143f104cb6bd74e98c3e87bab03ef043703fa2190b3bbf7c0e3f187ed8bd4802373f2953c03ed90c6a3f2b661b3ef4fd1240494dbdbeb0a1983edf875c3d3f997f3fd1da7a3c4eb90a40ab7abbbe90e6983d68dcbc3dbfe87e3f53c34d39614f1b40d0b7c7be00ef8dbb6a17ab3da1027f3fa993debc69522e40c2c7cabe58623f3eead29e3ddd277f3f84c4c3bc711d733e60ae9fbe62f5cc3f7301303ef37f713fc04b913e5d8876bb1fdc9fbed23cd93f1d7428b1c1977e3f9c70d63d888876bb32ce73be7430c83f74564931c123673f5218dc3ea419833e8ae56abe6c97bf3fdfe3af3e59d7543f039cdf3e986d633f0f9db0bed2e5a23f9afb433e6ca3743fb558653e6631153f740fabbe02f8c03fc5ed723e6f1f6d3f40f0953e3dd6dc3e2a028ebe62d8aa3f59fa993e71cc693f28ab8c3e3f703d3f86cd9abe00078e3f6e5f753e82e5713f9c5a643e1136503fec1760be9087283f523fac3efed06f3fcf11c53d51bf573f8e624dbe2099763e232f8e3edfed753f9b5f5dbb7b83f33f2195c4be68095c3f14f0ed3d6ba8793f47c3403ef111a13f8832b6be32008d3f9034193e3d93733f95b2893e7a8d913fd944a8be440d693fcbe7df3dc30a7d3fa304d73d4eeee33ff0a7b8beb80f333f24e7913d39d77e3fede4803d8ba5483f4dbd80be8c145c3f5595963ee6666f3fad244a3e7e6f9b3fd28fa0be9a29173ffcbb0d3e0d9d7c3f70dcac3db38876bbc0d3a5bd4ebb953fa054dc31f95d703f822db03ede8876bba01e72bde2948a3fde8dfb31ebbc7b3f2a133a3e2dedf43d581e85bde012893f9554333d43da7a3f5955473eb5180c3e40f6c2bd9645963fbe602bbddfc0783fba176e3e91b4b33ebefe18be3019943f23e4f13e9f97503f4704ac3e3d27fd3e761f24be604a7f3ff38ac93e526c5e3fb7bd993e0dfd9f3fdc0f92be501a523ebc1dfd3d0af77d3f9fe2c13cab09ee3f7657b0bed8cd04be2991793d3c867f3fbb9916b96de208402c83b4bec05384be8691093ee89f7d3f8c87a8bc27691e3ee04494bc3c574e3f626cddbd83027d3fabf5db3d098976bbc0472fbc941c4a3fd3e3ccb028837e3fc677dc3d8a8976bb005a163c08db9c3ec4610032c1fe7f3fbfe4c93bca1a253e209ef73c1026993ed2305cbec7fe793fab8436bc4f967a3e1e890bbe76c0a23f7d10f13d33716c3f86cbba3e9ca706407e1cbfbece22063fc5e4843d23d17e3f7bf8903d186013405c09c7be90a91d3f2ad0aa3d7a4a7d3fc927f33d358a76bb90ff44bd90476fbe000000002b9f7d3f81410bbeb68a76bb6a1501be024037bfbb6879b1830c7a3fcc825bbe135ac03d007507bea29436bf327beabde421773f551570bef60d0c3ee0d2c3bc20e474be7f7d8abea56d743f8f77fcbd8540a63e089a53bef78d29bf07eea13e4d45653ffa31a0bec957163f52a40fbede65aabeaf76823e3901753f209e0dbe2ffb8d3e10e481bda8807abe5d47c33eadd3663f2cac50be1f69403e80effebd06ef35bf1b2aee3e65c3533f0864a1beea3c663f6cb375be486674bebadf773e7025783f20cc2ebdd0449c3fdb8d98be30ebcabd043ff93d71b27d3f1e0a64bd832fe83f7c46b4be2c5fe43ee37fa03d53be7e3f917d773da0de7c3e302790bd0ade893ff403c13e0487653fe0f86d3ebd3aeb3f460ca5bef893193e0287ad3d2d067f3fbdf3a93c34112840b0aac8be38c1cb3e9e2aa13d01a77e3f196c863d63b4e63f6633a1be82f909bf8d1ca33da60f7f3f051d003d75027a3f240e8bbe277e06bf0c503e3e694e7b3f6f6a2dbd6538263f16ab6abe6ce21ebfb7c5bc3dc6c77a3fe5cb36bebd52a63f3f8fa3bea068babe259a9e3d330f7f3f57d1153d1230d23e98346abe99d02abfa91a833d001e703fe57baebeace3583e1ec377be920259bff5f91e3f13781d3f88b9f8be1dc98d3e60ccb0bec89564bf0e9ec0bca6cc613f8ff3f0be560b943ef9dd9ebe0284dc3fe0881a3efd15773fe7cb5a3e5d8876bb282c93be4ccae63f000000006a317e3f1ae7f23d17b78d3fb32688bec93636bf57b0373d589a7f3f3a2a073dd1ae4a3f096d93bec63160bf6ee3cdbcd2447e3f3a22e8bdf8dde43ea0c2a3bec9df6bbf61a4d3bd38fd7c3f40d7e6bde18a76bb846841be9e0860bf102df031e8ac743f1c9996be27ddf63d42f63ebe92755ebf6de5753e6df0663fad90b7bec783a53e58c2a2bdd827953f572c543f3a05003ff584803ed922793e2077b2bde4859d3ffe706e3e0a39f13e03cc593f5210843e409ceebcb8b19a3fd261d53e83c3143fadf2323f91b4b33ebefe18be3019943ff14b6d3fbd39b43e9c06053e4f967a3e1e890bbe76c0a23f169c683ee383f03ecb625a3fb5180c3e40f6c2bd9645963f4bed09bf9818c03e2919413fad843e3e608f59bd3418983f039ad9be1e03e43eb2be493fad843e3e608f59bd3418983fb647edbe3193603fea2900be41d73e3ea0778bbdacb48a3f267322be1eff793fe10a153e800c5d3ef0834abd184a933fc9734cbebb4b763ff43b3ebeee938b3e800238bdd09d913f9be4233fbb4d373fe2798ebea0de7c3e302790bd0ade893f06b5343ffc32d93ebf3611bf5210843e409ceebcb8b19a3f020a4fbeceee753fb8e442beee938b3e800238bdd09d913fbad9b5bda29e743f9df38fbeb667a63f0e3489be98f16cbf98e9793d51467f3f033934bd8c9d703fcf678abe28b390bf387d0dbdacd77f3f25f8c73b7cb4183f6c9592be1ec291bf7370efbda1287e3f2730d3bc4bcabd3eef3daebe3cf583bff39b96beacb0703fbce22fbef4fd1240844bc9beb0a1983ee3ae183c5cf57fbf25997c3c155731401614d0be685e2f3ef40cbbbc06e37fbf1c039c3cbd8c1e409cf9cfbe00c0a9bc761028bc8bfc7fbfe21f173a4eb90a40221ecbbe90e6983d5b353b3d4cbb7fbf44dd283b8274653fe0d8c5bef035a53fad8f353de6077fbfef26993d3f703d3f3c51ccbe840f8e3f0e33fa3d7f3b7cbf00d8f43d4fcce23e3a09d7be62d8aa3ff10b1d3ef3267abfb2a5163e12fa153f9a27c1bee4bfc13ff0e6f03d7ee478bf2d244f3e4e454e3f058aeabe6092143f4fce3e3e750f7bbf0b43723d9e45533f04acefbe48d5703eb788fe3d20037ebfeb659cbb34d5db3e008110bf48436e3e6414283eb1507cbf24c825bd471fd33edd100fbfa405223f09d8133e3d8a7cbf5bae9e3d9b1bf73fdc30d4be605d5f3f6aae71bafafe7fbf6615b4bb3cdaec3f4240d0beecbf303f02e1d93c60d57fbfb582c73c7a8d913f096fd1be74f3673f8f3a803cb59e7fbf7bb3553d9cbfa13f261bc9be6e888e3ff7ad713b6d427fbf9a7a9b3dc959483fa492dcbe8c145c3f9918253ed5c37abf4e7ff63d0f0b9d3fe468d8bea422103f9fbf243d167c7fbfd4d3483d815b9f3ffdc0dfbe385f4d3eacab1a3da6bf7fbf99cfbd3cab09ee3f1d75cebef057f8bd041dce3c2d837ebf325bd6bd20d20b402c4bc6be4cd694beaf697dbb1cb07ebfe7eecebd9ab5c43e02a1ffbed40b873f91cf2c3ed1c377bf8e153f3e0b8a76bbc14d16bfe87a633e3e7db9306aa77fbf4ce654bdb58976bb82b715bf7c0e2e3f00000000aea87fbfec5f533defe1823e3224d9be84c2c13fc0b0e63d21c077bf379f663e888876bb5649d6be10d3cb3ff0f8c931e82a77bf5254853e348976bb2fbe0abf4e4c8c3feaf8d0318c5c7cbf03082c3e1e1b15405a2bccbe9642223fef7795bc28ce7fbff8280dbd9ca706402d7cc7bece22063f8b09593c78df7fbfd229eabc35efc03e6e16e1be5c3620bf70b9a23d681f7bbfb08835bee18a76bba60df1be55ef22bfa64640b163c47abffdfb4dbe608a76bbe8e30abff85a16be6c52edb0153e7dbf59e415be207dd33ec84604bfe03527be139ae53d8b797bbf548119be4a419b3ff069e0bef0b7b4bd2414183df3db7ebf0088b1bda25e603f4da1ddbe482855bea323f53d56037cbff0d803be1214eb3f7079d6be680de23e64d83c3dde927fbf30030e3dbd3aeb3fa016ddbeb0b8193e95c5163da2d27fbf7216b1bbeae7294070cfcdbe70eed33ea295bbbce2ed7fbf0be7aebb5474ec3fa1bcb1be70ff13bf036af83b3f4b7dbfe64a14be55897a3f3f1db9be4e5a02bf528cd83d3cf27abf9b142bbe6265243fd046d0be020c11bfda95183e28057bbf16d402bee140a83fea5ac5be206bb9be4226bf3c7e937cbf363225beb41e8e3e9ce3bebed66764bfb24a0abe2a7179bf762538be0adc6a3e4030b9be22685ebf94f2453eec4b76bfa1fa44bec021943e8336b3be6494dc3f2aa0aa3d57476fbf4cf0b03e5d8876bb0d71a6be5003e73fce70b0317b536abf6b2dce3e17b78d3f1b48a9be7e8a35bf184c573d74647dbfad7b07bed1ae4a3ffcfbb6bec63160bfd69eee3d91a27bbf1caa11bef8dde43ea003c5bec9df6bbf590b673dbe3779bfdfe862be0c8b76bb4832e5be008958bfb3fed8b1e8c77fbf8b6f29bd7f6aa83f18cf92be4a7973bfeeee823dea287cbfd01f24bef1d9723f4fe88fbefd2c93bf8c03b93d559777bf944d73be08591a3f0b5f99bef8f693bf38f28d3dd39673bf166f99be9fe3bb3eca73b7be4f0185bf268fdb3c96a078bf2c6f72be0adc6a3e4030b9be22685ebf3cff5b3f592c553e2624efbeb41e8e3e9ce3bebed66764bfe41c21bfd9e0f13cd9cc46bf12fa153f9a27c1bee4bfc13fea2d143f65267f3e74c5463f8274653fe0d8c5bef035a53fa49ee53e314dcc3e57be4c3f155731401614d0be685e2f3edb3f473e0d74773f52b82abebd8c1e409cf9cfbe00c0a9bc9ae1993e2d29693f8ff190bec021943e8336b3be6494dc3f08c6003f6dec883d53975c3f20d20b402c4bc6be4cd694bede4ac33e500f5c3f5a11aebe5474ec3fa1bcb1be70ff13bfcc02b63e30e55e3ffd07aebe9b1bf73fdc30d4be605d5f3f469c993ecc3c373f236f213f1e1b15405a2bccbe9642223f90ef2d3e182b723f906a8d3e7f6aa83f18cf92be4a7973bf44199d3e9f3e5b3f0995d4bef1d9723f4fe88fbefd2c93bf96d7923d10335d3f5b1bffbe08591a3f0b5f99bef8f693bf279397be012d293f328e30bf9fe3bb3eca73b7be4f0185bf52a237bf550e8c3e670b24bf5d8876bb0d71a6be5003e73f000000003418f23c60e37f3f9cbfa13f261bc9be6e888e3f1621b03e1bdede3e79fc543feae7294070cfcdbe70eed33e9a236b3e5f6f753f6eac2b3e1d3c233ed848c4be2fa28ebfbdccb63e241f6fbfb0f4d9bb628b76bbc601e6be7f668bbf000000009cfe7fbf8444d53b1d3c233ed848c4be2fa28ebf287a5c3f43d3b73ea126b8be4beac43dd6768dbe711e8dbf8f0d133f9aa9373f7cc9c9be378b76bb1a3573be7f668bbf67b22ab1b7fb733f64069bbe8d8b76bb4036e3be2415aabf88ba10b2fef57fbfd8258fbc628b76bbc601e6be7f668bbf907bccb204ef7fbfef83babc1d3c233ed848c4be2fa28ebf24ff593f840206bf65f6ecbc35b81d3ee4bdc4be47e5a9bfd2f1583faa8107bfbf1127bd4beac43dd6768dbe711e8dbfdc5a153f72bc4f3f88620abda4e7c13d462993bebff3aabf11a32e3f5bd73a3f9d3835bd378b76bb1a3573be7f668bbfc4f9a63203ef7f3ff483babc628b76bb26cc78be2415aabf53d46232d8de7f3f2b4702bd648c76bb22c4d7be3a2f08c05bcf2fb250ed7fbfb59cc3bc09c3e03d4e67c1be62cc07c09f4d333f8c6336bf67c12fbdbf39ad3d420ac0be2a7a2dc0d18f603f431ff5bec60f15bde58c76bb6cd0d1be54b42dc000000000bbf17fbf32eaaabc2e43823d68259fbe5ae307c07c613b3f89402e3f102df9bcecb13e3da35d9fbef2862dc006813c3f031d2d3f6d9fbabce68d76bbe92ba2be20a874c0ef1d9db12bd67f3f1e5212bd678e76bb4296a7bef61f8bc01e9db7b2441d7e3f851ef8bdb711aa3cf69ca6be1aed74c018db473f71c71f3fe04b00bdb88b76bbba6ae0be43c4c8bf4945cab26ee67fbf48d2e4bc7558113edc46c5be70cec9bfda3c753f971e90be7b5363bd9e18a83df9db98be70cec9bfa03b363f4f60333fe3d644bdb88b76bb30637ebe43c4c8bf0000000009d47f3f370216bd398c76bba1f883be3a2f08c0060816b36ff07f3f9d8ab2bc50ee0d3dbc959fbebc4a4ec06b7c3c3fa8132d3fecf2e9bc668d76bb467a93be7c154ec0e04dafb249df7f3f776401bd31cf2a3d7effb8be1aed74c06733413ffc4d27bf5e926cbd678e76bb1006b8be669c89c06cc329334f2c7fbfc979a4bd118e76bbbde5bcbe1c3075c0801d75b28fd57fbf736213bd668d76bbb6dccbbe7b594ec0a7cfc0b255db7fbf370109bdb738843d36adbebe47484ec022dc723fa6baa0be0d451dbdba8c76bb52b98bbe40922dc0508391b2d1e67f3f6a13e3bc5917873ec8b6843de44c973e4cd7433e4d3f7b3f1fed6cbc488c7e3e2024873c80d84c3f6ef17739ea107d3f25961a3e588d653ec095483c68b277bec314a53eee1a6d3fe02a48be6e30a4bec00004bd0021443f1030d5be6798673f5a72b93dd76910bf187ed8bd4802373f1d53c0bedc0c6a3f26661b3ec39e16bf104cb6bd74e98c3e80bab0bef143703f8c170b3b33e2aabe40bd4bbc1c71953e4c84cebef3b5693ff17c7ebd1efe12c0494dbdbeb0a1983ec7875cbd40997f3f77d97a3cbd522ec0c2c7cabe58623f3e06d39ebddb277f3f88cac3bc614f1bc0d0b7c7be00ef8dbb4717abbda2027f3fab8fdebc78b90ac0ab7abbbe90e6983d9dddbcbdbce87e3ff18a4e398dd17abe60ae9fbe62f5cc3f740130bef17f713fcd4b913ed4f386be8ae56abe6c97bf3fdfe3afbe53d7543f169cdf3e9f5a65bf0f9db0bed2e5a23f9ffb43be6ea3743f8f58653e575d3fbf86cd9abe00078e3fb45f75be7ce5713f965a643e6cb0e0be2a028ebe62d8aa3f60fa99be6ecc693f34ab8c3e7e1e17bf740fabbe02f8c03fbeed72be6f1f6d3f41f0953e292352bfec1760be9087283f8c3facbef5d06f3fdc11c53d58ac59bf8e624dbe2099763e222f8ebee1ed753f675f5dbbcf83f3bf2195c4be68095c3f2660efbd9eab793fc90e403ef6eee3bff0a7b8beb80f333f361093bd97d47e3fb3e0803de48392bfd944a8be440d693f9033e1bde1057d3f051ad73d5b08a2bf6632b6be32008d3f75131abe358e733ff697893e92924abf4dbd80be8c145c3f8e9596bedb666f3fc6244a3ee9659cbfd28fa0be9a29173f44c90ebec8927c3f1526ad3dd1cc13be40f6c2bd9645963faa602b3de6c0783f58176e3eb22a02be581e85bde012893f695433bd42da7a3f5b55473eb68000bf761f24be604a7f3f008bc9be506c5e3fb1bd993ec18eb7bebefe18be3019943f23e4f1be9d97503f4704ac3ecbf3a0bfdc0f92be501a523ee702ffbd74ef7d3f66efc13c520aeebf7657b0bed8cd04bef9707bbd66847f3f30bc11b8c1e208c02c83b4bec05384be7b9109bee69f7d3f398ba8bcc91d26bee04494bc3c574e3f416cdd3d83027d3fb5f5db3d29cf2cbe209ef73c1026993ed6305c3ec9fe793fc28436bc572581be1e890bbe76c0a23f6c10f1bd33716c3f85cbba3e426013c05c09c7be90a91d3f5ed0aabd774a7d3f3228f33d9ca706c07e1cbfbece22063f81e584bd20d17e3ffff8903d55c213bee0d2c3bc20e474be797d8a3ea56d743f9777fcbdecc2cfbd007507bea29436bffb7aea3de321773f601570beb51aaabe089a53bef78d29bf10eea1be4f45653fe031a0bec11d48be80effebd06ef35bf352aeebe62c3533fed63a1be3dd591be10e481bda8807abe6c47c3beacd3663f04ac50bee14418bf52a40fbede65aabeac7682be3901753f1c9e0dbe3a3b9dbfdb8d98be30ebcabdfcfafabde2ab7d3f86ba63bdf12968bf6cb375be486674beb5df77be7125783fcfca2ebdd72fe8bf7c46b4be2c5fe43e7d80a1bd07bc7e3fb140773d804982be302790bd0ade893ff403c1be0987653fbef86d3e643bebbf460ca5bef893193ee347afbd58017f3fc024aa3c5e1128c0b0aac8be38c1cb3eed29a1bd01a77e3fb16c863d63b4e6bf6633a1be82f909bf2ba3a4bd0f0c7f3fd9e4fe3c8def7bbf240e8bbe277e06bfd94f3ebe6a4e7b3fff6a2dbd7d2528bf16ab6abe6ce21ebfe1c5bcbdc6c77a3f03cc36be7b49a7bf3f8fa3be7e68babe5600a0bd340c7f3f6bf4143d420ad6be98346abe99d02abfcf1a83bd061e703fcb7baebe6ea391be3fccb0bec89564bf139ec03cb1cc613f63f3f0be4e9860be1ec377be920259bfd2f91ebf43781d3f6cb9f8be64e597bef9dd9ebe0284dc3fdf881abefd15773feecb5a3e82ad8ebfb32688bec93636bf7cbb38bd4e9a7f3f14cd053de99b4cbf096d93bec63160bfb0e3cd3cd1447e3f5022e8bd28b8e8bea0c2a3bec9df6bbffea3d33d39fd7c3f62d7e6bdf22203be42f63ebe92755ebf25e575be6ff0663fb990b7bef65da9bed0c1a2bdd827953f0b2c54bfa505003f3885803e60ea87be409ceebcb8b19a3fe660d5be04c4143f89f2323f7b6b80be2077b2bde4859d3f30706ebe5739f13efbcb593fc18eb7bebefe18be3019943f0d4c6dbf3939b43e4606053e572581be1e890bbe76c0a23f619c68bef183f03ec1625a3f0d3946be608f59bd3418983f309ad93e2503e43ea2be493fd1cc13be40f6c2bd9645963fe9ec093f5519c03e4019413f0d3946be608f59bd3418983f7047ed3e4293603f1d2a00bedfc064bef0834abd184a933f6a744c3eb44b763ffc3b3ebea08b46bea0778bbdacb48a3f1373223e1eff793fd50a153e804982be302790bd0ade893fccb434bf8533d93ed63611bffc6d8fbe800238bdd09d913f81e323bfc24e373fb3798ebe60ea87be409ceebcb8b19a3fc60a4f3ec1ee753f00e542befc6d8fbe800238bdd09d913f46dab53d9e9e743fabf38fbe205ea7bf0e3489be98f16cbfb9077bbd16477f3f898e31bd938a72bfcf678abe28b390bf5a7d0d3dabd77f3f9bf9c73b94a11abf6c9592be1ec291bf9c70ef3da0287e3f3a30d3bc9ca4c1beef3daebe3cf583bf9b9b963ebfb0703f46e22fbe1efe12c0624bc9beb0a1983e81ae18bc5df57fbf81987c3c78b90ac0221ecbbe90e6983db1363bbd4abb7fbf4c06293b118d1ec09cf9cfbe00c0a9bc9d11283c8afc7fbfaf5a173a155731c01614d0be685e2f3ee611bb3c05e37fbf21059c3c896167bfe0d8c5bef035a53feb8f35bde7077fbff626993d29e717bf9a27c1bee4bfc13fe1e6f0bd7de478bf36244f3e7fa6e6be3a09d7be62d8aa3fe70b1dbef6267abfb6a5163e575d3fbf3c51ccbe840f8e3f4a33fabd7f3b7cbf0dd8f43d553250bf058aeabe6092143f70ce3ebe720f7bbf2e43723d55f9d6bedd100fbfa405223f0dd813be3e8a7cbf61ae9e3d64afdfbe008110bf48436e3e641428beb2507cbf21c825bdb53255bf04acefbe48d5703efc88febd1f037ebff4639cbb9b1bf7bfdc30d4be605d5f3f6766733aeafe7fbf7cbcb9bb07b6a2bf261bc9be6e888e3f221973bb7c427fbfb7739b3de48392bf096fd1be74f3673f55f880bc2e9e7fbfaf36563de4daecbf2140d0beecbf303f27a3dbbcfdd47fbf7694c73ce1464abfa492dcbe8c145c3fbe1825bed4c37abf4d7ff63d79019ebfe468d8bea422103fb8ee25bd2b7b7fbf7904493d3f52a0bfdcc0dfbe385f4d3e62d21bbdf6be7fbf72c2bd3c520aeebf1d75cebef057f8bd1777e6bcc3b87ebf281ec4bd4ad20bc02c4bc6be4cd694be296a7d3b1db07ebfcfeecebda88fc8be02a1ffbed40b873f8dcf2cbed3c377bf89153f3efdbb86be3224d9be84c2c13facb0e6bd21c077bf379f663e9ca706c02d7cc7bece22063fea0159bc78df7fbf712feabc1e1b15c05a2bccbe9642223ffe77953c26ce7fbf282b0dbd43c9c4be6e16e1be5c3620bf7ab9a2bd681f7bbfa58835be2e57d7bec84604bfe03527be159ae5bd8b797bbf538119bea94b62bf4da1ddbe482855be8498debd6c2d7cbf6bb908beb5379cbff069e0bef0b7b4bdfe2e16bd610b7fbfb70ba0bd6614ebbf7079d6be680de23e4c023ebd29927fbff7b90d3d643bebbfa016ddbeb0b8193ea04518bdb9d17fbf24d6b2bb3ee829c070cfcdbe70eed33e2399bb3ce2ed7fbf6df4aebb5474ecbfa1bcb1be70ff13bf49eb13bc4c247dbf574f18be6c767cbf3f1db9be4e5a02bf615ab6bd0d227bbfb69230be7a5226bfd046d0be020c11bfe39518be26057bbf26d402be6423c4bfea5ac5be4e8fb9be4ac7c0bc2d927cbfed4a25beef9072be4030b9be22685ebf8af245bef14b76bf5dfa44bee4f891be9ce3bebed66764bfec4a0a3e2a7179bf672538becefb97be8336b3be6494dc3f2ca0aabd56476fbf4bf0b03e82ad8ebf1b48a9be7e8a35bfe9bb54bda95c7dbf65a408bee99b4cbffcfbb6bec63160bf1c9feebd91a27bbf07aa11be28b8e8bea003c5bec9df6bbf4a0b67bdbe3779bfe6e862bee960a9bf18cf92be4a7973bf3a7783bda0287cbfe50b24be08c774bf4fe88fbefd2c93bfb103b9bd569777bf984d73be0f461cbf0b5f99bef8f693bf1df28dbdd19673bf236f99beadbdbfbeca73b7be4f0185bfff8edbbc95a078bf386f72bee4f891be9ce3bebed66764bf911d213f14f5f13c48cc46bfef9072be4030b9be22685ebf41ff5bbf172e553eb723efbe29e717bf9a27c1bee4bfc13ff22d14bf37267f3e72c5463f896167bfe0d8c5bef035a53fea9ee5bed84ccc3e5bbe4c3f155731c01614d0be685e2f3e8e4547be8573773f00be2abe118d1ec09cf9cfbe00c0a9bc30de99be8a2a693f6dec90becefb97be8336b3be6494dc3ffcc500bf52ec883d58975c3f4ad20bc02c4bc6be4cd694be9c4cc3be030e5c3ff115aebe5474ecbfa1bcb1be70ff13bf1714b7be27e25e3ffcf7acbe9b1bf7bfdc30d4be605d5f3f2a339abe8278373f3a07213f1e1b15c05a2bccbe9642223fc3f12dbeb82a723f806c8d3ee960a9bf18cf92be4a7973bfe2d69dbe453d5b3fff0dd4be08c774bf4fe88fbefd2c93bf7cd792bd32335d3fe81affbe0f461cbf0b5f99bef8f693bff492973e092e293f3e8d30bfadbdbfbeca73b7be4f0185bf2fa2373f6b148c3e410a24bf07b6a2bf261bc9be6e888e3ff26fb1bec815df3e5ca8543f3ee829c070cfcdbe70eed33e16236bbe616f753f03ad2b3ebff02abed848c4be2fa28ebf69ccb6be341f6fbf1ff7d9bbbff02abed848c4be2fa28ebfe7795cbf22d4b73efd26b8be0953d4bdd6768dbe711e8dbf5b0d13bfbea9373f8fc9c9be516c25bee4bdc4be47e5a9bfd0f158bfaa8107bfba1127bdbff02abed848c4be2fa28ebf20ff59bf840206bf97feecbc5550d1bd462993bebff3aabf1aa32ebf51d73a3fe93935bd0953d4bdd6768dbe711e8dbfc35a15bf84bc4f3fca620abd98a2bcbd420ac0be2a7a2dc0ce8f60bf4d1ff5be920f15bdc72bf0bd4e67c1be62cc07c08d4d33bf9e6336bfcfc12fbd9f835dbda35d9fbef2862dc003813cbf081d2d3f369fbabcedab91bd68259fbe5ae307c071613bbf98402e3f512df9bc1bb5e7bcf69ca6be1aed74c00adb47bf82c71f3fb44b00bd170d19bedc46c5be70cec9bfd93c75bfa91e90be925263bd6981b7bdf9db98be70cec9bf843b36bf6b60333fbbd544bd02c02cbdbc959fbebc4a4ec06a7c3cbfa8132d3fe6f2e9bc19a149bd7effb8be1aed74c06b3341bff84d27bf48926cbd90a193bd36adbebe47484ec024dc72bf9ebaa0bef7441dbd532083be2024873c80d84c3f3cf377b9ea107d3f27961a3e88f18abec8b6843de44c973e95d743be493f7b3fb4ed6cbcb7416dbec095483c68b277bef714a5bee41a6d3fe82a48bed1ae4a3ffcfbb6bec63160bfcaf7363dd1467dbf21c50d3e0e873d3f1848cabe4a768bbfc3e10a3cea047cbfc8ab333e1497e33e6d59d8be745d9dbf0d9548bd6d187ebfdd4be43df8dde43ea003c5bec9df6bbf65bda8bbc8177ebfad4bf93d35b81d3ee4bdc4be46e5a9bf760730be43f17bbf0d70323d603c233ed848c4be2fa28ebfc4fad8bdafd47dbf59f2993db41e8e3e9ce3bebed66764bf683369bd32d07ebf53bf9e3df8dde43ea003c5bec9df6bbf683369bd32d07ebf53bf9e3d603c233ed848c4be2fa28ebf683369bd32d07ebf53bf9e3d603c233ed848c4be2fa28ebfbd6125bea15b7abf367f073e90dc6a3e4030b9be22685ebfbd6125bea15b7abf367f073eb41e8e3e9ce3bebed66764bfbd6125bea15b7abf367f073eca1acd3ee6ede2be25e4c2bf75561dbe686b7cbfff38843d7558113edc46c5be70cec9bfeabb62beeb9d79bfeccd723cd66f1e3fe6ede2be32abacbf932bdfbc13ae7dbfb6b0063ee99b4cbffcfbb6bec63160bfe4f736bdd3467dbf1cc50d3e28b8e8bea003c5bec9df6bbf6fbda83bc8177ebfac4bf93d4371e7be6d59d8be745d9dbf0d95483d6b187ebfe54be43d15743fbf1848cabe4a768bbfe9e10abcea047cbfc9ab333ebff02abed848c4be2fa28ebfb9fad83db0d47dbf73f2993d516c25bee4bdc4be46e5a9bf7b07303e42f17bbff36f323de4f891be9ce3bebed66764bfba61253ea15b7abf367f073eef9072be4030b9be22685ebfba61253ea15b7abf367f073ebff02abed848c4be2fa28ebfba61253ea15b7abf367f073ebff02abed848c4be2fa28ebf6533693d32d07ebf53bf9e3d28b8e8bea003c5bec9df6bbf6533693d32d07ebf53bf9e3de4f891be9ce3bebed66764bf6533693d32d07ebf53bf9e3dd8f4d0bee6ede2be25e4c2bf79561d3e686b7cbfe738843d170d19bedc46c5be70cec9bf40bc623ee69d79bfb4c6723cee5c20bfe6ede2be32abacbf922bdf3c12ae7dbfb6b0063e1497e33eae31d2be745d9dbf8dc28d3d29847c3f30b618be0e873d3f1848cabe4a768bbf2b2c833d49d2773f783f78bed1ae4a3fc11bacbec63160bfc28906bcfbea7a3f08da4abef8dde43e6423babec9df6bbf664af03a6e127d3f6c6b1abeabed163e1921bebe2fa28ebfcd58c23de4bd7d3f5e79bdbd3c69113e2596bebe46e5a9bf0dbb323e00697b3f95da91bdabed163e1921bebe2fa28ebf02034c3dc4e87d3ffe77f0bdf8dde43e6423babec9df6bbf02034c3dc4e87d3ffe77f0bdb41e8e3e8203b4bed66764bf02034c3dc4e87d3ffe77f0bdb41e8e3e8203b4bed66764bf9bdb113e5c9d793f9a4d2ebe90dc6a3e0550aebe22685ebf9bdb113e5c9d793f9a4d2ebeabed163e1921bebe2fa28ebf9bdb113e5c9d793f9a4d2ebe7558113edc46c5be70cec9bf21d4693ed9e4783ff8f750bdca1acd3ee6ede2be25e4c2bfba582c3e35e67a3f4404d8bdd66f1e3fe6ede2be32abacbfcab1913d87d37b3f022229be4371e7beae31d2be745d9dbf2ca18dbde7847c3f11aa18be28b8e8be6423babec9df6bbf5711f0ba6f127d3f6d6b1abee99b4cbfc11bacbec63160bfde89063cf9ea7a3f07da4abe15743fbf1848cabe4a768bbf4c2c83bd49d2773f7e3f78be53061ebe1921bebe2fa28ebf01f7c1bd11bf7d3fc278bdbde48118be2596bebe46e5a9bf797632bede6c7b3f927f91bd53061ebe1921bebe2fa28ebfc0b411be739b793fe6992ebeef9072be0550aebe22685ebfc0b411be739b793fe6992ebee4f891be8203b4bed66764bfc0b411be739b793fe6992ebee4f891be8203b4bed66764bf7eec4bbde9e77d3f99b6f0bd28b8e8be6423babec9df6bbf7eec4bbde9e77d3f99b6f0bd53061ebe1921bebe2fa28ebf7eec4bbde9e77d3f99b6f0bdd8f4d0bee6ede2be25e4c2bf992e2cbe39e97a3ff0a9d7bd170d19bedc46c5be70cec9bff3b969be3ce8783f90bf4ebdee5c20bfe6ede2be32abacbfc8b191bd86d37b3f022229be0000000000000000a3d8b03d6287913e1b63b73daed7cc3edbbe173e24edce3eca50153e24f0973eb8acfa3ed445ca3e21cced3e1e55e53ee23e063f3eb0f33e53ae103f0ac2d53e4ada933dd07ba33d7560123c40aa683d7560123ce0f7b63d5847943d5891d83dd34f683ef45b243e419c173e0843dd3da9a5f93dc0d3143e1a31433e24254d3e4feb563ebc7ca33ea6d0593eac3ad33e0187d03ea623883e8b6da23e28264f3efa43933ea4fa7e3ea12cc43ef8e4993eff094e3eb632893e541e953e2ac4ab3e7560123c50163e3e7560123ce467533e4796273d8822543e733f313d0c083d3e52c5c33db047413e55690b3e78c1603ee5d49e3eae2bd63e82abcc3e2ec6003f8523f03e00e4083fad24433d2c11903e7560123cf69a8e3e7560123c1408cb3e26af493dd0efcb3ec09a8e3d14a5243e4180e43efcc2b33e29b1fb3e58ffa73e7560123c5a49073f7560123c2e70253f3455063d2c46253f1135313d1aa1073f3ba0b63dc217223f3d5f133e5e61053ff9e89e3ddcf8073f935d643dbc1d253fa5d8613ea9a2003f164c9c3e2e00f53e2192c13e96d0bd3e3ab88f3d30cd543ebdaac33e0491dd3eedf50a3f42efbd3e2d22ca3eb6841c3fcc46773ef9f7193f4d812c3e897c1f3f4a79a53e973a103f758ee13d7766223f86487c3d4baf2d3f37b89e3d1283303f00acae3db0734c3d428f1c3ce087ca3c91f28b3eeeeb243f1422503e8a702f3feacef33d024b323f7560123c94662f3f26f7203d25042f3ffd30723ef05f673d336e9a3e003f833d6535953ea0b9873ca52f543e48f1ca3d82ac9f3ea827f33dbd52c63ea03ab63d780eb53eb04e5c3d14b4643da876363eec666b3d346d4f3e1db6883d9cbb3d3eb6485a3e606acb3c465f313eb01f5b3dca429a3d7468313eab37a43decac463e3256a33e10912e3f6132753ef2233e3fb24c1f3ea4e23f3f17a0cd3d9e24393f22fb083f1c0c153f151fdf3e209a1d3f7105003ff6622c3fa9f50e3f5a9c213f98f9463f9a7bb83e4e0d503fb27ccd3e03b65f3ffa5eb33e7d235a3f22a2a03e89414c3f9644063fafd04b3f5d88193fe816623f96ad193fcf13633f3b70023f81251b3f6e2deb3e5bcd1e3fa838fe3ec1fd383f8027e53ef0a4313fdc0ecd3edd994d3f5cabed3e8b70373f4a7a083f71e6333fdcd61a3f00571e3f97382e3f2ee70e3fe256393f41b6643f0edad33e5c3d7b3f284a1a3f5c3d7b3ff86aff3e6b2d6c3fac949e3e5c3d7b3fde72953e5c3d7b3f0a16cf3e15c6063f242a043fc422123fb9c5083fd523653f9c874b3f5c3d7b3faf254c3f5c3d7b3f30b72f3f2009633fd6ab303f1c42353f7841283faef1493f1a712d3fc364223fb2860f3f0185223f1eff1d3f12c0f53e0d8d0f3f41f0203fd233493f6fd7433fa62a453f6bbb553fdf16483f7ea92f3fe0f23c3f2ee76a3f4cff5a3f03b46d3f0aa3593f5e14693f46f2853e5c3d7b3fe88f793e8d633c3f861f503f2c0c4d3fb70a5a3f9010613f03b15c3f5c3d7b3ffd4d583f239e303f99655b3fbfef433fa6f4693fe202583f40506a3f4eb6653ff486633f5b4f933d1043333f3398a03dd0d2313fedd41c3e1007d03db5336c3ebc901e3eca37133f78b6d73e2ff8083fecbcf53e5893b23d3095373d3013f53ef7e70a3fd674cd3e11c71e3fa680d43e508f853e42d2ff3e0cc5a53e404da53e8d29303fcc61773eac593f3f79e7203e8cf6403f1b1fc73db0c83b3f7560123c8000613c7251a53ecce14a3eb2810c3f34f0bb3ebdc3713f19e5673f5c3d7b3fae6d663f30d4663d6bf03e3ff18f083d419e3d3f7560123c7ec73c3f3657cd3d5f027e3f7ad3a33cfb687e3f9129df3c6e0e763f037bcc3d351f763fb058c33ce3316e3ff452d13d0f036f3f7ad3a33ca770673f3657cd3d43d7673fcdada83e305e7c3feacaa73ea8a4753ff33efe3e9b72753f61c4fe3eaf837b3f0000a83e0abb703f705cfe3e15c3703f26c8503f19ad6f3fe4d6783f58b9713f2f17513f25cd713fbe112d3ec49b7d3f53752f3ed932763f53752f3e3ad46f3fbe112d3e90e4683fcdada83e53e16a3fcec4243f21cb703fec87243f4ac16d3f2f17513fc516753f97e2763ff577763f1f64513fafcc793fe9d5243f2ea97a3fecc1243f8e40753f6476fe3ea7a46c3f571d8e3dd063cc3e7635893d36cc903e7583773df2cc073fa3d8b03d6287913eca50153e24f0973edbbe173e24edce3e1b63b73daed7cc3eb8acfa3ed445ca3e53ae103f0ac2d53ee23e063f3eb0f33e21cced3e1e55e53e4ada933dd07ba33d5847943d5891d83dd34f683ef45b243e1a31433e24254d3ea9a5f93dc0d3143e419c173e0843dd3d4feb563ebc7ca33ea6d0593eac3ad33e0187d03ea623883ea12cc43ef8e4993efa43933ea4fa7e3e8b6da23e28264f3eff094e3eb632893e541e953e2ac4ab3e733f313d0c083d3e4796273d8822543e55690b3e78c1603e52c5c33db047413ee5d49e3eae2bd63e82abcc3e2ec6003f8523f03e00e4083fad24433d2c11903e26af493dd0efcb3ec09a8e3d14a5243e29b1fb3e58ffa73e4180e43efcc2b33e1135313d1aa1073f3455063d2c46253f3ba0b63dc217223f935d643dbc1d253ff9e89e3ddcf8073f3d5f133e5e61053f164c9c3e2e00f53ea5d8613ea9a2003f2192c13e96d0bd3e3ab88f3d30cd543ebdaac33e0491dd3eedf50a3f42efbd3e2d22ca3eb6841c3fcc46773ef9f7193f4d812c3e897c1f3f4a79a53e973a103f758ee13d7766223f37b89e3d1283303f86487c3d4baf2d3f00acae3db0734c3d91f28b3eeeeb243f1422503e8a702f3feacef33d024b323f26f7203d25042f3ffd30723ef05f673d6535953ea0b9873c336e9a3e003f833da52f543e48f1ca3d82ac9f3ea827f33d780eb53eb04e5c3dbd52c63ea03ab63d14b4643da876363e1db6883d9cbb3d3eec666b3d346d4f3e465f313eb01f5b3db6485a3e606acb3cca429a3d7468313eab37a43decac463e3256a33e10912e3f6132753ef2233e3fb24c1f3ea4e23f3f17a0cd3d9e24393f22fb083f1c0c153fa9f50e3f5a9c213f7105003ff6622c3f151fdf3e209a1d3f98f9463f9a7bb83e7d235a3f22a2a03e03b65f3ffa5eb33e4e0d503fb27ccd3e89414c3f9644063fcf13633f3b70023fe816623f96ad193fafd04b3f5d88193f81251b3f6e2deb3ef0a4313fdc0ecd3ec1fd383f8027e53e5bcd1e3fa838fe3edd994d3f5cabed3e8b70373f4a7a083f71e6333fdcd61a3f00571e3f97382e3f2ee70e3fe256393f41b6643f0edad33e6b2d6c3fac949e3ec422123fb9c5083f15c6063f242a043fd523653f9c874b3f2009633fd6ab303faef1493f1a712d3f1c42353f7841283fc364223fb2860f3f0185223f1eff1d3f12c0f53e0d8d0f3f41f0203fd233493f6fd7433fa62a453f6bbb553fdf16483f7ea92f3fe0f23c3f03b46d3f0aa3593f2ee76a3f4cff5a3f5e14693f46f2853e8d633c3f861f503f2c0c4d3fb70a5a3f9010613f03b15c3f239e303f99655b3fbfef433fa6f4693fe202583f40506a3f4eb6653ff486633f3398a03dd0d2313f5b4f933d1043333fedd41c3e1007d03db5336c3ebc901e3eca37133f78b6d73e2ff8083fecbcf53e5893b23d3095373d3013f53ef7e70a3fd674cd3e11c71e3fa680d43e508f853e42d2ff3e0cc5a53e404da53e8d29303fcc61773eac593f3f79e7203e8cf6403f1b1fc73db0c83b3f7251a53ecce14a3eb2810c3f34f0bb3ebdc3713f19e5673f30d4663d6bf03e3ff18f083d419e3d3f037bcc3d351f763f9129df3c6e0e763ff452d13d0f036f3fb058c33ce3316e3ff33efe3e9b72753feacaa73ea8a4753f705cfe3e15c3703f0000a83e0abb703f2f17513f25cd713f53752f3ed932763f53752f3e3ad46f3fcec4243f21cb703f2f17513fc516753fecc1243f8e40753f7635893d36cc903e571d8e3dd063cc3e7583773df2cc073f8f397f3ed09c453f46999d3e2c66543f8eb2de3e17d6513fb264be3eaeef373fe09e0b3fd6e74a3fc72e013f0340393fe866d73e046f2c3fb264be3eaeef373fc72e013f0340393fc72e013f0340393ff14bdd3eba2a283fe866d73e046f2c3f82e5003f732a683f65c5183fa1675f3f72e0cd3e45f3643f247c7f3e596e453f7077be3e7fdb373f6afadc3e2979513f72a79c3eb038543f8cbc003fa432393fe7c70b3f32e64a3f2043d73e3d472c3ff44edd3e880f283f8cbc003fa432393f8cbc003fa432393f7077be3e7fdb373f2043d73e3d472c3f2ae2003fe52d683fb532193fa0545f3f60ccce3ea5d9643f28463a3f288b6b3ef4e05a3f0023283e20b75f3fa0d08b3d7976393f7014c03d85b1193f941a3a3ec39b193f5cc38c3e85b1193f941a3a3e7976393f7014c03d780a253f205da53d780a253f205da53d817a1f3fa0b4903d85b1193f941a3a3e98dc183fe0a5c43e384e363f823bb83e3f584e3fc4f28f3e28463a3f288b6b3e7976393f7014c03d20b75f3fa0d08b3df4e05a3f0023283e85b1193f941a3a3ec39b193f5cc38c3e85b1193f941a3a3e817a1f3fa0b4903d780a253f205da53d780a253f205da53d7976393f7014c03d85b1193f941a3a3e384e363f823bb83e98dc183fe0a5c43e3f584e3fc4f28f3e0000000000000000686b103fdbd4843eaba8343e00000000010000001100000015000000000000007f14df3ec6cca83e763d703e0000000001000000150000000200000011000000fa61613fea04d03d0aad933c000000001500000001000000020000001100000044a5143f08268f3ee01e0f3e00000000150000001100000001000000000000002e70223f5f96533ee9a8223e000000001700000016000000120000001500000074102e3fe6dc4c3e92c2f53d0000000017000000160000000f00000015000000e6425a3f67f4163e0000000000000000170000000f0000001200000015000000b30f673f6782c73d0000000000000000170000000f0000001200000015000000ee71543f4a382e3e0000000000000000100000001100000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f0000000000000000000000001000000000000000000000000000000036ff4b3f2803503e00000000000000001000000011000000000000000000000040d50b3f8055e83e000000000000000012000000110000001500000014000000aa2d2f3fab0d853e0cb8643d00000000110000001000000001000000000000001f4f2a3ff110853e4543993d0000000011000000100000000100000000000000995d403ff76b693e31eda83c0000000011000000120000001600000014000000116dce3ec8b9663e59d44e3e0000000011000000150000001200000016000000cdcc0c3f6666e63e0000000000000000150000001600000011000000140000000b701f3fccb2583e0a8d293e00000000120000001600000017000000150000004c26283f8885643e92c2f53d0000000012000000110000001600000014000000d7010a3f90c2753e1336623e00000000120000001600000011000000140000006bf00a3ff8f4853e6254483e0000000012000000160000001700000015000000406ce43e43f2a03e39dd0a3e00000000110000001200000016000000150000001ebdd43e7aea653e5c354b3e00000000160000001200000011000000150000008049383fff6c8f3e000000000000000001000000100000000000000000000000a7065b3f65e5133e000000000000000001000000100000000000000000000000389e743f791c363d000000000000000001000000100000000000000000000000d94a2c3f4e6aa73e0000000000000000010000001000000000000000000000002ed3f23e6d07b13ec94a383e000000000100000011000000100000000000000042061d3feb1e803e21a90b3e0000000011000000010000001500000000000000ee98553f499c293e000000000000000016000000150000001100000014000000128ae13e5df9923e927c8b3e00000000160000000f00000017000000150000005d290b3fa13cac3e92c2f53d00000000170000000f00000016000000150000000000803f000000000000000000000000010000001100000000000000000000000000803f000000000000000000000000010000000000000000000000000000006666263f3333b33e0000000000000000010000000200000000000000000000006666263f3333b33e00000000000000000100000002000000000000000000000009542a3f8ab1a03e4966aa3c00000000010000001000000011000000000000005983de3e830e993e256e883e000000001700000012000000160000001500000032b4dc3eb9659d3e15e6853e00000000170000001200000016000000150000000000803f000000000000000000000000020000000000000000000000000000000000803f00000000000000000000000002000000000000000000000000000000d4797c3f008be13b008be13b00000000020000000100000003000000000000000000803f00000000000000000000000002000000000000000000000000000000c36d773fa324053df8cb7f3a0000000002000000150000000e000000110000002041033f2fc8d83e41d6823d000000000e0000001500000002000000110000005703433fa3f2733e0000000000000000020000001500000011000000000000000da9793f5cde4a3c5cde4a3c00000000020000000100000003000000110000004709003f8a83d13e9ea7b93d0000000015000000160000000e00000014000000f3285c3f345c0f3e000000000000000016000000150000001100000014000000e658fc3e3c318f3ebaeb683e0000000016000000120000001700000015000000ff8a4d3f18202f3e569fd53c000000000100000011000000100000000000000012f5233f6f4a753e92c2f53d0000000016000000170000000f000000150000001ac73d3f83a7103e2978f03d00000000170000000f00000012000000150000004d75173fcfba5f3efe6f423e000000000f00000016000000170000001500000065e3d73ef56ea63e652c803e000000000e00000016000000150000000f00000047ea5d3fbb5ede3d253cc93c000000000e00000015000000020000001100000004f21c3fd043733e1ff4183e00000000160000000f0000001500000014000000a496163f79e2b43ef8816f3d00000000020000000e00000015000000110000000000803f0000000000000000000000000200000011000000000000000000000014351b3fd895c93e0000000000000000020000000e0000001100000000000000584b463f9ed2663e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000021a1eb3e22b8d33e9f08fa3d000000000e0000000f0000001600000015000000fa647d3f85c1263c00000000000000000e0000000f00000011000000020000007b3a503f16163f3e00000000000000000e0000000200000011000000000000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000020000001100000000000000000000008a7a3f3f3a374d3e787a533d00000000010000001000000011000000000000005c351a3f4795cb3e0000000000000000010000001000000000000000000000004edf4c3fc8824c3e0000000000000000010000001000000000000000000000002ed3f23e6d07b13ec94a383e000000000100000011000000100000000000000009542a3f8ab1a03e4966aa3c0000000001000000100000001100000000000000d94a2c3f4e6aa73e0000000000000000010000001000000000000000000000007ec63f3f0473803e0000000000000000010000001000000000000000000000007ec63f3f0473803e000000000000000001000000100000000000000000000000d08b733f095f393dd73f5e3b0000000001000000100000001100000000000000d9f54c3f9b284c3e000000000000000001000000100000000000000000000000ef4c523fdf77353eb432aa3a0000000001000000100000001100000000000000ff8a4d3f18202f3e569fd53c00000000010000001100000010000000000000004edf4c3fc8824c3e000000000000000001000000100000000000000000000000ef4c523fdf77353eb432aa3a0000000001000000100000001100000000000000d668023f552efb3e00000000000000000e0000000f0000001500000011000000e07a143f3f0ad73e00000000000000000e0000000f00000011000000020000001fac3c3fc2a7863e00000000000000000e000000020000001100000000000000fd90103f05dede3e0000000000000000020000000e00000011000000000000007d93313fb398513eb132d03d0000000017000000160000001200000015000000b30f673f6782c73d0000000000000000170000000f00000012000000150000002e24553f496f2b3e0000000000000000170000000f0000001200000015000000d6662c3fafed813e9312953d0000000017000000160000000f00000015000000781d273f10c5b13e000000000000000011000000120000001500000014000000a6fd553f6709283e000000000000000011000000120000001500000014000000cdbddc3e414ac43ee3ef3d3e0000000001000000110000001000000000000000da254d3f96684b3e000000000000000011000000100000000100000000000000dcc6fa3e7950793e5047113e0000000015000000110000001600000012000000d8a3303f50b89e3e000000000000000015000000160000001100000014000000f39fed3e0858b23e0910403e0000000015000000010000000200000011000000a7e4f03e6544ac3ee7ad453e0000000001000000110000001500000000000000d864243f2e7c583e74f0153e00000000120000001600000017000000150000006a02003f4a1f9d3ec2b7453e0000000012000000160000001700000015000000a65e293fad2c8b3e1b58883d00000000120000001100000016000000140000003fb33f3f84d1273efec2b23d00000000120000001100000016000000140000000b05253ff220463ed20b183e00000000110000001500000012000000160000004a52b63e442f643e171e5e3e000000001600000011000000120000001500000096884c3fa8dd4d3e000000000000000016000000150000001100000014000000e558ff3e57fc883e88556f3e00000000160000000f00000017000000150000000d02133fe25ab83e0e84863d00000000170000000f00000016000000150000008e96003f1a15a03e77f5cc3d00000000010000001100000015000000100000006666263f3333b33e0000000000000000010000000200000000000000000000000000803f00000000000000000000000001000000000000000000000000000000b8c04a3f1ffd543e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000062627a3fbfb3b33c00000000000000000100000010000000000000000000000064ce033fb9659d3efefa353e000000001700000012000000160000001500000066cb093f14da8d3e421e3d3e00000000170000001200000016000000150000006aa51f3f10a7803e381c003e00000000020000000e00000015000000110000000000803f000000000000000000000000020000000000000000000000000000000000803f00000000000000000000000002000000000000000000000000000000928a393fdcea8c3e000000000000000002000000150000001100000000000000c3672e3fffcf543eec21e33d0000000016000000150000000f0000001400000092ed1c3f9181913e308dd23d0000000015000000160000000f000000140000007d5bf13ee74d9b3e38ad663e000000001600000017000000120000001500000019ba433f9c17713e00000000000000001600000017000000120000001500000037cd3f3f0f8f083e2978f03d00000000170000000f0000001200000015000000bea0233ff1854b3e17f7253e000000000f0000001700000016000000150000008c978d3eafda873e771a863e000000000f00000015000000160000000e00000001de023f2a5c8f3ea9cf553e00000000020000000e0000001500000011000000b34d223f8e2a5b3ea49e1b3e00000000160000000f0000001500000014000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000d9a26b3f3ae9a23d0000000000000000020000000e000000110000000000000054504a3fb0be563e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000033ebdc3eb034833e22ca663e000000000e000000160000000f0000001500000060d6593fcd2e123ea8f6ce3b000000000e0000000f0000000300000002000000b70b1b3f93e8c93e0000000000000000020000000e00000011000000000000000000803f0000000000000000000000000200000000000000000000000000000008410d3ff17de53e00000000000000000e0000000f000000150000001100000060ae143f40a3d63e00000000000000000e0000000f0000001100000002000000fabf2e3f0b80a23e00000000000000000e00000002000000110000000000000035c1153f957dd43e0000000000000000020000000e0000001100000000000000d9a26b3f3ae9a23d0000000000000000020000000e0000001100000000000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000da254d3f96684b3e000000000000000011000000100000000100000000000000781d273f10c5b13e000000000000000011000000120000001500000014000000b30f673f6782c73d0000000000000000170000000f00000012000000150000002e24553f496f2b3e0000000000000000170000000f000000120000001500000054504a3fb0be563e0000000000000000100000001100000000000000000000000d02133fe25ab83e0e84863d00000000170000000f0000001600000015000000bea0233ff1854b3e17f7253e000000000f000000170000001600000015000000d864243f2e7c583e74f0153e000000001200000016000000170000001500000064ce033fb9659d3efefa353e000000001700000012000000160000001500000008410d3ff17de53e00000000000000000e0000000f000000150000001100000060ae143f40a3d63e00000000000000000e0000000f0000001100000002000000fabf2e3f0b80a23e00000000000000000e00000002000000110000000000000035c1153f957dd43e0000000000000000020000000e00000011000000000000000000803f000000000000000000000000100000000000000000000000000000003fb33f3f84d1273efec2b23d000000001200000011000000160000001400000037cd3f3f0f8f083e2978f03d00000000170000000f0000001200000015000000044d353ff865953e0000000000000000030000000200000000000000000000001ed4283fc357ae3e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000000600283ff4ffaf3e0000000000000000030000000200000000000000000000003e27023f84b1fb3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000001ed4283fc357ae3e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000600283ff4ffaf3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000003e27023f84b1fb3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f0000000000000000000000000400000000000000000000000000000096ec0f3fc9fe9a3e17500a3e0000000001000000020000001500000011000000e1887b3f80696e3c59793d3b00000000010000001500000011000000000000002cfd7f3f2508353800000000000000000200000015000000110000000000000005c51f3f3d0a573eb0e1293e000000000100000013000000180000000d000000c023053f1029ae3ee01e0f3e000000001800000013000000010000000d0000005489613fe904d03dd8c18e3c000000001800000001000000020000000d000000bc74033f69918d3e3d0a573e000000000100000002000000180000000d0000004157313f1185333ee91d073e000000001a000000190000001400000016000000812b793fdb8fda3c00000000000000001a0000000d0000001800000019000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000008b9c433fa15a3e3ecccc4c3d000000001a000000190000000d000000160000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000006666263f3333b33e000000000000000013000000140000000d00000018000000eaa42d3f2bb6a43e000000000000000013000000140000000d0000001800000019b7193f05de7a3e96451e3e000000001300000010000000010000000000000011dc383fdff18b3ec47f953b0000000013000000100000000100000000000000872fbc3e48027a3e63215e3e00000000180000001300000014000000190000000a5a453fd9976a3e000000000000000018000000190000000d0000001300000081f8153f93eb583e68324f3e0000000014000000190000001a00000018000000891fe63e2fe09e3e9200763e00000000140000001a000000190000001800000021f0183f544d6c3ea38b2c3e000000001400000013000000190000001800000017f7273f086a703e3573df3d0000000014000000130000001900000018000000a1e50c3f2a5c8f3e28b12d3e00000000130000001400000019000000180000007411003ff4c0673ea3c31b3e0000000019000000140000001800000013000000e2d6343f3b52963e000000000000000001000000100000000000000000000000bfb8753f0e74243d00000000000000000100000010000000000000000000000032a5253f9db5b43e000000000000000013000000010000000000000000000000376b193f5c5f503ecaf3493e00000000010000001000000013000000000000002e77473f4923623e000000000000000019000000180000000d000000130000002f060f3f2b2f753e18b84e3e00000000190000001a0000000d000000180000002950173fd9307b3e858e273e000000001a0000000d00000019000000160000000000803f000000000000000000000000010000000000000000000000000000006666263f3333b33e000000000000000001000000020000001300000000000000e958303fbda09e3e8a70ad3a0000000001000000100000001300000000000000a01a0f3fac1c9a3e2a5c0f3e000000001a000000140000001900000016000000025ae53ea570bd3eb26a3a3e000000001a0000001400000019000000160000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000020000000000000000000000000000008484233ff4bc443efc302d3e00000000020000000c00000018000000130000000000803f00000000000000000000000002000000000000000000000000000000713d4a3f3d0a573e000000000000000002000000180000000d000000130000001f45283f8862653e0323853d00000000180000000c000000020000000d000000ff20333f816d413e071de43d0000000019000000180000000d00000015000000a7ee0c3f14d4303ec185133e0000000018000000190000000d0000000c0000007c7ef73e65fc9c3e400a573e00000000190000001a0000001400000018000000fc1e453f4209653ec059cf3b0000000001000000130000001000000000000000dfc11e3fe313883e8ec2753d00000000190000001a0000000d000000140000009999593f9c99193e00000000000000001a00000014000000180000001900000013a2283fac093a3e066e233e000000000d000000190000001a00000018000000c329863e9cb0823efdcf803e000000000d0000000c000000190000001800000016d8433f3292103e3da6a53d000000000c00000018000000020000000d000000b895e83ec609c03e04c12e3e00000000190000000d00000018000000150000006f4cd23e15d0b93ef6c6673e000000000c0000001800000002000000130000001f852b3fc2f5a83e0000000000000000020000000c00000013000000000000009630533fa63d333e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000010000000000000000000000000000000bd97cf3e180ca13e2a5c8f3e000000000c0000000d00000019000000180000007cad723f4128553d00000000000000000c0000000d00000013000000020000000bcb233feb69b83e0000000000000000020000000c00000013000000000000000000803f000000000000000000000000020000000000000000000000000000002be84b3f535f503e00000000000000000100000010000000130000000000000070c24c3f33da323e6ae0d03c0000000001000000100000001300000000000000340c2a3f8bd3923e6aa0483d0000000001000000100000001300000000000000376b193f5c5f503ecaf3493e0000000001000000100000001300000000000000e958303fbda09e3e8a70ad3a0000000001000000100000001300000000000000f24d503f36c83e3e000000000000000001000000100000000000000000000000e2d6343f3b52963e000000000000000001000000100000000000000000000000f24d503f36c83e3e0000000000000000010000001000000000000000000000008861563f7d79263ef199c5350000000001000000100000001300000000000000dc10743f40d1f43c3513893c0000000001000000100000001300000000000000fc1e453f4209653ec059cf3b0000000001000000130000001000000000000000b91f6c3f9fc0973d2633683b000000000100000010000000130000000000000070c24c3f33da323e6ae0d03c0000000001000000100000001300000000000000b91f6c3f9fc0973d2633683b00000000010000001000000013000000000000005a50fe3e9201ba3e2a5c0f3e000000000d0000000c0000001900000018000000fac3643f2ee0d93d00000000000000000c0000000d000000130000000200000029743d3fad17853e00000000000000000c000000020000001300000000000000ccc52b3f6874a83e0000000000000000020000000c0000001300000000000000ec432c3f5fb04b3ef13f033e000000001a000000190000001400000016000000c1813c3fcbc55a3ecdcc4c3d000000001a000000190000000d00000016000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000000000803f0000000000000000000000001a0000000d00000018000000190000006666263f3333b33e000000000000000013000000140000000d00000018000000366d3e3f95cf803ec57f953b00000000130000001000000001000000000000004545f43e63d08f3eb0d4773e000000001300000001000000100000000000000024b8293f70084e3e00170b3e000000001300000014000000190000001800000006e6223ff533ba3e000000000000000018000000190000000d0000001300000005c51f3f3d0a573eb0e1293e000000000100000013000000180000000d000000bd74033f69918d3e3c0a573e000000000100000002000000180000000d00000070b6093f2093ec3e000000000000000018000000190000000d0000001300000068f60e3f7a02793ee6234b3e00000000140000001a000000190000001800000073d8373f908b143ea3120c3e0000000014000000130000001900000018000000b872153fa1a38a3e13740e3e00000000140000001900000018000000130000002889f83e700cac3ed1d4363e0000000014000000190000001a00000018000000db8d0e3f6eaf813eba69423e00000000130000001800000019000000150000007f5e213ff4c0673e10c5123e0000000019000000140000001800000013000000c00a303f81ea9f3e000000000000000019000000180000000d000000130000005760103f9380773e12fe463e00000000190000001a0000000d000000180000007c5d343fc4e8313e9742f93d000000001a0000000d00000019000000160000004c14fb3eb9893d3e94e12c3e00000000010000001300000010000000180000000000803f00000000000000000000000010000000000000000000000000000000bb45c03ea570bd3ea049823e000000001a000000140000001900000016000000a01a0f3fac1c9a3e2a5c0f3e000000001a0000001400000019000000160000006244543f78ee2e3e0000000000000000020000000c0000001300000018000000713d4a3f3d0a573e000000000000000002000000180000000d000000130000005847203f6b06903e91abbd3d0000000018000000190000000d00000015000000eb51383f2a5c8f3e000000000000000019000000180000000d00000013000000703d4a3f400a573e000000000000000019000000140000000d0000001800000022f11e3f633c883e8ec2753d00000000190000001a0000000d000000140000009999593f9c99193e00000000000000001a000000140000001800000019000000855e0c3f7b0a7c3e727b523e000000000d000000190000001a0000001800000041e8fe3e0a6a713e0ff10e3e0000000018000000190000000d0000000c00000014120c3f7c4f793e3368563e0000000002000000180000000c000000130000004dfbc03e8cb1b93e295c0f3e00000000190000000d0000001a00000018000000ec817a3f8ec2af3c0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c000000000000000000803f00000000000000000000000010000000000000000000000000000000a861003f513eeb3ef9f21f3d000000000c0000000d0000001900000018000000e8ed7f3faac1903900000000000000000c0000000d00000013000000020000008274533ff72d323e0000000000000000020000000c0000001300000000000000934b0b3fac73b03eb9d4e33d000000000d0000000c0000001900000018000000bcdd673f1d12c13d00000000000000000c0000000d00000013000000020000000428113ff7afdd3e00000000000000000c000000020000001300000000000000b361313f9a3c9d3e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c00000000000000ec817a3f8ec2af3c0000000000000000020000000c0000001300000000000000366d3e3f95cf803ec57f953b00000000130000001000000001000000000000006666263f3333b33e000000000000000013000000140000000d000000180000000000803f0000000000000000000000001a0000000d0000001800000019000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000000000803f000000000000000000000000100000000000000000000000000000007c5d343fc4e8313e9742f93d000000001a0000000d0000001900000016000000855e0c3f7b0a7c3e727b523e000000000d000000190000001a0000001800000068f60e3f7a02793ee6234b3e00000000140000001a0000001900000018000000a01a0f3fac1c9a3e2a5c0f3e000000001a000000140000001900000016000000934b0b3fac73b03eb9d4e33d000000000d0000000c0000001900000018000000bcdd673f1d12c13d00000000000000000c0000000d00000013000000020000000428113ff7afdd3e00000000000000000c000000020000001300000000000000b361313f9a3c9d3e0000000000000000020000000c000000130000000000000073d8373f908b143ea3120c3e00000000140000001300000019000000180000009999593f9c99193e00000000000000001a000000140000001800000019000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000aca91f3fa8acc03e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000aca91f3fa8acc03e0000000000000000030000000200000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f000000000000000004000000050000000000000000000000db4c6e3ff950303da4c2d53c000000000100000013000000180000000d000000177a253fb634b23e1ec7b53b000000000100000002000000180000000d000000e804653fbfd8d73d000000000000000002000000180000000d0000001300000060d6593fcd2e123ea8f6ce3b000000000e0000000f00000003000000020000009cdb303fc9489e3e0000000000000000020000000e0000001100000000000000dff7083f3499883e1aee4a3e0000000003000000020000000e00000011000000b70b1b3f93e8c93e0000000000000000020000000e00000011000000000000000000803f00000000000000000000000003000000000000000000000000000000044d353ff865953e000000000000000003000000020000000000000000000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000b70b1b3f93e8c93e0000000000000000020000000e0000001100000000000000044d353ff865953e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000005ea26b3f0feda23d0000000000000000020000000e0000001100000000000000b174173f9e16d13e0000000000000000020000000e00000011000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000001a8a013facebc23e7e00e83d0000000002000000030000000e00000011000000e8ed7f3faac1903900000000000000000c0000000d00000013000000020000008274533ff72d323e0000000000000000020000000c0000001300000000000000f28a1d3f1beac43e00000000000000000200000003000000130000000000000014ae473faf47613e000000000000000002000000030000000c00000013000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000002000000130000000c00000000000000ec817a3f8ec2af3c0000000000000000020000000c0000001300000000000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000008274533ff72d323e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000638b333f3be9983e00000000000000000300000002000000130000000000000011fb083f639c883ef8da4a3e0000000003000000020000000e000000110000009cdb303fc9489e3e0000000000000000020000000e0000001100000000000000971f603fff72f93d7109323b000000000e0000000f0000000300000002000000ffa3223f02b8ba3e00000000000000000e000000020000001100000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000044d353ff865953e000000000000000003000000020000000000000000000000ffa3223f02b8ba3e00000000000000000e000000020000001100000000000000854e193ff562cd3e0000000000000000020000000e0000001100000000000000854e193ff562cd3e0000000000000000020000000e000000110000000000000015f0733fb0fe403d0000000000000000020000000e0000001100000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000001a8a013facebc23e7e00e83d0000000002000000030000000e000000110000001ba2113fcabbdc3e000000000000000002000000030000001300000000000000f752443f22b46e3e0000000000000000020000000c0000001300000000000000921d7e3fc636f13b00000000000000000c0000000d000000130000000200000014ae473faf47613e000000000000000002000000030000000c00000013000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000002b7b783fa89af03c0000000000000000020000000c00000013000000000000001f852b3fc2f5a83e0000000000000000020000000c00000013000000000000001f852b3fc2f5a83e0000000000000000020000000c0000001300000000000000f752443f22b46e3e0000000000000000020000000c0000001300000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000638b333f3be9983e000000000000000003000000020000001300000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0, y: -0.2611611, z: -1.2714314} + m_Extent: {x: 2.77094, y: 0.32596284, z: 3.07622} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh.meta new file mode 100644 index 0000000000..7688d1cd1e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e373d62592e6c94c9596b6bb14ffc52 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab new file mode 100644 index 0000000000..61461b9692 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab @@ -0,0 +1,144 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9123058302444839043 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8318374065002186575} + - component: {fileID: 1663937993534814099} + - component: {fileID: 9009444974776281064} + - component: {fileID: 6645666059111945641} + m_Layer: 0 + m_Name: "\u98DE\u9CD0_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8318374065002186575 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9123058302444839043} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1663937993534814099 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9123058302444839043} + m_Mesh: {fileID: 4300000, guid: 2e373d62592e6c94c9596b6bb14ffc52, type: 2} +--- !u!137 &9009444974776281064 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9123058302444839043} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 80e73e9a3079fdf4aa56818863768b38, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 2e373d62592e6c94c9596b6bb14ffc52, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &6645666059111945641 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9123058302444839043} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 1663937993534814099} + _skinnedMeshRenderer: {fileID: 9009444974776281064} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab.meta new file mode 100644 index 0000000000..b170052488 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 95de5f425940e5741a39843ae6c2eccf +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat new file mode 100644 index 0000000000..eb287d1dc3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0\u9CCD_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a5bab0f2983d861479a4a3532ce86581, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a5bab0f2983d861479a4a3532ce86581, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.015 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8302766338210088720 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat.meta new file mode 100644 index 0000000000..e4dd16dfbc --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 62b89e4f438a98143a40518cd64f212a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh new file mode 100644 index 0000000000..65661e6535 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh @@ -0,0 +1,671 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0\u9CCD_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 66 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 32 + localAABB: + m_Center: {x: -0.0037600398, y: -0.24675432, z: -3.2181904} + m_Extent: {x: 1.09028, y: 0.26516005, z: 2.068381} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011920929 + e01: 3.9404502e-17 + e02: -1.0000001 + e03: 1.0875986 + e10: 1.0694949e-15 + e11: 1 + e12: 3.9404502e-17 + e13: 0.31267777 + e20: 1.0000001 + e21: -1.0694949e-15 + e22: -0.00000011920929 + e23: -0.0009261863 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.009433403 + e01: 0.000000002930728 + e02: -0.9999556 + e03: 0.0408839 + e10: -3.6363315e-11 + e11: 1 + e12: 0.0000000029305158 + e13: 0.31267777 + e20: 0.9999555 + e21: 8.716963e-12 + e22: 0.009433402 + e23: -0.0013120426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.010100711 + e01: 0.00000000213998 + e02: -0.99994904 + e03: -1.0796483 + e10: 5.0768445e-10 + e11: 1 + e12: 0.000000002134961 + e13: 0.31267777 + e20: 0.9999488 + e21: -4.860939e-10 + e22: -0.010100713 + e23: -0.022405561 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.018515091 + e01: 0.00000001593 + e02: -0.9998288 + e03: -2.1261759 + e10: -1.7932714e-10 + e11: 1 + e12: 0.00000001592941 + e13: 0.3126778 + e20: 0.9998286 + e21: -1.1563791e-10 + e22: 0.018515097 + e23: 0.038446285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.008208985 + e01: -0.000000009813158 + e02: -0.9999667 + e03: -3.2684536 + e10: 1.33342e-10 + e11: 1 + e12: -0.000000009812396 + e13: 0.31267774 + e20: 0.9999663 + e21: -5.2787438e-11 + e22: 0.008208987 + e23: 0.004758754 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.07251635 + e01: -3.938046e-10 + e02: -0.99736744 + e03: -1.0423472 + e10: 2.19508e-10 + e11: 1 + e12: -3.7888453e-10 + e13: 0.32190198 + e20: 0.9973672 + e21: -1.914548e-10 + e22: 0.07251635 + e23: -0.72168094 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029568776 + e01: 0.000000008843177 + e02: -0.999563 + e03: -1.9293966 + e10: -0.0000000034849497 + e11: 0.9999999 + e12: 0.000000008743957 + e13: 0.32190204 + e20: 0.99956274 + e21: 0.0000000032248781 + e22: 0.029568765 + e23: -0.80537766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.019442642 + e01: -0.00000002973874 + e02: -0.9998112 + e03: -2.7040973 + e10: 0.0000000054613714 + e11: 0.99999976 + e12: -0.00000002985058 + e13: 0.3219018 + e20: 0.99981093 + e21: -0.000000006040713 + e22: -0.019442663 + e23: -0.9389995 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.09218214 + e01: 4.715061e-10 + e02: -0.9957427 + e03: -1.1076031 + e10: 5.1803384e-10 + e11: 1 + e12: 4.2556428e-10 + e13: 0.32190198 + e20: 0.9957423 + e21: -4.765988e-10 + e22: -0.09218213 + e23: 0.6807706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060275115 + e01: 0.000000006946731 + e02: -0.9981824 + e03: -1.933018 + e10: 0.00000001677088 + e11: 1 + e12: 0.0000000059466796 + e13: 0.321902 + e20: 0.9981819 + e21: -0.000000016381952 + e22: -0.06027509 + e23: 0.7429999 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029793758 + e01: 0.0000000050744946 + e02: -0.9995567 + e03: -2.671572 + e10: 0.0000000139174 + e11: 1 + e12: 0.0000000054915854 + e13: 0.32190204 + e20: 0.9995561 + e21: -0.000000014074833 + e22: 0.029793821 + e23: 0.9874153 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.97513276 + e01: 0.0000000024050197 + e02: -0.22162108 + e03: -0.44525054 + e10: 0.0000000024426599 + e11: 1 + e12: 1.04243045e-10 + e13: 0.32095918 + e20: 0.2216211 + e21: -4.3969384e-10 + e22: -0.975133 + e23: -0.4569956 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99503726 + e01: 0.000000013498726 + e02: -0.09950344 + e03: -1.0955272 + e10: 0.000000012868366 + e11: 1 + e12: 0.0000000069768484 + e13: 0.3209592 + e20: 0.09950348 + e21: 0.000000005661777 + e22: -0.9950375 + e23: -0.5968534 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9899499 + e01: 0.000000002614446 + e02: -0.14142136 + e03: -0.40980524 + e10: -0.0000000014035346 + e11: 1 + e12: 0.0000000086621785 + e13: 0.3209592 + e20: 0.14142133 + e21: -0.000000008376631 + e22: 0.98995 + e23: 0.5126524 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99693894 + e01: -0.0000000020833346 + e02: -0.07819128 + e03: -0.9732565 + e10: 0.0000000017002195 + e11: 1 + e12: -0.0000000049663225 + e13: 0.32095918 + e20: 0.078191265 + e21: 0.00000000481817 + e22: 0.99693906 + e23: 0.5756998 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.014284189 + e01: -0.000000007960181 + e02: 0.9998982 + e03: -1.0951422 + e10: -7.218223e-11 + e11: 1 + e12: 0.0000000079599625 + e13: 0.31267777 + e20: -0.9998981 + e21: 4.15267e-11 + e22: -0.014284187 + e23: 0.018818876 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99966544 + e01: -0.000000020012104 + e02: 0.025878796 + e03: -0.3404073 + e10: 0.000000019995408 + e11: 1 + e12: 9.037282e-10 + e13: 0.32190198 + e20: -0.025878794 + e21: -3.8596953e-10 + e22: 0.9996653 + e23: -0.72115564 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9993251 + e01: -0.000000018800456 + e02: -0.036746662 + e03: -0.829588 + e10: 0.000000019144093 + e11: 1 + e12: 0.000000008999786 + e13: 0.32190198 + e20: 0.036746677 + e21: -0.000000009697191 + e22: 0.9993251 + e23: -0.77460355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9996408 + e01: 0.000000016173326 + e02: -0.02680898 + e03: -0.3222799 + e10: 0.000000016196987 + e11: 1 + e12: -6.6533373e-10 + e13: 0.32190198 + e20: 0.026808985 + e21: -0.0000000010993216 + e22: -0.99964094 + e23: 0.7458364 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9989357 + e01: -7.9970414e-10 + e02: -0.046132583 + e03: -0.862538 + e10: -7.687193e-10 + e11: 1 + e12: -6.894839e-10 + e13: 0.32190198 + e20: 0.04613259 + e21: -6.532898e-10 + e22: -0.99893594 + e23: 0.7626567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99227816 + e01: 0.000000004565349 + e02: -0.12403479 + e03: -0.27313882 + e10: -0.0000000038002748 + e11: 1 + e12: 0.0000000064048162 + e13: 0.32095918 + e20: 0.12403479 + e21: -0.0000000058839906 + e22: 0.99227816 + e23: -0.18297398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99996775 + e01: 0.0000000012666821 + e02: 0.008064457 + e03: -0.83262366 + e10: -0.0000000012475698 + e11: 1.0000001 + e12: -0.000000002374815 + e13: 0.3209592 + e20: -0.008064457 + e21: 0.0000000023646742 + e22: 0.9999679 + e23: -0.07368517 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9990963 + e01: 4.5527254e-10 + e02: -0.04251479 + e03: -1.7537096 + e10: -9.166995e-10 + e11: 1.0000001 + e12: -0.000000010833868 + e13: 0.32095918 + e20: 0.042514782 + e21: 0.000000010863045 + e22: 0.9990965 + e23: -0.1625793 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9853084 + e01: 0.000000011868566 + e02: -0.17078647 + e03: -0.27211288 + e10: 0.000000013009718 + e11: 1 + e12: -0.0000000055625797 + e13: 0.32095918 + e20: 0.1707865 + e21: -0.0000000077027416 + e22: -0.9853085 + e23: 0.21222913 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99781775 + e01: 0.0000000019619206 + e02: -0.06603157 + e03: -0.858857 + e10: 0.0000000016558587 + e11: 1 + e12: 0.000000004689764 + e13: 0.32095918 + e20: 0.06603161 + e21: 0.000000004570182 + e22: -0.997818 + e23: 0.1224277 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9995925 + e01: 1.8039277e-10 + e02: -0.028559614 + e03: -1.8810982 + e10: -4.4994893e-11 + e11: 1 + e12: 0.000000007891071 + e13: 0.32095918 + e20: 0.028559659 + e21: 0.000000007889128 + e22: -0.99959254 + e23: 0.05190885 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 1.0932646, y: 0.024635494, z: -0.028991804} + m_Max: {x: 1.3123572, y: 0.32095748, z: -0.02493459} + - m_Min: {x: -0.04853058, y: -0.01464048, z: -0.042400327} + m_Max: {x: 2.017911, y: 0.33108354, z: -0.02543633} + - m_Min: {x: 0.8664328, y: 0.008401722, z: -0.16481662} + m_Max: {x: 0.8868997, y: 0.008401722, z: 0.11667937} + - m_Min: {x: -0.04632318, y: -0.16357318, z: -0.1687628} + m_Max: {x: 0.7781279, y: 0.15393876, z: 0.14862138} + - m_Min: {x: -0.046568155, y: -0.16357324, z: -0.17094785} + m_Max: {x: 0.66053295, y: 0.20681569, z: 0.21301562} + - m_Min: {x: 0.81248736, y: 0.008401722, z: -0.12685102} + m_Max: {x: 0.8385048, y: 0.008401722, z: 0.15418625} + - m_Min: {x: -0.030758977, y: -0.1371353, z: -0.13484251} + m_Max: {x: 0.8030019, y: 0.18037772, z: 0.18209922} + - m_Min: {x: -0.02564764, y: -0.19001234, z: -0.2068181} + m_Max: {x: 0.6845615, y: 0.18037775, z: 0.18430376} + - m_Min: {x: 0.4062017, y: 0.021405935, z: 0.45231587} + m_Max: {x: 0.74195635, y: 0.03988993, z: 0.53494585} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.3505358, y: 0.021405965, z: -0.5464386} + m_Max: {x: 0.6919065, y: 0.03988996, z: -0.49144387} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000100050004000400000001000500070006000600040005000a000900080008000b000a000b0008000c000c000d000b000d000c000e000e000f000d001200110010001000130012001300100014001400150013001200170016001600110012001a001900180018001b001a001e001d001c001c001f001e00 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 32 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 2048 + _typelessdata: 514e843f1b83a0be82662bc0000000000000803f000000007253373f1b83a0be82662bc0000000000000803f000000007253373f1b83a0beac4458c0000000000000803f0000000016138b3f1b83a0beac4458c0000000000000803f00000000bede793f1b83a0befd82eebf000000003dfa7f3fab4e59bced9d313f1b83a0befd82eebf243b9dbc62e27f3ffb7ebdbcf1d9723f4fe88fbef52c93bff810eebc18bc7f3fac750fbd08591a3f0b5f99bef8f693bf8aad58bd3b8d7f3fade9d8bcbb4485bf1b83a0be82662bc0000000000000803f0000000081098cbf1b83a0beac4458c0000000000000803f00000000894039bf1b83a0beac4458c0000000000000803f00000000894039bf1b83a0be82662bc0000000000000803f00000000d5cb7bbf1b83a0befd82eebf000000003dfa7f3fed4e59bc058b33bf1b83a0befd82eebf1c3b9d3c64e27f3f097fbdbc08c774bf4fe88fbef52c93bfe410ee3c19bc7f3fb1750fbd0f461cbf0b5f99bef8f693bf63ad583d3b8d7f3fcce9d8bc328876bb8040803c581882c00000803fe7ec323209b1c9b2b38876bb804f17bc562295c0ffff7f3f762b973354ecd1b2328876bb4296a7bef61f8bc00000803fe49f7f33a05f4db2328876bbe92ba2be20a874c00000803f2ec70bb2e1483eb2078876bbc0a7073cb61b5cc00000803f46064bb230318ab2078876bb467a93be7c154ec00000803f91dc4bb266d689b2b38876bba0c7963c982ba9c00000803f61d2c933c3c43331328876bbc1e5a3be44269fc0ffff7f3f8396c03345ef8d30c1ad633f90fe2bbe82662bc081fd7f3fe4040fbc3c02e9b4f7cb633f58b2ebbdac4458c081fd7f3f71010fbc606058b516f8623f3690f8beac4458c081fd7f3fe4040fbc3c02e9b416f8623f3690f8be82662bc080fd7f3fe8080fbc00000000c89a65bfee06ebbe82662bc080fd7fbf98fe0e3ca7ccb8340fb965bfd20c03bfac4458c080fd7fbf54010f3cbf9b2b352ee564bfbceb10beac4458c080fd7fbf98fe0e3ca7ccb8342ee564bfbceb10be82662bc080fd7fbf68fb0e3c000000000987363f503b3c3de2cb343fda75d73e50557d3f18b4e83e425a7f3f80f18c3cb8cdac3e00408e3d3dbaa93e3c2ace3edaf4123c2803803d80a6943bbc40f13e0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73eb8cdac3e00408e3d3dbaa93e3c2ace3edaf4123c2803803d80a6943bbc40f13e0c8fcd3ea52e0d3f512e313fbf800e3f213a143fdb15783f5a47a53eba927a3fd2dbc43d5491163ff837e83c071e783f8a3e7f3f4c3bfd3e2656623f81c26e3f0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73e0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73ee27a143f3d0ad73e000000000000000007000000080000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000009a99193fcccccc3e0000000000000000060000000700000000000000000000009a99193fcccccc3e0000000000000000060000000700000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b00000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b000000000000000000000052b81e3f5c8fc23e0000000000000000090000000a000000000000000000000052b81e3f5c8fc23e0000000000000000090000000a00000000000000000000000000803f0000000000000000000000000c0000000900000000000000000000000000803f0000000000000000000000000c0000000900000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f00000000000000000000000005000000000000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f00000000000000000000000008000000000000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000009a99193fcccccc3e00000000000000000a0000000b00000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b0000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: -0.0037600398, y: -0.24675432, z: -3.2181904} + m_Extent: {x: 1.09028, y: 0.26516005, z: 2.068381} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh.meta new file mode 100644 index 0000000000..273d48406c --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ffac1a2768e6a944d803a28db5fe1d46 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab new file mode 100644 index 0000000000..f536e43458 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab @@ -0,0 +1,144 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &984863657992187334 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8698213443000756870} + - component: {fileID: 5216461787850601036} + - component: {fileID: 7196570178492882645} + - component: {fileID: 3383927946424684169} + m_Layer: 0 + m_Name: "\u98DE\u9CD0\u9CCD_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8698213443000756870 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 984863657992187334} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5216461787850601036 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 984863657992187334} + m_Mesh: {fileID: 4300000, guid: ffac1a2768e6a944d803a28db5fe1d46, type: 2} +--- !u!137 &7196570178492882645 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 984863657992187334} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 62b89e4f438a98143a40518cd64f212a, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: ffac1a2768e6a944d803a28db5fe1d46, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &3383927946424684169 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 984863657992187334} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 5216461787850601036} + _skinnedMeshRenderer: {fileID: 7196570178492882645} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab.meta new file mode 100644 index 0000000000..41c6970722 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐/飞鳐/飞鳐鳍_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cb32e394b9c93f14a9e207f61c85f269 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1.meta new file mode 100644 index 0000000000..0780d79064 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: edf08d69b5ce9d747b3616678fdb7dac +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.meta new file mode 100644 index 0000000000..5b9cd1a205 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b2a546164d8ebe148b8bf092fc415bbb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab new file mode 100644 index 0000000000..986e34bac0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab @@ -0,0 +1,1474 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &36413437137804724 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 273977063363101066} + m_Layer: 0 + m_Name: Bone26 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &273977063363101066 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 36413437137804724} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000025529523, y: 0.061864577, z: 0.0000000056977587, w: 0.99808455} + m_LocalPosition: {x: 0.7155975, y: -0.0000000012816456, z: 0.00000023841858} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6857759957043543374} + m_LocalEulerAnglesHint: {x: -11.5518, y: -2.3762205, z: 7.9562798} +--- !u!1 &43046154208732542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7479763403550148052} + m_Layer: 0 + m_Name: Bone07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7479763403550148052 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43046154208732542} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000043082236, y: -0.06616142, z: -0.0000000015292981, w: 0.99780893} + m_LocalPosition: {x: 0.5424666, y: -0.00000000247655, z: -0.00000017881396} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6218591499194872701} + m_Father: {fileID: 510419029018088486} + m_LocalEulerAnglesHint: {x: 0.012699656, y: -7.586943, z: 1.5734885} +--- !u!1 &176605393897509613 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2475291294183329276} + m_Layer: 0 + m_Name: Bone08 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2475291294183329276 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 176605393897509613} + serializedVersion: 2 + m_LocalRotation: {x: -1.1270817e-11, y: -0.004716813, z: 0.0000000014653272, w: 0.99998885} + m_LocalPosition: {x: 1.0467042, y: -4.1244853e-17, z: 0.00000011920929} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5520113635798520728} + - {fileID: 2561912585429219472} + - {fileID: 5824524444685665583} + - {fileID: 6857759957043543374} + - {fileID: 5944777493590625513} + m_Father: {fileID: 8063878441851857452} + m_LocalEulerAnglesHint: {x: -0.000000852163, y: -0.5405057, z: 5.0161195} +--- !u!1 &628625882042463414 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5944777493590625513} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5944777493590625513 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628625882042463414} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000013735894, y: -0.6516312, z: 0.0000000026064402, w: 0.75853604} + m_LocalPosition: {x: 0.6094567, y: -0.008281412, z: 0.32652542} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1328547705989637689} + m_Father: {fileID: 2475291294183329276} + m_LocalEulerAnglesHint: {x: -14.181475, y: -85.85767, z: 9.357458} +--- !u!1 &661633964487604189 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2513937450336957201} + m_Layer: 0 + m_Name: Bone13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2513937450336957201 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 661633964487604189} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000004375371, y: 0.024506025, z: -0.00000001931967, w: 0.9996997} + m_LocalPosition: {x: 0.81746083, y: 0.00000005197713, z: 0.00000045606066} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9016740446715169381} + m_LocalEulerAnglesHint: {x: -16.35755, y: -4.039214, z: -3.8534155} +--- !u!1 &757776240013726068 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5563177137641017198} + m_Layer: 0 + m_Name: Bone05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5563177137641017198 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757776240013726068} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000060348073, y: 0.69756395, z: 0.000000005410852, w: 0.71652263} + m_LocalPosition: {x: 0.35067052, y: -0.009224206, z: -0.34308538} + m_LocalScale: {x: 1, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4137231567667466188} + m_Father: {fileID: 8063878441851857452} + m_LocalEulerAnglesHint: {x: -0.08204452, y: 88.46584, z: -3.0607305} +--- !u!1 &824114171768741888 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9013712638108746558} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9013712638108746558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 824114171768741888} + serializedVersion: 2 + m_LocalRotation: {x: -1.5663191e-11, y: 0.005153514, z: -0.000000012871841, w: 0.99998677} + m_LocalPosition: {x: 1.1420547, y: -0.000000018192928, z: 0.00000019532038} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5230767094477697836} + m_LocalEulerAnglesHint: {x: 0.004934976, y: 0.40052918, z: -3.264625} +--- !u!1 &859893823141965104 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8021724742298995387} + m_Layer: 0 + m_Name: Bone04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8021724742298995387 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 859893823141965104} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000004045654, y: 0.03131318, z: 4.4765924e-10, w: 0.9995097} + m_LocalPosition: {x: 0.53604054, y: 0.000000010727292, z: 0.00000005960465} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9014028358810696190} + m_LocalEulerAnglesHint: {x: 0.3717, y: 3.555768, z: -10.161627} +--- !u!1 &1441053035062288728 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5129869687255672953} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5129869687255672953 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441053035062288728} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000007892312, y: -0.01600008, z: 0.0000000033720666, w: 0.999872} + m_LocalPosition: {x: 0.84819776, y: -7.2166867e-10, z: 0.00000009423822} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3197230158952762097} + m_Father: {fileID: 5824524444685665583} + m_LocalEulerAnglesHint: {x: 5.9940434, y: -7.737277, z: -7.674591} +--- !u!1 &2075868071984181663 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4137231567667466188} + m_Layer: 0 + m_Name: Bone03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4137231567667466188 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2075868071984181663} + serializedVersion: 2 + m_LocalRotation: {x: -2.9732347e-10, y: -0.00966823, z: -0.000000008477646, w: 0.99995327} + m_LocalPosition: {x: 0.5548431, y: -0.0000000089736565, z: 0.0000001192093} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5563177137641017198} + m_LocalEulerAnglesHint: {x: -0.67995626, y: -1.0190859, z: -14.891019} +--- !u!1 &2736040063617473992 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3562429429615663349} + - component: {fileID: 8562285057757597098} + - component: {fileID: 1607836130294200446} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &3562429429615663349 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2736040063617473992} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6922562025657963188} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8562285057757597098 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2736040063617473992} + m_Mesh: {fileID: 0} +--- !u!137 &1607836130294200446 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2736040063617473992} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &3695077236935028501 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 510419029018088486} + m_Layer: 0 + m_Name: Bone06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &510419029018088486 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3695077236935028501} + serializedVersion: 2 + m_LocalRotation: {x: 6.948694e-10, y: -0.6618026, z: 0.000000003658291, w: 0.7496782} + m_LocalPosition: {x: 0.93991625, y: -0.00828141, z: 0.29279852} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7479763403550148052} + m_Father: {fileID: 8063878441851857452} + m_LocalEulerAnglesHint: {x: 1.912997, y: -83.13518, z: -15.497733} +--- !u!1 &3999359531783423865 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1925354241460473026} + m_Layer: 0 + m_Name: Bone22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1925354241460473026 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3999359531783423865} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000016390891, y: 0.01875698, z: -7.7375706e-10, w: 0.99982405} + m_LocalPosition: {x: 1.0189703, y: -0.0000000019991346, z: 0.00000026763882} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1913953805660397630} + m_LocalEulerAnglesHint: {x: -13.284103, y: -2.5466027, z: 19.292658} +--- !u!1 &5111569778600782061 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9014028358810696190} + m_Layer: 0 + m_Name: Bone02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9014028358810696190 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5111569778600782061} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000007300994, y: -0.7161979, z: -0.0000000068449784, w: 0.69789726} + m_LocalPosition: {x: 0.3578751, y: -0.009224206, z: 0.32070434} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8021724742298995387} + m_Father: {fileID: 8063878441851857452} + m_LocalEulerAnglesHint: {x: 0.06996268, y: -91.48133, z: 2.703228} +--- !u!1 &5121111437841801613 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1913953805660397630} + m_Layer: 0 + m_Name: Bone21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1913953805660397630 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5121111437841801613} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000057631424, y: 0.052749563, z: -0.000000005029047, w: 0.99860775} + m_LocalPosition: {x: 0.56906664, y: -0.000000006754001, z: 0.00000029802328} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1925354241460473026} + m_Father: {fileID: 3008127617912244144} + m_LocalEulerAnglesHint: {x: 0.061811313, y: 6.048017, z: 0.92734265} +--- !u!1 &5245022196128125660 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2561912585429219472} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2561912585429219472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5245022196128125660} + serializedVersion: 2 + m_LocalRotation: {x: 5.999318e-11, y: -0.03156801, z: -0.0000000016585536, w: 0.99950165} + m_LocalPosition: {x: 1.0356121, y: -0.009224209, z: 0.78470737} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9016740446715169381} + m_Father: {fileID: 2475291294183329276} + m_LocalEulerAnglesHint: {x: -0.00000020002949, y: -3.618033, z: 8.904365} +--- !u!1 &5353246773551091107 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3197230158952762097} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3197230158952762097 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5353246773551091107} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000014231043, y: -0.04503967, z: -2.4928676e-10, w: 0.9989853} + m_LocalPosition: {x: 0.8165702, y: -0.000000035881957, z: -0.0000001560411} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5129869687255672953} + m_LocalEulerAnglesHint: {x: 11.092253, y: -3.617598, z: -12.583193} +--- !u!1 &5743113470963910342 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6857759957043543374} + m_Layer: 0 + m_Name: Bone25 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6857759957043543374 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5743113470963910342} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000018487354, y: 0.6275299, z: -3.398816e-10, w: 0.7785925} + m_LocalPosition: {x: 0.5820275, y: -0.008281412, z: -0.33933052} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 273977063363101066} + m_Father: {fileID: 2475291294183329276} + m_LocalEulerAnglesHint: {x: 14.549884, y: 82.78, z: 10.900962} +--- !u!1 &6180852572207417131 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5356575624279611910} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5356575624279611910 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6180852572207417131} + serializedVersion: 2 + m_LocalRotation: {x: -0.0038633368, y: 0.00056633406, z: -0.0003609631, w: 0.9999923} + m_LocalPosition: {x: -0.06530468, y: 0.57669836, z: -0.03839636} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8308347515089408660} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6338109388228217556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5824524444685665583} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5824524444685665583 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6338109388228217556} + serializedVersion: 2 + m_LocalRotation: {x: 3.2884812e-10, y: 0.050851412, z: -0.0000000012399164, w: 0.9987063} + m_LocalPosition: {x: 1.0736119, y: -0.009224209, z: -0.7910624} + m_LocalScale: {x: 0.9999997, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5129869687255672953} + m_Father: {fileID: 2475291294183329276} + m_LocalEulerAnglesHint: {x: 0.00000040074866, y: 5.829681, z: 11.45819} +--- !u!1 &6355109387573222649 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9016740446715169381} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9016740446715169381 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355109387573222649} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000016169329, y: 0.021501828, z: 0.000000004650035, w: 0.99976885} + m_LocalPosition: {x: 0.9198916, y: -0.00000005934527, z: 0.000000099833414} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2513937450336957201} + m_Father: {fileID: 2561912585429219472} + m_LocalEulerAnglesHint: {x: -5.3253617, y: 6.5851574, z: -5.954377} +--- !u!1 &6371799967835727125 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5520113635798520728} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5520113635798520728 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6371799967835727125} + serializedVersion: 2 + m_LocalRotation: {x: 2.721566e-10, y: 0.009767057, z: -3.9768647e-10, w: 0.9999523} + m_LocalPosition: {x: 1.1207635, y: -0.000000003284653, z: 0.00000028390687} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5230767094477697836} + m_Father: {fileID: 2475291294183329276} + m_LocalEulerAnglesHint: {x: 0.04117492, y: 1.3773121, z: -3.8238864} +--- !u!1 &6675746469914338163 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8063878441851857452} + m_Layer: 0 + m_Name: Bone01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8063878441851857452 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6675746469914338163} + serializedVersion: 2 + m_LocalRotation: {x: 3.9205513e-16, y: 0.7071068, z: -3.6419195e-16, w: 0.7071068} + m_LocalPosition: {x: 0.0009263158, y: -0.31267777, z: 1.0875984} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2475291294183329276} + - {fileID: 6530411879487948674} + - {fileID: 9014028358810696190} + - {fileID: 5563177137641017198} + - {fileID: 510419029018088486} + - {fileID: 3008127617912244144} + - {fileID: 7553293326823906438} + m_Father: {fileID: 8308347515089408660} + m_LocalEulerAnglesHint: {x: 0.07453991, y: -90.44708, z: -0.09856021} +--- !u!1 &6843995384981638036 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5022178808033456013} + m_Layer: 0 + m_Name: "\u98DE\u9CD01" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5022178808033456013 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6843995384981638036} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6922562025657963188} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7145600710482907366 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6922562025657963188} + - component: {fileID: 1965601007707447261} + m_Layer: 0 + m_Name: "\u98DE\u9CD01" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6922562025657963188 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7145600710482907366} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3562429429615663349} + - {fileID: 8308347515089408660} + - {fileID: 7312766348784535804} + - {fileID: 2109754692331512854} + m_Father: {fileID: 5022178808033456013} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &1965601007707447261 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7145600710482907366} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 02087df28ca9b54419abdbb12b84f4ac, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &7389037942334981108 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3008127617912244144} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3008127617912244144 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7389037942334981108} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000067678023, y: 0.6438996, z: 0.0000000020604831, w: 0.7651101} + m_LocalPosition: {x: 0.92496073, y: -0.00828141, z: -0.305287} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1913953805660397630} + m_Father: {fileID: 8063878441851857452} + m_LocalEulerAnglesHint: {x: -2.4411073, y: 80.47115, z: -14.237532} +--- !u!1 &7438872290053620323 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6218591499194872701} + m_Layer: 0 + m_Name: Bone19 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6218591499194872701 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7438872290053620323} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000042260466, y: 0.025293363, z: -2.3828806e-10, w: 0.9996801} + m_LocalPosition: {x: 0.9270634, y: 0.000000028628032, z: 0.000000109197586} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7479763403550148052} + m_LocalEulerAnglesHint: {x: 19.665663, y: 11.551253, z: 22.238935} +--- !u!1 &7827750042991282364 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5230767094477697836} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5230767094477697836 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7827750042991282364} + serializedVersion: 2 + m_LocalRotation: {x: -3.1448188e-10, y: -0.014308028, z: 0.0000000068986084, w: 0.9998977} + m_LocalPosition: {x: 1.0467571, y: -0.0000000022400393, z: 0.00000043453832} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9013712638108746558} + m_Father: {fileID: 5520113635798520728} + m_LocalEulerAnglesHint: {x: 0.000002422863, y: -1.6396232, z: -14.987819} +--- !u!1 &8210563393698559428 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6530411879487948674} + m_Layer: 0 + m_Name: Bone18 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6530411879487948674 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8210563393698559428} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000003980137, y: -0.9999745, z: 7.664848e-12, w: -0.0071423342} + m_LocalPosition: {x: -0.0077006826, y: 2.7070507e-18, z: 0.0022474239} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8063878441851857452} + m_LocalEulerAnglesHint: {x: 0.0000050480526, y: 179.18155, z: 2.8092937} +--- !u!1 &8381480195764310444 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1328547705989637689} + m_Layer: 0 + m_Name: Bone24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1328547705989637689 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8381480195764310444} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000006602508, y: -0.031807568, z: -0.0000000022911084, w: 0.9994941} + m_LocalPosition: {x: 0.59808636, y: -0.000000001294264, z: 0.00000005960466} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5944777493590625513} + m_LocalEulerAnglesHint: {x: 13.86668, y: 6.815796, z: 10.431563} +--- !u!1 &8629213051016034115 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8308347515089408660} + m_Layer: 0 + m_Name: Box01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8308347515089408660 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8629213051016034115} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8063878441851857452} + - {fileID: 5356575624279611910} + m_Father: {fileID: 6922562025657963188} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9122845691044574903 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7553293326823906438} + m_Layer: 0 + m_Name: HH_FX + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7553293326823906438 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9122845691044574903} + serializedVersion: 2 + m_LocalRotation: {x: -0.0024765646, y: -0.70670086, z: -0.0029870418, w: 0.7075019} + m_LocalPosition: {x: 0.88387054, y: 0.02808406, z: -0.05655617} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8063878441851857452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &714807999594041658 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 6922562025657963188} + m_Modifications: + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 8308347515089408660} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 8308347515089408660} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 8063878441851857452} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 2475291294183329276} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 5520113635798520728} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 5230767094477697836} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 9013712638108746558} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 2561912585429219472} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 9016740446715169381} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 2513937450336957201} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 5824524444685665583} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 5129869687255672953} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 3197230158952762097} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 6857759957043543374} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 273977063363101066} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 5944777493590625513} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 1328547705989637689} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 6530411879487948674} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 9014028358810696190} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 8021724742298995387} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 5563177137641017198} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 4137231567667466188} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 510419029018088486} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 7479763403550148052} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 6218591499194872701} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 3008127617912244144} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 1913953805660397630} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 1925354241460473026} + - target: {fileID: 4046313958715279216, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 8308347515089408660} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8045226901789392516, guid: db9b881a47652834facf75ef300f0487, type: 3} + propertyPath: m_Name + value: "\u98DE\u9CD0_0" + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 9036093812956070214, guid: db9b881a47652834facf75ef300f0487, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: db9b881a47652834facf75ef300f0487, type: 3} +--- !u!4 &7312766348784535804 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7824907772747749830, guid: db9b881a47652834facf75ef300f0487, type: 3} + m_PrefabInstance: {fileID: 714807999594041658} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2754883087033676281 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 6922562025657963188} + m_Modifications: + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 8308347515089408660} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 8308347515089408660} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 8063878441851857452} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 2475291294183329276} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 5520113635798520728} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 5230767094477697836} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 9013712638108746558} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 2561912585429219472} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 9016740446715169381} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 2513937450336957201} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 5824524444685665583} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 5129869687255672953} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 3197230158952762097} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 6857759957043543374} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 273977063363101066} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 5944777493590625513} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 1328547705989637689} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 6530411879487948674} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 9014028358810696190} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 8021724742298995387} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 5563177137641017198} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 4137231567667466188} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 510419029018088486} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 7479763403550148052} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 6218591499194872701} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 3008127617912244144} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 1913953805660397630} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 1925354241460473026} + - target: {fileID: 128038430823636348, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 8308347515089408660} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6707366464300724374, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + propertyPath: m_Name + value: "\u98DE\u9CD0\u9CCD_0" + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 8215196541096872477, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} +--- !u!4 &2109754692331512854 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4286324192665507311, guid: 977f83ed6a89a0c49a651cf3418475e9, type: 3} + m_PrefabInstance: {fileID: 2754883087033676281} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab.meta new file mode 100644 index 0000000000..dcf3ac8001 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: daa22df71d7835446a6b74eafc509b0f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat new file mode 100644 index 0000000000..7e8d6208a4 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6537303621211844122 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0d9acf5d023551341acdfec647845e52, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0d9acf5d023551341acdfec647845e52, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat.meta new file mode 100644 index 0000000000..c3b6103642 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b429d14846a6e84186fd18d0cf4e3c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh new file mode 100644 index 0000000000..3c73202cae --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh @@ -0,0 +1,671 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 1896 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 415 + localAABB: + m_Center: {x: 0, y: -0.2611611, z: -1.2714314} + m_Extent: {x: 2.77094, y: 0.32596284, z: 3.07622} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011920929 + e01: 3.9404502e-17 + e02: -1.0000001 + e03: 1.0875986 + e10: 1.0694949e-15 + e11: 1 + e12: 3.9404502e-17 + e13: 0.31267777 + e20: 1.0000001 + e21: -1.0694949e-15 + e22: -0.00000011920929 + e23: -0.0009261863 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.009433403 + e01: 0.000000002930728 + e02: -0.9999556 + e03: 0.0408839 + e10: -3.6363315e-11 + e11: 1 + e12: 0.0000000029305158 + e13: 0.31267777 + e20: 0.9999555 + e21: 8.716963e-12 + e22: 0.009433402 + e23: -0.0013120426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.010100711 + e01: 0.00000000213998 + e02: -0.99994904 + e03: -1.0796483 + e10: 5.0768445e-10 + e11: 1 + e12: 0.000000002134961 + e13: 0.31267777 + e20: 0.9999488 + e21: -4.860939e-10 + e22: -0.010100713 + e23: -0.022405561 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.018515091 + e01: 0.00000001593 + e02: -0.9998288 + e03: -2.1261759 + e10: -1.7932714e-10 + e11: 1 + e12: 0.00000001592941 + e13: 0.3126778 + e20: 0.9998286 + e21: -1.1563791e-10 + e22: 0.018515097 + e23: 0.038446285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.008208985 + e01: -0.000000009813158 + e02: -0.9999667 + e03: -3.2684536 + e10: 1.33342e-10 + e11: 1 + e12: -0.000000009812396 + e13: 0.31267774 + e20: 0.9999663 + e21: -5.2787438e-11 + e22: 0.008208987 + e23: 0.004758754 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.07251635 + e01: -3.938046e-10 + e02: -0.99736744 + e03: -1.0423472 + e10: 2.19508e-10 + e11: 1 + e12: -3.7888453e-10 + e13: 0.32190198 + e20: 0.9973672 + e21: -1.914548e-10 + e22: 0.07251635 + e23: -0.72168094 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029568776 + e01: 0.000000008843177 + e02: -0.999563 + e03: -1.9293966 + e10: -0.0000000034849497 + e11: 0.9999999 + e12: 0.000000008743957 + e13: 0.32190204 + e20: 0.99956274 + e21: 0.0000000032248781 + e22: 0.029568765 + e23: -0.80537766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.019442642 + e01: -0.00000002973874 + e02: -0.9998112 + e03: -2.7040973 + e10: 0.0000000054613714 + e11: 0.99999976 + e12: -0.00000002985058 + e13: 0.3219018 + e20: 0.99981093 + e21: -0.000000006040713 + e22: -0.019442663 + e23: -0.9389995 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.09218214 + e01: 4.715061e-10 + e02: -0.9957427 + e03: -1.1076031 + e10: 5.1803384e-10 + e11: 1 + e12: 4.2556428e-10 + e13: 0.32190198 + e20: 0.9957423 + e21: -4.765988e-10 + e22: -0.09218213 + e23: 0.6807706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060275115 + e01: 0.000000006946731 + e02: -0.9981824 + e03: -1.933018 + e10: 0.00000001677088 + e11: 1 + e12: 0.0000000059466796 + e13: 0.321902 + e20: 0.9981819 + e21: -0.000000016381952 + e22: -0.06027509 + e23: 0.7429999 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029793758 + e01: 0.0000000050744946 + e02: -0.9995567 + e03: -2.671572 + e10: 0.0000000139174 + e11: 1 + e12: 0.0000000054915854 + e13: 0.32190204 + e20: 0.9995561 + e21: -0.000000014074833 + e22: 0.029793821 + e23: 0.9874153 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.97513276 + e01: 0.0000000024050197 + e02: -0.22162108 + e03: -0.44525054 + e10: 0.0000000024426599 + e11: 1 + e12: 1.04243045e-10 + e13: 0.32095918 + e20: 0.2216211 + e21: -4.3969384e-10 + e22: -0.975133 + e23: -0.4569956 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99503726 + e01: 0.000000013498726 + e02: -0.09950344 + e03: -1.0955272 + e10: 0.000000012868366 + e11: 1 + e12: 0.0000000069768484 + e13: 0.3209592 + e20: 0.09950348 + e21: 0.000000005661777 + e22: -0.9950375 + e23: -0.5968534 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9899499 + e01: 0.000000002614446 + e02: -0.14142136 + e03: -0.40980524 + e10: -0.0000000014035346 + e11: 1 + e12: 0.0000000086621785 + e13: 0.3209592 + e20: 0.14142133 + e21: -0.000000008376631 + e22: 0.98995 + e23: 0.5126524 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99693894 + e01: -0.0000000020833346 + e02: -0.07819128 + e03: -0.9732565 + e10: 0.0000000017002195 + e11: 1 + e12: -0.0000000049663225 + e13: 0.32095918 + e20: 0.078191265 + e21: 0.00000000481817 + e22: 0.99693906 + e23: 0.5756998 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.014284189 + e01: -0.000000007960181 + e02: 0.9998982 + e03: -1.0951422 + e10: -7.218223e-11 + e11: 1 + e12: 0.0000000079599625 + e13: 0.31267777 + e20: -0.9998981 + e21: 4.15267e-11 + e22: -0.014284187 + e23: 0.018818876 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99966544 + e01: -0.000000020012104 + e02: 0.025878796 + e03: -0.3404073 + e10: 0.000000019995408 + e11: 1 + e12: 9.037282e-10 + e13: 0.32190198 + e20: -0.025878794 + e21: -3.8596953e-10 + e22: 0.9996653 + e23: -0.72115564 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9993251 + e01: -0.000000018800456 + e02: -0.036746662 + e03: -0.829588 + e10: 0.000000019144093 + e11: 1 + e12: 0.000000008999786 + e13: 0.32190198 + e20: 0.036746677 + e21: -0.000000009697191 + e22: 0.9993251 + e23: -0.77460355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9996408 + e01: 0.000000016173326 + e02: -0.02680898 + e03: -0.3222799 + e10: 0.000000016196987 + e11: 1 + e12: -6.6533373e-10 + e13: 0.32190198 + e20: 0.026808985 + e21: -0.0000000010993216 + e22: -0.99964094 + e23: 0.7458364 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9989357 + e01: -7.9970414e-10 + e02: -0.046132583 + e03: -0.862538 + e10: -7.687193e-10 + e11: 1 + e12: -6.894839e-10 + e13: 0.32190198 + e20: 0.04613259 + e21: -6.532898e-10 + e22: -0.99893594 + e23: 0.7626567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99227816 + e01: 0.000000004565349 + e02: -0.12403479 + e03: -0.27313882 + e10: -0.0000000038002748 + e11: 1 + e12: 0.0000000064048162 + e13: 0.32095918 + e20: 0.12403479 + e21: -0.0000000058839906 + e22: 0.99227816 + e23: -0.18297398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99996775 + e01: 0.0000000012666821 + e02: 0.008064457 + e03: -0.83262366 + e10: -0.0000000012475698 + e11: 1.0000001 + e12: -0.000000002374815 + e13: 0.3209592 + e20: -0.008064457 + e21: 0.0000000023646742 + e22: 0.9999679 + e23: -0.07368517 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9990963 + e01: 4.5527254e-10 + e02: -0.04251479 + e03: -1.7537096 + e10: -9.166995e-10 + e11: 1.0000001 + e12: -0.000000010833868 + e13: 0.32095918 + e20: 0.042514782 + e21: 0.000000010863045 + e22: 0.9990965 + e23: -0.1625793 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9853084 + e01: 0.000000011868566 + e02: -0.17078647 + e03: -0.27211288 + e10: 0.000000013009718 + e11: 1 + e12: -0.0000000055625797 + e13: 0.32095918 + e20: 0.1707865 + e21: -0.0000000077027416 + e22: -0.9853085 + e23: 0.21222913 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99781775 + e01: 0.0000000019619206 + e02: -0.06603157 + e03: -0.858857 + e10: 0.0000000016558587 + e11: 1 + e12: 0.000000004689764 + e13: 0.32095918 + e20: 0.06603161 + e21: 0.000000004570182 + e22: -0.997818 + e23: 0.1224277 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9995925 + e01: 1.8039277e-10 + e02: -0.028559614 + e03: -1.8810982 + e10: -4.4994893e-11 + e11: 1 + e12: 0.000000007891071 + e13: 0.32095918 + e20: 0.028559659 + e21: 0.000000007889128 + e22: -0.99959254 + e23: 0.05190885 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.4260701, y: -0.27444616, z: -0.5942974} + m_Max: {x: 1.8008041, y: 0.37747952, z: 0.5818587} + - m_Min: {x: -0.26549658, y: -0.27444616, z: -0.7594219} + m_Max: {x: 1.3956368, y: 0.37747952, z: 0.7287189} + - m_Min: {x: -0.37090397, y: -0.13655451, z: -0.7592271} + m_Max: {x: 1.0481637, y: 0.18819752, z: 0.7781297} + - m_Min: {x: -0.006860733, y: -0.10874048, z: -0.11809086} + m_Max: {x: 1.0976293, y: 0.054921508, z: 0.108888224} + - m_Min: {x: -0.04853058, y: -0.085490495, z: -0.09378321} + m_Max: {x: 1.0790219, y: 0.024635524, z: 0.042858988} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.043506533, y: -0.11866507, z: -0.2642836} + m_Max: {x: 1.0558904, y: 0.18068391, z: 0.53494585} + - m_Min: {x: -0.21309859, y: -0.11191204, z: -1.0538521} + m_Max: {x: 1.596158, y: 0.08101694, z: 0.4521097} + - m_Min: {x: -0.05989173, y: -0.12226206, z: -0.7352401} + m_Max: {x: 1.0272229, y: 0.18068394, z: 0.4035693} + - m_Min: {x: -0.11547333, y: -0.11734906, z: -0.49641585} + m_Max: {x: 1.7758105, y: 0.05503893, z: 1.1959419} + - m_Min: {x: -0.03460574, y: -0.2292867, z: -0.58858997} + m_Max: {x: 0.7095164, y: 0.28355053, z: 0.5905078} + - m_Min: {x: -0.12605838, y: -0.23694909, z: -0.19006616} + m_Max: {x: 0.951647, y: 0.3383987, z: 0.99405885} + - m_Min: {x: -0.13087666, y: -0.10890427, z: -0.39229822} + m_Max: {x: 1.8081899, y: 0.10306074, z: 0.54817027} + - m_Min: {x: -0.15750879, y: -0.23694909, z: -0.78319633} + m_Max: {x: 0.91859066, y: 0.3383987, z: 0.10190874} + - m_Min: {x: -0.16701573, y: -0.100773275, z: -0.5683745} + m_Max: {x: 1.7703408, y: 0.10306072, z: 0.35890985} + - m_Min: {x: -0.1257263, y: -0.2435092, z: -0.7999066} + m_Max: {x: 1.0761096, y: 0.38576093, z: 0.9115815} + - m_Min: {x: -0.083705306, y: -0.1471501, z: -0.7943643} + m_Max: {x: 1.5021927, y: 0.12038791, z: 1.0299002} + - m_Min: {x: -0.0043462515, y: -0.11085412, z: -0.6616359} + m_Max: {x: 1.0074453, y: 0.006113887, z: 0.791227} + - m_Min: {x: -0.15642916, y: -0.2435092, z: -0.87600887} + m_Max: {x: 1.0777959, y: 0.38576093, z: 0.80807984} + - m_Min: {x: -0.18625528, y: -0.14715007, z: -1.0726192} + m_Max: {x: 1.4239864, y: 0.12038791, z: 0.98404425} + - m_Min: {x: -0.33904195, y: -0.11085406, z: -0.87538946} + m_Max: {x: 0.8838216, y: 0.0061139166, z: 0.57703143} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000600050004000400070006000a000900080008000b000a000e000d000c000c000f000e0002000300100010001100020014001300120012001500140014001700160016000f0014001a001900180018001b001a001d001c000e0008000e000b0014000f000c000c001300140017001e001100110010001700060020001f001f00050006000f0016001d001d000e000f002300220021002100240023000b000e001c001c0025000b000a000b00250018000a0025001b00180025002600150012001200270026002a002900280028002b002a002e002d002c002c002f002e0031003000110011001e00310003001d00160016001000030015003200170017001400150011002d0002002d002e000100010002002d00220019001a001a002100220033001d00030003000000330017003200340034001e001700320004000500050034003200150026000400040032001500040026002700270035000400200036001f0024002b0028002800230024002d0030003700370038002d00340005001f00390037003000300031003900310034001f001f00390031003a002c002d003c003b003a000d000e00080008003d000d003d000800090009003e003d002d0038003a003f00370039003f0040003800380037003f00400041003a003a003800400041003c003a001700100016001e003400310029002a0042002f002c003b003b0043002f003a003b002c004600450044001d0033001c004400480047004a00490048004c001b004b004b004d004c004f004e004400440047004f0051004d005000460044004e0045004800440045004a00480046004a004500360039001f00360052003f003f003900360052005300400040003f00520053005400410041004000530055003c0041004100540055005800570056005600590058005c005b005a005a005d005c0060005f005e005e006100600064006300620062006500640064005b006600660067006400640065005a005a005b00640067005e005f005f006800670058005900690069006a0058005b005c006b006b0066005b0061006d006c006c00600061006e006b005c006b006e006f006f0070006b00720071006200620063007200750074007300730076007500770068005f005f007800770061005e00660066006b00610063006400670067007900630078005f00600060007600780070006d00610061006b007000670068007a007a007900670079007a00590059005600790063007900560056007200630057007b0056007c006a006900760060006c006c007500760076007e007d007d007800760059007a0069007f007700780078007d007f0077007f00690069007a0077008100800073005d0082006e006e005c005d00820083006f006f006e0082007e00760073007d0084007f0084007d007e007e008500840085007e0073007300860085008000860073005e00670066007a00680077007400870081008100730074007f007c0069007c007f008400840088007c0088008400850085008900880089008500860086008a00890080008b0086008a0086008b008d008c003b003b003c008d000c000d008e008e008f000c000600070090009000910006000d003d00920092008e000d0036002000930093009400360027001200950095009600270052003600940094009700520054005300980098009900540055005400990099009a0055009b0092003d003d003e009b009c0095001200120013009c008f009c00130013000c008f0035002700960096009d0035009100930020002000060091009700980053005300520097009a008d003c003c0055009a0087009f009e009e00810087003b008c00a000a000a1003b0043003b00a100a100a2004300a500a400a300a300a600a500a800a700a500a500a600a800aa00a900a700a700a800aa00ad00ac00ab00ab00ae00ad00af00ac00ad00ad00b000af00b300b200b100a20042004300ac00b500b400b400ab00ac00af00b600b500b500ac00af00b700b600af00af00b800b700b900b300b100b100ba00b900bd00bc00bb00bb00bf00be00be00bd00bb00b300b900bf00bf00bb00b300b000b900ba00ba00c000b000bb00bc00b200b200b300bb00a600a300b400b400b500a600b600a800a600a600b500b600b700aa00a800a800b600b700bf00ad00ae00ae00be00bf00b000ad00bf00bf00b900b000b000c000b800b800af00b0003500070004009d0090000700070035009d0071007200560056007b007100110030002d00c200c100240024002100c200c100c3002b002b002400c10000000100c100c100c200000001002e00c300c300c1000100c3002f002a002a002b00c3002a002f004300430042002a002e002f00c300510033004c004c004d00510033000000c200c2004c0033004c001a001b004c00c200210021001a004c004b0050004d00c600c500c400c400c700c600ca00c900c800c800cb00ca000a00cd00cc00cc0009000a00d000cf00ce00ce00d100d000c600d300d200d200c500c600d600d500d400d400d700d600d600cf00d800d800d900d600db00da00180018001900db00dd00dc00d000d000cc00cd00d600d700ce00ce00cf00d600d900d200d300d300de00d900ca00cb00df00df00e000ca00cf00d000dc00dc00d800cf002300e200e100e10022002300cd00e300dd00dd00d000cd001800da00e3000a001800e300cd000a00e300e500e400d400d400d500e500e700e600280028002900e700ea00e900e800e800eb00ea00ec00de00d300d300ed00ec00c500d200d800d800dc00c500d500d600d900d900ee00d500eb00d300c600eb00c600c700c700ea00eb002200e100db00db0019002200ef00c400c500c500dc00ef00d900de00f000f000ee00d900ee00f000cb00cb00c800ee00d500ee00c800c800e500d500c800f100e400e400e500c800f200e000df00e200230028002800e600e200eb00f400f300f300ed00eb00cb00f000df00f500ec00ed00ed00f300f500ec00f500df00df00f000ec00e800f600eb00f800f700f600d100f900cc00cc00d000d100f9003e0009000900cc00f900f400eb00f600f300fa00f500fa00f300f400f400fb00fa00fb00f400f600f600fc00fb00f700fc00f600d200d900d800f000de00ec00e70029004200e900fd00f800f800e800e900f800f600e8000001ff00fe00ef00dc00dd000201fe0001010401030102010701060105010501da00070108010101fe00fe000901080106010b010a01fe00ff00090102010001fe000301000102010301ff000001f500f200df00f200f500fa00fa000c01f2000c01fa00fb00fb000d010c010d01fb00fc00fc000e010d01f7000f01fc000e01fc000f011201110110011001130112011601150114011401170116011a011901180118011b011a011e011d011c011c011f011e011e0121012001200117011e011e011701140114011d011e01210122011b011b011801210112012401230123011101120117012001250125011601170119011a016c006c006d001901250126011601250170006f006f002601250127011f011c011c012801270175002a0129012901740075002c012b011b011b0122012c011901250120012001180119011f012d01210121011e011f012b012a011a011a011b012b0170002501190119016d00700021012d012e012e01220121012d011001110111012e012d011f012701100110012d011f012f01130110012401300123012a0175006c006c001a012a012a012b013101310132012a012e0111012301330131012b012b012c0133012c012e012301230133012c01350134012901150116012601260136011501360126016f006f00830036012a013201290137013101330137013801320132013101370138013901290129013201380139013501290121011801200122012e012c0174002901340134018700740030013301230130013a0137013701330130013a013b013801380137013a013b013c013901390138013b013d013501390139013c013d013e01f700f800f8003f013e01ce00410140014001d100ce00ca00430142014201c900ca00d100400144014401f900d100f200460145014501e000f200e400480147014701d400e4000c01490146014601f2000c010e014b014a014a010d010e010f014c014b014b010e010f019b003e00f900f90044019b004d01d700d400d40047014d014101ce00d700d7004d014101f1004e0148014801e400f1004301ca00e000e0004501430149010c010d010d014a0149014c010f01f700f7003e014c01870034014f014f019f008700f8005101500150013f01f800fd00a20051015101f800fd0053015201a300a300a4005301540152015301530155015401aa00540155015501a900aa005601ae00ab00ab0057015601590158015601560157015901b2005a01b1004200a200fd005701ab00b400b4005b015701590157015b015b015c015901b700b800590159015c01b7005d01ba00b100b1005a015d01bc00bd005e015e01bd00be00be005f015e015a015e015f015f015d015a015801c000ba00ba005d0158015e015a01b200b200bc005e0152015b01b400b400a30052015c015b015201520154015c01b7005c0154015401aa00b7005f01be00ae00ae0056015f0158015d015f015f015601580158015901b800b800c0005801c900f100c8004e01f100c900c90042014e0128012f011001100127012801ed00d300eb006001e100e200e200610160016101e200e600e60062016101c400600161016101c700c400c700610162016201ea00c7006201e600e700e700e9006201e7004200fd00fd00e900e700e900ea0062010b01060107010701ef000b01ef00070160016001c400ef00db000701da000701db00e100e100600107010a01050106016501640163016301660165016801670165016501660168016b016a0169016e016d016c01670170016f016f0165016701710165016f016401650171017401730172017201750174017601730174017401770176017a01790178017d017c017b01770174017e017e017f0177017e01740180018001740175018301820181018101840183018101860185018501840181018901880187018c018b018a018e018d018601860181018e018f018e01810182018f0181019201910190019001930192019001910194019401950190019801970196019b019a0199019c019001950195019d019c019c019e0190019e0193019001 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 415 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 26576 + _typelessdata: 6056a03ec00004bd0021443f1130d53e6698673f8c72b93d2508a73e40bd4bbc1c71953e4e84ce3ef3b5693ff57c7ebdabb1143f104cb6bd74e98c3e87bab03ef043703fa2190b3bbf7c0e3f187ed8bd4802373f2953c03ed90c6a3f2b661b3ef4fd1240494dbdbeb0a1983edf875c3d3f997f3fd1da7a3c4eb90a40ab7abbbe90e6983d68dcbc3dbfe87e3f53c34d39614f1b40d0b7c7be00ef8dbb6a17ab3da1027f3fa993debc69522e40c2c7cabe58623f3eead29e3ddd277f3f84c4c3bc711d733e60ae9fbe62f5cc3f7301303ef37f713fc04b913e5d8876bb1fdc9fbed23cd93f1d7428b1c1977e3f9c70d63d888876bb32ce73be7430c83f74564931c123673f5218dc3ea419833e8ae56abe6c97bf3fdfe3af3e59d7543f039cdf3e986d633f0f9db0bed2e5a23f9afb433e6ca3743fb558653e6631153f740fabbe02f8c03fc5ed723e6f1f6d3f40f0953e3dd6dc3e2a028ebe62d8aa3f59fa993e71cc693f28ab8c3e3f703d3f86cd9abe00078e3f6e5f753e82e5713f9c5a643e1136503fec1760be9087283f523fac3efed06f3fcf11c53d51bf573f8e624dbe2099763e232f8e3edfed753f9b5f5dbb7b83f33f2195c4be68095c3f14f0ed3d6ba8793f47c3403ef111a13f8832b6be32008d3f9034193e3d93733f95b2893e7a8d913fd944a8be440d693fcbe7df3dc30a7d3fa304d73d4eeee33ff0a7b8beb80f333f24e7913d39d77e3fede4803d8ba5483f4dbd80be8c145c3f5595963ee6666f3fad244a3e7e6f9b3fd28fa0be9a29173ffcbb0d3e0d9d7c3f70dcac3db38876bbc0d3a5bd4ebb953fa054dc31f95d703f822db03ede8876bba01e72bde2948a3fde8dfb31ebbc7b3f2a133a3e2dedf43d581e85bde012893f9554333d43da7a3f5955473eb5180c3e40f6c2bd9645963fbe602bbddfc0783fba176e3e91b4b33ebefe18be3019943f23e4f13e9f97503f4704ac3e3d27fd3e761f24be604a7f3ff38ac93e526c5e3fb7bd993e0dfd9f3fdc0f92be501a523ebc1dfd3d0af77d3f9fe2c13cab09ee3f7657b0bed8cd04be2991793d3c867f3fbb9916b96de208402c83b4bec05384be8691093ee89f7d3f8c87a8bc27691e3ee04494bc3c574e3f626cddbd83027d3fabf5db3d098976bbc0472fbc941c4a3fd3e3ccb028837e3fc677dc3d8a8976bb005a163c08db9c3ec4610032c1fe7f3fbfe4c93bca1a253e209ef73c1026993ed2305cbec7fe793fab8436bc4f967a3e1e890bbe76c0a23f7d10f13d33716c3f86cbba3e9ca706407e1cbfbece22063fc5e4843d23d17e3f7bf8903d186013405c09c7be90a91d3f2ad0aa3d7a4a7d3fc927f33d358a76bb90ff44bd90476fbe000000002b9f7d3f81410bbeb68a76bb6a1501be024037bfbb6879b1830c7a3fcc825bbe135ac03d007507bea29436bf327beabde421773f551570bef60d0c3ee0d2c3bc20e474be7f7d8abea56d743f8f77fcbd8540a63e089a53bef78d29bf07eea13e4d45653ffa31a0bec957163f52a40fbede65aabeaf76823e3901753f209e0dbe2ffb8d3e10e481bda8807abe5d47c33eadd3663f2cac50be1f69403e80effebd06ef35bf1b2aee3e65c3533f0864a1beea3c663f6cb375be486674bebadf773e7025783f20cc2ebdd0449c3fdb8d98be30ebcabd043ff93d71b27d3f1e0a64bd832fe83f7c46b4be2c5fe43ee37fa03d53be7e3f917d773da0de7c3e302790bd0ade893ff403c13e0487653fe0f86d3ebd3aeb3f460ca5bef893193e0287ad3d2d067f3fbdf3a93c34112840b0aac8be38c1cb3e9e2aa13d01a77e3f196c863d63b4e63f6633a1be82f909bf8d1ca33da60f7f3f051d003d75027a3f240e8bbe277e06bf0c503e3e694e7b3f6f6a2dbd6538263f16ab6abe6ce21ebfb7c5bc3dc6c77a3fe5cb36bebd52a63f3f8fa3bea068babe259a9e3d330f7f3f57d1153d1230d23e98346abe99d02abfa91a833d001e703fe57baebeace3583e1ec377be920259bff5f91e3f13781d3f88b9f8be1dc98d3e60ccb0bec89564bf0e9ec0bca6cc613f8ff3f0be560b943ef9dd9ebe0284dc3fe0881a3efd15773fe7cb5a3e5d8876bb282c93be4ccae63f000000006a317e3f1ae7f23d17b78d3fb32688bec93636bf57b0373d589a7f3f3a2a073dd1ae4a3f096d93bec63160bf6ee3cdbcd2447e3f3a22e8bdf8dde43ea0c2a3bec9df6bbf61a4d3bd38fd7c3f40d7e6bde18a76bb846841be9e0860bf102df031e8ac743f1c9996be27ddf63d42f63ebe92755ebf6de5753e6df0663fad90b7bec783a53e58c2a2bdd827953f572c543f3a05003ff584803ed922793e2077b2bde4859d3ffe706e3e0a39f13e03cc593f5210843e409ceebcb8b19a3fd261d53e83c3143fadf2323f91b4b33ebefe18be3019943ff14b6d3fbd39b43e9c06053e4f967a3e1e890bbe76c0a23f169c683ee383f03ecb625a3fb5180c3e40f6c2bd9645963f4bed09bf9818c03e2919413fad843e3e608f59bd3418983f039ad9be1e03e43eb2be493fad843e3e608f59bd3418983fb647edbe3193603fea2900be41d73e3ea0778bbdacb48a3f267322be1eff793fe10a153e800c5d3ef0834abd184a933fc9734cbebb4b763ff43b3ebeee938b3e800238bdd09d913f9be4233fbb4d373fe2798ebea0de7c3e302790bd0ade893f06b5343ffc32d93ebf3611bf5210843e409ceebcb8b19a3f020a4fbeceee753fb8e442beee938b3e800238bdd09d913fbad9b5bda29e743f9df38fbeb667a63f0e3489be98f16cbf98e9793d51467f3f033934bd8c9d703fcf678abe28b390bf387d0dbdacd77f3f25f8c73b7cb4183f6c9592be1ec291bf7370efbda1287e3f2730d3bc4bcabd3eef3daebe3cf583bff39b96beacb0703fbce22fbef4fd1240844bc9beb0a1983ee3ae183c5cf57fbf25997c3c155731401614d0be685e2f3ef40cbbbc06e37fbf1c039c3cbd8c1e409cf9cfbe00c0a9bc761028bc8bfc7fbfe21f173a4eb90a40221ecbbe90e6983d5b353b3d4cbb7fbf44dd283b8274653fe0d8c5bef035a53fad8f353de6077fbfef26993d3f703d3f3c51ccbe840f8e3f0e33fa3d7f3b7cbf00d8f43d4fcce23e3a09d7be62d8aa3ff10b1d3ef3267abfb2a5163e12fa153f9a27c1bee4bfc13ff0e6f03d7ee478bf2d244f3e4e454e3f058aeabe6092143f4fce3e3e750f7bbf0b43723d9e45533f04acefbe48d5703eb788fe3d20037ebfeb659cbb34d5db3e008110bf48436e3e6414283eb1507cbf24c825bd471fd33edd100fbfa405223f09d8133e3d8a7cbf5bae9e3d9b1bf73fdc30d4be605d5f3f6aae71bafafe7fbf6615b4bb3cdaec3f4240d0beecbf303f02e1d93c60d57fbfb582c73c7a8d913f096fd1be74f3673f8f3a803cb59e7fbf7bb3553d9cbfa13f261bc9be6e888e3ff7ad713b6d427fbf9a7a9b3dc959483fa492dcbe8c145c3f9918253ed5c37abf4e7ff63d0f0b9d3fe468d8bea422103f9fbf243d167c7fbfd4d3483d815b9f3ffdc0dfbe385f4d3eacab1a3da6bf7fbf99cfbd3cab09ee3f1d75cebef057f8bd041dce3c2d837ebf325bd6bd20d20b402c4bc6be4cd694beaf697dbb1cb07ebfe7eecebd9ab5c43e02a1ffbed40b873f91cf2c3ed1c377bf8e153f3e0b8a76bbc14d16bfe87a633e3e7db9306aa77fbf4ce654bdb58976bb82b715bf7c0e2e3f00000000aea87fbfec5f533defe1823e3224d9be84c2c13fc0b0e63d21c077bf379f663e888876bb5649d6be10d3cb3ff0f8c931e82a77bf5254853e348976bb2fbe0abf4e4c8c3feaf8d0318c5c7cbf03082c3e1e1b15405a2bccbe9642223fef7795bc28ce7fbff8280dbd9ca706402d7cc7bece22063f8b09593c78df7fbfd229eabc35efc03e6e16e1be5c3620bf70b9a23d681f7bbfb08835bee18a76bba60df1be55ef22bfa64640b163c47abffdfb4dbe608a76bbe8e30abff85a16be6c52edb0153e7dbf59e415be207dd33ec84604bfe03527be139ae53d8b797bbf548119be4a419b3ff069e0bef0b7b4bd2414183df3db7ebf0088b1bda25e603f4da1ddbe482855bea323f53d56037cbff0d803be1214eb3f7079d6be680de23e64d83c3dde927fbf30030e3dbd3aeb3fa016ddbeb0b8193e95c5163da2d27fbf7216b1bbeae7294070cfcdbe70eed33ea295bbbce2ed7fbf0be7aebb5474ec3fa1bcb1be70ff13bf036af83b3f4b7dbfe64a14be55897a3f3f1db9be4e5a02bf528cd83d3cf27abf9b142bbe6265243fd046d0be020c11bfda95183e28057bbf16d402bee140a83fea5ac5be206bb9be4226bf3c7e937cbf363225beb41e8e3e9ce3bebed66764bfb24a0abe2a7179bf762538be0adc6a3e4030b9be22685ebf94f2453eec4b76bfa1fa44bec021943e8336b3be6494dc3f2aa0aa3d57476fbf4cf0b03e5d8876bb0d71a6be5003e73fce70b0317b536abf6b2dce3e17b78d3f1b48a9be7e8a35bf184c573d74647dbfad7b07bed1ae4a3ffcfbb6bec63160bfd69eee3d91a27bbf1caa11bef8dde43ea003c5bec9df6bbf590b673dbe3779bfdfe862be0c8b76bb4832e5be008958bfb3fed8b1e8c77fbf8b6f29bd7f6aa83f18cf92be4a7973bfeeee823dea287cbfd01f24bef1d9723f4fe88fbefd2c93bf8c03b93d559777bf944d73be08591a3f0b5f99bef8f693bf38f28d3dd39673bf166f99be9fe3bb3eca73b7be4f0185bf268fdb3c96a078bf2c6f72be0adc6a3e4030b9be22685ebf3cff5b3f592c553e2624efbeb41e8e3e9ce3bebed66764bfe41c21bfd9e0f13cd9cc46bf12fa153f9a27c1bee4bfc13fea2d143f65267f3e74c5463f8274653fe0d8c5bef035a53fa49ee53e314dcc3e57be4c3f155731401614d0be685e2f3edb3f473e0d74773f52b82abebd8c1e409cf9cfbe00c0a9bc9ae1993e2d29693f8ff190bec021943e8336b3be6494dc3f08c6003f6dec883d53975c3f20d20b402c4bc6be4cd694bede4ac33e500f5c3f5a11aebe5474ec3fa1bcb1be70ff13bfcc02b63e30e55e3ffd07aebe9b1bf73fdc30d4be605d5f3f469c993ecc3c373f236f213f1e1b15405a2bccbe9642223f90ef2d3e182b723f906a8d3e7f6aa83f18cf92be4a7973bf44199d3e9f3e5b3f0995d4bef1d9723f4fe88fbefd2c93bf96d7923d10335d3f5b1bffbe08591a3f0b5f99bef8f693bf279397be012d293f328e30bf9fe3bb3eca73b7be4f0185bf52a237bf550e8c3e670b24bf5d8876bb0d71a6be5003e73f000000003418f23c60e37f3f9cbfa13f261bc9be6e888e3f1621b03e1bdede3e79fc543feae7294070cfcdbe70eed33e9a236b3e5f6f753f6eac2b3e1d3c233ed848c4be2fa28ebfbdccb63e241f6fbfb0f4d9bb628b76bbc601e6be7f668bbf000000009cfe7fbf8444d53b1d3c233ed848c4be2fa28ebf287a5c3f43d3b73ea126b8be4beac43dd6768dbe711e8dbf8f0d133f9aa9373f7cc9c9be378b76bb1a3573be7f668bbf67b22ab1b7fb733f64069bbe8d8b76bb4036e3be2415aabf88ba10b2fef57fbfd8258fbc628b76bbc601e6be7f668bbf907bccb204ef7fbfef83babc1d3c233ed848c4be2fa28ebf24ff593f840206bf65f6ecbc35b81d3ee4bdc4be47e5a9bfd2f1583faa8107bfbf1127bd4beac43dd6768dbe711e8dbfdc5a153f72bc4f3f88620abda4e7c13d462993bebff3aabf11a32e3f5bd73a3f9d3835bd378b76bb1a3573be7f668bbfc4f9a63203ef7f3ff483babc628b76bb26cc78be2415aabf53d46232d8de7f3f2b4702bd648c76bb22c4d7be3a2f08c05bcf2fb250ed7fbfb59cc3bc09c3e03d4e67c1be62cc07c09f4d333f8c6336bf67c12fbdbf39ad3d420ac0be2a7a2dc0d18f603f431ff5bec60f15bde58c76bb6cd0d1be54b42dc000000000bbf17fbf32eaaabc2e43823d68259fbe5ae307c07c613b3f89402e3f102df9bcecb13e3da35d9fbef2862dc006813c3f031d2d3f6d9fbabce68d76bbe92ba2be20a874c0ef1d9db12bd67f3f1e5212bd678e76bb4296a7bef61f8bc01e9db7b2441d7e3f851ef8bdb711aa3cf69ca6be1aed74c018db473f71c71f3fe04b00bdb88b76bbba6ae0be43c4c8bf4945cab26ee67fbf48d2e4bc7558113edc46c5be70cec9bfda3c753f971e90be7b5363bd9e18a83df9db98be70cec9bfa03b363f4f60333fe3d644bdb88b76bb30637ebe43c4c8bf0000000009d47f3f370216bd398c76bba1f883be3a2f08c0060816b36ff07f3f9d8ab2bc50ee0d3dbc959fbebc4a4ec06b7c3c3fa8132d3fecf2e9bc668d76bb467a93be7c154ec0e04dafb249df7f3f776401bd31cf2a3d7effb8be1aed74c06733413ffc4d27bf5e926cbd678e76bb1006b8be669c89c06cc329334f2c7fbfc979a4bd118e76bbbde5bcbe1c3075c0801d75b28fd57fbf736213bd668d76bbb6dccbbe7b594ec0a7cfc0b255db7fbf370109bdb738843d36adbebe47484ec022dc723fa6baa0be0d451dbdba8c76bb52b98bbe40922dc0508391b2d1e67f3f6a13e3bc5917873ec8b6843de44c973e4cd7433e4d3f7b3f1fed6cbc488c7e3e2024873c80d84c3f6ef17739ea107d3f25961a3e588d653ec095483c68b277bec314a53eee1a6d3fe02a48be6e30a4bec00004bd0021443f1030d5be6798673f5a72b93dd76910bf187ed8bd4802373f1d53c0bedc0c6a3f26661b3ec39e16bf104cb6bd74e98c3e80bab0bef143703f8c170b3b33e2aabe40bd4bbc1c71953e4c84cebef3b5693ff17c7ebd1efe12c0494dbdbeb0a1983ec7875cbd40997f3f77d97a3cbd522ec0c2c7cabe58623f3e06d39ebddb277f3f88cac3bc614f1bc0d0b7c7be00ef8dbb4717abbda2027f3fab8fdebc78b90ac0ab7abbbe90e6983d9dddbcbdbce87e3ff18a4e398dd17abe60ae9fbe62f5cc3f740130bef17f713fcd4b913ed4f386be8ae56abe6c97bf3fdfe3afbe53d7543f169cdf3e9f5a65bf0f9db0bed2e5a23f9ffb43be6ea3743f8f58653e575d3fbf86cd9abe00078e3fb45f75be7ce5713f965a643e6cb0e0be2a028ebe62d8aa3f60fa99be6ecc693f34ab8c3e7e1e17bf740fabbe02f8c03fbeed72be6f1f6d3f41f0953e292352bfec1760be9087283f8c3facbef5d06f3fdc11c53d58ac59bf8e624dbe2099763e222f8ebee1ed753f675f5dbbcf83f3bf2195c4be68095c3f2660efbd9eab793fc90e403ef6eee3bff0a7b8beb80f333f361093bd97d47e3fb3e0803de48392bfd944a8be440d693f9033e1bde1057d3f051ad73d5b08a2bf6632b6be32008d3f75131abe358e733ff697893e92924abf4dbd80be8c145c3f8e9596bedb666f3fc6244a3ee9659cbfd28fa0be9a29173f44c90ebec8927c3f1526ad3dd1cc13be40f6c2bd9645963faa602b3de6c0783f58176e3eb22a02be581e85bde012893f695433bd42da7a3f5b55473eb68000bf761f24be604a7f3f008bc9be506c5e3fb1bd993ec18eb7bebefe18be3019943f23e4f1be9d97503f4704ac3ecbf3a0bfdc0f92be501a523ee702ffbd74ef7d3f66efc13c520aeebf7657b0bed8cd04bef9707bbd66847f3f30bc11b8c1e208c02c83b4bec05384be7b9109bee69f7d3f398ba8bcc91d26bee04494bc3c574e3f416cdd3d83027d3fb5f5db3d29cf2cbe209ef73c1026993ed6305c3ec9fe793fc28436bc572581be1e890bbe76c0a23f6c10f1bd33716c3f85cbba3e426013c05c09c7be90a91d3f5ed0aabd774a7d3f3228f33d9ca706c07e1cbfbece22063f81e584bd20d17e3ffff8903d55c213bee0d2c3bc20e474be797d8a3ea56d743f9777fcbdecc2cfbd007507bea29436bffb7aea3de321773f601570beb51aaabe089a53bef78d29bf10eea1be4f45653fe031a0bec11d48be80effebd06ef35bf352aeebe62c3533fed63a1be3dd591be10e481bda8807abe6c47c3beacd3663f04ac50bee14418bf52a40fbede65aabeac7682be3901753f1c9e0dbe3a3b9dbfdb8d98be30ebcabdfcfafabde2ab7d3f86ba63bdf12968bf6cb375be486674beb5df77be7125783fcfca2ebdd72fe8bf7c46b4be2c5fe43e7d80a1bd07bc7e3fb140773d804982be302790bd0ade893ff403c1be0987653fbef86d3e643bebbf460ca5bef893193ee347afbd58017f3fc024aa3c5e1128c0b0aac8be38c1cb3eed29a1bd01a77e3fb16c863d63b4e6bf6633a1be82f909bf2ba3a4bd0f0c7f3fd9e4fe3c8def7bbf240e8bbe277e06bfd94f3ebe6a4e7b3fff6a2dbd7d2528bf16ab6abe6ce21ebfe1c5bcbdc6c77a3f03cc36be7b49a7bf3f8fa3be7e68babe5600a0bd340c7f3f6bf4143d420ad6be98346abe99d02abfcf1a83bd061e703fcb7baebe6ea391be3fccb0bec89564bf139ec03cb1cc613f63f3f0be4e9860be1ec377be920259bfd2f91ebf43781d3f6cb9f8be64e597bef9dd9ebe0284dc3fdf881abefd15773feecb5a3e82ad8ebfb32688bec93636bf7cbb38bd4e9a7f3f14cd053de99b4cbf096d93bec63160bfb0e3cd3cd1447e3f5022e8bd28b8e8bea0c2a3bec9df6bbffea3d33d39fd7c3f62d7e6bdf22203be42f63ebe92755ebf25e575be6ff0663fb990b7bef65da9bed0c1a2bdd827953f0b2c54bfa505003f3885803e60ea87be409ceebcb8b19a3fe660d5be04c4143f89f2323f7b6b80be2077b2bde4859d3f30706ebe5739f13efbcb593fc18eb7bebefe18be3019943f0d4c6dbf3939b43e4606053e572581be1e890bbe76c0a23f619c68bef183f03ec1625a3f0d3946be608f59bd3418983f309ad93e2503e43ea2be493fd1cc13be40f6c2bd9645963fe9ec093f5519c03e4019413f0d3946be608f59bd3418983f7047ed3e4293603f1d2a00bedfc064bef0834abd184a933f6a744c3eb44b763ffc3b3ebea08b46bea0778bbdacb48a3f1373223e1eff793fd50a153e804982be302790bd0ade893fccb434bf8533d93ed63611bffc6d8fbe800238bdd09d913f81e323bfc24e373fb3798ebe60ea87be409ceebcb8b19a3fc60a4f3ec1ee753f00e542befc6d8fbe800238bdd09d913f46dab53d9e9e743fabf38fbe205ea7bf0e3489be98f16cbfb9077bbd16477f3f898e31bd938a72bfcf678abe28b390bf5a7d0d3dabd77f3f9bf9c73b94a11abf6c9592be1ec291bf9c70ef3da0287e3f3a30d3bc9ca4c1beef3daebe3cf583bf9b9b963ebfb0703f46e22fbe1efe12c0624bc9beb0a1983e81ae18bc5df57fbf81987c3c78b90ac0221ecbbe90e6983db1363bbd4abb7fbf4c06293b118d1ec09cf9cfbe00c0a9bc9d11283c8afc7fbfaf5a173a155731c01614d0be685e2f3ee611bb3c05e37fbf21059c3c896167bfe0d8c5bef035a53feb8f35bde7077fbff626993d29e717bf9a27c1bee4bfc13fe1e6f0bd7de478bf36244f3e7fa6e6be3a09d7be62d8aa3fe70b1dbef6267abfb6a5163e575d3fbf3c51ccbe840f8e3f4a33fabd7f3b7cbf0dd8f43d553250bf058aeabe6092143f70ce3ebe720f7bbf2e43723d55f9d6bedd100fbfa405223f0dd813be3e8a7cbf61ae9e3d64afdfbe008110bf48436e3e641428beb2507cbf21c825bdb53255bf04acefbe48d5703efc88febd1f037ebff4639cbb9b1bf7bfdc30d4be605d5f3f6766733aeafe7fbf7cbcb9bb07b6a2bf261bc9be6e888e3f221973bb7c427fbfb7739b3de48392bf096fd1be74f3673f55f880bc2e9e7fbfaf36563de4daecbf2140d0beecbf303f27a3dbbcfdd47fbf7694c73ce1464abfa492dcbe8c145c3fbe1825bed4c37abf4d7ff63d79019ebfe468d8bea422103fb8ee25bd2b7b7fbf7904493d3f52a0bfdcc0dfbe385f4d3e62d21bbdf6be7fbf72c2bd3c520aeebf1d75cebef057f8bd1777e6bcc3b87ebf281ec4bd4ad20bc02c4bc6be4cd694be296a7d3b1db07ebfcfeecebda88fc8be02a1ffbed40b873f8dcf2cbed3c377bf89153f3efdbb86be3224d9be84c2c13facb0e6bd21c077bf379f663e9ca706c02d7cc7bece22063fea0159bc78df7fbf712feabc1e1b15c05a2bccbe9642223ffe77953c26ce7fbf282b0dbd43c9c4be6e16e1be5c3620bf7ab9a2bd681f7bbfa58835be2e57d7bec84604bfe03527be159ae5bd8b797bbf538119bea94b62bf4da1ddbe482855be8498debd6c2d7cbf6bb908beb5379cbff069e0bef0b7b4bdfe2e16bd610b7fbfb70ba0bd6614ebbf7079d6be680de23e4c023ebd29927fbff7b90d3d643bebbfa016ddbeb0b8193ea04518bdb9d17fbf24d6b2bb3ee829c070cfcdbe70eed33e2399bb3ce2ed7fbf6df4aebb5474ecbfa1bcb1be70ff13bf49eb13bc4c247dbf574f18be6c767cbf3f1db9be4e5a02bf615ab6bd0d227bbfb69230be7a5226bfd046d0be020c11bfe39518be26057bbf26d402be6423c4bfea5ac5be4e8fb9be4ac7c0bc2d927cbfed4a25beef9072be4030b9be22685ebf8af245bef14b76bf5dfa44bee4f891be9ce3bebed66764bfec4a0a3e2a7179bf672538becefb97be8336b3be6494dc3f2ca0aabd56476fbf4bf0b03e82ad8ebf1b48a9be7e8a35bfe9bb54bda95c7dbf65a408bee99b4cbffcfbb6bec63160bf1c9feebd91a27bbf07aa11be28b8e8bea003c5bec9df6bbf4a0b67bdbe3779bfe6e862bee960a9bf18cf92be4a7973bf3a7783bda0287cbfe50b24be08c774bf4fe88fbefd2c93bfb103b9bd569777bf984d73be0f461cbf0b5f99bef8f693bf1df28dbdd19673bf236f99beadbdbfbeca73b7be4f0185bfff8edbbc95a078bf386f72bee4f891be9ce3bebed66764bf911d213f14f5f13c48cc46bfef9072be4030b9be22685ebf41ff5bbf172e553eb723efbe29e717bf9a27c1bee4bfc13ff22d14bf37267f3e72c5463f896167bfe0d8c5bef035a53fea9ee5bed84ccc3e5bbe4c3f155731c01614d0be685e2f3e8e4547be8573773f00be2abe118d1ec09cf9cfbe00c0a9bc30de99be8a2a693f6dec90becefb97be8336b3be6494dc3ffcc500bf52ec883d58975c3f4ad20bc02c4bc6be4cd694be9c4cc3be030e5c3ff115aebe5474ecbfa1bcb1be70ff13bf1714b7be27e25e3ffcf7acbe9b1bf7bfdc30d4be605d5f3f2a339abe8278373f3a07213f1e1b15c05a2bccbe9642223fc3f12dbeb82a723f806c8d3ee960a9bf18cf92be4a7973bfe2d69dbe453d5b3fff0dd4be08c774bf4fe88fbefd2c93bf7cd792bd32335d3fe81affbe0f461cbf0b5f99bef8f693bff492973e092e293f3e8d30bfadbdbfbeca73b7be4f0185bf2fa2373f6b148c3e410a24bf07b6a2bf261bc9be6e888e3ff26fb1bec815df3e5ca8543f3ee829c070cfcdbe70eed33e16236bbe616f753f03ad2b3ebff02abed848c4be2fa28ebf69ccb6be341f6fbf1ff7d9bbbff02abed848c4be2fa28ebfe7795cbf22d4b73efd26b8be0953d4bdd6768dbe711e8dbf5b0d13bfbea9373f8fc9c9be516c25bee4bdc4be47e5a9bfd0f158bfaa8107bfba1127bdbff02abed848c4be2fa28ebf20ff59bf840206bf97feecbc5550d1bd462993bebff3aabf1aa32ebf51d73a3fe93935bd0953d4bdd6768dbe711e8dbfc35a15bf84bc4f3fca620abd98a2bcbd420ac0be2a7a2dc0ce8f60bf4d1ff5be920f15bdc72bf0bd4e67c1be62cc07c08d4d33bf9e6336bfcfc12fbd9f835dbda35d9fbef2862dc003813cbf081d2d3f369fbabcedab91bd68259fbe5ae307c071613bbf98402e3f512df9bc1bb5e7bcf69ca6be1aed74c00adb47bf82c71f3fb44b00bd170d19bedc46c5be70cec9bfd93c75bfa91e90be925263bd6981b7bdf9db98be70cec9bf843b36bf6b60333fbbd544bd02c02cbdbc959fbebc4a4ec06a7c3cbfa8132d3fe6f2e9bc19a149bd7effb8be1aed74c06b3341bff84d27bf48926cbd90a193bd36adbebe47484ec024dc72bf9ebaa0bef7441dbd532083be2024873c80d84c3f3cf377b9ea107d3f27961a3e88f18abec8b6843de44c973e95d743be493f7b3fb4ed6cbcb7416dbec095483c68b277bef714a5bee41a6d3fe82a48bed1ae4a3ffcfbb6bec63160bfcaf7363dd1467dbf21c50d3e0e873d3f1848cabe4a768bbfc3e10a3cea047cbfc8ab333e1497e33e6d59d8be745d9dbf0d9548bd6d187ebfdd4be43df8dde43ea003c5bec9df6bbf65bda8bbc8177ebfad4bf93d35b81d3ee4bdc4be46e5a9bf760730be43f17bbf0d70323d603c233ed848c4be2fa28ebfc4fad8bdafd47dbf59f2993db41e8e3e9ce3bebed66764bf683369bd32d07ebf53bf9e3df8dde43ea003c5bec9df6bbf683369bd32d07ebf53bf9e3d603c233ed848c4be2fa28ebf683369bd32d07ebf53bf9e3d603c233ed848c4be2fa28ebfbd6125bea15b7abf367f073e90dc6a3e4030b9be22685ebfbd6125bea15b7abf367f073eb41e8e3e9ce3bebed66764bfbd6125bea15b7abf367f073eca1acd3ee6ede2be25e4c2bf75561dbe686b7cbfff38843d7558113edc46c5be70cec9bfeabb62beeb9d79bfeccd723cd66f1e3fe6ede2be32abacbf932bdfbc13ae7dbfb6b0063ee99b4cbffcfbb6bec63160bfe4f736bdd3467dbf1cc50d3e28b8e8bea003c5bec9df6bbf6fbda83bc8177ebfac4bf93d4371e7be6d59d8be745d9dbf0d95483d6b187ebfe54be43d15743fbf1848cabe4a768bbfe9e10abcea047cbfc9ab333ebff02abed848c4be2fa28ebfb9fad83db0d47dbf73f2993d516c25bee4bdc4be46e5a9bf7b07303e42f17bbff36f323de4f891be9ce3bebed66764bfba61253ea15b7abf367f073eef9072be4030b9be22685ebfba61253ea15b7abf367f073ebff02abed848c4be2fa28ebfba61253ea15b7abf367f073ebff02abed848c4be2fa28ebf6533693d32d07ebf53bf9e3d28b8e8bea003c5bec9df6bbf6533693d32d07ebf53bf9e3de4f891be9ce3bebed66764bf6533693d32d07ebf53bf9e3dd8f4d0bee6ede2be25e4c2bf79561d3e686b7cbfe738843d170d19bedc46c5be70cec9bf40bc623ee69d79bfb4c6723cee5c20bfe6ede2be32abacbf922bdf3c12ae7dbfb6b0063e1497e33eae31d2be745d9dbf8dc28d3d29847c3f30b618be0e873d3f1848cabe4a768bbf2b2c833d49d2773f783f78bed1ae4a3fc11bacbec63160bfc28906bcfbea7a3f08da4abef8dde43e6423babec9df6bbf664af03a6e127d3f6c6b1abeabed163e1921bebe2fa28ebfcd58c23de4bd7d3f5e79bdbd3c69113e2596bebe46e5a9bf0dbb323e00697b3f95da91bdabed163e1921bebe2fa28ebf02034c3dc4e87d3ffe77f0bdf8dde43e6423babec9df6bbf02034c3dc4e87d3ffe77f0bdb41e8e3e8203b4bed66764bf02034c3dc4e87d3ffe77f0bdb41e8e3e8203b4bed66764bf9bdb113e5c9d793f9a4d2ebe90dc6a3e0550aebe22685ebf9bdb113e5c9d793f9a4d2ebeabed163e1921bebe2fa28ebf9bdb113e5c9d793f9a4d2ebe7558113edc46c5be70cec9bf21d4693ed9e4783ff8f750bdca1acd3ee6ede2be25e4c2bfba582c3e35e67a3f4404d8bdd66f1e3fe6ede2be32abacbfcab1913d87d37b3f022229be4371e7beae31d2be745d9dbf2ca18dbde7847c3f11aa18be28b8e8be6423babec9df6bbf5711f0ba6f127d3f6d6b1abee99b4cbfc11bacbec63160bfde89063cf9ea7a3f07da4abe15743fbf1848cabe4a768bbf4c2c83bd49d2773f7e3f78be53061ebe1921bebe2fa28ebf01f7c1bd11bf7d3fc278bdbde48118be2596bebe46e5a9bf797632bede6c7b3f927f91bd53061ebe1921bebe2fa28ebfc0b411be739b793fe6992ebeef9072be0550aebe22685ebfc0b411be739b793fe6992ebee4f891be8203b4bed66764bfc0b411be739b793fe6992ebee4f891be8203b4bed66764bf7eec4bbde9e77d3f99b6f0bd28b8e8be6423babec9df6bbf7eec4bbde9e77d3f99b6f0bd53061ebe1921bebe2fa28ebf7eec4bbde9e77d3f99b6f0bdd8f4d0bee6ede2be25e4c2bf992e2cbe39e97a3ff0a9d7bd170d19bedc46c5be70cec9bff3b969be3ce8783f90bf4ebdee5c20bfe6ede2be32abacbfc8b191bd86d37b3f022229be0000000000000000a3d8b03d6287913e1b63b73daed7cc3edbbe173e24edce3eca50153e24f0973eb8acfa3ed445ca3e21cced3e1e55e53ee23e063f3eb0f33e53ae103f0ac2d53e4ada933dd07ba33d7560123c40aa683d7560123ce0f7b63d5847943d5891d83dd34f683ef45b243e419c173e0843dd3da9a5f93dc0d3143e1a31433e24254d3e4feb563ebc7ca33ea6d0593eac3ad33e0187d03ea623883e8b6da23e28264f3efa43933ea4fa7e3ea12cc43ef8e4993eff094e3eb632893e541e953e2ac4ab3e7560123c50163e3e7560123ce467533e4796273d8822543e733f313d0c083d3e52c5c33db047413e55690b3e78c1603ee5d49e3eae2bd63e82abcc3e2ec6003f8523f03e00e4083fad24433d2c11903e7560123cf69a8e3e7560123c1408cb3e26af493dd0efcb3ec09a8e3d14a5243e4180e43efcc2b33e29b1fb3e58ffa73e7560123c5a49073f7560123c2e70253f3455063d2c46253f1135313d1aa1073f3ba0b63dc217223f3d5f133e5e61053ff9e89e3ddcf8073f935d643dbc1d253fa5d8613ea9a2003f164c9c3e2e00f53e2192c13e96d0bd3e3ab88f3d30cd543ebdaac33e0491dd3eedf50a3f42efbd3e2d22ca3eb6841c3fcc46773ef9f7193f4d812c3e897c1f3f4a79a53e973a103f758ee13d7766223f86487c3d4baf2d3f37b89e3d1283303f00acae3db0734c3d428f1c3ce087ca3c91f28b3eeeeb243f1422503e8a702f3feacef33d024b323f7560123c94662f3f26f7203d25042f3ffd30723ef05f673d336e9a3e003f833d6535953ea0b9873ca52f543e48f1ca3d82ac9f3ea827f33dbd52c63ea03ab63d780eb53eb04e5c3d14b4643da876363eec666b3d346d4f3e1db6883d9cbb3d3eb6485a3e606acb3c465f313eb01f5b3dca429a3d7468313eab37a43decac463e3256a33e10912e3f6132753ef2233e3fb24c1f3ea4e23f3f17a0cd3d9e24393f22fb083f1c0c153f151fdf3e209a1d3f7105003ff6622c3fa9f50e3f5a9c213f98f9463f9a7bb83e4e0d503fb27ccd3e03b65f3ffa5eb33e7d235a3f22a2a03e89414c3f9644063fafd04b3f5d88193fe816623f96ad193fcf13633f3b70023f81251b3f6e2deb3e5bcd1e3fa838fe3ec1fd383f8027e53ef0a4313fdc0ecd3edd994d3f5cabed3e8b70373f4a7a083f71e6333fdcd61a3f00571e3f97382e3f2ee70e3fe256393f41b6643f0edad33e5c3d7b3f284a1a3f5c3d7b3ff86aff3e6b2d6c3fac949e3e5c3d7b3fde72953e5c3d7b3f0a16cf3e15c6063f242a043fc422123fb9c5083fd523653f9c874b3f5c3d7b3faf254c3f5c3d7b3f30b72f3f2009633fd6ab303f1c42353f7841283faef1493f1a712d3fc364223fb2860f3f0185223f1eff1d3f12c0f53e0d8d0f3f41f0203fd233493f6fd7433fa62a453f6bbb553fdf16483f7ea92f3fe0f23c3f2ee76a3f4cff5a3f03b46d3f0aa3593f5e14693f46f2853e5c3d7b3fe88f793e8d633c3f861f503f2c0c4d3fb70a5a3f9010613f03b15c3f5c3d7b3ffd4d583f239e303f99655b3fbfef433fa6f4693fe202583f40506a3f4eb6653ff486633f5b4f933d1043333f3398a03dd0d2313fedd41c3e1007d03db5336c3ebc901e3eca37133f78b6d73e2ff8083fecbcf53e5893b23d3095373d3013f53ef7e70a3fd674cd3e11c71e3fa680d43e508f853e42d2ff3e0cc5a53e404da53e8d29303fcc61773eac593f3f79e7203e8cf6403f1b1fc73db0c83b3f7560123c8000613c7251a53ecce14a3eb2810c3f34f0bb3ebdc3713f19e5673f5c3d7b3fae6d663f30d4663d6bf03e3ff18f083d419e3d3f7560123c7ec73c3f3657cd3d5f027e3f7ad3a33cfb687e3f9129df3c6e0e763f037bcc3d351f763fb058c33ce3316e3ff452d13d0f036f3f7ad3a33ca770673f3657cd3d43d7673fcdada83e305e7c3feacaa73ea8a4753ff33efe3e9b72753f61c4fe3eaf837b3f0000a83e0abb703f705cfe3e15c3703f26c8503f19ad6f3fe4d6783f58b9713f2f17513f25cd713fbe112d3ec49b7d3f53752f3ed932763f53752f3e3ad46f3fbe112d3e90e4683fcdada83e53e16a3fcec4243f21cb703fec87243f4ac16d3f2f17513fc516753f97e2763ff577763f1f64513fafcc793fe9d5243f2ea97a3fecc1243f8e40753f6476fe3ea7a46c3f571d8e3dd063cc3e7635893d36cc903e7583773df2cc073fa3d8b03d6287913eca50153e24f0973edbbe173e24edce3e1b63b73daed7cc3eb8acfa3ed445ca3e53ae103f0ac2d53ee23e063f3eb0f33e21cced3e1e55e53e4ada933dd07ba33d5847943d5891d83dd34f683ef45b243e1a31433e24254d3ea9a5f93dc0d3143e419c173e0843dd3d4feb563ebc7ca33ea6d0593eac3ad33e0187d03ea623883ea12cc43ef8e4993efa43933ea4fa7e3e8b6da23e28264f3eff094e3eb632893e541e953e2ac4ab3e733f313d0c083d3e4796273d8822543e55690b3e78c1603e52c5c33db047413ee5d49e3eae2bd63e82abcc3e2ec6003f8523f03e00e4083fad24433d2c11903e26af493dd0efcb3ec09a8e3d14a5243e29b1fb3e58ffa73e4180e43efcc2b33e1135313d1aa1073f3455063d2c46253f3ba0b63dc217223f935d643dbc1d253ff9e89e3ddcf8073f3d5f133e5e61053f164c9c3e2e00f53ea5d8613ea9a2003f2192c13e96d0bd3e3ab88f3d30cd543ebdaac33e0491dd3eedf50a3f42efbd3e2d22ca3eb6841c3fcc46773ef9f7193f4d812c3e897c1f3f4a79a53e973a103f758ee13d7766223f37b89e3d1283303f86487c3d4baf2d3f00acae3db0734c3d91f28b3eeeeb243f1422503e8a702f3feacef33d024b323f26f7203d25042f3ffd30723ef05f673d6535953ea0b9873c336e9a3e003f833da52f543e48f1ca3d82ac9f3ea827f33d780eb53eb04e5c3dbd52c63ea03ab63d14b4643da876363e1db6883d9cbb3d3eec666b3d346d4f3e465f313eb01f5b3db6485a3e606acb3cca429a3d7468313eab37a43decac463e3256a33e10912e3f6132753ef2233e3fb24c1f3ea4e23f3f17a0cd3d9e24393f22fb083f1c0c153fa9f50e3f5a9c213f7105003ff6622c3f151fdf3e209a1d3f98f9463f9a7bb83e7d235a3f22a2a03e03b65f3ffa5eb33e4e0d503fb27ccd3e89414c3f9644063fcf13633f3b70023fe816623f96ad193fafd04b3f5d88193f81251b3f6e2deb3ef0a4313fdc0ecd3ec1fd383f8027e53e5bcd1e3fa838fe3edd994d3f5cabed3e8b70373f4a7a083f71e6333fdcd61a3f00571e3f97382e3f2ee70e3fe256393f41b6643f0edad33e6b2d6c3fac949e3ec422123fb9c5083f15c6063f242a043fd523653f9c874b3f2009633fd6ab303faef1493f1a712d3f1c42353f7841283fc364223fb2860f3f0185223f1eff1d3f12c0f53e0d8d0f3f41f0203fd233493f6fd7433fa62a453f6bbb553fdf16483f7ea92f3fe0f23c3f03b46d3f0aa3593f2ee76a3f4cff5a3f5e14693f46f2853e8d633c3f861f503f2c0c4d3fb70a5a3f9010613f03b15c3f239e303f99655b3fbfef433fa6f4693fe202583f40506a3f4eb6653ff486633f3398a03dd0d2313f5b4f933d1043333fedd41c3e1007d03db5336c3ebc901e3eca37133f78b6d73e2ff8083fecbcf53e5893b23d3095373d3013f53ef7e70a3fd674cd3e11c71e3fa680d43e508f853e42d2ff3e0cc5a53e404da53e8d29303fcc61773eac593f3f79e7203e8cf6403f1b1fc73db0c83b3f7251a53ecce14a3eb2810c3f34f0bb3ebdc3713f19e5673f30d4663d6bf03e3ff18f083d419e3d3f037bcc3d351f763f9129df3c6e0e763ff452d13d0f036f3fb058c33ce3316e3ff33efe3e9b72753feacaa73ea8a4753f705cfe3e15c3703f0000a83e0abb703f2f17513f25cd713f53752f3ed932763f53752f3e3ad46f3fcec4243f21cb703f2f17513fc516753fecc1243f8e40753f7635893d36cc903e571d8e3dd063cc3e7583773df2cc073f8f397f3ed09c453f46999d3e2c66543f8eb2de3e17d6513fb264be3eaeef373fe09e0b3fd6e74a3fc72e013f0340393fe866d73e046f2c3fb264be3eaeef373fc72e013f0340393fc72e013f0340393ff14bdd3eba2a283fe866d73e046f2c3f82e5003f732a683f65c5183fa1675f3f72e0cd3e45f3643f247c7f3e596e453f7077be3e7fdb373f6afadc3e2979513f72a79c3eb038543f8cbc003fa432393fe7c70b3f32e64a3f2043d73e3d472c3ff44edd3e880f283f8cbc003fa432393f8cbc003fa432393f7077be3e7fdb373f2043d73e3d472c3f2ae2003fe52d683fb532193fa0545f3f60ccce3ea5d9643f28463a3f288b6b3ef4e05a3f0023283e20b75f3fa0d08b3d7976393f7014c03d85b1193f941a3a3ec39b193f5cc38c3e85b1193f941a3a3e7976393f7014c03d780a253f205da53d780a253f205da53d817a1f3fa0b4903d85b1193f941a3a3e98dc183fe0a5c43e384e363f823bb83e3f584e3fc4f28f3e28463a3f288b6b3e7976393f7014c03d20b75f3fa0d08b3df4e05a3f0023283e85b1193f941a3a3ec39b193f5cc38c3e85b1193f941a3a3e817a1f3fa0b4903d780a253f205da53d780a253f205da53d7976393f7014c03d85b1193f941a3a3e384e363f823bb83e98dc183fe0a5c43e3f584e3fc4f28f3e0000000000000000686b103fdbd4843eaba8343e00000000010000001100000015000000000000007f14df3ec6cca83e763d703e0000000001000000150000000200000011000000fa61613fea04d03d0aad933c000000001500000001000000020000001100000044a5143f08268f3ee01e0f3e00000000150000001100000001000000000000002e70223f5f96533ee9a8223e000000001700000016000000120000001500000074102e3fe6dc4c3e92c2f53d0000000017000000160000000f00000015000000e6425a3f67f4163e0000000000000000170000000f0000001200000015000000b30f673f6782c73d0000000000000000170000000f0000001200000015000000ee71543f4a382e3e0000000000000000100000001100000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f0000000000000000000000001000000000000000000000000000000036ff4b3f2803503e00000000000000001000000011000000000000000000000040d50b3f8055e83e000000000000000012000000110000001500000014000000aa2d2f3fab0d853e0cb8643d00000000110000001000000001000000000000001f4f2a3ff110853e4543993d0000000011000000100000000100000000000000995d403ff76b693e31eda83c0000000011000000120000001600000014000000116dce3ec8b9663e59d44e3e0000000011000000150000001200000016000000cdcc0c3f6666e63e0000000000000000150000001600000011000000140000000b701f3fccb2583e0a8d293e00000000120000001600000017000000150000004c26283f8885643e92c2f53d0000000012000000110000001600000014000000d7010a3f90c2753e1336623e00000000120000001600000011000000140000006bf00a3ff8f4853e6254483e0000000012000000160000001700000015000000406ce43e43f2a03e39dd0a3e00000000110000001200000016000000150000001ebdd43e7aea653e5c354b3e00000000160000001200000011000000150000008049383fff6c8f3e000000000000000001000000100000000000000000000000a7065b3f65e5133e000000000000000001000000100000000000000000000000389e743f791c363d000000000000000001000000100000000000000000000000d94a2c3f4e6aa73e0000000000000000010000001000000000000000000000002ed3f23e6d07b13ec94a383e000000000100000011000000100000000000000042061d3feb1e803e21a90b3e0000000011000000010000001500000000000000ee98553f499c293e000000000000000016000000150000001100000014000000128ae13e5df9923e927c8b3e00000000160000000f00000017000000150000005d290b3fa13cac3e92c2f53d00000000170000000f00000016000000150000000000803f000000000000000000000000010000001100000000000000000000000000803f000000000000000000000000010000000000000000000000000000006666263f3333b33e0000000000000000010000000200000000000000000000006666263f3333b33e00000000000000000100000002000000000000000000000009542a3f8ab1a03e4966aa3c00000000010000001000000011000000000000005983de3e830e993e256e883e000000001700000012000000160000001500000032b4dc3eb9659d3e15e6853e00000000170000001200000016000000150000000000803f000000000000000000000000020000000000000000000000000000000000803f00000000000000000000000002000000000000000000000000000000d4797c3f008be13b008be13b00000000020000000100000003000000000000000000803f00000000000000000000000002000000000000000000000000000000c36d773fa324053df8cb7f3a0000000002000000150000000e000000110000002041033f2fc8d83e41d6823d000000000e0000001500000002000000110000005703433fa3f2733e0000000000000000020000001500000011000000000000000da9793f5cde4a3c5cde4a3c00000000020000000100000003000000110000004709003f8a83d13e9ea7b93d0000000015000000160000000e00000014000000f3285c3f345c0f3e000000000000000016000000150000001100000014000000e658fc3e3c318f3ebaeb683e0000000016000000120000001700000015000000ff8a4d3f18202f3e569fd53c000000000100000011000000100000000000000012f5233f6f4a753e92c2f53d0000000016000000170000000f000000150000001ac73d3f83a7103e2978f03d00000000170000000f00000012000000150000004d75173fcfba5f3efe6f423e000000000f00000016000000170000001500000065e3d73ef56ea63e652c803e000000000e00000016000000150000000f00000047ea5d3fbb5ede3d253cc93c000000000e00000015000000020000001100000004f21c3fd043733e1ff4183e00000000160000000f0000001500000014000000a496163f79e2b43ef8816f3d00000000020000000e00000015000000110000000000803f0000000000000000000000000200000011000000000000000000000014351b3fd895c93e0000000000000000020000000e0000001100000000000000584b463f9ed2663e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000021a1eb3e22b8d33e9f08fa3d000000000e0000000f0000001600000015000000fa647d3f85c1263c00000000000000000e0000000f00000011000000020000007b3a503f16163f3e00000000000000000e0000000200000011000000000000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000020000001100000000000000000000008a7a3f3f3a374d3e787a533d00000000010000001000000011000000000000005c351a3f4795cb3e0000000000000000010000001000000000000000000000004edf4c3fc8824c3e0000000000000000010000001000000000000000000000002ed3f23e6d07b13ec94a383e000000000100000011000000100000000000000009542a3f8ab1a03e4966aa3c0000000001000000100000001100000000000000d94a2c3f4e6aa73e0000000000000000010000001000000000000000000000007ec63f3f0473803e0000000000000000010000001000000000000000000000007ec63f3f0473803e000000000000000001000000100000000000000000000000d08b733f095f393dd73f5e3b0000000001000000100000001100000000000000d9f54c3f9b284c3e000000000000000001000000100000000000000000000000ef4c523fdf77353eb432aa3a0000000001000000100000001100000000000000ff8a4d3f18202f3e569fd53c00000000010000001100000010000000000000004edf4c3fc8824c3e000000000000000001000000100000000000000000000000ef4c523fdf77353eb432aa3a0000000001000000100000001100000000000000d668023f552efb3e00000000000000000e0000000f0000001500000011000000e07a143f3f0ad73e00000000000000000e0000000f00000011000000020000001fac3c3fc2a7863e00000000000000000e000000020000001100000000000000fd90103f05dede3e0000000000000000020000000e00000011000000000000007d93313fb398513eb132d03d0000000017000000160000001200000015000000b30f673f6782c73d0000000000000000170000000f00000012000000150000002e24553f496f2b3e0000000000000000170000000f0000001200000015000000d6662c3fafed813e9312953d0000000017000000160000000f00000015000000781d273f10c5b13e000000000000000011000000120000001500000014000000a6fd553f6709283e000000000000000011000000120000001500000014000000cdbddc3e414ac43ee3ef3d3e0000000001000000110000001000000000000000da254d3f96684b3e000000000000000011000000100000000100000000000000dcc6fa3e7950793e5047113e0000000015000000110000001600000012000000d8a3303f50b89e3e000000000000000015000000160000001100000014000000f39fed3e0858b23e0910403e0000000015000000010000000200000011000000a7e4f03e6544ac3ee7ad453e0000000001000000110000001500000000000000d864243f2e7c583e74f0153e00000000120000001600000017000000150000006a02003f4a1f9d3ec2b7453e0000000012000000160000001700000015000000a65e293fad2c8b3e1b58883d00000000120000001100000016000000140000003fb33f3f84d1273efec2b23d00000000120000001100000016000000140000000b05253ff220463ed20b183e00000000110000001500000012000000160000004a52b63e442f643e171e5e3e000000001600000011000000120000001500000096884c3fa8dd4d3e000000000000000016000000150000001100000014000000e558ff3e57fc883e88556f3e00000000160000000f00000017000000150000000d02133fe25ab83e0e84863d00000000170000000f00000016000000150000008e96003f1a15a03e77f5cc3d00000000010000001100000015000000100000006666263f3333b33e0000000000000000010000000200000000000000000000000000803f00000000000000000000000001000000000000000000000000000000b8c04a3f1ffd543e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000062627a3fbfb3b33c00000000000000000100000010000000000000000000000064ce033fb9659d3efefa353e000000001700000012000000160000001500000066cb093f14da8d3e421e3d3e00000000170000001200000016000000150000006aa51f3f10a7803e381c003e00000000020000000e00000015000000110000000000803f000000000000000000000000020000000000000000000000000000000000803f00000000000000000000000002000000000000000000000000000000928a393fdcea8c3e000000000000000002000000150000001100000000000000c3672e3fffcf543eec21e33d0000000016000000150000000f0000001400000092ed1c3f9181913e308dd23d0000000015000000160000000f000000140000007d5bf13ee74d9b3e38ad663e000000001600000017000000120000001500000019ba433f9c17713e00000000000000001600000017000000120000001500000037cd3f3f0f8f083e2978f03d00000000170000000f0000001200000015000000bea0233ff1854b3e17f7253e000000000f0000001700000016000000150000008c978d3eafda873e771a863e000000000f00000015000000160000000e00000001de023f2a5c8f3ea9cf553e00000000020000000e0000001500000011000000b34d223f8e2a5b3ea49e1b3e00000000160000000f0000001500000014000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000d9a26b3f3ae9a23d0000000000000000020000000e000000110000000000000054504a3fb0be563e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000033ebdc3eb034833e22ca663e000000000e000000160000000f0000001500000060d6593fcd2e123ea8f6ce3b000000000e0000000f0000000300000002000000b70b1b3f93e8c93e0000000000000000020000000e00000011000000000000000000803f0000000000000000000000000200000000000000000000000000000008410d3ff17de53e00000000000000000e0000000f000000150000001100000060ae143f40a3d63e00000000000000000e0000000f0000001100000002000000fabf2e3f0b80a23e00000000000000000e00000002000000110000000000000035c1153f957dd43e0000000000000000020000000e0000001100000000000000d9a26b3f3ae9a23d0000000000000000020000000e0000001100000000000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000da254d3f96684b3e000000000000000011000000100000000100000000000000781d273f10c5b13e000000000000000011000000120000001500000014000000b30f673f6782c73d0000000000000000170000000f00000012000000150000002e24553f496f2b3e0000000000000000170000000f000000120000001500000054504a3fb0be563e0000000000000000100000001100000000000000000000000d02133fe25ab83e0e84863d00000000170000000f0000001600000015000000bea0233ff1854b3e17f7253e000000000f000000170000001600000015000000d864243f2e7c583e74f0153e000000001200000016000000170000001500000064ce033fb9659d3efefa353e000000001700000012000000160000001500000008410d3ff17de53e00000000000000000e0000000f000000150000001100000060ae143f40a3d63e00000000000000000e0000000f0000001100000002000000fabf2e3f0b80a23e00000000000000000e00000002000000110000000000000035c1153f957dd43e0000000000000000020000000e00000011000000000000000000803f000000000000000000000000100000000000000000000000000000003fb33f3f84d1273efec2b23d000000001200000011000000160000001400000037cd3f3f0f8f083e2978f03d00000000170000000f0000001200000015000000044d353ff865953e0000000000000000030000000200000000000000000000001ed4283fc357ae3e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000000600283ff4ffaf3e0000000000000000030000000200000000000000000000003e27023f84b1fb3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000001ed4283fc357ae3e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000600283ff4ffaf3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000003e27023f84b1fb3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f0000000000000000000000000400000000000000000000000000000096ec0f3fc9fe9a3e17500a3e0000000001000000020000001500000011000000e1887b3f80696e3c59793d3b00000000010000001500000011000000000000002cfd7f3f2508353800000000000000000200000015000000110000000000000005c51f3f3d0a573eb0e1293e000000000100000013000000180000000d000000c023053f1029ae3ee01e0f3e000000001800000013000000010000000d0000005489613fe904d03dd8c18e3c000000001800000001000000020000000d000000bc74033f69918d3e3d0a573e000000000100000002000000180000000d0000004157313f1185333ee91d073e000000001a000000190000001400000016000000812b793fdb8fda3c00000000000000001a0000000d0000001800000019000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000008b9c433fa15a3e3ecccc4c3d000000001a000000190000000d000000160000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000006666263f3333b33e000000000000000013000000140000000d00000018000000eaa42d3f2bb6a43e000000000000000013000000140000000d0000001800000019b7193f05de7a3e96451e3e000000001300000010000000010000000000000011dc383fdff18b3ec47f953b0000000013000000100000000100000000000000872fbc3e48027a3e63215e3e00000000180000001300000014000000190000000a5a453fd9976a3e000000000000000018000000190000000d0000001300000081f8153f93eb583e68324f3e0000000014000000190000001a00000018000000891fe63e2fe09e3e9200763e00000000140000001a000000190000001800000021f0183f544d6c3ea38b2c3e000000001400000013000000190000001800000017f7273f086a703e3573df3d0000000014000000130000001900000018000000a1e50c3f2a5c8f3e28b12d3e00000000130000001400000019000000180000007411003ff4c0673ea3c31b3e0000000019000000140000001800000013000000e2d6343f3b52963e000000000000000001000000100000000000000000000000bfb8753f0e74243d00000000000000000100000010000000000000000000000032a5253f9db5b43e000000000000000013000000010000000000000000000000376b193f5c5f503ecaf3493e00000000010000001000000013000000000000002e77473f4923623e000000000000000019000000180000000d000000130000002f060f3f2b2f753e18b84e3e00000000190000001a0000000d000000180000002950173fd9307b3e858e273e000000001a0000000d00000019000000160000000000803f000000000000000000000000010000000000000000000000000000006666263f3333b33e000000000000000001000000020000001300000000000000e958303fbda09e3e8a70ad3a0000000001000000100000001300000000000000a01a0f3fac1c9a3e2a5c0f3e000000001a000000140000001900000016000000025ae53ea570bd3eb26a3a3e000000001a0000001400000019000000160000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000020000000000000000000000000000008484233ff4bc443efc302d3e00000000020000000c00000018000000130000000000803f00000000000000000000000002000000000000000000000000000000713d4a3f3d0a573e000000000000000002000000180000000d000000130000001f45283f8862653e0323853d00000000180000000c000000020000000d000000ff20333f816d413e071de43d0000000019000000180000000d00000015000000a7ee0c3f14d4303ec185133e0000000018000000190000000d0000000c0000007c7ef73e65fc9c3e400a573e00000000190000001a0000001400000018000000fc1e453f4209653ec059cf3b0000000001000000130000001000000000000000dfc11e3fe313883e8ec2753d00000000190000001a0000000d000000140000009999593f9c99193e00000000000000001a00000014000000180000001900000013a2283fac093a3e066e233e000000000d000000190000001a00000018000000c329863e9cb0823efdcf803e000000000d0000000c000000190000001800000016d8433f3292103e3da6a53d000000000c00000018000000020000000d000000b895e83ec609c03e04c12e3e00000000190000000d00000018000000150000006f4cd23e15d0b93ef6c6673e000000000c0000001800000002000000130000001f852b3fc2f5a83e0000000000000000020000000c00000013000000000000009630533fa63d333e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000010000000000000000000000000000000bd97cf3e180ca13e2a5c8f3e000000000c0000000d00000019000000180000007cad723f4128553d00000000000000000c0000000d00000013000000020000000bcb233feb69b83e0000000000000000020000000c00000013000000000000000000803f000000000000000000000000020000000000000000000000000000002be84b3f535f503e00000000000000000100000010000000130000000000000070c24c3f33da323e6ae0d03c0000000001000000100000001300000000000000340c2a3f8bd3923e6aa0483d0000000001000000100000001300000000000000376b193f5c5f503ecaf3493e0000000001000000100000001300000000000000e958303fbda09e3e8a70ad3a0000000001000000100000001300000000000000f24d503f36c83e3e000000000000000001000000100000000000000000000000e2d6343f3b52963e000000000000000001000000100000000000000000000000f24d503f36c83e3e0000000000000000010000001000000000000000000000008861563f7d79263ef199c5350000000001000000100000001300000000000000dc10743f40d1f43c3513893c0000000001000000100000001300000000000000fc1e453f4209653ec059cf3b0000000001000000130000001000000000000000b91f6c3f9fc0973d2633683b000000000100000010000000130000000000000070c24c3f33da323e6ae0d03c0000000001000000100000001300000000000000b91f6c3f9fc0973d2633683b00000000010000001000000013000000000000005a50fe3e9201ba3e2a5c0f3e000000000d0000000c0000001900000018000000fac3643f2ee0d93d00000000000000000c0000000d000000130000000200000029743d3fad17853e00000000000000000c000000020000001300000000000000ccc52b3f6874a83e0000000000000000020000000c0000001300000000000000ec432c3f5fb04b3ef13f033e000000001a000000190000001400000016000000c1813c3fcbc55a3ecdcc4c3d000000001a000000190000000d00000016000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000000000803f0000000000000000000000001a0000000d00000018000000190000006666263f3333b33e000000000000000013000000140000000d00000018000000366d3e3f95cf803ec57f953b00000000130000001000000001000000000000004545f43e63d08f3eb0d4773e000000001300000001000000100000000000000024b8293f70084e3e00170b3e000000001300000014000000190000001800000006e6223ff533ba3e000000000000000018000000190000000d0000001300000005c51f3f3d0a573eb0e1293e000000000100000013000000180000000d000000bd74033f69918d3e3c0a573e000000000100000002000000180000000d00000070b6093f2093ec3e000000000000000018000000190000000d0000001300000068f60e3f7a02793ee6234b3e00000000140000001a000000190000001800000073d8373f908b143ea3120c3e0000000014000000130000001900000018000000b872153fa1a38a3e13740e3e00000000140000001900000018000000130000002889f83e700cac3ed1d4363e0000000014000000190000001a00000018000000db8d0e3f6eaf813eba69423e00000000130000001800000019000000150000007f5e213ff4c0673e10c5123e0000000019000000140000001800000013000000c00a303f81ea9f3e000000000000000019000000180000000d000000130000005760103f9380773e12fe463e00000000190000001a0000000d000000180000007c5d343fc4e8313e9742f93d000000001a0000000d00000019000000160000004c14fb3eb9893d3e94e12c3e00000000010000001300000010000000180000000000803f00000000000000000000000010000000000000000000000000000000bb45c03ea570bd3ea049823e000000001a000000140000001900000016000000a01a0f3fac1c9a3e2a5c0f3e000000001a0000001400000019000000160000006244543f78ee2e3e0000000000000000020000000c0000001300000018000000713d4a3f3d0a573e000000000000000002000000180000000d000000130000005847203f6b06903e91abbd3d0000000018000000190000000d00000015000000eb51383f2a5c8f3e000000000000000019000000180000000d00000013000000703d4a3f400a573e000000000000000019000000140000000d0000001800000022f11e3f633c883e8ec2753d00000000190000001a0000000d000000140000009999593f9c99193e00000000000000001a000000140000001800000019000000855e0c3f7b0a7c3e727b523e000000000d000000190000001a0000001800000041e8fe3e0a6a713e0ff10e3e0000000018000000190000000d0000000c00000014120c3f7c4f793e3368563e0000000002000000180000000c000000130000004dfbc03e8cb1b93e295c0f3e00000000190000000d0000001a00000018000000ec817a3f8ec2af3c0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c000000000000000000803f00000000000000000000000010000000000000000000000000000000a861003f513eeb3ef9f21f3d000000000c0000000d0000001900000018000000e8ed7f3faac1903900000000000000000c0000000d00000013000000020000008274533ff72d323e0000000000000000020000000c0000001300000000000000934b0b3fac73b03eb9d4e33d000000000d0000000c0000001900000018000000bcdd673f1d12c13d00000000000000000c0000000d00000013000000020000000428113ff7afdd3e00000000000000000c000000020000001300000000000000b361313f9a3c9d3e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c00000000000000ec817a3f8ec2af3c0000000000000000020000000c0000001300000000000000366d3e3f95cf803ec57f953b00000000130000001000000001000000000000006666263f3333b33e000000000000000013000000140000000d000000180000000000803f0000000000000000000000001a0000000d0000001800000019000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000000000803f000000000000000000000000100000000000000000000000000000007c5d343fc4e8313e9742f93d000000001a0000000d0000001900000016000000855e0c3f7b0a7c3e727b523e000000000d000000190000001a0000001800000068f60e3f7a02793ee6234b3e00000000140000001a0000001900000018000000a01a0f3fac1c9a3e2a5c0f3e000000001a000000140000001900000016000000934b0b3fac73b03eb9d4e33d000000000d0000000c0000001900000018000000bcdd673f1d12c13d00000000000000000c0000000d00000013000000020000000428113ff7afdd3e00000000000000000c000000020000001300000000000000b361313f9a3c9d3e0000000000000000020000000c000000130000000000000073d8373f908b143ea3120c3e00000000140000001300000019000000180000009999593f9c99193e00000000000000001a000000140000001800000019000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000aca91f3fa8acc03e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000aca91f3fa8acc03e0000000000000000030000000200000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f000000000000000004000000050000000000000000000000db4c6e3ff950303da4c2d53c000000000100000013000000180000000d000000177a253fb634b23e1ec7b53b000000000100000002000000180000000d000000e804653fbfd8d73d000000000000000002000000180000000d0000001300000060d6593fcd2e123ea8f6ce3b000000000e0000000f00000003000000020000009cdb303fc9489e3e0000000000000000020000000e0000001100000000000000dff7083f3499883e1aee4a3e0000000003000000020000000e00000011000000b70b1b3f93e8c93e0000000000000000020000000e00000011000000000000000000803f00000000000000000000000003000000000000000000000000000000044d353ff865953e000000000000000003000000020000000000000000000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000b70b1b3f93e8c93e0000000000000000020000000e0000001100000000000000044d353ff865953e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000005ea26b3f0feda23d0000000000000000020000000e0000001100000000000000b174173f9e16d13e0000000000000000020000000e00000011000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000001a8a013facebc23e7e00e83d0000000002000000030000000e00000011000000e8ed7f3faac1903900000000000000000c0000000d00000013000000020000008274533ff72d323e0000000000000000020000000c0000001300000000000000f28a1d3f1beac43e00000000000000000200000003000000130000000000000014ae473faf47613e000000000000000002000000030000000c00000013000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000002000000130000000c00000000000000ec817a3f8ec2af3c0000000000000000020000000c0000001300000000000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000008274533ff72d323e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000638b333f3be9983e00000000000000000300000002000000130000000000000011fb083f639c883ef8da4a3e0000000003000000020000000e000000110000009cdb303fc9489e3e0000000000000000020000000e0000001100000000000000971f603fff72f93d7109323b000000000e0000000f0000000300000002000000ffa3223f02b8ba3e00000000000000000e000000020000001100000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000044d353ff865953e000000000000000003000000020000000000000000000000ffa3223f02b8ba3e00000000000000000e000000020000001100000000000000854e193ff562cd3e0000000000000000020000000e0000001100000000000000854e193ff562cd3e0000000000000000020000000e000000110000000000000015f0733fb0fe403d0000000000000000020000000e0000001100000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000001a8a013facebc23e7e00e83d0000000002000000030000000e000000110000001ba2113fcabbdc3e000000000000000002000000030000001300000000000000f752443f22b46e3e0000000000000000020000000c0000001300000000000000921d7e3fc636f13b00000000000000000c0000000d000000130000000200000014ae473faf47613e000000000000000002000000030000000c00000013000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000002b7b783fa89af03c0000000000000000020000000c00000013000000000000001f852b3fc2f5a83e0000000000000000020000000c00000013000000000000001f852b3fc2f5a83e0000000000000000020000000c0000001300000000000000f752443f22b46e3e0000000000000000020000000c0000001300000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000638b333f3be9983e000000000000000003000000020000001300000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0, y: -0.2611611, z: -1.2714314} + m_Extent: {x: 2.77094, y: 0.32596284, z: 3.07622} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh.meta new file mode 100644 index 0000000000..f7cf78cf03 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b079ccea3f374a4c902a402e64d7694 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab new file mode 100644 index 0000000000..fe67e657dd --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab @@ -0,0 +1,144 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8045226901789392516 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7824907772747749830} + - component: {fileID: 2211730495742430950} + - component: {fileID: 4046313958715279216} + - component: {fileID: 9036093812956070214} + m_Layer: 0 + m_Name: "\u98DE\u9CD0_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7824907772747749830 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8045226901789392516} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2211730495742430950 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8045226901789392516} + m_Mesh: {fileID: 4300000, guid: 4b079ccea3f374a4c902a402e64d7694, type: 2} +--- !u!137 &4046313958715279216 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8045226901789392516} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 7b429d14846a6e84186fd18d0cf4e3c3, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 4b079ccea3f374a4c902a402e64d7694, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &9036093812956070214 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8045226901789392516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 2211730495742430950} + _skinnedMeshRenderer: {fileID: 4046313958715279216} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab.meta new file mode 100644 index 0000000000..dd95c5e0f3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: db9b881a47652834facf75ef300f0487 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat new file mode 100644 index 0000000000..0f8d0cbed7 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1167737101602470799 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0\u9CCD_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d145f7cf2e2a7e74bb25e08d71ff9e87, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d145f7cf2e2a7e74bb25e08d71ff9e87, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat.meta new file mode 100644 index 0000000000..0b73e3cb77 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d3179f0f7205f14f97297630490b71b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh new file mode 100644 index 0000000000..65661e6535 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh @@ -0,0 +1,671 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0\u9CCD_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 66 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 32 + localAABB: + m_Center: {x: -0.0037600398, y: -0.24675432, z: -3.2181904} + m_Extent: {x: 1.09028, y: 0.26516005, z: 2.068381} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011920929 + e01: 3.9404502e-17 + e02: -1.0000001 + e03: 1.0875986 + e10: 1.0694949e-15 + e11: 1 + e12: 3.9404502e-17 + e13: 0.31267777 + e20: 1.0000001 + e21: -1.0694949e-15 + e22: -0.00000011920929 + e23: -0.0009261863 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.009433403 + e01: 0.000000002930728 + e02: -0.9999556 + e03: 0.0408839 + e10: -3.6363315e-11 + e11: 1 + e12: 0.0000000029305158 + e13: 0.31267777 + e20: 0.9999555 + e21: 8.716963e-12 + e22: 0.009433402 + e23: -0.0013120426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.010100711 + e01: 0.00000000213998 + e02: -0.99994904 + e03: -1.0796483 + e10: 5.0768445e-10 + e11: 1 + e12: 0.000000002134961 + e13: 0.31267777 + e20: 0.9999488 + e21: -4.860939e-10 + e22: -0.010100713 + e23: -0.022405561 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.018515091 + e01: 0.00000001593 + e02: -0.9998288 + e03: -2.1261759 + e10: -1.7932714e-10 + e11: 1 + e12: 0.00000001592941 + e13: 0.3126778 + e20: 0.9998286 + e21: -1.1563791e-10 + e22: 0.018515097 + e23: 0.038446285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.008208985 + e01: -0.000000009813158 + e02: -0.9999667 + e03: -3.2684536 + e10: 1.33342e-10 + e11: 1 + e12: -0.000000009812396 + e13: 0.31267774 + e20: 0.9999663 + e21: -5.2787438e-11 + e22: 0.008208987 + e23: 0.004758754 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.07251635 + e01: -3.938046e-10 + e02: -0.99736744 + e03: -1.0423472 + e10: 2.19508e-10 + e11: 1 + e12: -3.7888453e-10 + e13: 0.32190198 + e20: 0.9973672 + e21: -1.914548e-10 + e22: 0.07251635 + e23: -0.72168094 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029568776 + e01: 0.000000008843177 + e02: -0.999563 + e03: -1.9293966 + e10: -0.0000000034849497 + e11: 0.9999999 + e12: 0.000000008743957 + e13: 0.32190204 + e20: 0.99956274 + e21: 0.0000000032248781 + e22: 0.029568765 + e23: -0.80537766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.019442642 + e01: -0.00000002973874 + e02: -0.9998112 + e03: -2.7040973 + e10: 0.0000000054613714 + e11: 0.99999976 + e12: -0.00000002985058 + e13: 0.3219018 + e20: 0.99981093 + e21: -0.000000006040713 + e22: -0.019442663 + e23: -0.9389995 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.09218214 + e01: 4.715061e-10 + e02: -0.9957427 + e03: -1.1076031 + e10: 5.1803384e-10 + e11: 1 + e12: 4.2556428e-10 + e13: 0.32190198 + e20: 0.9957423 + e21: -4.765988e-10 + e22: -0.09218213 + e23: 0.6807706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060275115 + e01: 0.000000006946731 + e02: -0.9981824 + e03: -1.933018 + e10: 0.00000001677088 + e11: 1 + e12: 0.0000000059466796 + e13: 0.321902 + e20: 0.9981819 + e21: -0.000000016381952 + e22: -0.06027509 + e23: 0.7429999 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029793758 + e01: 0.0000000050744946 + e02: -0.9995567 + e03: -2.671572 + e10: 0.0000000139174 + e11: 1 + e12: 0.0000000054915854 + e13: 0.32190204 + e20: 0.9995561 + e21: -0.000000014074833 + e22: 0.029793821 + e23: 0.9874153 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.97513276 + e01: 0.0000000024050197 + e02: -0.22162108 + e03: -0.44525054 + e10: 0.0000000024426599 + e11: 1 + e12: 1.04243045e-10 + e13: 0.32095918 + e20: 0.2216211 + e21: -4.3969384e-10 + e22: -0.975133 + e23: -0.4569956 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99503726 + e01: 0.000000013498726 + e02: -0.09950344 + e03: -1.0955272 + e10: 0.000000012868366 + e11: 1 + e12: 0.0000000069768484 + e13: 0.3209592 + e20: 0.09950348 + e21: 0.000000005661777 + e22: -0.9950375 + e23: -0.5968534 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9899499 + e01: 0.000000002614446 + e02: -0.14142136 + e03: -0.40980524 + e10: -0.0000000014035346 + e11: 1 + e12: 0.0000000086621785 + e13: 0.3209592 + e20: 0.14142133 + e21: -0.000000008376631 + e22: 0.98995 + e23: 0.5126524 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99693894 + e01: -0.0000000020833346 + e02: -0.07819128 + e03: -0.9732565 + e10: 0.0000000017002195 + e11: 1 + e12: -0.0000000049663225 + e13: 0.32095918 + e20: 0.078191265 + e21: 0.00000000481817 + e22: 0.99693906 + e23: 0.5756998 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.014284189 + e01: -0.000000007960181 + e02: 0.9998982 + e03: -1.0951422 + e10: -7.218223e-11 + e11: 1 + e12: 0.0000000079599625 + e13: 0.31267777 + e20: -0.9998981 + e21: 4.15267e-11 + e22: -0.014284187 + e23: 0.018818876 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99966544 + e01: -0.000000020012104 + e02: 0.025878796 + e03: -0.3404073 + e10: 0.000000019995408 + e11: 1 + e12: 9.037282e-10 + e13: 0.32190198 + e20: -0.025878794 + e21: -3.8596953e-10 + e22: 0.9996653 + e23: -0.72115564 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9993251 + e01: -0.000000018800456 + e02: -0.036746662 + e03: -0.829588 + e10: 0.000000019144093 + e11: 1 + e12: 0.000000008999786 + e13: 0.32190198 + e20: 0.036746677 + e21: -0.000000009697191 + e22: 0.9993251 + e23: -0.77460355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9996408 + e01: 0.000000016173326 + e02: -0.02680898 + e03: -0.3222799 + e10: 0.000000016196987 + e11: 1 + e12: -6.6533373e-10 + e13: 0.32190198 + e20: 0.026808985 + e21: -0.0000000010993216 + e22: -0.99964094 + e23: 0.7458364 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9989357 + e01: -7.9970414e-10 + e02: -0.046132583 + e03: -0.862538 + e10: -7.687193e-10 + e11: 1 + e12: -6.894839e-10 + e13: 0.32190198 + e20: 0.04613259 + e21: -6.532898e-10 + e22: -0.99893594 + e23: 0.7626567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99227816 + e01: 0.000000004565349 + e02: -0.12403479 + e03: -0.27313882 + e10: -0.0000000038002748 + e11: 1 + e12: 0.0000000064048162 + e13: 0.32095918 + e20: 0.12403479 + e21: -0.0000000058839906 + e22: 0.99227816 + e23: -0.18297398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99996775 + e01: 0.0000000012666821 + e02: 0.008064457 + e03: -0.83262366 + e10: -0.0000000012475698 + e11: 1.0000001 + e12: -0.000000002374815 + e13: 0.3209592 + e20: -0.008064457 + e21: 0.0000000023646742 + e22: 0.9999679 + e23: -0.07368517 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9990963 + e01: 4.5527254e-10 + e02: -0.04251479 + e03: -1.7537096 + e10: -9.166995e-10 + e11: 1.0000001 + e12: -0.000000010833868 + e13: 0.32095918 + e20: 0.042514782 + e21: 0.000000010863045 + e22: 0.9990965 + e23: -0.1625793 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9853084 + e01: 0.000000011868566 + e02: -0.17078647 + e03: -0.27211288 + e10: 0.000000013009718 + e11: 1 + e12: -0.0000000055625797 + e13: 0.32095918 + e20: 0.1707865 + e21: -0.0000000077027416 + e22: -0.9853085 + e23: 0.21222913 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99781775 + e01: 0.0000000019619206 + e02: -0.06603157 + e03: -0.858857 + e10: 0.0000000016558587 + e11: 1 + e12: 0.000000004689764 + e13: 0.32095918 + e20: 0.06603161 + e21: 0.000000004570182 + e22: -0.997818 + e23: 0.1224277 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9995925 + e01: 1.8039277e-10 + e02: -0.028559614 + e03: -1.8810982 + e10: -4.4994893e-11 + e11: 1 + e12: 0.000000007891071 + e13: 0.32095918 + e20: 0.028559659 + e21: 0.000000007889128 + e22: -0.99959254 + e23: 0.05190885 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 1.0932646, y: 0.024635494, z: -0.028991804} + m_Max: {x: 1.3123572, y: 0.32095748, z: -0.02493459} + - m_Min: {x: -0.04853058, y: -0.01464048, z: -0.042400327} + m_Max: {x: 2.017911, y: 0.33108354, z: -0.02543633} + - m_Min: {x: 0.8664328, y: 0.008401722, z: -0.16481662} + m_Max: {x: 0.8868997, y: 0.008401722, z: 0.11667937} + - m_Min: {x: -0.04632318, y: -0.16357318, z: -0.1687628} + m_Max: {x: 0.7781279, y: 0.15393876, z: 0.14862138} + - m_Min: {x: -0.046568155, y: -0.16357324, z: -0.17094785} + m_Max: {x: 0.66053295, y: 0.20681569, z: 0.21301562} + - m_Min: {x: 0.81248736, y: 0.008401722, z: -0.12685102} + m_Max: {x: 0.8385048, y: 0.008401722, z: 0.15418625} + - m_Min: {x: -0.030758977, y: -0.1371353, z: -0.13484251} + m_Max: {x: 0.8030019, y: 0.18037772, z: 0.18209922} + - m_Min: {x: -0.02564764, y: -0.19001234, z: -0.2068181} + m_Max: {x: 0.6845615, y: 0.18037775, z: 0.18430376} + - m_Min: {x: 0.4062017, y: 0.021405935, z: 0.45231587} + m_Max: {x: 0.74195635, y: 0.03988993, z: 0.53494585} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.3505358, y: 0.021405965, z: -0.5464386} + m_Max: {x: 0.6919065, y: 0.03988996, z: -0.49144387} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000100050004000400000001000500070006000600040005000a000900080008000b000a000b0008000c000c000d000b000d000c000e000e000f000d001200110010001000130012001300100014001400150013001200170016001600110012001a001900180018001b001a001e001d001c001c001f001e00 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 32 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 2048 + _typelessdata: 514e843f1b83a0be82662bc0000000000000803f000000007253373f1b83a0be82662bc0000000000000803f000000007253373f1b83a0beac4458c0000000000000803f0000000016138b3f1b83a0beac4458c0000000000000803f00000000bede793f1b83a0befd82eebf000000003dfa7f3fab4e59bced9d313f1b83a0befd82eebf243b9dbc62e27f3ffb7ebdbcf1d9723f4fe88fbef52c93bff810eebc18bc7f3fac750fbd08591a3f0b5f99bef8f693bf8aad58bd3b8d7f3fade9d8bcbb4485bf1b83a0be82662bc0000000000000803f0000000081098cbf1b83a0beac4458c0000000000000803f00000000894039bf1b83a0beac4458c0000000000000803f00000000894039bf1b83a0be82662bc0000000000000803f00000000d5cb7bbf1b83a0befd82eebf000000003dfa7f3fed4e59bc058b33bf1b83a0befd82eebf1c3b9d3c64e27f3f097fbdbc08c774bf4fe88fbef52c93bfe410ee3c19bc7f3fb1750fbd0f461cbf0b5f99bef8f693bf63ad583d3b8d7f3fcce9d8bc328876bb8040803c581882c00000803fe7ec323209b1c9b2b38876bb804f17bc562295c0ffff7f3f762b973354ecd1b2328876bb4296a7bef61f8bc00000803fe49f7f33a05f4db2328876bbe92ba2be20a874c00000803f2ec70bb2e1483eb2078876bbc0a7073cb61b5cc00000803f46064bb230318ab2078876bb467a93be7c154ec00000803f91dc4bb266d689b2b38876bba0c7963c982ba9c00000803f61d2c933c3c43331328876bbc1e5a3be44269fc0ffff7f3f8396c03345ef8d30c1ad633f90fe2bbe82662bc081fd7f3fe4040fbc3c02e9b4f7cb633f58b2ebbdac4458c081fd7f3f71010fbc606058b516f8623f3690f8beac4458c081fd7f3fe4040fbc3c02e9b416f8623f3690f8be82662bc080fd7f3fe8080fbc00000000c89a65bfee06ebbe82662bc080fd7fbf98fe0e3ca7ccb8340fb965bfd20c03bfac4458c080fd7fbf54010f3cbf9b2b352ee564bfbceb10beac4458c080fd7fbf98fe0e3ca7ccb8342ee564bfbceb10be82662bc080fd7fbf68fb0e3c000000000987363f503b3c3de2cb343fda75d73e50557d3f18b4e83e425a7f3f80f18c3cb8cdac3e00408e3d3dbaa93e3c2ace3edaf4123c2803803d80a6943bbc40f13e0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73eb8cdac3e00408e3d3dbaa93e3c2ace3edaf4123c2803803d80a6943bbc40f13e0c8fcd3ea52e0d3f512e313fbf800e3f213a143fdb15783f5a47a53eba927a3fd2dbc43d5491163ff837e83c071e783f8a3e7f3f4c3bfd3e2656623f81c26e3f0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73e0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73ee27a143f3d0ad73e000000000000000007000000080000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000009a99193fcccccc3e0000000000000000060000000700000000000000000000009a99193fcccccc3e0000000000000000060000000700000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b00000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b000000000000000000000052b81e3f5c8fc23e0000000000000000090000000a000000000000000000000052b81e3f5c8fc23e0000000000000000090000000a00000000000000000000000000803f0000000000000000000000000c0000000900000000000000000000000000803f0000000000000000000000000c0000000900000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f00000000000000000000000005000000000000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f00000000000000000000000008000000000000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000009a99193fcccccc3e00000000000000000a0000000b00000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b0000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: -0.0037600398, y: -0.24675432, z: -3.2181904} + m_Extent: {x: 1.09028, y: 0.26516005, z: 2.068381} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh.meta new file mode 100644 index 0000000000..908f181864 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: da56498a27a25f14a8ee412cec774e03 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab new file mode 100644 index 0000000000..3da988c0f3 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab @@ -0,0 +1,144 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6707366464300724374 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4286324192665507311} + - component: {fileID: 6398776217650596126} + - component: {fileID: 128038430823636348} + - component: {fileID: 8215196541096872477} + m_Layer: 0 + m_Name: "\u98DE\u9CD0\u9CCD_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4286324192665507311 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6707366464300724374} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6398776217650596126 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6707366464300724374} + m_Mesh: {fileID: 4300000, guid: da56498a27a25f14a8ee412cec774e03, type: 2} +--- !u!137 &128038430823636348 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6707366464300724374} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0d3179f0f7205f14f97297630490b71b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: da56498a27a25f14a8ee412cec774e03, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &8215196541096872477 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6707366464300724374} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 6398776217650596126} + _skinnedMeshRenderer: {fileID: 128038430823636348} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab.meta new file mode 100644 index 0000000000..4ece2147a8 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐1/飞鳐1/飞鳐鳍_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 977f83ed6a89a0c49a651cf3418475e9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3.meta new file mode 100644 index 0000000000..6f7213aa75 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0937d24f94fd171478cccc55ddd738a7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1.meta new file mode 100644 index 0000000000..b5a5a2a8df --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3a41e26428409743a4efe8aa82b9783 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat new file mode 100644 index 0000000000..a9d45e9575 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2688547440059413633 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 6203f0a1734ad294a9b1881d85bcc750, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 6203f0a1734ad294a9b1881d85bcc750, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.001 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat.meta new file mode 100644 index 0000000000..96e5cd30f7 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c83bb26e081eac04fbec0ebdba43fb84 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh new file mode 100644 index 0000000000..3c73202cae --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh @@ -0,0 +1,671 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 1896 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 415 + localAABB: + m_Center: {x: 0, y: -0.2611611, z: -1.2714314} + m_Extent: {x: 2.77094, y: 0.32596284, z: 3.07622} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011920929 + e01: 3.9404502e-17 + e02: -1.0000001 + e03: 1.0875986 + e10: 1.0694949e-15 + e11: 1 + e12: 3.9404502e-17 + e13: 0.31267777 + e20: 1.0000001 + e21: -1.0694949e-15 + e22: -0.00000011920929 + e23: -0.0009261863 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.009433403 + e01: 0.000000002930728 + e02: -0.9999556 + e03: 0.0408839 + e10: -3.6363315e-11 + e11: 1 + e12: 0.0000000029305158 + e13: 0.31267777 + e20: 0.9999555 + e21: 8.716963e-12 + e22: 0.009433402 + e23: -0.0013120426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.010100711 + e01: 0.00000000213998 + e02: -0.99994904 + e03: -1.0796483 + e10: 5.0768445e-10 + e11: 1 + e12: 0.000000002134961 + e13: 0.31267777 + e20: 0.9999488 + e21: -4.860939e-10 + e22: -0.010100713 + e23: -0.022405561 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.018515091 + e01: 0.00000001593 + e02: -0.9998288 + e03: -2.1261759 + e10: -1.7932714e-10 + e11: 1 + e12: 0.00000001592941 + e13: 0.3126778 + e20: 0.9998286 + e21: -1.1563791e-10 + e22: 0.018515097 + e23: 0.038446285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.008208985 + e01: -0.000000009813158 + e02: -0.9999667 + e03: -3.2684536 + e10: 1.33342e-10 + e11: 1 + e12: -0.000000009812396 + e13: 0.31267774 + e20: 0.9999663 + e21: -5.2787438e-11 + e22: 0.008208987 + e23: 0.004758754 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.07251635 + e01: -3.938046e-10 + e02: -0.99736744 + e03: -1.0423472 + e10: 2.19508e-10 + e11: 1 + e12: -3.7888453e-10 + e13: 0.32190198 + e20: 0.9973672 + e21: -1.914548e-10 + e22: 0.07251635 + e23: -0.72168094 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029568776 + e01: 0.000000008843177 + e02: -0.999563 + e03: -1.9293966 + e10: -0.0000000034849497 + e11: 0.9999999 + e12: 0.000000008743957 + e13: 0.32190204 + e20: 0.99956274 + e21: 0.0000000032248781 + e22: 0.029568765 + e23: -0.80537766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.019442642 + e01: -0.00000002973874 + e02: -0.9998112 + e03: -2.7040973 + e10: 0.0000000054613714 + e11: 0.99999976 + e12: -0.00000002985058 + e13: 0.3219018 + e20: 0.99981093 + e21: -0.000000006040713 + e22: -0.019442663 + e23: -0.9389995 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.09218214 + e01: 4.715061e-10 + e02: -0.9957427 + e03: -1.1076031 + e10: 5.1803384e-10 + e11: 1 + e12: 4.2556428e-10 + e13: 0.32190198 + e20: 0.9957423 + e21: -4.765988e-10 + e22: -0.09218213 + e23: 0.6807706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060275115 + e01: 0.000000006946731 + e02: -0.9981824 + e03: -1.933018 + e10: 0.00000001677088 + e11: 1 + e12: 0.0000000059466796 + e13: 0.321902 + e20: 0.9981819 + e21: -0.000000016381952 + e22: -0.06027509 + e23: 0.7429999 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029793758 + e01: 0.0000000050744946 + e02: -0.9995567 + e03: -2.671572 + e10: 0.0000000139174 + e11: 1 + e12: 0.0000000054915854 + e13: 0.32190204 + e20: 0.9995561 + e21: -0.000000014074833 + e22: 0.029793821 + e23: 0.9874153 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.97513276 + e01: 0.0000000024050197 + e02: -0.22162108 + e03: -0.44525054 + e10: 0.0000000024426599 + e11: 1 + e12: 1.04243045e-10 + e13: 0.32095918 + e20: 0.2216211 + e21: -4.3969384e-10 + e22: -0.975133 + e23: -0.4569956 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99503726 + e01: 0.000000013498726 + e02: -0.09950344 + e03: -1.0955272 + e10: 0.000000012868366 + e11: 1 + e12: 0.0000000069768484 + e13: 0.3209592 + e20: 0.09950348 + e21: 0.000000005661777 + e22: -0.9950375 + e23: -0.5968534 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9899499 + e01: 0.000000002614446 + e02: -0.14142136 + e03: -0.40980524 + e10: -0.0000000014035346 + e11: 1 + e12: 0.0000000086621785 + e13: 0.3209592 + e20: 0.14142133 + e21: -0.000000008376631 + e22: 0.98995 + e23: 0.5126524 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99693894 + e01: -0.0000000020833346 + e02: -0.07819128 + e03: -0.9732565 + e10: 0.0000000017002195 + e11: 1 + e12: -0.0000000049663225 + e13: 0.32095918 + e20: 0.078191265 + e21: 0.00000000481817 + e22: 0.99693906 + e23: 0.5756998 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.014284189 + e01: -0.000000007960181 + e02: 0.9998982 + e03: -1.0951422 + e10: -7.218223e-11 + e11: 1 + e12: 0.0000000079599625 + e13: 0.31267777 + e20: -0.9998981 + e21: 4.15267e-11 + e22: -0.014284187 + e23: 0.018818876 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99966544 + e01: -0.000000020012104 + e02: 0.025878796 + e03: -0.3404073 + e10: 0.000000019995408 + e11: 1 + e12: 9.037282e-10 + e13: 0.32190198 + e20: -0.025878794 + e21: -3.8596953e-10 + e22: 0.9996653 + e23: -0.72115564 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9993251 + e01: -0.000000018800456 + e02: -0.036746662 + e03: -0.829588 + e10: 0.000000019144093 + e11: 1 + e12: 0.000000008999786 + e13: 0.32190198 + e20: 0.036746677 + e21: -0.000000009697191 + e22: 0.9993251 + e23: -0.77460355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9996408 + e01: 0.000000016173326 + e02: -0.02680898 + e03: -0.3222799 + e10: 0.000000016196987 + e11: 1 + e12: -6.6533373e-10 + e13: 0.32190198 + e20: 0.026808985 + e21: -0.0000000010993216 + e22: -0.99964094 + e23: 0.7458364 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9989357 + e01: -7.9970414e-10 + e02: -0.046132583 + e03: -0.862538 + e10: -7.687193e-10 + e11: 1 + e12: -6.894839e-10 + e13: 0.32190198 + e20: 0.04613259 + e21: -6.532898e-10 + e22: -0.99893594 + e23: 0.7626567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99227816 + e01: 0.000000004565349 + e02: -0.12403479 + e03: -0.27313882 + e10: -0.0000000038002748 + e11: 1 + e12: 0.0000000064048162 + e13: 0.32095918 + e20: 0.12403479 + e21: -0.0000000058839906 + e22: 0.99227816 + e23: -0.18297398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99996775 + e01: 0.0000000012666821 + e02: 0.008064457 + e03: -0.83262366 + e10: -0.0000000012475698 + e11: 1.0000001 + e12: -0.000000002374815 + e13: 0.3209592 + e20: -0.008064457 + e21: 0.0000000023646742 + e22: 0.9999679 + e23: -0.07368517 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9990963 + e01: 4.5527254e-10 + e02: -0.04251479 + e03: -1.7537096 + e10: -9.166995e-10 + e11: 1.0000001 + e12: -0.000000010833868 + e13: 0.32095918 + e20: 0.042514782 + e21: 0.000000010863045 + e22: 0.9990965 + e23: -0.1625793 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9853084 + e01: 0.000000011868566 + e02: -0.17078647 + e03: -0.27211288 + e10: 0.000000013009718 + e11: 1 + e12: -0.0000000055625797 + e13: 0.32095918 + e20: 0.1707865 + e21: -0.0000000077027416 + e22: -0.9853085 + e23: 0.21222913 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99781775 + e01: 0.0000000019619206 + e02: -0.06603157 + e03: -0.858857 + e10: 0.0000000016558587 + e11: 1 + e12: 0.000000004689764 + e13: 0.32095918 + e20: 0.06603161 + e21: 0.000000004570182 + e22: -0.997818 + e23: 0.1224277 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9995925 + e01: 1.8039277e-10 + e02: -0.028559614 + e03: -1.8810982 + e10: -4.4994893e-11 + e11: 1 + e12: 0.000000007891071 + e13: 0.32095918 + e20: 0.028559659 + e21: 0.000000007889128 + e22: -0.99959254 + e23: 0.05190885 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.4260701, y: -0.27444616, z: -0.5942974} + m_Max: {x: 1.8008041, y: 0.37747952, z: 0.5818587} + - m_Min: {x: -0.26549658, y: -0.27444616, z: -0.7594219} + m_Max: {x: 1.3956368, y: 0.37747952, z: 0.7287189} + - m_Min: {x: -0.37090397, y: -0.13655451, z: -0.7592271} + m_Max: {x: 1.0481637, y: 0.18819752, z: 0.7781297} + - m_Min: {x: -0.006860733, y: -0.10874048, z: -0.11809086} + m_Max: {x: 1.0976293, y: 0.054921508, z: 0.108888224} + - m_Min: {x: -0.04853058, y: -0.085490495, z: -0.09378321} + m_Max: {x: 1.0790219, y: 0.024635524, z: 0.042858988} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: -0.043506533, y: -0.11866507, z: -0.2642836} + m_Max: {x: 1.0558904, y: 0.18068391, z: 0.53494585} + - m_Min: {x: -0.21309859, y: -0.11191204, z: -1.0538521} + m_Max: {x: 1.596158, y: 0.08101694, z: 0.4521097} + - m_Min: {x: -0.05989173, y: -0.12226206, z: -0.7352401} + m_Max: {x: 1.0272229, y: 0.18068394, z: 0.4035693} + - m_Min: {x: -0.11547333, y: -0.11734906, z: -0.49641585} + m_Max: {x: 1.7758105, y: 0.05503893, z: 1.1959419} + - m_Min: {x: -0.03460574, y: -0.2292867, z: -0.58858997} + m_Max: {x: 0.7095164, y: 0.28355053, z: 0.5905078} + - m_Min: {x: -0.12605838, y: -0.23694909, z: -0.19006616} + m_Max: {x: 0.951647, y: 0.3383987, z: 0.99405885} + - m_Min: {x: -0.13087666, y: -0.10890427, z: -0.39229822} + m_Max: {x: 1.8081899, y: 0.10306074, z: 0.54817027} + - m_Min: {x: -0.15750879, y: -0.23694909, z: -0.78319633} + m_Max: {x: 0.91859066, y: 0.3383987, z: 0.10190874} + - m_Min: {x: -0.16701573, y: -0.100773275, z: -0.5683745} + m_Max: {x: 1.7703408, y: 0.10306072, z: 0.35890985} + - m_Min: {x: -0.1257263, y: -0.2435092, z: -0.7999066} + m_Max: {x: 1.0761096, y: 0.38576093, z: 0.9115815} + - m_Min: {x: -0.083705306, y: -0.1471501, z: -0.7943643} + m_Max: {x: 1.5021927, y: 0.12038791, z: 1.0299002} + - m_Min: {x: -0.0043462515, y: -0.11085412, z: -0.6616359} + m_Max: {x: 1.0074453, y: 0.006113887, z: 0.791227} + - m_Min: {x: -0.15642916, y: -0.2435092, z: -0.87600887} + m_Max: {x: 1.0777959, y: 0.38576093, z: 0.80807984} + - m_Min: {x: -0.18625528, y: -0.14715007, z: -1.0726192} + m_Max: {x: 1.4239864, y: 0.12038791, z: 0.98404425} + - m_Min: {x: -0.33904195, y: -0.11085406, z: -0.87538946} + m_Max: {x: 0.8838216, y: 0.0061139166, z: 0.57703143} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 0 + m_KeepIndices: 0 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000600050004000400070006000a000900080008000b000a000e000d000c000c000f000e0002000300100010001100020014001300120012001500140014001700160016000f0014001a001900180018001b001a001d001c000e0008000e000b0014000f000c000c001300140017001e001100110010001700060020001f001f00050006000f0016001d001d000e000f002300220021002100240023000b000e001c001c0025000b000a000b00250018000a0025001b00180025002600150012001200270026002a002900280028002b002a002e002d002c002c002f002e0031003000110011001e00310003001d00160016001000030015003200170017001400150011002d0002002d002e000100010002002d00220019001a001a002100220033001d00030003000000330017003200340034001e001700320004000500050034003200150026000400040032001500040026002700270035000400200036001f0024002b0028002800230024002d0030003700370038002d00340005001f00390037003000300031003900310034001f001f00390031003a002c002d003c003b003a000d000e00080008003d000d003d000800090009003e003d002d0038003a003f00370039003f0040003800380037003f00400041003a003a003800400041003c003a001700100016001e003400310029002a0042002f002c003b003b0043002f003a003b002c004600450044001d0033001c004400480047004a00490048004c001b004b004b004d004c004f004e004400440047004f0051004d005000460044004e0045004800440045004a00480046004a004500360039001f00360052003f003f003900360052005300400040003f00520053005400410041004000530055003c0041004100540055005800570056005600590058005c005b005a005a005d005c0060005f005e005e006100600064006300620062006500640064005b006600660067006400640065005a005a005b00640067005e005f005f006800670058005900690069006a0058005b005c006b006b0066005b0061006d006c006c00600061006e006b005c006b006e006f006f0070006b00720071006200620063007200750074007300730076007500770068005f005f007800770061005e00660066006b00610063006400670067007900630078005f00600060007600780070006d00610061006b007000670068007a007a007900670079007a00590059005600790063007900560056007200630057007b0056007c006a006900760060006c006c007500760076007e007d007d007800760059007a0069007f007700780078007d007f0077007f00690069007a0077008100800073005d0082006e006e005c005d00820083006f006f006e0082007e00760073007d0084007f0084007d007e007e008500840085007e0073007300860085008000860073005e00670066007a00680077007400870081008100730074007f007c0069007c007f008400840088007c0088008400850085008900880089008500860086008a00890080008b0086008a0086008b008d008c003b003b003c008d000c000d008e008e008f000c000600070090009000910006000d003d00920092008e000d0036002000930093009400360027001200950095009600270052003600940094009700520054005300980098009900540055005400990099009a0055009b0092003d003d003e009b009c0095001200120013009c008f009c00130013000c008f0035002700960096009d0035009100930020002000060091009700980053005300520097009a008d003c003c0055009a0087009f009e009e00810087003b008c00a000a000a1003b0043003b00a100a100a2004300a500a400a300a300a600a500a800a700a500a500a600a800aa00a900a700a700a800aa00ad00ac00ab00ab00ae00ad00af00ac00ad00ad00b000af00b300b200b100a20042004300ac00b500b400b400ab00ac00af00b600b500b500ac00af00b700b600af00af00b800b700b900b300b100b100ba00b900bd00bc00bb00bb00bf00be00be00bd00bb00b300b900bf00bf00bb00b300b000b900ba00ba00c000b000bb00bc00b200b200b300bb00a600a300b400b400b500a600b600a800a600a600b500b600b700aa00a800a800b600b700bf00ad00ae00ae00be00bf00b000ad00bf00bf00b900b000b000c000b800b800af00b0003500070004009d0090000700070035009d0071007200560056007b007100110030002d00c200c100240024002100c200c100c3002b002b002400c10000000100c100c100c200000001002e00c300c300c1000100c3002f002a002a002b00c3002a002f004300430042002a002e002f00c300510033004c004c004d00510033000000c200c2004c0033004c001a001b004c00c200210021001a004c004b0050004d00c600c500c400c400c700c600ca00c900c800c800cb00ca000a00cd00cc00cc0009000a00d000cf00ce00ce00d100d000c600d300d200d200c500c600d600d500d400d400d700d600d600cf00d800d800d900d600db00da00180018001900db00dd00dc00d000d000cc00cd00d600d700ce00ce00cf00d600d900d200d300d300de00d900ca00cb00df00df00e000ca00cf00d000dc00dc00d800cf002300e200e100e10022002300cd00e300dd00dd00d000cd001800da00e3000a001800e300cd000a00e300e500e400d400d400d500e500e700e600280028002900e700ea00e900e800e800eb00ea00ec00de00d300d300ed00ec00c500d200d800d800dc00c500d500d600d900d900ee00d500eb00d300c600eb00c600c700c700ea00eb002200e100db00db0019002200ef00c400c500c500dc00ef00d900de00f000f000ee00d900ee00f000cb00cb00c800ee00d500ee00c800c800e500d500c800f100e400e400e500c800f200e000df00e200230028002800e600e200eb00f400f300f300ed00eb00cb00f000df00f500ec00ed00ed00f300f500ec00f500df00df00f000ec00e800f600eb00f800f700f600d100f900cc00cc00d000d100f9003e0009000900cc00f900f400eb00f600f300fa00f500fa00f300f400f400fb00fa00fb00f400f600f600fc00fb00f700fc00f600d200d900d800f000de00ec00e70029004200e900fd00f800f800e800e900f800f600e8000001ff00fe00ef00dc00dd000201fe0001010401030102010701060105010501da00070108010101fe00fe000901080106010b010a01fe00ff00090102010001fe000301000102010301ff000001f500f200df00f200f500fa00fa000c01f2000c01fa00fb00fb000d010c010d01fb00fc00fc000e010d01f7000f01fc000e01fc000f011201110110011001130112011601150114011401170116011a011901180118011b011a011e011d011c011c011f011e011e0121012001200117011e011e011701140114011d011e01210122011b011b011801210112012401230123011101120117012001250125011601170119011a016c006c006d001901250126011601250170006f006f002601250127011f011c011c012801270175002a0129012901740075002c012b011b011b0122012c011901250120012001180119011f012d01210121011e011f012b012a011a011a011b012b0170002501190119016d00700021012d012e012e01220121012d011001110111012e012d011f012701100110012d011f012f01130110012401300123012a0175006c006c001a012a012a012b013101310132012a012e0111012301330131012b012b012c0133012c012e012301230133012c01350134012901150116012601260136011501360126016f006f00830036012a013201290137013101330137013801320132013101370138013901290129013201380139013501290121011801200122012e012c0174002901340134018700740030013301230130013a0137013701330130013a013b013801380137013a013b013c013901390138013b013d013501390139013c013d013e01f700f800f8003f013e01ce00410140014001d100ce00ca00430142014201c900ca00d100400144014401f900d100f200460145014501e000f200e400480147014701d400e4000c01490146014601f2000c010e014b014a014a010d010e010f014c014b014b010e010f019b003e00f900f90044019b004d01d700d400d40047014d014101ce00d700d7004d014101f1004e0148014801e400f1004301ca00e000e0004501430149010c010d010d014a0149014c010f01f700f7003e014c01870034014f014f019f008700f8005101500150013f01f800fd00a20051015101f800fd0053015201a300a300a4005301540152015301530155015401aa00540155015501a900aa005601ae00ab00ab0057015601590158015601560157015901b2005a01b1004200a200fd005701ab00b400b4005b015701590157015b015b015c015901b700b800590159015c01b7005d01ba00b100b1005a015d01bc00bd005e015e01bd00be00be005f015e015a015e015f015f015d015a015801c000ba00ba005d0158015e015a01b200b200bc005e0152015b01b400b400a30052015c015b015201520154015c01b7005c0154015401aa00b7005f01be00ae00ae0056015f0158015d015f015f015601580158015901b800b800c0005801c900f100c8004e01f100c900c90042014e0128012f011001100127012801ed00d300eb006001e100e200e200610160016101e200e600e60062016101c400600161016101c700c400c700610162016201ea00c7006201e600e700e700e9006201e7004200fd00fd00e900e700e900ea0062010b01060107010701ef000b01ef00070160016001c400ef00db000701da000701db00e100e100600107010a01050106016501640163016301660165016801670165016501660168016b016a0169016e016d016c01670170016f016f0165016701710165016f016401650171017401730172017201750174017601730174017401770176017a01790178017d017c017b01770174017e017e017f0177017e01740180018001740175018301820181018101840183018101860185018501840181018901880187018c018b018a018e018d018601860181018e018f018e01810182018f0181019201910190019001930192019001910194019401950190019801970196019b019a0199019c019001950195019d019c019c019e0190019e0193019001 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 415 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 26576 + _typelessdata: 6056a03ec00004bd0021443f1130d53e6698673f8c72b93d2508a73e40bd4bbc1c71953e4e84ce3ef3b5693ff57c7ebdabb1143f104cb6bd74e98c3e87bab03ef043703fa2190b3bbf7c0e3f187ed8bd4802373f2953c03ed90c6a3f2b661b3ef4fd1240494dbdbeb0a1983edf875c3d3f997f3fd1da7a3c4eb90a40ab7abbbe90e6983d68dcbc3dbfe87e3f53c34d39614f1b40d0b7c7be00ef8dbb6a17ab3da1027f3fa993debc69522e40c2c7cabe58623f3eead29e3ddd277f3f84c4c3bc711d733e60ae9fbe62f5cc3f7301303ef37f713fc04b913e5d8876bb1fdc9fbed23cd93f1d7428b1c1977e3f9c70d63d888876bb32ce73be7430c83f74564931c123673f5218dc3ea419833e8ae56abe6c97bf3fdfe3af3e59d7543f039cdf3e986d633f0f9db0bed2e5a23f9afb433e6ca3743fb558653e6631153f740fabbe02f8c03fc5ed723e6f1f6d3f40f0953e3dd6dc3e2a028ebe62d8aa3f59fa993e71cc693f28ab8c3e3f703d3f86cd9abe00078e3f6e5f753e82e5713f9c5a643e1136503fec1760be9087283f523fac3efed06f3fcf11c53d51bf573f8e624dbe2099763e232f8e3edfed753f9b5f5dbb7b83f33f2195c4be68095c3f14f0ed3d6ba8793f47c3403ef111a13f8832b6be32008d3f9034193e3d93733f95b2893e7a8d913fd944a8be440d693fcbe7df3dc30a7d3fa304d73d4eeee33ff0a7b8beb80f333f24e7913d39d77e3fede4803d8ba5483f4dbd80be8c145c3f5595963ee6666f3fad244a3e7e6f9b3fd28fa0be9a29173ffcbb0d3e0d9d7c3f70dcac3db38876bbc0d3a5bd4ebb953fa054dc31f95d703f822db03ede8876bba01e72bde2948a3fde8dfb31ebbc7b3f2a133a3e2dedf43d581e85bde012893f9554333d43da7a3f5955473eb5180c3e40f6c2bd9645963fbe602bbddfc0783fba176e3e91b4b33ebefe18be3019943f23e4f13e9f97503f4704ac3e3d27fd3e761f24be604a7f3ff38ac93e526c5e3fb7bd993e0dfd9f3fdc0f92be501a523ebc1dfd3d0af77d3f9fe2c13cab09ee3f7657b0bed8cd04be2991793d3c867f3fbb9916b96de208402c83b4bec05384be8691093ee89f7d3f8c87a8bc27691e3ee04494bc3c574e3f626cddbd83027d3fabf5db3d098976bbc0472fbc941c4a3fd3e3ccb028837e3fc677dc3d8a8976bb005a163c08db9c3ec4610032c1fe7f3fbfe4c93bca1a253e209ef73c1026993ed2305cbec7fe793fab8436bc4f967a3e1e890bbe76c0a23f7d10f13d33716c3f86cbba3e9ca706407e1cbfbece22063fc5e4843d23d17e3f7bf8903d186013405c09c7be90a91d3f2ad0aa3d7a4a7d3fc927f33d358a76bb90ff44bd90476fbe000000002b9f7d3f81410bbeb68a76bb6a1501be024037bfbb6879b1830c7a3fcc825bbe135ac03d007507bea29436bf327beabde421773f551570bef60d0c3ee0d2c3bc20e474be7f7d8abea56d743f8f77fcbd8540a63e089a53bef78d29bf07eea13e4d45653ffa31a0bec957163f52a40fbede65aabeaf76823e3901753f209e0dbe2ffb8d3e10e481bda8807abe5d47c33eadd3663f2cac50be1f69403e80effebd06ef35bf1b2aee3e65c3533f0864a1beea3c663f6cb375be486674bebadf773e7025783f20cc2ebdd0449c3fdb8d98be30ebcabd043ff93d71b27d3f1e0a64bd832fe83f7c46b4be2c5fe43ee37fa03d53be7e3f917d773da0de7c3e302790bd0ade893ff403c13e0487653fe0f86d3ebd3aeb3f460ca5bef893193e0287ad3d2d067f3fbdf3a93c34112840b0aac8be38c1cb3e9e2aa13d01a77e3f196c863d63b4e63f6633a1be82f909bf8d1ca33da60f7f3f051d003d75027a3f240e8bbe277e06bf0c503e3e694e7b3f6f6a2dbd6538263f16ab6abe6ce21ebfb7c5bc3dc6c77a3fe5cb36bebd52a63f3f8fa3bea068babe259a9e3d330f7f3f57d1153d1230d23e98346abe99d02abfa91a833d001e703fe57baebeace3583e1ec377be920259bff5f91e3f13781d3f88b9f8be1dc98d3e60ccb0bec89564bf0e9ec0bca6cc613f8ff3f0be560b943ef9dd9ebe0284dc3fe0881a3efd15773fe7cb5a3e5d8876bb282c93be4ccae63f000000006a317e3f1ae7f23d17b78d3fb32688bec93636bf57b0373d589a7f3f3a2a073dd1ae4a3f096d93bec63160bf6ee3cdbcd2447e3f3a22e8bdf8dde43ea0c2a3bec9df6bbf61a4d3bd38fd7c3f40d7e6bde18a76bb846841be9e0860bf102df031e8ac743f1c9996be27ddf63d42f63ebe92755ebf6de5753e6df0663fad90b7bec783a53e58c2a2bdd827953f572c543f3a05003ff584803ed922793e2077b2bde4859d3ffe706e3e0a39f13e03cc593f5210843e409ceebcb8b19a3fd261d53e83c3143fadf2323f91b4b33ebefe18be3019943ff14b6d3fbd39b43e9c06053e4f967a3e1e890bbe76c0a23f169c683ee383f03ecb625a3fb5180c3e40f6c2bd9645963f4bed09bf9818c03e2919413fad843e3e608f59bd3418983f039ad9be1e03e43eb2be493fad843e3e608f59bd3418983fb647edbe3193603fea2900be41d73e3ea0778bbdacb48a3f267322be1eff793fe10a153e800c5d3ef0834abd184a933fc9734cbebb4b763ff43b3ebeee938b3e800238bdd09d913f9be4233fbb4d373fe2798ebea0de7c3e302790bd0ade893f06b5343ffc32d93ebf3611bf5210843e409ceebcb8b19a3f020a4fbeceee753fb8e442beee938b3e800238bdd09d913fbad9b5bda29e743f9df38fbeb667a63f0e3489be98f16cbf98e9793d51467f3f033934bd8c9d703fcf678abe28b390bf387d0dbdacd77f3f25f8c73b7cb4183f6c9592be1ec291bf7370efbda1287e3f2730d3bc4bcabd3eef3daebe3cf583bff39b96beacb0703fbce22fbef4fd1240844bc9beb0a1983ee3ae183c5cf57fbf25997c3c155731401614d0be685e2f3ef40cbbbc06e37fbf1c039c3cbd8c1e409cf9cfbe00c0a9bc761028bc8bfc7fbfe21f173a4eb90a40221ecbbe90e6983d5b353b3d4cbb7fbf44dd283b8274653fe0d8c5bef035a53fad8f353de6077fbfef26993d3f703d3f3c51ccbe840f8e3f0e33fa3d7f3b7cbf00d8f43d4fcce23e3a09d7be62d8aa3ff10b1d3ef3267abfb2a5163e12fa153f9a27c1bee4bfc13ff0e6f03d7ee478bf2d244f3e4e454e3f058aeabe6092143f4fce3e3e750f7bbf0b43723d9e45533f04acefbe48d5703eb788fe3d20037ebfeb659cbb34d5db3e008110bf48436e3e6414283eb1507cbf24c825bd471fd33edd100fbfa405223f09d8133e3d8a7cbf5bae9e3d9b1bf73fdc30d4be605d5f3f6aae71bafafe7fbf6615b4bb3cdaec3f4240d0beecbf303f02e1d93c60d57fbfb582c73c7a8d913f096fd1be74f3673f8f3a803cb59e7fbf7bb3553d9cbfa13f261bc9be6e888e3ff7ad713b6d427fbf9a7a9b3dc959483fa492dcbe8c145c3f9918253ed5c37abf4e7ff63d0f0b9d3fe468d8bea422103f9fbf243d167c7fbfd4d3483d815b9f3ffdc0dfbe385f4d3eacab1a3da6bf7fbf99cfbd3cab09ee3f1d75cebef057f8bd041dce3c2d837ebf325bd6bd20d20b402c4bc6be4cd694beaf697dbb1cb07ebfe7eecebd9ab5c43e02a1ffbed40b873f91cf2c3ed1c377bf8e153f3e0b8a76bbc14d16bfe87a633e3e7db9306aa77fbf4ce654bdb58976bb82b715bf7c0e2e3f00000000aea87fbfec5f533defe1823e3224d9be84c2c13fc0b0e63d21c077bf379f663e888876bb5649d6be10d3cb3ff0f8c931e82a77bf5254853e348976bb2fbe0abf4e4c8c3feaf8d0318c5c7cbf03082c3e1e1b15405a2bccbe9642223fef7795bc28ce7fbff8280dbd9ca706402d7cc7bece22063f8b09593c78df7fbfd229eabc35efc03e6e16e1be5c3620bf70b9a23d681f7bbfb08835bee18a76bba60df1be55ef22bfa64640b163c47abffdfb4dbe608a76bbe8e30abff85a16be6c52edb0153e7dbf59e415be207dd33ec84604bfe03527be139ae53d8b797bbf548119be4a419b3ff069e0bef0b7b4bd2414183df3db7ebf0088b1bda25e603f4da1ddbe482855bea323f53d56037cbff0d803be1214eb3f7079d6be680de23e64d83c3dde927fbf30030e3dbd3aeb3fa016ddbeb0b8193e95c5163da2d27fbf7216b1bbeae7294070cfcdbe70eed33ea295bbbce2ed7fbf0be7aebb5474ec3fa1bcb1be70ff13bf036af83b3f4b7dbfe64a14be55897a3f3f1db9be4e5a02bf528cd83d3cf27abf9b142bbe6265243fd046d0be020c11bfda95183e28057bbf16d402bee140a83fea5ac5be206bb9be4226bf3c7e937cbf363225beb41e8e3e9ce3bebed66764bfb24a0abe2a7179bf762538be0adc6a3e4030b9be22685ebf94f2453eec4b76bfa1fa44bec021943e8336b3be6494dc3f2aa0aa3d57476fbf4cf0b03e5d8876bb0d71a6be5003e73fce70b0317b536abf6b2dce3e17b78d3f1b48a9be7e8a35bf184c573d74647dbfad7b07bed1ae4a3ffcfbb6bec63160bfd69eee3d91a27bbf1caa11bef8dde43ea003c5bec9df6bbf590b673dbe3779bfdfe862be0c8b76bb4832e5be008958bfb3fed8b1e8c77fbf8b6f29bd7f6aa83f18cf92be4a7973bfeeee823dea287cbfd01f24bef1d9723f4fe88fbefd2c93bf8c03b93d559777bf944d73be08591a3f0b5f99bef8f693bf38f28d3dd39673bf166f99be9fe3bb3eca73b7be4f0185bf268fdb3c96a078bf2c6f72be0adc6a3e4030b9be22685ebf3cff5b3f592c553e2624efbeb41e8e3e9ce3bebed66764bfe41c21bfd9e0f13cd9cc46bf12fa153f9a27c1bee4bfc13fea2d143f65267f3e74c5463f8274653fe0d8c5bef035a53fa49ee53e314dcc3e57be4c3f155731401614d0be685e2f3edb3f473e0d74773f52b82abebd8c1e409cf9cfbe00c0a9bc9ae1993e2d29693f8ff190bec021943e8336b3be6494dc3f08c6003f6dec883d53975c3f20d20b402c4bc6be4cd694bede4ac33e500f5c3f5a11aebe5474ec3fa1bcb1be70ff13bfcc02b63e30e55e3ffd07aebe9b1bf73fdc30d4be605d5f3f469c993ecc3c373f236f213f1e1b15405a2bccbe9642223f90ef2d3e182b723f906a8d3e7f6aa83f18cf92be4a7973bf44199d3e9f3e5b3f0995d4bef1d9723f4fe88fbefd2c93bf96d7923d10335d3f5b1bffbe08591a3f0b5f99bef8f693bf279397be012d293f328e30bf9fe3bb3eca73b7be4f0185bf52a237bf550e8c3e670b24bf5d8876bb0d71a6be5003e73f000000003418f23c60e37f3f9cbfa13f261bc9be6e888e3f1621b03e1bdede3e79fc543feae7294070cfcdbe70eed33e9a236b3e5f6f753f6eac2b3e1d3c233ed848c4be2fa28ebfbdccb63e241f6fbfb0f4d9bb628b76bbc601e6be7f668bbf000000009cfe7fbf8444d53b1d3c233ed848c4be2fa28ebf287a5c3f43d3b73ea126b8be4beac43dd6768dbe711e8dbf8f0d133f9aa9373f7cc9c9be378b76bb1a3573be7f668bbf67b22ab1b7fb733f64069bbe8d8b76bb4036e3be2415aabf88ba10b2fef57fbfd8258fbc628b76bbc601e6be7f668bbf907bccb204ef7fbfef83babc1d3c233ed848c4be2fa28ebf24ff593f840206bf65f6ecbc35b81d3ee4bdc4be47e5a9bfd2f1583faa8107bfbf1127bd4beac43dd6768dbe711e8dbfdc5a153f72bc4f3f88620abda4e7c13d462993bebff3aabf11a32e3f5bd73a3f9d3835bd378b76bb1a3573be7f668bbfc4f9a63203ef7f3ff483babc628b76bb26cc78be2415aabf53d46232d8de7f3f2b4702bd648c76bb22c4d7be3a2f08c05bcf2fb250ed7fbfb59cc3bc09c3e03d4e67c1be62cc07c09f4d333f8c6336bf67c12fbdbf39ad3d420ac0be2a7a2dc0d18f603f431ff5bec60f15bde58c76bb6cd0d1be54b42dc000000000bbf17fbf32eaaabc2e43823d68259fbe5ae307c07c613b3f89402e3f102df9bcecb13e3da35d9fbef2862dc006813c3f031d2d3f6d9fbabce68d76bbe92ba2be20a874c0ef1d9db12bd67f3f1e5212bd678e76bb4296a7bef61f8bc01e9db7b2441d7e3f851ef8bdb711aa3cf69ca6be1aed74c018db473f71c71f3fe04b00bdb88b76bbba6ae0be43c4c8bf4945cab26ee67fbf48d2e4bc7558113edc46c5be70cec9bfda3c753f971e90be7b5363bd9e18a83df9db98be70cec9bfa03b363f4f60333fe3d644bdb88b76bb30637ebe43c4c8bf0000000009d47f3f370216bd398c76bba1f883be3a2f08c0060816b36ff07f3f9d8ab2bc50ee0d3dbc959fbebc4a4ec06b7c3c3fa8132d3fecf2e9bc668d76bb467a93be7c154ec0e04dafb249df7f3f776401bd31cf2a3d7effb8be1aed74c06733413ffc4d27bf5e926cbd678e76bb1006b8be669c89c06cc329334f2c7fbfc979a4bd118e76bbbde5bcbe1c3075c0801d75b28fd57fbf736213bd668d76bbb6dccbbe7b594ec0a7cfc0b255db7fbf370109bdb738843d36adbebe47484ec022dc723fa6baa0be0d451dbdba8c76bb52b98bbe40922dc0508391b2d1e67f3f6a13e3bc5917873ec8b6843de44c973e4cd7433e4d3f7b3f1fed6cbc488c7e3e2024873c80d84c3f6ef17739ea107d3f25961a3e588d653ec095483c68b277bec314a53eee1a6d3fe02a48be6e30a4bec00004bd0021443f1030d5be6798673f5a72b93dd76910bf187ed8bd4802373f1d53c0bedc0c6a3f26661b3ec39e16bf104cb6bd74e98c3e80bab0bef143703f8c170b3b33e2aabe40bd4bbc1c71953e4c84cebef3b5693ff17c7ebd1efe12c0494dbdbeb0a1983ec7875cbd40997f3f77d97a3cbd522ec0c2c7cabe58623f3e06d39ebddb277f3f88cac3bc614f1bc0d0b7c7be00ef8dbb4717abbda2027f3fab8fdebc78b90ac0ab7abbbe90e6983d9dddbcbdbce87e3ff18a4e398dd17abe60ae9fbe62f5cc3f740130bef17f713fcd4b913ed4f386be8ae56abe6c97bf3fdfe3afbe53d7543f169cdf3e9f5a65bf0f9db0bed2e5a23f9ffb43be6ea3743f8f58653e575d3fbf86cd9abe00078e3fb45f75be7ce5713f965a643e6cb0e0be2a028ebe62d8aa3f60fa99be6ecc693f34ab8c3e7e1e17bf740fabbe02f8c03fbeed72be6f1f6d3f41f0953e292352bfec1760be9087283f8c3facbef5d06f3fdc11c53d58ac59bf8e624dbe2099763e222f8ebee1ed753f675f5dbbcf83f3bf2195c4be68095c3f2660efbd9eab793fc90e403ef6eee3bff0a7b8beb80f333f361093bd97d47e3fb3e0803de48392bfd944a8be440d693f9033e1bde1057d3f051ad73d5b08a2bf6632b6be32008d3f75131abe358e733ff697893e92924abf4dbd80be8c145c3f8e9596bedb666f3fc6244a3ee9659cbfd28fa0be9a29173f44c90ebec8927c3f1526ad3dd1cc13be40f6c2bd9645963faa602b3de6c0783f58176e3eb22a02be581e85bde012893f695433bd42da7a3f5b55473eb68000bf761f24be604a7f3f008bc9be506c5e3fb1bd993ec18eb7bebefe18be3019943f23e4f1be9d97503f4704ac3ecbf3a0bfdc0f92be501a523ee702ffbd74ef7d3f66efc13c520aeebf7657b0bed8cd04bef9707bbd66847f3f30bc11b8c1e208c02c83b4bec05384be7b9109bee69f7d3f398ba8bcc91d26bee04494bc3c574e3f416cdd3d83027d3fb5f5db3d29cf2cbe209ef73c1026993ed6305c3ec9fe793fc28436bc572581be1e890bbe76c0a23f6c10f1bd33716c3f85cbba3e426013c05c09c7be90a91d3f5ed0aabd774a7d3f3228f33d9ca706c07e1cbfbece22063f81e584bd20d17e3ffff8903d55c213bee0d2c3bc20e474be797d8a3ea56d743f9777fcbdecc2cfbd007507bea29436bffb7aea3de321773f601570beb51aaabe089a53bef78d29bf10eea1be4f45653fe031a0bec11d48be80effebd06ef35bf352aeebe62c3533fed63a1be3dd591be10e481bda8807abe6c47c3beacd3663f04ac50bee14418bf52a40fbede65aabeac7682be3901753f1c9e0dbe3a3b9dbfdb8d98be30ebcabdfcfafabde2ab7d3f86ba63bdf12968bf6cb375be486674beb5df77be7125783fcfca2ebdd72fe8bf7c46b4be2c5fe43e7d80a1bd07bc7e3fb140773d804982be302790bd0ade893ff403c1be0987653fbef86d3e643bebbf460ca5bef893193ee347afbd58017f3fc024aa3c5e1128c0b0aac8be38c1cb3eed29a1bd01a77e3fb16c863d63b4e6bf6633a1be82f909bf2ba3a4bd0f0c7f3fd9e4fe3c8def7bbf240e8bbe277e06bfd94f3ebe6a4e7b3fff6a2dbd7d2528bf16ab6abe6ce21ebfe1c5bcbdc6c77a3f03cc36be7b49a7bf3f8fa3be7e68babe5600a0bd340c7f3f6bf4143d420ad6be98346abe99d02abfcf1a83bd061e703fcb7baebe6ea391be3fccb0bec89564bf139ec03cb1cc613f63f3f0be4e9860be1ec377be920259bfd2f91ebf43781d3f6cb9f8be64e597bef9dd9ebe0284dc3fdf881abefd15773feecb5a3e82ad8ebfb32688bec93636bf7cbb38bd4e9a7f3f14cd053de99b4cbf096d93bec63160bfb0e3cd3cd1447e3f5022e8bd28b8e8bea0c2a3bec9df6bbffea3d33d39fd7c3f62d7e6bdf22203be42f63ebe92755ebf25e575be6ff0663fb990b7bef65da9bed0c1a2bdd827953f0b2c54bfa505003f3885803e60ea87be409ceebcb8b19a3fe660d5be04c4143f89f2323f7b6b80be2077b2bde4859d3f30706ebe5739f13efbcb593fc18eb7bebefe18be3019943f0d4c6dbf3939b43e4606053e572581be1e890bbe76c0a23f619c68bef183f03ec1625a3f0d3946be608f59bd3418983f309ad93e2503e43ea2be493fd1cc13be40f6c2bd9645963fe9ec093f5519c03e4019413f0d3946be608f59bd3418983f7047ed3e4293603f1d2a00bedfc064bef0834abd184a933f6a744c3eb44b763ffc3b3ebea08b46bea0778bbdacb48a3f1373223e1eff793fd50a153e804982be302790bd0ade893fccb434bf8533d93ed63611bffc6d8fbe800238bdd09d913f81e323bfc24e373fb3798ebe60ea87be409ceebcb8b19a3fc60a4f3ec1ee753f00e542befc6d8fbe800238bdd09d913f46dab53d9e9e743fabf38fbe205ea7bf0e3489be98f16cbfb9077bbd16477f3f898e31bd938a72bfcf678abe28b390bf5a7d0d3dabd77f3f9bf9c73b94a11abf6c9592be1ec291bf9c70ef3da0287e3f3a30d3bc9ca4c1beef3daebe3cf583bf9b9b963ebfb0703f46e22fbe1efe12c0624bc9beb0a1983e81ae18bc5df57fbf81987c3c78b90ac0221ecbbe90e6983db1363bbd4abb7fbf4c06293b118d1ec09cf9cfbe00c0a9bc9d11283c8afc7fbfaf5a173a155731c01614d0be685e2f3ee611bb3c05e37fbf21059c3c896167bfe0d8c5bef035a53feb8f35bde7077fbff626993d29e717bf9a27c1bee4bfc13fe1e6f0bd7de478bf36244f3e7fa6e6be3a09d7be62d8aa3fe70b1dbef6267abfb6a5163e575d3fbf3c51ccbe840f8e3f4a33fabd7f3b7cbf0dd8f43d553250bf058aeabe6092143f70ce3ebe720f7bbf2e43723d55f9d6bedd100fbfa405223f0dd813be3e8a7cbf61ae9e3d64afdfbe008110bf48436e3e641428beb2507cbf21c825bdb53255bf04acefbe48d5703efc88febd1f037ebff4639cbb9b1bf7bfdc30d4be605d5f3f6766733aeafe7fbf7cbcb9bb07b6a2bf261bc9be6e888e3f221973bb7c427fbfb7739b3de48392bf096fd1be74f3673f55f880bc2e9e7fbfaf36563de4daecbf2140d0beecbf303f27a3dbbcfdd47fbf7694c73ce1464abfa492dcbe8c145c3fbe1825bed4c37abf4d7ff63d79019ebfe468d8bea422103fb8ee25bd2b7b7fbf7904493d3f52a0bfdcc0dfbe385f4d3e62d21bbdf6be7fbf72c2bd3c520aeebf1d75cebef057f8bd1777e6bcc3b87ebf281ec4bd4ad20bc02c4bc6be4cd694be296a7d3b1db07ebfcfeecebda88fc8be02a1ffbed40b873f8dcf2cbed3c377bf89153f3efdbb86be3224d9be84c2c13facb0e6bd21c077bf379f663e9ca706c02d7cc7bece22063fea0159bc78df7fbf712feabc1e1b15c05a2bccbe9642223ffe77953c26ce7fbf282b0dbd43c9c4be6e16e1be5c3620bf7ab9a2bd681f7bbfa58835be2e57d7bec84604bfe03527be159ae5bd8b797bbf538119bea94b62bf4da1ddbe482855be8498debd6c2d7cbf6bb908beb5379cbff069e0bef0b7b4bdfe2e16bd610b7fbfb70ba0bd6614ebbf7079d6be680de23e4c023ebd29927fbff7b90d3d643bebbfa016ddbeb0b8193ea04518bdb9d17fbf24d6b2bb3ee829c070cfcdbe70eed33e2399bb3ce2ed7fbf6df4aebb5474ecbfa1bcb1be70ff13bf49eb13bc4c247dbf574f18be6c767cbf3f1db9be4e5a02bf615ab6bd0d227bbfb69230be7a5226bfd046d0be020c11bfe39518be26057bbf26d402be6423c4bfea5ac5be4e8fb9be4ac7c0bc2d927cbfed4a25beef9072be4030b9be22685ebf8af245bef14b76bf5dfa44bee4f891be9ce3bebed66764bfec4a0a3e2a7179bf672538becefb97be8336b3be6494dc3f2ca0aabd56476fbf4bf0b03e82ad8ebf1b48a9be7e8a35bfe9bb54bda95c7dbf65a408bee99b4cbffcfbb6bec63160bf1c9feebd91a27bbf07aa11be28b8e8bea003c5bec9df6bbf4a0b67bdbe3779bfe6e862bee960a9bf18cf92be4a7973bf3a7783bda0287cbfe50b24be08c774bf4fe88fbefd2c93bfb103b9bd569777bf984d73be0f461cbf0b5f99bef8f693bf1df28dbdd19673bf236f99beadbdbfbeca73b7be4f0185bfff8edbbc95a078bf386f72bee4f891be9ce3bebed66764bf911d213f14f5f13c48cc46bfef9072be4030b9be22685ebf41ff5bbf172e553eb723efbe29e717bf9a27c1bee4bfc13ff22d14bf37267f3e72c5463f896167bfe0d8c5bef035a53fea9ee5bed84ccc3e5bbe4c3f155731c01614d0be685e2f3e8e4547be8573773f00be2abe118d1ec09cf9cfbe00c0a9bc30de99be8a2a693f6dec90becefb97be8336b3be6494dc3ffcc500bf52ec883d58975c3f4ad20bc02c4bc6be4cd694be9c4cc3be030e5c3ff115aebe5474ecbfa1bcb1be70ff13bf1714b7be27e25e3ffcf7acbe9b1bf7bfdc30d4be605d5f3f2a339abe8278373f3a07213f1e1b15c05a2bccbe9642223fc3f12dbeb82a723f806c8d3ee960a9bf18cf92be4a7973bfe2d69dbe453d5b3fff0dd4be08c774bf4fe88fbefd2c93bf7cd792bd32335d3fe81affbe0f461cbf0b5f99bef8f693bff492973e092e293f3e8d30bfadbdbfbeca73b7be4f0185bf2fa2373f6b148c3e410a24bf07b6a2bf261bc9be6e888e3ff26fb1bec815df3e5ca8543f3ee829c070cfcdbe70eed33e16236bbe616f753f03ad2b3ebff02abed848c4be2fa28ebf69ccb6be341f6fbf1ff7d9bbbff02abed848c4be2fa28ebfe7795cbf22d4b73efd26b8be0953d4bdd6768dbe711e8dbf5b0d13bfbea9373f8fc9c9be516c25bee4bdc4be47e5a9bfd0f158bfaa8107bfba1127bdbff02abed848c4be2fa28ebf20ff59bf840206bf97feecbc5550d1bd462993bebff3aabf1aa32ebf51d73a3fe93935bd0953d4bdd6768dbe711e8dbfc35a15bf84bc4f3fca620abd98a2bcbd420ac0be2a7a2dc0ce8f60bf4d1ff5be920f15bdc72bf0bd4e67c1be62cc07c08d4d33bf9e6336bfcfc12fbd9f835dbda35d9fbef2862dc003813cbf081d2d3f369fbabcedab91bd68259fbe5ae307c071613bbf98402e3f512df9bc1bb5e7bcf69ca6be1aed74c00adb47bf82c71f3fb44b00bd170d19bedc46c5be70cec9bfd93c75bfa91e90be925263bd6981b7bdf9db98be70cec9bf843b36bf6b60333fbbd544bd02c02cbdbc959fbebc4a4ec06a7c3cbfa8132d3fe6f2e9bc19a149bd7effb8be1aed74c06b3341bff84d27bf48926cbd90a193bd36adbebe47484ec024dc72bf9ebaa0bef7441dbd532083be2024873c80d84c3f3cf377b9ea107d3f27961a3e88f18abec8b6843de44c973e95d743be493f7b3fb4ed6cbcb7416dbec095483c68b277bef714a5bee41a6d3fe82a48bed1ae4a3ffcfbb6bec63160bfcaf7363dd1467dbf21c50d3e0e873d3f1848cabe4a768bbfc3e10a3cea047cbfc8ab333e1497e33e6d59d8be745d9dbf0d9548bd6d187ebfdd4be43df8dde43ea003c5bec9df6bbf65bda8bbc8177ebfad4bf93d35b81d3ee4bdc4be46e5a9bf760730be43f17bbf0d70323d603c233ed848c4be2fa28ebfc4fad8bdafd47dbf59f2993db41e8e3e9ce3bebed66764bf683369bd32d07ebf53bf9e3df8dde43ea003c5bec9df6bbf683369bd32d07ebf53bf9e3d603c233ed848c4be2fa28ebf683369bd32d07ebf53bf9e3d603c233ed848c4be2fa28ebfbd6125bea15b7abf367f073e90dc6a3e4030b9be22685ebfbd6125bea15b7abf367f073eb41e8e3e9ce3bebed66764bfbd6125bea15b7abf367f073eca1acd3ee6ede2be25e4c2bf75561dbe686b7cbfff38843d7558113edc46c5be70cec9bfeabb62beeb9d79bfeccd723cd66f1e3fe6ede2be32abacbf932bdfbc13ae7dbfb6b0063ee99b4cbffcfbb6bec63160bfe4f736bdd3467dbf1cc50d3e28b8e8bea003c5bec9df6bbf6fbda83bc8177ebfac4bf93d4371e7be6d59d8be745d9dbf0d95483d6b187ebfe54be43d15743fbf1848cabe4a768bbfe9e10abcea047cbfc9ab333ebff02abed848c4be2fa28ebfb9fad83db0d47dbf73f2993d516c25bee4bdc4be46e5a9bf7b07303e42f17bbff36f323de4f891be9ce3bebed66764bfba61253ea15b7abf367f073eef9072be4030b9be22685ebfba61253ea15b7abf367f073ebff02abed848c4be2fa28ebfba61253ea15b7abf367f073ebff02abed848c4be2fa28ebf6533693d32d07ebf53bf9e3d28b8e8bea003c5bec9df6bbf6533693d32d07ebf53bf9e3de4f891be9ce3bebed66764bf6533693d32d07ebf53bf9e3dd8f4d0bee6ede2be25e4c2bf79561d3e686b7cbfe738843d170d19bedc46c5be70cec9bf40bc623ee69d79bfb4c6723cee5c20bfe6ede2be32abacbf922bdf3c12ae7dbfb6b0063e1497e33eae31d2be745d9dbf8dc28d3d29847c3f30b618be0e873d3f1848cabe4a768bbf2b2c833d49d2773f783f78bed1ae4a3fc11bacbec63160bfc28906bcfbea7a3f08da4abef8dde43e6423babec9df6bbf664af03a6e127d3f6c6b1abeabed163e1921bebe2fa28ebfcd58c23de4bd7d3f5e79bdbd3c69113e2596bebe46e5a9bf0dbb323e00697b3f95da91bdabed163e1921bebe2fa28ebf02034c3dc4e87d3ffe77f0bdf8dde43e6423babec9df6bbf02034c3dc4e87d3ffe77f0bdb41e8e3e8203b4bed66764bf02034c3dc4e87d3ffe77f0bdb41e8e3e8203b4bed66764bf9bdb113e5c9d793f9a4d2ebe90dc6a3e0550aebe22685ebf9bdb113e5c9d793f9a4d2ebeabed163e1921bebe2fa28ebf9bdb113e5c9d793f9a4d2ebe7558113edc46c5be70cec9bf21d4693ed9e4783ff8f750bdca1acd3ee6ede2be25e4c2bfba582c3e35e67a3f4404d8bdd66f1e3fe6ede2be32abacbfcab1913d87d37b3f022229be4371e7beae31d2be745d9dbf2ca18dbde7847c3f11aa18be28b8e8be6423babec9df6bbf5711f0ba6f127d3f6d6b1abee99b4cbfc11bacbec63160bfde89063cf9ea7a3f07da4abe15743fbf1848cabe4a768bbf4c2c83bd49d2773f7e3f78be53061ebe1921bebe2fa28ebf01f7c1bd11bf7d3fc278bdbde48118be2596bebe46e5a9bf797632bede6c7b3f927f91bd53061ebe1921bebe2fa28ebfc0b411be739b793fe6992ebeef9072be0550aebe22685ebfc0b411be739b793fe6992ebee4f891be8203b4bed66764bfc0b411be739b793fe6992ebee4f891be8203b4bed66764bf7eec4bbde9e77d3f99b6f0bd28b8e8be6423babec9df6bbf7eec4bbde9e77d3f99b6f0bd53061ebe1921bebe2fa28ebf7eec4bbde9e77d3f99b6f0bdd8f4d0bee6ede2be25e4c2bf992e2cbe39e97a3ff0a9d7bd170d19bedc46c5be70cec9bff3b969be3ce8783f90bf4ebdee5c20bfe6ede2be32abacbfc8b191bd86d37b3f022229be0000000000000000a3d8b03d6287913e1b63b73daed7cc3edbbe173e24edce3eca50153e24f0973eb8acfa3ed445ca3e21cced3e1e55e53ee23e063f3eb0f33e53ae103f0ac2d53e4ada933dd07ba33d7560123c40aa683d7560123ce0f7b63d5847943d5891d83dd34f683ef45b243e419c173e0843dd3da9a5f93dc0d3143e1a31433e24254d3e4feb563ebc7ca33ea6d0593eac3ad33e0187d03ea623883e8b6da23e28264f3efa43933ea4fa7e3ea12cc43ef8e4993eff094e3eb632893e541e953e2ac4ab3e7560123c50163e3e7560123ce467533e4796273d8822543e733f313d0c083d3e52c5c33db047413e55690b3e78c1603ee5d49e3eae2bd63e82abcc3e2ec6003f8523f03e00e4083fad24433d2c11903e7560123cf69a8e3e7560123c1408cb3e26af493dd0efcb3ec09a8e3d14a5243e4180e43efcc2b33e29b1fb3e58ffa73e7560123c5a49073f7560123c2e70253f3455063d2c46253f1135313d1aa1073f3ba0b63dc217223f3d5f133e5e61053ff9e89e3ddcf8073f935d643dbc1d253fa5d8613ea9a2003f164c9c3e2e00f53e2192c13e96d0bd3e3ab88f3d30cd543ebdaac33e0491dd3eedf50a3f42efbd3e2d22ca3eb6841c3fcc46773ef9f7193f4d812c3e897c1f3f4a79a53e973a103f758ee13d7766223f86487c3d4baf2d3f37b89e3d1283303f00acae3db0734c3d428f1c3ce087ca3c91f28b3eeeeb243f1422503e8a702f3feacef33d024b323f7560123c94662f3f26f7203d25042f3ffd30723ef05f673d336e9a3e003f833d6535953ea0b9873ca52f543e48f1ca3d82ac9f3ea827f33dbd52c63ea03ab63d780eb53eb04e5c3d14b4643da876363eec666b3d346d4f3e1db6883d9cbb3d3eb6485a3e606acb3c465f313eb01f5b3dca429a3d7468313eab37a43decac463e3256a33e10912e3f6132753ef2233e3fb24c1f3ea4e23f3f17a0cd3d9e24393f22fb083f1c0c153f151fdf3e209a1d3f7105003ff6622c3fa9f50e3f5a9c213f98f9463f9a7bb83e4e0d503fb27ccd3e03b65f3ffa5eb33e7d235a3f22a2a03e89414c3f9644063fafd04b3f5d88193fe816623f96ad193fcf13633f3b70023f81251b3f6e2deb3e5bcd1e3fa838fe3ec1fd383f8027e53ef0a4313fdc0ecd3edd994d3f5cabed3e8b70373f4a7a083f71e6333fdcd61a3f00571e3f97382e3f2ee70e3fe256393f41b6643f0edad33e5c3d7b3f284a1a3f5c3d7b3ff86aff3e6b2d6c3fac949e3e5c3d7b3fde72953e5c3d7b3f0a16cf3e15c6063f242a043fc422123fb9c5083fd523653f9c874b3f5c3d7b3faf254c3f5c3d7b3f30b72f3f2009633fd6ab303f1c42353f7841283faef1493f1a712d3fc364223fb2860f3f0185223f1eff1d3f12c0f53e0d8d0f3f41f0203fd233493f6fd7433fa62a453f6bbb553fdf16483f7ea92f3fe0f23c3f2ee76a3f4cff5a3f03b46d3f0aa3593f5e14693f46f2853e5c3d7b3fe88f793e8d633c3f861f503f2c0c4d3fb70a5a3f9010613f03b15c3f5c3d7b3ffd4d583f239e303f99655b3fbfef433fa6f4693fe202583f40506a3f4eb6653ff486633f5b4f933d1043333f3398a03dd0d2313fedd41c3e1007d03db5336c3ebc901e3eca37133f78b6d73e2ff8083fecbcf53e5893b23d3095373d3013f53ef7e70a3fd674cd3e11c71e3fa680d43e508f853e42d2ff3e0cc5a53e404da53e8d29303fcc61773eac593f3f79e7203e8cf6403f1b1fc73db0c83b3f7560123c8000613c7251a53ecce14a3eb2810c3f34f0bb3ebdc3713f19e5673f5c3d7b3fae6d663f30d4663d6bf03e3ff18f083d419e3d3f7560123c7ec73c3f3657cd3d5f027e3f7ad3a33cfb687e3f9129df3c6e0e763f037bcc3d351f763fb058c33ce3316e3ff452d13d0f036f3f7ad3a33ca770673f3657cd3d43d7673fcdada83e305e7c3feacaa73ea8a4753ff33efe3e9b72753f61c4fe3eaf837b3f0000a83e0abb703f705cfe3e15c3703f26c8503f19ad6f3fe4d6783f58b9713f2f17513f25cd713fbe112d3ec49b7d3f53752f3ed932763f53752f3e3ad46f3fbe112d3e90e4683fcdada83e53e16a3fcec4243f21cb703fec87243f4ac16d3f2f17513fc516753f97e2763ff577763f1f64513fafcc793fe9d5243f2ea97a3fecc1243f8e40753f6476fe3ea7a46c3f571d8e3dd063cc3e7635893d36cc903e7583773df2cc073fa3d8b03d6287913eca50153e24f0973edbbe173e24edce3e1b63b73daed7cc3eb8acfa3ed445ca3e53ae103f0ac2d53ee23e063f3eb0f33e21cced3e1e55e53e4ada933dd07ba33d5847943d5891d83dd34f683ef45b243e1a31433e24254d3ea9a5f93dc0d3143e419c173e0843dd3d4feb563ebc7ca33ea6d0593eac3ad33e0187d03ea623883ea12cc43ef8e4993efa43933ea4fa7e3e8b6da23e28264f3eff094e3eb632893e541e953e2ac4ab3e733f313d0c083d3e4796273d8822543e55690b3e78c1603e52c5c33db047413ee5d49e3eae2bd63e82abcc3e2ec6003f8523f03e00e4083fad24433d2c11903e26af493dd0efcb3ec09a8e3d14a5243e29b1fb3e58ffa73e4180e43efcc2b33e1135313d1aa1073f3455063d2c46253f3ba0b63dc217223f935d643dbc1d253ff9e89e3ddcf8073f3d5f133e5e61053f164c9c3e2e00f53ea5d8613ea9a2003f2192c13e96d0bd3e3ab88f3d30cd543ebdaac33e0491dd3eedf50a3f42efbd3e2d22ca3eb6841c3fcc46773ef9f7193f4d812c3e897c1f3f4a79a53e973a103f758ee13d7766223f37b89e3d1283303f86487c3d4baf2d3f00acae3db0734c3d91f28b3eeeeb243f1422503e8a702f3feacef33d024b323f26f7203d25042f3ffd30723ef05f673d6535953ea0b9873c336e9a3e003f833da52f543e48f1ca3d82ac9f3ea827f33d780eb53eb04e5c3dbd52c63ea03ab63d14b4643da876363e1db6883d9cbb3d3eec666b3d346d4f3e465f313eb01f5b3db6485a3e606acb3cca429a3d7468313eab37a43decac463e3256a33e10912e3f6132753ef2233e3fb24c1f3ea4e23f3f17a0cd3d9e24393f22fb083f1c0c153fa9f50e3f5a9c213f7105003ff6622c3f151fdf3e209a1d3f98f9463f9a7bb83e7d235a3f22a2a03e03b65f3ffa5eb33e4e0d503fb27ccd3e89414c3f9644063fcf13633f3b70023fe816623f96ad193fafd04b3f5d88193f81251b3f6e2deb3ef0a4313fdc0ecd3ec1fd383f8027e53e5bcd1e3fa838fe3edd994d3f5cabed3e8b70373f4a7a083f71e6333fdcd61a3f00571e3f97382e3f2ee70e3fe256393f41b6643f0edad33e6b2d6c3fac949e3ec422123fb9c5083f15c6063f242a043fd523653f9c874b3f2009633fd6ab303faef1493f1a712d3f1c42353f7841283fc364223fb2860f3f0185223f1eff1d3f12c0f53e0d8d0f3f41f0203fd233493f6fd7433fa62a453f6bbb553fdf16483f7ea92f3fe0f23c3f03b46d3f0aa3593f2ee76a3f4cff5a3f5e14693f46f2853e8d633c3f861f503f2c0c4d3fb70a5a3f9010613f03b15c3f239e303f99655b3fbfef433fa6f4693fe202583f40506a3f4eb6653ff486633f3398a03dd0d2313f5b4f933d1043333fedd41c3e1007d03db5336c3ebc901e3eca37133f78b6d73e2ff8083fecbcf53e5893b23d3095373d3013f53ef7e70a3fd674cd3e11c71e3fa680d43e508f853e42d2ff3e0cc5a53e404da53e8d29303fcc61773eac593f3f79e7203e8cf6403f1b1fc73db0c83b3f7251a53ecce14a3eb2810c3f34f0bb3ebdc3713f19e5673f30d4663d6bf03e3ff18f083d419e3d3f037bcc3d351f763f9129df3c6e0e763ff452d13d0f036f3fb058c33ce3316e3ff33efe3e9b72753feacaa73ea8a4753f705cfe3e15c3703f0000a83e0abb703f2f17513f25cd713f53752f3ed932763f53752f3e3ad46f3fcec4243f21cb703f2f17513fc516753fecc1243f8e40753f7635893d36cc903e571d8e3dd063cc3e7583773df2cc073f8f397f3ed09c453f46999d3e2c66543f8eb2de3e17d6513fb264be3eaeef373fe09e0b3fd6e74a3fc72e013f0340393fe866d73e046f2c3fb264be3eaeef373fc72e013f0340393fc72e013f0340393ff14bdd3eba2a283fe866d73e046f2c3f82e5003f732a683f65c5183fa1675f3f72e0cd3e45f3643f247c7f3e596e453f7077be3e7fdb373f6afadc3e2979513f72a79c3eb038543f8cbc003fa432393fe7c70b3f32e64a3f2043d73e3d472c3ff44edd3e880f283f8cbc003fa432393f8cbc003fa432393f7077be3e7fdb373f2043d73e3d472c3f2ae2003fe52d683fb532193fa0545f3f60ccce3ea5d9643f28463a3f288b6b3ef4e05a3f0023283e20b75f3fa0d08b3d7976393f7014c03d85b1193f941a3a3ec39b193f5cc38c3e85b1193f941a3a3e7976393f7014c03d780a253f205da53d780a253f205da53d817a1f3fa0b4903d85b1193f941a3a3e98dc183fe0a5c43e384e363f823bb83e3f584e3fc4f28f3e28463a3f288b6b3e7976393f7014c03d20b75f3fa0d08b3df4e05a3f0023283e85b1193f941a3a3ec39b193f5cc38c3e85b1193f941a3a3e817a1f3fa0b4903d780a253f205da53d780a253f205da53d7976393f7014c03d85b1193f941a3a3e384e363f823bb83e98dc183fe0a5c43e3f584e3fc4f28f3e0000000000000000686b103fdbd4843eaba8343e00000000010000001100000015000000000000007f14df3ec6cca83e763d703e0000000001000000150000000200000011000000fa61613fea04d03d0aad933c000000001500000001000000020000001100000044a5143f08268f3ee01e0f3e00000000150000001100000001000000000000002e70223f5f96533ee9a8223e000000001700000016000000120000001500000074102e3fe6dc4c3e92c2f53d0000000017000000160000000f00000015000000e6425a3f67f4163e0000000000000000170000000f0000001200000015000000b30f673f6782c73d0000000000000000170000000f0000001200000015000000ee71543f4a382e3e0000000000000000100000001100000000000000000000000000803f000000000000000000000000100000000000000000000000000000000000803f0000000000000000000000001000000000000000000000000000000036ff4b3f2803503e00000000000000001000000011000000000000000000000040d50b3f8055e83e000000000000000012000000110000001500000014000000aa2d2f3fab0d853e0cb8643d00000000110000001000000001000000000000001f4f2a3ff110853e4543993d0000000011000000100000000100000000000000995d403ff76b693e31eda83c0000000011000000120000001600000014000000116dce3ec8b9663e59d44e3e0000000011000000150000001200000016000000cdcc0c3f6666e63e0000000000000000150000001600000011000000140000000b701f3fccb2583e0a8d293e00000000120000001600000017000000150000004c26283f8885643e92c2f53d0000000012000000110000001600000014000000d7010a3f90c2753e1336623e00000000120000001600000011000000140000006bf00a3ff8f4853e6254483e0000000012000000160000001700000015000000406ce43e43f2a03e39dd0a3e00000000110000001200000016000000150000001ebdd43e7aea653e5c354b3e00000000160000001200000011000000150000008049383fff6c8f3e000000000000000001000000100000000000000000000000a7065b3f65e5133e000000000000000001000000100000000000000000000000389e743f791c363d000000000000000001000000100000000000000000000000d94a2c3f4e6aa73e0000000000000000010000001000000000000000000000002ed3f23e6d07b13ec94a383e000000000100000011000000100000000000000042061d3feb1e803e21a90b3e0000000011000000010000001500000000000000ee98553f499c293e000000000000000016000000150000001100000014000000128ae13e5df9923e927c8b3e00000000160000000f00000017000000150000005d290b3fa13cac3e92c2f53d00000000170000000f00000016000000150000000000803f000000000000000000000000010000001100000000000000000000000000803f000000000000000000000000010000000000000000000000000000006666263f3333b33e0000000000000000010000000200000000000000000000006666263f3333b33e00000000000000000100000002000000000000000000000009542a3f8ab1a03e4966aa3c00000000010000001000000011000000000000005983de3e830e993e256e883e000000001700000012000000160000001500000032b4dc3eb9659d3e15e6853e00000000170000001200000016000000150000000000803f000000000000000000000000020000000000000000000000000000000000803f00000000000000000000000002000000000000000000000000000000d4797c3f008be13b008be13b00000000020000000100000003000000000000000000803f00000000000000000000000002000000000000000000000000000000c36d773fa324053df8cb7f3a0000000002000000150000000e000000110000002041033f2fc8d83e41d6823d000000000e0000001500000002000000110000005703433fa3f2733e0000000000000000020000001500000011000000000000000da9793f5cde4a3c5cde4a3c00000000020000000100000003000000110000004709003f8a83d13e9ea7b93d0000000015000000160000000e00000014000000f3285c3f345c0f3e000000000000000016000000150000001100000014000000e658fc3e3c318f3ebaeb683e0000000016000000120000001700000015000000ff8a4d3f18202f3e569fd53c000000000100000011000000100000000000000012f5233f6f4a753e92c2f53d0000000016000000170000000f000000150000001ac73d3f83a7103e2978f03d00000000170000000f00000012000000150000004d75173fcfba5f3efe6f423e000000000f00000016000000170000001500000065e3d73ef56ea63e652c803e000000000e00000016000000150000000f00000047ea5d3fbb5ede3d253cc93c000000000e00000015000000020000001100000004f21c3fd043733e1ff4183e00000000160000000f0000001500000014000000a496163f79e2b43ef8816f3d00000000020000000e00000015000000110000000000803f0000000000000000000000000200000011000000000000000000000014351b3fd895c93e0000000000000000020000000e0000001100000000000000584b463f9ed2663e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000021a1eb3e22b8d33e9f08fa3d000000000e0000000f0000001600000015000000fa647d3f85c1263c00000000000000000e0000000f00000011000000020000007b3a503f16163f3e00000000000000000e0000000200000011000000000000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000020000001100000000000000000000008a7a3f3f3a374d3e787a533d00000000010000001000000011000000000000005c351a3f4795cb3e0000000000000000010000001000000000000000000000004edf4c3fc8824c3e0000000000000000010000001000000000000000000000002ed3f23e6d07b13ec94a383e000000000100000011000000100000000000000009542a3f8ab1a03e4966aa3c0000000001000000100000001100000000000000d94a2c3f4e6aa73e0000000000000000010000001000000000000000000000007ec63f3f0473803e0000000000000000010000001000000000000000000000007ec63f3f0473803e000000000000000001000000100000000000000000000000d08b733f095f393dd73f5e3b0000000001000000100000001100000000000000d9f54c3f9b284c3e000000000000000001000000100000000000000000000000ef4c523fdf77353eb432aa3a0000000001000000100000001100000000000000ff8a4d3f18202f3e569fd53c00000000010000001100000010000000000000004edf4c3fc8824c3e000000000000000001000000100000000000000000000000ef4c523fdf77353eb432aa3a0000000001000000100000001100000000000000d668023f552efb3e00000000000000000e0000000f0000001500000011000000e07a143f3f0ad73e00000000000000000e0000000f00000011000000020000001fac3c3fc2a7863e00000000000000000e000000020000001100000000000000fd90103f05dede3e0000000000000000020000000e00000011000000000000007d93313fb398513eb132d03d0000000017000000160000001200000015000000b30f673f6782c73d0000000000000000170000000f00000012000000150000002e24553f496f2b3e0000000000000000170000000f0000001200000015000000d6662c3fafed813e9312953d0000000017000000160000000f00000015000000781d273f10c5b13e000000000000000011000000120000001500000014000000a6fd553f6709283e000000000000000011000000120000001500000014000000cdbddc3e414ac43ee3ef3d3e0000000001000000110000001000000000000000da254d3f96684b3e000000000000000011000000100000000100000000000000dcc6fa3e7950793e5047113e0000000015000000110000001600000012000000d8a3303f50b89e3e000000000000000015000000160000001100000014000000f39fed3e0858b23e0910403e0000000015000000010000000200000011000000a7e4f03e6544ac3ee7ad453e0000000001000000110000001500000000000000d864243f2e7c583e74f0153e00000000120000001600000017000000150000006a02003f4a1f9d3ec2b7453e0000000012000000160000001700000015000000a65e293fad2c8b3e1b58883d00000000120000001100000016000000140000003fb33f3f84d1273efec2b23d00000000120000001100000016000000140000000b05253ff220463ed20b183e00000000110000001500000012000000160000004a52b63e442f643e171e5e3e000000001600000011000000120000001500000096884c3fa8dd4d3e000000000000000016000000150000001100000014000000e558ff3e57fc883e88556f3e00000000160000000f00000017000000150000000d02133fe25ab83e0e84863d00000000170000000f00000016000000150000008e96003f1a15a03e77f5cc3d00000000010000001100000015000000100000006666263f3333b33e0000000000000000010000000200000000000000000000000000803f00000000000000000000000001000000000000000000000000000000b8c04a3f1ffd543e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000062627a3fbfb3b33c00000000000000000100000010000000000000000000000064ce033fb9659d3efefa353e000000001700000012000000160000001500000066cb093f14da8d3e421e3d3e00000000170000001200000016000000150000006aa51f3f10a7803e381c003e00000000020000000e00000015000000110000000000803f000000000000000000000000020000000000000000000000000000000000803f00000000000000000000000002000000000000000000000000000000928a393fdcea8c3e000000000000000002000000150000001100000000000000c3672e3fffcf543eec21e33d0000000016000000150000000f0000001400000092ed1c3f9181913e308dd23d0000000015000000160000000f000000140000007d5bf13ee74d9b3e38ad663e000000001600000017000000120000001500000019ba433f9c17713e00000000000000001600000017000000120000001500000037cd3f3f0f8f083e2978f03d00000000170000000f0000001200000015000000bea0233ff1854b3e17f7253e000000000f0000001700000016000000150000008c978d3eafda873e771a863e000000000f00000015000000160000000e00000001de023f2a5c8f3ea9cf553e00000000020000000e0000001500000011000000b34d223f8e2a5b3ea49e1b3e00000000160000000f0000001500000014000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000d9a26b3f3ae9a23d0000000000000000020000000e000000110000000000000054504a3fb0be563e0000000000000000100000001100000000000000000000000000803f0000000000000000000000001000000000000000000000000000000033ebdc3eb034833e22ca663e000000000e000000160000000f0000001500000060d6593fcd2e123ea8f6ce3b000000000e0000000f0000000300000002000000b70b1b3f93e8c93e0000000000000000020000000e00000011000000000000000000803f0000000000000000000000000200000000000000000000000000000008410d3ff17de53e00000000000000000e0000000f000000150000001100000060ae143f40a3d63e00000000000000000e0000000f0000001100000002000000fabf2e3f0b80a23e00000000000000000e00000002000000110000000000000035c1153f957dd43e0000000000000000020000000e0000001100000000000000d9a26b3f3ae9a23d0000000000000000020000000e0000001100000000000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000da254d3f96684b3e000000000000000011000000100000000100000000000000781d273f10c5b13e000000000000000011000000120000001500000014000000b30f673f6782c73d0000000000000000170000000f00000012000000150000002e24553f496f2b3e0000000000000000170000000f000000120000001500000054504a3fb0be563e0000000000000000100000001100000000000000000000000d02133fe25ab83e0e84863d00000000170000000f0000001600000015000000bea0233ff1854b3e17f7253e000000000f000000170000001600000015000000d864243f2e7c583e74f0153e000000001200000016000000170000001500000064ce033fb9659d3efefa353e000000001700000012000000160000001500000008410d3ff17de53e00000000000000000e0000000f000000150000001100000060ae143f40a3d63e00000000000000000e0000000f0000001100000002000000fabf2e3f0b80a23e00000000000000000e00000002000000110000000000000035c1153f957dd43e0000000000000000020000000e00000011000000000000000000803f000000000000000000000000100000000000000000000000000000003fb33f3f84d1273efec2b23d000000001200000011000000160000001400000037cd3f3f0f8f083e2978f03d00000000170000000f0000001200000015000000044d353ff865953e0000000000000000030000000200000000000000000000001ed4283fc357ae3e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000000600283ff4ffaf3e0000000000000000030000000200000000000000000000003e27023f84b1fb3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000001ed4283fc357ae3e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000600283ff4ffaf3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000003e27023f84b1fb3e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f0000000000000000000000000400000000000000000000000000000096ec0f3fc9fe9a3e17500a3e0000000001000000020000001500000011000000e1887b3f80696e3c59793d3b00000000010000001500000011000000000000002cfd7f3f2508353800000000000000000200000015000000110000000000000005c51f3f3d0a573eb0e1293e000000000100000013000000180000000d000000c023053f1029ae3ee01e0f3e000000001800000013000000010000000d0000005489613fe904d03dd8c18e3c000000001800000001000000020000000d000000bc74033f69918d3e3d0a573e000000000100000002000000180000000d0000004157313f1185333ee91d073e000000001a000000190000001400000016000000812b793fdb8fda3c00000000000000001a0000000d0000001800000019000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000008b9c433fa15a3e3ecccc4c3d000000001a000000190000000d000000160000000000803f000000000000000000000000100000000000000000000000000000000000803f000000000000000000000000100000000000000000000000000000006666263f3333b33e000000000000000013000000140000000d00000018000000eaa42d3f2bb6a43e000000000000000013000000140000000d0000001800000019b7193f05de7a3e96451e3e000000001300000010000000010000000000000011dc383fdff18b3ec47f953b0000000013000000100000000100000000000000872fbc3e48027a3e63215e3e00000000180000001300000014000000190000000a5a453fd9976a3e000000000000000018000000190000000d0000001300000081f8153f93eb583e68324f3e0000000014000000190000001a00000018000000891fe63e2fe09e3e9200763e00000000140000001a000000190000001800000021f0183f544d6c3ea38b2c3e000000001400000013000000190000001800000017f7273f086a703e3573df3d0000000014000000130000001900000018000000a1e50c3f2a5c8f3e28b12d3e00000000130000001400000019000000180000007411003ff4c0673ea3c31b3e0000000019000000140000001800000013000000e2d6343f3b52963e000000000000000001000000100000000000000000000000bfb8753f0e74243d00000000000000000100000010000000000000000000000032a5253f9db5b43e000000000000000013000000010000000000000000000000376b193f5c5f503ecaf3493e00000000010000001000000013000000000000002e77473f4923623e000000000000000019000000180000000d000000130000002f060f3f2b2f753e18b84e3e00000000190000001a0000000d000000180000002950173fd9307b3e858e273e000000001a0000000d00000019000000160000000000803f000000000000000000000000010000000000000000000000000000006666263f3333b33e000000000000000001000000020000001300000000000000e958303fbda09e3e8a70ad3a0000000001000000100000001300000000000000a01a0f3fac1c9a3e2a5c0f3e000000001a000000140000001900000016000000025ae53ea570bd3eb26a3a3e000000001a0000001400000019000000160000000000803f000000000000000000000000020000000000000000000000000000000000803f000000000000000000000000020000000000000000000000000000008484233ff4bc443efc302d3e00000000020000000c00000018000000130000000000803f00000000000000000000000002000000000000000000000000000000713d4a3f3d0a573e000000000000000002000000180000000d000000130000001f45283f8862653e0323853d00000000180000000c000000020000000d000000ff20333f816d413e071de43d0000000019000000180000000d00000015000000a7ee0c3f14d4303ec185133e0000000018000000190000000d0000000c0000007c7ef73e65fc9c3e400a573e00000000190000001a0000001400000018000000fc1e453f4209653ec059cf3b0000000001000000130000001000000000000000dfc11e3fe313883e8ec2753d00000000190000001a0000000d000000140000009999593f9c99193e00000000000000001a00000014000000180000001900000013a2283fac093a3e066e233e000000000d000000190000001a00000018000000c329863e9cb0823efdcf803e000000000d0000000c000000190000001800000016d8433f3292103e3da6a53d000000000c00000018000000020000000d000000b895e83ec609c03e04c12e3e00000000190000000d00000018000000150000006f4cd23e15d0b93ef6c6673e000000000c0000001800000002000000130000001f852b3fc2f5a83e0000000000000000020000000c00000013000000000000009630533fa63d333e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000010000000000000000000000000000000bd97cf3e180ca13e2a5c8f3e000000000c0000000d00000019000000180000007cad723f4128553d00000000000000000c0000000d00000013000000020000000bcb233feb69b83e0000000000000000020000000c00000013000000000000000000803f000000000000000000000000020000000000000000000000000000002be84b3f535f503e00000000000000000100000010000000130000000000000070c24c3f33da323e6ae0d03c0000000001000000100000001300000000000000340c2a3f8bd3923e6aa0483d0000000001000000100000001300000000000000376b193f5c5f503ecaf3493e0000000001000000100000001300000000000000e958303fbda09e3e8a70ad3a0000000001000000100000001300000000000000f24d503f36c83e3e000000000000000001000000100000000000000000000000e2d6343f3b52963e000000000000000001000000100000000000000000000000f24d503f36c83e3e0000000000000000010000001000000000000000000000008861563f7d79263ef199c5350000000001000000100000001300000000000000dc10743f40d1f43c3513893c0000000001000000100000001300000000000000fc1e453f4209653ec059cf3b0000000001000000130000001000000000000000b91f6c3f9fc0973d2633683b000000000100000010000000130000000000000070c24c3f33da323e6ae0d03c0000000001000000100000001300000000000000b91f6c3f9fc0973d2633683b00000000010000001000000013000000000000005a50fe3e9201ba3e2a5c0f3e000000000d0000000c0000001900000018000000fac3643f2ee0d93d00000000000000000c0000000d000000130000000200000029743d3fad17853e00000000000000000c000000020000001300000000000000ccc52b3f6874a83e0000000000000000020000000c0000001300000000000000ec432c3f5fb04b3ef13f033e000000001a000000190000001400000016000000c1813c3fcbc55a3ecdcc4c3d000000001a000000190000000d00000016000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000000000803f0000000000000000000000001a0000000d00000018000000190000006666263f3333b33e000000000000000013000000140000000d00000018000000366d3e3f95cf803ec57f953b00000000130000001000000001000000000000004545f43e63d08f3eb0d4773e000000001300000001000000100000000000000024b8293f70084e3e00170b3e000000001300000014000000190000001800000006e6223ff533ba3e000000000000000018000000190000000d0000001300000005c51f3f3d0a573eb0e1293e000000000100000013000000180000000d000000bd74033f69918d3e3c0a573e000000000100000002000000180000000d00000070b6093f2093ec3e000000000000000018000000190000000d0000001300000068f60e3f7a02793ee6234b3e00000000140000001a000000190000001800000073d8373f908b143ea3120c3e0000000014000000130000001900000018000000b872153fa1a38a3e13740e3e00000000140000001900000018000000130000002889f83e700cac3ed1d4363e0000000014000000190000001a00000018000000db8d0e3f6eaf813eba69423e00000000130000001800000019000000150000007f5e213ff4c0673e10c5123e0000000019000000140000001800000013000000c00a303f81ea9f3e000000000000000019000000180000000d000000130000005760103f9380773e12fe463e00000000190000001a0000000d000000180000007c5d343fc4e8313e9742f93d000000001a0000000d00000019000000160000004c14fb3eb9893d3e94e12c3e00000000010000001300000010000000180000000000803f00000000000000000000000010000000000000000000000000000000bb45c03ea570bd3ea049823e000000001a000000140000001900000016000000a01a0f3fac1c9a3e2a5c0f3e000000001a0000001400000019000000160000006244543f78ee2e3e0000000000000000020000000c0000001300000018000000713d4a3f3d0a573e000000000000000002000000180000000d000000130000005847203f6b06903e91abbd3d0000000018000000190000000d00000015000000eb51383f2a5c8f3e000000000000000019000000180000000d00000013000000703d4a3f400a573e000000000000000019000000140000000d0000001800000022f11e3f633c883e8ec2753d00000000190000001a0000000d000000140000009999593f9c99193e00000000000000001a000000140000001800000019000000855e0c3f7b0a7c3e727b523e000000000d000000190000001a0000001800000041e8fe3e0a6a713e0ff10e3e0000000018000000190000000d0000000c00000014120c3f7c4f793e3368563e0000000002000000180000000c000000130000004dfbc03e8cb1b93e295c0f3e00000000190000000d0000001a00000018000000ec817a3f8ec2af3c0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c000000000000000000803f00000000000000000000000010000000000000000000000000000000a861003f513eeb3ef9f21f3d000000000c0000000d0000001900000018000000e8ed7f3faac1903900000000000000000c0000000d00000013000000020000008274533ff72d323e0000000000000000020000000c0000001300000000000000934b0b3fac73b03eb9d4e33d000000000d0000000c0000001900000018000000bcdd673f1d12c13d00000000000000000c0000000d00000013000000020000000428113ff7afdd3e00000000000000000c000000020000001300000000000000b361313f9a3c9d3e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c00000000000000ec817a3f8ec2af3c0000000000000000020000000c0000001300000000000000366d3e3f95cf803ec57f953b00000000130000001000000001000000000000006666263f3333b33e000000000000000013000000140000000d000000180000000000803f0000000000000000000000001a0000000d0000001800000019000000ae47613f92c2f53d00000000000000001a0000000d00000018000000190000000000803f000000000000000000000000100000000000000000000000000000007c5d343fc4e8313e9742f93d000000001a0000000d0000001900000016000000855e0c3f7b0a7c3e727b523e000000000d000000190000001a0000001800000068f60e3f7a02793ee6234b3e00000000140000001a0000001900000018000000a01a0f3fac1c9a3e2a5c0f3e000000001a000000140000001900000016000000934b0b3fac73b03eb9d4e33d000000000d0000000c0000001900000018000000bcdd673f1d12c13d00000000000000000c0000000d00000013000000020000000428113ff7afdd3e00000000000000000c000000020000001300000000000000b361313f9a3c9d3e0000000000000000020000000c000000130000000000000073d8373f908b143ea3120c3e00000000140000001300000019000000180000009999593f9c99193e00000000000000001a000000140000001800000019000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000aca91f3fa8acc03e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000aca91f3fa8acc03e0000000000000000030000000200000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000040000000000000000000000000000000000003f0000003f0000000000000000030000000400000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f000000000000000004000000050000000000000000000000db4c6e3ff950303da4c2d53c000000000100000013000000180000000d000000177a253fb634b23e1ec7b53b000000000100000002000000180000000d000000e804653fbfd8d73d000000000000000002000000180000000d0000001300000060d6593fcd2e123ea8f6ce3b000000000e0000000f00000003000000020000009cdb303fc9489e3e0000000000000000020000000e0000001100000000000000dff7083f3499883e1aee4a3e0000000003000000020000000e00000011000000b70b1b3f93e8c93e0000000000000000020000000e00000011000000000000000000803f00000000000000000000000003000000000000000000000000000000044d353ff865953e000000000000000003000000020000000000000000000000b174173f9e16d13e0000000000000000020000000e0000001100000000000000b70b1b3f93e8c93e0000000000000000020000000e0000001100000000000000044d353ff865953e000000000000000003000000020000000000000000000000044d353ff865953e0000000000000000030000000200000000000000000000005ea26b3f0feda23d0000000000000000020000000e0000001100000000000000b174173f9e16d13e0000000000000000020000000e00000011000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000001a8a013facebc23e7e00e83d0000000002000000030000000e00000011000000e8ed7f3faac1903900000000000000000c0000000d00000013000000020000008274533ff72d323e0000000000000000020000000c0000001300000000000000f28a1d3f1beac43e00000000000000000200000003000000130000000000000014ae473faf47613e000000000000000002000000030000000c00000013000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000002000000130000000c00000000000000ec817a3f8ec2af3c0000000000000000020000000c0000001300000000000000b8862b3f8ff2a83e000000000000000003000000020000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000008274533ff72d323e0000000000000000020000000c00000013000000000000000000803f00000000000000000000000002000000130000000c000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000638b333f3be9983e00000000000000000300000002000000130000000000000011fb083f639c883ef8da4a3e0000000003000000020000000e000000110000009cdb303fc9489e3e0000000000000000020000000e0000001100000000000000971f603fff72f93d7109323b000000000e0000000f0000000300000002000000ffa3223f02b8ba3e00000000000000000e000000020000001100000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000044d353ff865953e000000000000000003000000020000000000000000000000ffa3223f02b8ba3e00000000000000000e000000020000001100000000000000854e193ff562cd3e0000000000000000020000000e0000001100000000000000854e193ff562cd3e0000000000000000020000000e000000110000000000000015f0733fb0fe403d0000000000000000020000000e0000001100000000000000044d353ff865953e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f000000000000000000000000030000000000000000000000000000001a8a013facebc23e7e00e83d0000000002000000030000000e000000110000001ba2113fcabbdc3e000000000000000002000000030000001300000000000000f752443f22b46e3e0000000000000000020000000c0000001300000000000000921d7e3fc636f13b00000000000000000c0000000d000000130000000200000014ae473faf47613e000000000000000002000000030000000c00000013000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f00000000000000000000000003000000000000000000000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000002b7b783fa89af03c0000000000000000020000000c00000013000000000000001f852b3fc2f5a83e0000000000000000020000000c00000013000000000000001f852b3fc2f5a83e0000000000000000020000000c0000001300000000000000f752443f22b46e3e0000000000000000020000000c0000001300000000000000b8862b3f8ff2a83e0000000000000000030000000200000000000000000000000000803f000000000000000000000000030000000000000000000000000000000000803f00000000000000000000000003000000000000000000000000000000638b333f3be9983e000000000000000003000000020000001300000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 0, y: -0.2611611, z: -1.2714314} + m_Extent: {x: 2.77094, y: 0.32596284, z: 3.07622} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh.meta new file mode 100644 index 0000000000..6d36768a3b --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39dbc3c1488e166438c12896910dfbe0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab new file mode 100644 index 0000000000..c5784128c8 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab @@ -0,0 +1,144 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4061338781184589129 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1793218903668471415} + - component: {fileID: 6025497230008655553} + - component: {fileID: 7741928679257130762} + - component: {fileID: 2797309424860215828} + m_Layer: 0 + m_Name: "\u98DE\u9CD0_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1793218903668471415 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4061338781184589129} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6025497230008655553 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4061338781184589129} + m_Mesh: {fileID: 4300000, guid: 39dbc3c1488e166438c12896910dfbe0, type: 2} +--- !u!137 &7741928679257130762 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4061338781184589129} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: c83bb26e081eac04fbec0ebdba43fb84, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 39dbc3c1488e166438c12896910dfbe0, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &2797309424860215828 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4061338781184589129} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 6025497230008655553} + _skinnedMeshRenderer: {fileID: 7741928679257130762} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab.meta new file mode 100644 index 0000000000..abdf81624e --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 633ad1aed44f17d43989c0123cfe97c2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat new file mode 100644 index 0000000000..7c4a2f2835 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8827709019921422548 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0\u9CCD_0" + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2bb6d7f9bc453a847adf92a68b4081c2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2bb6d7f9bc453a847adf92a68b4081c2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.015 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat.meta new file mode 100644 index 0000000000..a5dceb1a12 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a844bd3797c2e24dbb81c4303cdfb94 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh new file mode 100644 index 0000000000..65661e6535 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh @@ -0,0 +1,671 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!43 &4300000 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\u98DE\u9CD0\u9CCD_0" + serializedVersion: 11 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 66 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 32 + localAABB: + m_Center: {x: -0.0037600398, y: -0.24675432, z: -3.2181904} + m_Extent: {x: 1.09028, y: 0.26516005, z: 2.068381} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.00000011920929 + e01: 3.9404502e-17 + e02: -1.0000001 + e03: 1.0875986 + e10: 1.0694949e-15 + e11: 1 + e12: 3.9404502e-17 + e13: 0.31267777 + e20: 1.0000001 + e21: -1.0694949e-15 + e22: -0.00000011920929 + e23: -0.0009261863 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.009433403 + e01: 0.000000002930728 + e02: -0.9999556 + e03: 0.0408839 + e10: -3.6363315e-11 + e11: 1 + e12: 0.0000000029305158 + e13: 0.31267777 + e20: 0.9999555 + e21: 8.716963e-12 + e22: 0.009433402 + e23: -0.0013120426 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.010100711 + e01: 0.00000000213998 + e02: -0.99994904 + e03: -1.0796483 + e10: 5.0768445e-10 + e11: 1 + e12: 0.000000002134961 + e13: 0.31267777 + e20: 0.9999488 + e21: -4.860939e-10 + e22: -0.010100713 + e23: -0.022405561 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.018515091 + e01: 0.00000001593 + e02: -0.9998288 + e03: -2.1261759 + e10: -1.7932714e-10 + e11: 1 + e12: 0.00000001592941 + e13: 0.3126778 + e20: 0.9998286 + e21: -1.1563791e-10 + e22: 0.018515097 + e23: 0.038446285 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.008208985 + e01: -0.000000009813158 + e02: -0.9999667 + e03: -3.2684536 + e10: 1.33342e-10 + e11: 1 + e12: -0.000000009812396 + e13: 0.31267774 + e20: 0.9999663 + e21: -5.2787438e-11 + e22: 0.008208987 + e23: 0.004758754 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.07251635 + e01: -3.938046e-10 + e02: -0.99736744 + e03: -1.0423472 + e10: 2.19508e-10 + e11: 1 + e12: -3.7888453e-10 + e13: 0.32190198 + e20: 0.9973672 + e21: -1.914548e-10 + e22: 0.07251635 + e23: -0.72168094 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029568776 + e01: 0.000000008843177 + e02: -0.999563 + e03: -1.9293966 + e10: -0.0000000034849497 + e11: 0.9999999 + e12: 0.000000008743957 + e13: 0.32190204 + e20: 0.99956274 + e21: 0.0000000032248781 + e22: 0.029568765 + e23: -0.80537766 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.019442642 + e01: -0.00000002973874 + e02: -0.9998112 + e03: -2.7040973 + e10: 0.0000000054613714 + e11: 0.99999976 + e12: -0.00000002985058 + e13: 0.3219018 + e20: 0.99981093 + e21: -0.000000006040713 + e22: -0.019442663 + e23: -0.9389995 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.09218214 + e01: 4.715061e-10 + e02: -0.9957427 + e03: -1.1076031 + e10: 5.1803384e-10 + e11: 1 + e12: 4.2556428e-10 + e13: 0.32190198 + e20: 0.9957423 + e21: -4.765988e-10 + e22: -0.09218213 + e23: 0.6807706 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.060275115 + e01: 0.000000006946731 + e02: -0.9981824 + e03: -1.933018 + e10: 0.00000001677088 + e11: 1 + e12: 0.0000000059466796 + e13: 0.321902 + e20: 0.9981819 + e21: -0.000000016381952 + e22: -0.06027509 + e23: 0.7429999 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.029793758 + e01: 0.0000000050744946 + e02: -0.9995567 + e03: -2.671572 + e10: 0.0000000139174 + e11: 1 + e12: 0.0000000054915854 + e13: 0.32190204 + e20: 0.9995561 + e21: -0.000000014074833 + e22: 0.029793821 + e23: 0.9874153 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.97513276 + e01: 0.0000000024050197 + e02: -0.22162108 + e03: -0.44525054 + e10: 0.0000000024426599 + e11: 1 + e12: 1.04243045e-10 + e13: 0.32095918 + e20: 0.2216211 + e21: -4.3969384e-10 + e22: -0.975133 + e23: -0.4569956 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99503726 + e01: 0.000000013498726 + e02: -0.09950344 + e03: -1.0955272 + e10: 0.000000012868366 + e11: 1 + e12: 0.0000000069768484 + e13: 0.3209592 + e20: 0.09950348 + e21: 0.000000005661777 + e22: -0.9950375 + e23: -0.5968534 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9899499 + e01: 0.000000002614446 + e02: -0.14142136 + e03: -0.40980524 + e10: -0.0000000014035346 + e11: 1 + e12: 0.0000000086621785 + e13: 0.3209592 + e20: 0.14142133 + e21: -0.000000008376631 + e22: 0.98995 + e23: 0.5126524 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99693894 + e01: -0.0000000020833346 + e02: -0.07819128 + e03: -0.9732565 + e10: 0.0000000017002195 + e11: 1 + e12: -0.0000000049663225 + e13: 0.32095918 + e20: 0.078191265 + e21: 0.00000000481817 + e22: 0.99693906 + e23: 0.5756998 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.014284189 + e01: -0.000000007960181 + e02: 0.9998982 + e03: -1.0951422 + e10: -7.218223e-11 + e11: 1 + e12: 0.0000000079599625 + e13: 0.31267777 + e20: -0.9998981 + e21: 4.15267e-11 + e22: -0.014284187 + e23: 0.018818876 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99966544 + e01: -0.000000020012104 + e02: 0.025878796 + e03: -0.3404073 + e10: 0.000000019995408 + e11: 1 + e12: 9.037282e-10 + e13: 0.32190198 + e20: -0.025878794 + e21: -3.8596953e-10 + e22: 0.9996653 + e23: -0.72115564 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9993251 + e01: -0.000000018800456 + e02: -0.036746662 + e03: -0.829588 + e10: 0.000000019144093 + e11: 1 + e12: 0.000000008999786 + e13: 0.32190198 + e20: 0.036746677 + e21: -0.000000009697191 + e22: 0.9993251 + e23: -0.77460355 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9996408 + e01: 0.000000016173326 + e02: -0.02680898 + e03: -0.3222799 + e10: 0.000000016196987 + e11: 1 + e12: -6.6533373e-10 + e13: 0.32190198 + e20: 0.026808985 + e21: -0.0000000010993216 + e22: -0.99964094 + e23: 0.7458364 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9989357 + e01: -7.9970414e-10 + e02: -0.046132583 + e03: -0.862538 + e10: -7.687193e-10 + e11: 1 + e12: -6.894839e-10 + e13: 0.32190198 + e20: 0.04613259 + e21: -6.532898e-10 + e22: -0.99893594 + e23: 0.7626567 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99227816 + e01: 0.000000004565349 + e02: -0.12403479 + e03: -0.27313882 + e10: -0.0000000038002748 + e11: 1 + e12: 0.0000000064048162 + e13: 0.32095918 + e20: 0.12403479 + e21: -0.0000000058839906 + e22: 0.99227816 + e23: -0.18297398 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.99996775 + e01: 0.0000000012666821 + e02: 0.008064457 + e03: -0.83262366 + e10: -0.0000000012475698 + e11: 1.0000001 + e12: -0.000000002374815 + e13: 0.3209592 + e20: -0.008064457 + e21: 0.0000000023646742 + e22: 0.9999679 + e23: -0.07368517 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 0.9990963 + e01: 4.5527254e-10 + e02: -0.04251479 + e03: -1.7537096 + e10: -9.166995e-10 + e11: 1.0000001 + e12: -0.000000010833868 + e13: 0.32095918 + e20: 0.042514782 + e21: 0.000000010863045 + e22: 0.9990965 + e23: -0.1625793 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9853084 + e01: 0.000000011868566 + e02: -0.17078647 + e03: -0.27211288 + e10: 0.000000013009718 + e11: 1 + e12: -0.0000000055625797 + e13: 0.32095918 + e20: 0.1707865 + e21: -0.0000000077027416 + e22: -0.9853085 + e23: 0.21222913 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.99781775 + e01: 0.0000000019619206 + e02: -0.06603157 + e03: -0.858857 + e10: 0.0000000016558587 + e11: 1 + e12: 0.000000004689764 + e13: 0.32095918 + e20: 0.06603161 + e21: 0.000000004570182 + e22: -0.997818 + e23: 0.1224277 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: -0.9995925 + e01: 1.8039277e-10 + e02: -0.028559614 + e03: -1.8810982 + e10: -4.4994893e-11 + e11: 1 + e12: 0.000000007891071 + e13: 0.32095918 + e20: 0.028559659 + e21: 0.000000007889128 + e22: -0.99959254 + e23: 0.05190885 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 1.0932646, y: 0.024635494, z: -0.028991804} + m_Max: {x: 1.3123572, y: 0.32095748, z: -0.02493459} + - m_Min: {x: -0.04853058, y: -0.01464048, z: -0.042400327} + m_Max: {x: 2.017911, y: 0.33108354, z: -0.02543633} + - m_Min: {x: 0.8664328, y: 0.008401722, z: -0.16481662} + m_Max: {x: 0.8868997, y: 0.008401722, z: 0.11667937} + - m_Min: {x: -0.04632318, y: -0.16357318, z: -0.1687628} + m_Max: {x: 0.7781279, y: 0.15393876, z: 0.14862138} + - m_Min: {x: -0.046568155, y: -0.16357324, z: -0.17094785} + m_Max: {x: 0.66053295, y: 0.20681569, z: 0.21301562} + - m_Min: {x: 0.81248736, y: 0.008401722, z: -0.12685102} + m_Max: {x: 0.8385048, y: 0.008401722, z: 0.15418625} + - m_Min: {x: -0.030758977, y: -0.1371353, z: -0.13484251} + m_Max: {x: 0.8030019, y: 0.18037772, z: 0.18209922} + - m_Min: {x: -0.02564764, y: -0.19001234, z: -0.2068181} + m_Max: {x: 0.6845615, y: 0.18037775, z: 0.18430376} + - m_Min: {x: 0.4062017, y: 0.021405935, z: 0.45231587} + m_Max: {x: 0.74195635, y: 0.03988993, z: 0.53494585} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: 0.3505358, y: 0.021405965, z: -0.5464386} + m_Max: {x: 0.6919065, y: 0.03988996, z: -0.49144387} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + - m_Min: {x: Infinity, y: Infinity, z: Infinity} + m_Max: {x: -Infinity, y: -Infinity, z: -Infinity} + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 0200010000000000030002000100050004000400000001000500070006000600040005000a000900080008000b000a000b0008000c000c000d000b000d000c000e000e000f000d001200110010001000130012001300100014001400150013001200170016001600110012001a001900180018001b001a001e001d001c001c001f001e00 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 32 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 1 + offset: 0 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 2 + offset: 0 + format: 0 + dimension: 4 + - stream: 2 + offset: 16 + format: 10 + dimension: 4 + m_DataSize: 2048 + _typelessdata: 514e843f1b83a0be82662bc0000000000000803f000000007253373f1b83a0be82662bc0000000000000803f000000007253373f1b83a0beac4458c0000000000000803f0000000016138b3f1b83a0beac4458c0000000000000803f00000000bede793f1b83a0befd82eebf000000003dfa7f3fab4e59bced9d313f1b83a0befd82eebf243b9dbc62e27f3ffb7ebdbcf1d9723f4fe88fbef52c93bff810eebc18bc7f3fac750fbd08591a3f0b5f99bef8f693bf8aad58bd3b8d7f3fade9d8bcbb4485bf1b83a0be82662bc0000000000000803f0000000081098cbf1b83a0beac4458c0000000000000803f00000000894039bf1b83a0beac4458c0000000000000803f00000000894039bf1b83a0be82662bc0000000000000803f00000000d5cb7bbf1b83a0befd82eebf000000003dfa7f3fed4e59bc058b33bf1b83a0befd82eebf1c3b9d3c64e27f3f097fbdbc08c774bf4fe88fbef52c93bfe410ee3c19bc7f3fb1750fbd0f461cbf0b5f99bef8f693bf63ad583d3b8d7f3fcce9d8bc328876bb8040803c581882c00000803fe7ec323209b1c9b2b38876bb804f17bc562295c0ffff7f3f762b973354ecd1b2328876bb4296a7bef61f8bc00000803fe49f7f33a05f4db2328876bbe92ba2be20a874c00000803f2ec70bb2e1483eb2078876bbc0a7073cb61b5cc00000803f46064bb230318ab2078876bb467a93be7c154ec00000803f91dc4bb266d689b2b38876bba0c7963c982ba9c00000803f61d2c933c3c43331328876bbc1e5a3be44269fc0ffff7f3f8396c03345ef8d30c1ad633f90fe2bbe82662bc081fd7f3fe4040fbc3c02e9b4f7cb633f58b2ebbdac4458c081fd7f3f71010fbc606058b516f8623f3690f8beac4458c081fd7f3fe4040fbc3c02e9b416f8623f3690f8be82662bc080fd7f3fe8080fbc00000000c89a65bfee06ebbe82662bc080fd7fbf98fe0e3ca7ccb8340fb965bfd20c03bfac4458c080fd7fbf54010f3cbf9b2b352ee564bfbceb10beac4458c080fd7fbf98fe0e3ca7ccb8342ee564bfbceb10be82662bc080fd7fbf68fb0e3c000000000987363f503b3c3de2cb343fda75d73e50557d3f18b4e83e425a7f3f80f18c3cb8cdac3e00408e3d3dbaa93e3c2ace3edaf4123c2803803d80a6943bbc40f13e0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73eb8cdac3e00408e3d3dbaa93e3c2ace3edaf4123c2803803d80a6943bbc40f13e0c8fcd3ea52e0d3f512e313fbf800e3f213a143fdb15783f5a47a53eba927a3fd2dbc43d5491163ff837e83c071e783f8a3e7f3f4c3bfd3e2656623f81c26e3f0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73e0987363f503b3c3d425a7f3f80f18c3c50557d3f18b4e83ee2cb343fda75d73ee27a143f3d0ad73e000000000000000007000000080000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f000000000000000000000000080000000000000000000000000000009a99193fcccccc3e0000000000000000060000000700000000000000000000009a99193fcccccc3e0000000000000000060000000700000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000000000803f0000000000000000000000000e0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b00000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b000000000000000000000052b81e3f5c8fc23e0000000000000000090000000a000000000000000000000052b81e3f5c8fc23e0000000000000000090000000a00000000000000000000000000803f0000000000000000000000000c0000000900000000000000000000000000803f0000000000000000000000000c0000000900000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000003f0000003f0000000000000000040000000500000000000000000000000000803f000000000000000000000000050000000000000000000000000000000000803f00000000000000000000000005000000000000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000000000803f000000000000000000000000080000000000000000000000000000000000803f00000000000000000000000008000000000000000000000000000000e27a143f3d0ad73e0000000000000000070000000800000000000000000000009a99193fcccccc3e00000000000000000a0000000b00000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000000000803f0000000000000000000000000b0000000000000000000000000000009a99193fcccccc3e00000000000000000a0000000b0000000000000000000000 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: -0.0037600398, y: -0.24675432, z: -3.2181904} + m_Extent: {x: 1.09028, y: 0.26516005, z: 2.068381} + m_MeshUsageFlags: 0 + m_CookingOptions: 30 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + 'm_MeshMetrics[0]': 1 + 'm_MeshMetrics[1]': 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh.meta new file mode 100644 index 0000000000..55fe3f2012 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38462164d8ecdfe4383ab1017ee29f6b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4300000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab new file mode 100644 index 0000000000..a3d34734d9 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab @@ -0,0 +1,144 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &384708846337736076 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4965486813692908940} + - component: {fileID: 5799942287001569817} + - component: {fileID: 6127926053758454367} + - component: {fileID: 6928166442939181747} + m_Layer: 0 + m_Name: "\u98DE\u9CD0\u9CCD_0" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4965486813692908940 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 384708846337736076} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5799942287001569817 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 384708846337736076} + m_Mesh: {fileID: 4300000, guid: 38462164d8ecdfe4383ab1017ee29f6b, type: 2} +--- !u!137 &6127926053758454367 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 384708846337736076} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 9a844bd3797c2e24dbb81c4303cdfb94, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 38462164d8ecdfe4383ab1017ee29f6b, type: 2} + m_Bones: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!114 &6928166442939181747 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 384708846337736076} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2189a384460241f89635c90802d6c270, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonBuilder: {fileID: 0} + _meshFilter: {fileID: 5799942287001569817} + _skinnedMeshRenderer: {fileID: 6127926053758454367} + BoneNames: [] diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab.meta new file mode 100644 index 0000000000..9ea2159415 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐1/飞鳐鳍_0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8de3ce10cfc44634fa5c77bb3728d642 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab new file mode 100644 index 0000000000..742e4bac5d --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab @@ -0,0 +1,1474 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &165422729180334638 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1387675612811561426} + m_Layer: 0 + m_Name: Bone22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1387675612811561426 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 165422729180334638} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000016390891, y: 0.01875698, z: -7.7375706e-10, w: 0.99982405} + m_LocalPosition: {x: 1.0189703, y: -0.0000000019991346, z: 0.00000026763882} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9177724685447108587} + m_LocalEulerAnglesHint: {x: -8.901378, y: -0.64836764, z: 9.831663} +--- !u!1 &169652417458606580 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2005095924851988894} + m_Layer: 0 + m_Name: Bone02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2005095924851988894 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 169652417458606580} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000007300994, y: -0.7161979, z: -0.0000000068449784, w: 0.69789726} + m_LocalPosition: {x: 0.3578751, y: -0.009224206, z: 0.32070434} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6385542612495076744} + m_Father: {fileID: 7139521069067709972} + m_LocalEulerAnglesHint: {x: 0.29477388, y: -91.4532, z: 11.4637375} +--- !u!1 &573658093328771442 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7234671575472178318} + m_Layer: 0 + m_Name: Bone07 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7234671575472178318 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 573658093328771442} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000043082236, y: -0.06616142, z: -0.0000000015292981, w: 0.99780893} + m_LocalPosition: {x: 0.5424666, y: -0.00000000247655, z: -0.00000017881396} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7644303060894644761} + m_Father: {fileID: 8053024436456068448} + m_LocalEulerAnglesHint: {x: -0.065928265, y: -7.582317, z: -8.204124} +--- !u!1 &722359020735991447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2704302988085415756} + m_Layer: 0 + m_Name: Box01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2704302988085415756 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 722359020735991447} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7139521069067709972} + - {fileID: 1853349788370568135} + m_Father: {fileID: 2794600088886883075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &889626302078829404 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9177724685447108587} + m_Layer: 0 + m_Name: Bone21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9177724685447108587 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889626302078829404} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000057631424, y: 0.052749563, z: -0.000000005029047, w: 0.99860775} + m_LocalPosition: {x: 0.56906664, y: -0.000000006754001, z: 0.00000029802328} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1387675612811561426} + m_Father: {fileID: 6342242596158262178} + m_LocalEulerAnglesHint: {x: -0.5281357, y: 6.0849595, z: -8.015001} +--- !u!1 &1172150771339149167 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 217531289066385156} + m_Layer: 0 + m_Name: Bone17 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &217531289066385156 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1172150771339149167} + serializedVersion: 2 + m_LocalRotation: {x: -1.5663191e-11, y: 0.005153514, z: -0.000000012871841, w: 0.99998677} + m_LocalPosition: {x: 1.1420547, y: -0.000000018192928, z: 0.00000019532038} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3645585086986347208} + m_LocalEulerAnglesHint: {x: -0.018019663, y: 0.40133896, z: -10.192796} +--- !u!1 &1306085376482013627 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6385542612495076744} + m_Layer: 0 + m_Name: Bone04 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6385542612495076744 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1306085376482013627} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000004045654, y: 0.03131318, z: 4.4765924e-10, w: 0.9995097} + m_LocalPosition: {x: 0.53604054, y: 0.000000010727292, z: 0.00000005960465} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2005095924851988894} + m_LocalEulerAnglesHint: {x: 0.41114628, y: 3.5483015, z: -11.253366} +--- !u!1 &1800706180615657782 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4057089558147627065} + m_Layer: 0 + m_Name: Bone05 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4057089558147627065 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1800706180615657782} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000060348073, y: 0.69756395, z: 0.000000005410852, w: 0.71652263} + m_LocalPosition: {x: 0.35067052, y: -0.009224206, z: -0.34308538} + m_LocalScale: {x: 1, y: 1, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 807543172122041683} + m_Father: {fileID: 7139521069067709972} + m_LocalEulerAnglesHint: {x: 0.19524068, y: 88.47636, z: 7.300082} +--- !u!1 &1980761920049067497 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8617994563067664346} + m_Layer: 0 + m_Name: Bone13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8617994563067664346 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1980761920049067497} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000004375371, y: 0.024506025, z: -0.00000001931967, w: 0.9996997} + m_LocalPosition: {x: 0.81746083, y: 0.00000005197713, z: 0.00000045606066} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1365751013731868997} + m_LocalEulerAnglesHint: {x: -21.18596, y: -4.6479445, z: -8.482641} +--- !u!1 &2167153221220692833 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2794600088886883075} + - component: {fileID: 8630342254408953836} + m_Layer: 0 + m_Name: "\u98DE\u9CD01" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2794600088886883075 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2167153221220692833} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4752729806572353742} + - {fileID: 2704302988085415756} + - {fileID: 3748119346901971783} + - {fileID: 7575984174543547016} + m_Father: {fileID: 4863930623953286032} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!95 &8630342254408953836 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2167153221220692833} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: abc6cddfa0182ed42be9d3c52d2d35fc, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &2221503950249024158 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3773825749869819013} + m_Layer: 0 + m_Name: Bone16 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3773825749869819013 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2221503950249024158} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000014231043, y: -0.04503967, z: -2.4928676e-10, w: 0.9989853} + m_LocalPosition: {x: 0.8165702, y: -0.000000035881957, z: -0.0000001560411} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2693581363362708628} + m_LocalEulerAnglesHint: {x: 14.766984, y: -3.376498, z: -16.661327} +--- !u!1 &2573883992929198681 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8053024436456068448} + m_Layer: 0 + m_Name: Bone06 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8053024436456068448 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2573883992929198681} + serializedVersion: 2 + m_LocalRotation: {x: 6.948694e-10, y: -0.6618026, z: 0.000000003658291, w: 0.7496782} + m_LocalPosition: {x: 0.93991625, y: -0.00828141, z: 0.29279852} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7234671575472178318} + m_Father: {fileID: 7139521069067709972} + m_LocalEulerAnglesHint: {x: 2.3115766, y: -83.2584, z: -18.84006} +--- !u!1 &2626276968333958012 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5850781781624411573} + m_Layer: 0 + m_Name: Bone09 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5850781781624411573 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2626276968333958012} + serializedVersion: 2 + m_LocalRotation: {x: 2.721566e-10, y: 0.009767057, z: -3.9768647e-10, w: 0.9999523} + m_LocalPosition: {x: 1.1207635, y: -0.000000003284653, z: 0.00000028390687} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3645585086986347208} + m_Father: {fileID: 7005472063151095684} + m_LocalEulerAnglesHint: {x: 0.011865847, y: 1.3802885, z: 2.6395674} +--- !u!1 &2798154768636844222 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2693581363362708628} + m_Layer: 0 + m_Name: Bone15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2693581363362708628 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2798154768636844222} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000007892312, y: -0.01600008, z: 0.0000000033720666, w: 0.999872} + m_LocalPosition: {x: 0.84819776, y: -7.2166867e-10, z: 0.00000009423822} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3773825749869819013} + m_Father: {fileID: 4407162128357112163} + m_LocalEulerAnglesHint: {x: -1.7285045, y: -6.437913, z: 2.9854617} +--- !u!1 &3390766043761597286 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3645585086986347208} + m_Layer: 0 + m_Name: Bone10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3645585086986347208 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3390766043761597286} + serializedVersion: 2 + m_LocalRotation: {x: -3.1448188e-10, y: -0.014308028, z: 0.0000000068986084, w: 0.9998977} + m_LocalPosition: {x: 1.0467571, y: -0.0000000022400393, z: 0.00000043453832} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 217531289066385156} + m_Father: {fileID: 5850781781624411573} + m_LocalEulerAnglesHint: {x: 0.0000012077624, y: -1.6396207, z: -15.087751} +--- !u!1 &3984689295251615333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6082024892950696652} + m_Layer: 0 + m_Name: Bone26 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6082024892950696652 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3984689295251615333} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000025529523, y: 0.061864577, z: 0.0000000056977587, w: 0.99808455} + m_LocalPosition: {x: 0.7155975, y: -0.0000000012816456, z: 0.00000023841858} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5519432139400556803} + m_LocalEulerAnglesHint: {x: -13.567279, y: -3.3305311, z: 12.499856} +--- !u!1 &4260496915619068430 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8807311409965731395} + m_Layer: 0 + m_Name: Bone24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8807311409965731395 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4260496915619068430} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000006602508, y: -0.031807568, z: -0.0000000022911084, w: 0.9994941} + m_LocalPosition: {x: 0.59808636, y: -0.000000001294264, z: 0.00000005960466} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6341225791471470652} + m_LocalEulerAnglesHint: {x: 14.934907, y: 7.8084416, z: 13.905823} +--- !u!1 &4446397359841792042 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7644303060894644761} + m_Layer: 0 + m_Name: Bone19 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7644303060894644761 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4446397359841792042} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000042260466, y: 0.025293363, z: -2.3828806e-10, w: 0.9996801} + m_LocalPosition: {x: 0.9270634, y: 0.000000028628032, z: 0.000000109197586} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7234671575472178318} + m_LocalEulerAnglesHint: {x: 14.557794, y: 8.218065, z: 11.650535} +--- !u!1 &4513853004003706904 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7081272468652496137} + m_Layer: 0 + m_Name: Bone11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7081272468652496137 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4513853004003706904} + serializedVersion: 2 + m_LocalRotation: {x: 5.999318e-11, y: -0.03156801, z: -0.0000000016585536, w: 0.99950165} + m_LocalPosition: {x: 1.0356121, y: -0.009224209, z: 0.78470737} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1365751013731868997} + m_Father: {fileID: 7005472063151095684} + m_LocalEulerAnglesHint: {x: -0.00000009009401, y: -3.6180303, z: 12.097883} +--- !u!1 &4633782290094104537 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7005472063151095684} + m_Layer: 0 + m_Name: Bone08 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7005472063151095684 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4633782290094104537} + serializedVersion: 2 + m_LocalRotation: {x: -1.1270817e-11, y: -0.004716813, z: 0.0000000014653272, w: 0.99998885} + m_LocalPosition: {x: 1.0467042, y: -4.1244853e-17, z: 0.00000011920929} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5850781781624411573} + - {fileID: 7081272468652496137} + - {fileID: 4407162128357112163} + - {fileID: 5519432139400556803} + - {fileID: 6341225791471470652} + m_Father: {fileID: 7139521069067709972} + m_LocalEulerAnglesHint: {x: -0.0000004934628, y: -0.5405019, z: 5.29622} +--- !u!1 &4798490957947066588 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5586289251363236225} + m_Layer: 0 + m_Name: HH_FX + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5586289251363236225 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4798490957947066588} + serializedVersion: 2 + m_LocalRotation: {x: -0.0024765646, y: -0.70670086, z: -0.0029870418, w: 0.7075019} + m_LocalPosition: {x: 0.88387054, y: 0.02808406, z: -0.05655617} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7139521069067709972} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4863947029400710288 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4863930623953286032} + m_Layer: 0 + m_Name: "\u98DE\u9CD03" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4863930623953286032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4863947029400710288} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2794600088886883075} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5207165706647571923 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2523904146013226439} + m_Layer: 0 + m_Name: Bone18 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2523904146013226439 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5207165706647571923} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000003980137, y: -0.9999745, z: 7.664848e-12, w: -0.0071423342} + m_LocalPosition: {x: -0.0077006826, y: 2.7070507e-18, z: 0.0022474239} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7139521069067709972} + m_LocalEulerAnglesHint: {x: 0.000002162301, y: 179.18155, z: 6.700045} +--- !u!1 &6700962435123626132 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 807543172122041683} + m_Layer: 0 + m_Name: Bone03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &807543172122041683 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6700962435123626132} + serializedVersion: 2 + m_LocalRotation: {x: -2.9732347e-10, y: -0.00966823, z: -0.000000008477646, w: 0.99995327} + m_LocalPosition: {x: 0.5548431, y: -0.0000000089736565, z: 0.0000001192093} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4057089558147627065} + m_LocalEulerAnglesHint: {x: -0.7273353, y: -1.0060065, z: -15.955554} +--- !u!1 &6750493967824801790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5519432139400556803} + m_Layer: 0 + m_Name: Bone25 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5519432139400556803 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6750493967824801790} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000018487354, y: 0.6275299, z: -3.398816e-10, w: 0.7785925} + m_LocalPosition: {x: 0.5820275, y: -0.008281412, z: -0.33933052} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6082024892950696652} + m_Father: {fileID: 7005472063151095684} + m_LocalEulerAnglesHint: {x: 5.8901567, y: 81.62699, z: -0.19302964} +--- !u!1 &6781171277913679050 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1365751013731868997} + m_Layer: 0 + m_Name: Bone12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1365751013731868997 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6781171277913679050} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000016169329, y: 0.021501828, z: 0.000000004650035, w: 0.99976885} + m_LocalPosition: {x: 0.9198916, y: -0.00000005934527, z: 0.000000099833414} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8617994563067664346} + m_Father: {fileID: 7081272468652496137} + m_LocalEulerAnglesHint: {x: 1.3404566, y: 5.8496723, z: 3.9759564} +--- !u!1 &6908025337431823593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6341225791471470652} + m_Layer: 0 + m_Name: Bone23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6341225791471470652 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6908025337431823593} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000013735894, y: -0.6516312, z: 0.0000000026064402, w: 0.75853604} + m_LocalPosition: {x: 0.6094567, y: -0.008281412, z: 0.32652542} + m_LocalScale: {x: 0.99999976, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8807311409965731395} + m_Father: {fileID: 7005472063151095684} + m_LocalEulerAnglesHint: {x: -5.9388995, y: -85.19651, z: -0.3766412} +--- !u!1 &7046059778612902033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7139521069067709972} + m_Layer: 0 + m_Name: Bone01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7139521069067709972 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7046059778612902033} + serializedVersion: 2 + m_LocalRotation: {x: 3.9205513e-16, y: 0.7071068, z: -3.6419195e-16, w: 0.7071068} + m_LocalPosition: {x: 0.0009263158, y: -0.31267777, z: 1.0875984} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7005472063151095684} + - {fileID: 2523904146013226439} + - {fileID: 2005095924851988894} + - {fileID: 4057089558147627065} + - {fileID: 8053024436456068448} + - {fileID: 6342242596158262178} + - {fileID: 5586289251363236225} + m_Father: {fileID: 2704302988085415756} + m_LocalEulerAnglesHint: {x: -1.4990883, y: -91.02571, z: 2.0007668} +--- !u!1 &7598918608218654384 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4752729806572353742} + - component: {fileID: 3845417419910247897} + - component: {fileID: 1689312891332054711} + m_Layer: 0 + m_Name: CustomMeshRender + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &4752729806572353742 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7598918608218654384} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2794600088886883075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3845417419910247897 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7598918608218654384} + m_Mesh: {fileID: 0} +--- !u!137 &1689312891332054711 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7598918608218654384} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 0} + m_Bones: [] + m_BlendShapeWeights: [] + m_RootBone: {fileID: 0} + m_AABB: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_DirtyAABB: 0 +--- !u!1 &7802590303368422551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4407162128357112163} + m_Layer: 0 + m_Name: Bone14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4407162128357112163 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7802590303368422551} + serializedVersion: 2 + m_LocalRotation: {x: 3.2884812e-10, y: 0.050851412, z: -0.0000000012399164, w: 0.9987063} + m_LocalPosition: {x: 1.0736119, y: -0.009224209, z: -0.7910624} + m_LocalScale: {x: 0.9999997, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2693581363362708628} + m_Father: {fileID: 7005472063151095684} + m_LocalEulerAnglesHint: {x: 0.000000030176977, y: 5.8296814, z: 14.560105} +--- !u!1 &8005034201090952825 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6342242596158262178} + m_Layer: 0 + m_Name: Bone20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6342242596158262178 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8005034201090952825} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000067678023, y: 0.6438996, z: 0.0000000020604831, w: 0.7651101} + m_LocalPosition: {x: 0.92496073, y: -0.00828141, z: -0.305287} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9177724685447108587} + m_Father: {fileID: 7139521069067709972} + m_LocalEulerAnglesHint: {x: -2.9366064, y: 80.6108, z: -17.2142} +--- !u!1 &8587825605874265826 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1853349788370568135} + m_Layer: 0 + m_Name: CC_feijian + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1853349788370568135 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8587825605874265826} + serializedVersion: 2 + m_LocalRotation: {x: -0.0038633368, y: 0.00056633406, z: -0.0003609631, w: 0.9999923} + m_LocalPosition: {x: -0.06530468, y: 0.57669836, z: -0.03839636} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2704302988085415756} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3233925001127183664 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2794600088886883075} + m_Modifications: + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4061338781184589129, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_Name + value: "\u98DE\u9CD0_0" + objectReference: {fileID: 0} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 2704302988085415756} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 2704302988085415756} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 7139521069067709972} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 7005472063151095684} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 5850781781624411573} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 3645585086986347208} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 217531289066385156} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 7081272468652496137} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 1365751013731868997} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 8617994563067664346} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 4407162128357112163} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 2693581363362708628} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 3773825749869819013} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 5519432139400556803} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 6082024892950696652} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 6341225791471470652} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 8807311409965731395} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 2523904146013226439} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 2005095924851988894} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 6385542612495076744} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 4057089558147627065} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 807543172122041683} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 8053024436456068448} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 7234671575472178318} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 7644303060894644761} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 6342242596158262178} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 9177724685447108587} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 1387675612811561426} + - target: {fileID: 7741928679257130762, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 2704302988085415756} + m_RemovedComponents: + - {fileID: 2797309424860215828, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} +--- !u!4 &3748119346901971783 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1793218903668471415, guid: 633ad1aed44f17d43989c0123cfe97c2, type: 3} + m_PrefabInstance: {fileID: 3233925001127183664} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3299940631638146820 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2794600088886883075} + m_Modifications: + - target: {fileID: 384708846337736076, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_Name + value: "\u98DE\u9CD0\u9CCD_0" + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: m_RootBone + value: + objectReference: {fileID: 2704302988085415756} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[0]' + value: + objectReference: {fileID: 2704302988085415756} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[1]' + value: + objectReference: {fileID: 7139521069067709972} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[2]' + value: + objectReference: {fileID: 7005472063151095684} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[3]' + value: + objectReference: {fileID: 5850781781624411573} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[4]' + value: + objectReference: {fileID: 3645585086986347208} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[5]' + value: + objectReference: {fileID: 217531289066385156} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[6]' + value: + objectReference: {fileID: 7081272468652496137} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[7]' + value: + objectReference: {fileID: 1365751013731868997} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[8]' + value: + objectReference: {fileID: 8617994563067664346} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[9]' + value: + objectReference: {fileID: 4407162128357112163} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[10]' + value: + objectReference: {fileID: 2693581363362708628} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[11]' + value: + objectReference: {fileID: 3773825749869819013} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[12]' + value: + objectReference: {fileID: 5519432139400556803} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[13]' + value: + objectReference: {fileID: 6082024892950696652} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[14]' + value: + objectReference: {fileID: 6341225791471470652} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[15]' + value: + objectReference: {fileID: 8807311409965731395} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[16]' + value: + objectReference: {fileID: 2523904146013226439} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[17]' + value: + objectReference: {fileID: 2005095924851988894} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[18]' + value: + objectReference: {fileID: 6385542612495076744} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[19]' + value: + objectReference: {fileID: 4057089558147627065} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[20]' + value: + objectReference: {fileID: 807543172122041683} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[21]' + value: + objectReference: {fileID: 8053024436456068448} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[22]' + value: + objectReference: {fileID: 7234671575472178318} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[23]' + value: + objectReference: {fileID: 7644303060894644761} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[24]' + value: + objectReference: {fileID: 6342242596158262178} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[25]' + value: + objectReference: {fileID: 9177724685447108587} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[26]' + value: + objectReference: {fileID: 1387675612811561426} + - target: {fileID: 6127926053758454367, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + propertyPath: 'm_Bones.Array.data[27]' + value: + objectReference: {fileID: 2704302988085415756} + m_RemovedComponents: + - {fileID: 6928166442939181747, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} +--- !u!4 &7575984174543547016 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4965486813692908940, guid: 8de3ce10cfc44634fa5c77bb3728d642, type: 3} + m_PrefabInstance: {fileID: 3299940631638146820} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab.meta b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab.meta new file mode 100644 index 0000000000..28cec9f2d7 --- /dev/null +++ b/Assets/ModelRenderer/Art/Models/models/players/通用装备/飞剑/飞鳐3/飞鳐3.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9c95e354c230d294a97aa1d302d4497c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙.meta b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙.meta new file mode 100644 index 0000000000..cbcb13dfe0 --- /dev/null +++ b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f15356e3ae9671a41b71dcbb11bd051b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures.meta b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures.meta new file mode 100644 index 0000000000..1b28a1740d --- /dev/null +++ b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ccf437bd627a9f34da72c6a13290dd91 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙.png b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙.png new file mode 100644 index 0000000000000000000000000000000000000000..c7fe632f7c352d0c6f26a91d7528e73a01434320 GIT binary patch literal 280753 zcmV(|K+(U6P)d75Yo)e+;GKv@HSi`-UKc{f)_y}fsoD(M}5?q zR+X|(OvXgij^zI{x4$o2w%6KwM^@Iyp!Uoi?#tcW{L9?T+}xM1cmMsr{BJ&A{g&MI zx-y4%Hxcpr`4Il$wWWW)xq3N_G*SrN-`re1IZol~ZW7OJ;=OtI63MqWiR1Ha1;1M7 zzPft%`E+-E{`_v0|8EcL9(ecebpNfPudY77TleRo_y6nro@MoHx*_uL`g(Q9@#pzP zRWX?yvRW?-DFy8Fp;N#US;M^+SjRm#`n>ARb#s7gv~C>X1E;*b^y56oNN%o=a!u6N zN%u3N1#UbKW_-h?;%-WjH*U{_Uk9$=t>@Eg&c{P`{7svmjyIN@&o3GWKOOsh2o7iJ z(=ogXcjYOk$|CQ}=jT9i{kra#*XvP}+jn=Osl%1qRq2h4H@*K`eT}vDaTKUOwVsZ{ zH!SH6*YxXB#!VZKtE*S#83TG$HzB!xceuJMV|3HUqR;|m-nR5Z@>kdArtw$D+rLqH zxSQ*oNU!Sxt~>u|{K5Tad}`iLbL-+)xNgKx-s&uWdcIrtang~~9qn0k)IJ05_?@0> zl^OQa+;a!%FCAT(xXXUdmedA0Z3=%yJe$L3;)fj27b_H>udnVzY%j^^Z%+)k@&C>L zZTEo0{80tBgg-!@ATUpa!H66A4KZz)wsq;o!9j} zC3r`@odagNu#K(0xh`tPOKLT@CC`Fsgxp?)&9k~?OXxVy;q$sf7zYa+V5-0;tvi?1 zDR6H zFLle(je~lZFsa}$UGw~^@wgS|f62b4-#jL+8*n(+vGUNHq?Nm@FA6VV`{t_ygZ_%Y zUZ*gB4Pn0S&sq-QgBEls0f!X)3+0mf+i+hZ__t~vi_q-Ht#tbJM6&vc{#tV0WoI!b z_gw0FGx;~K094@*q1F`^EC1R7v}&y9XZwys0rnr4!~S%6OAmBN4IJZ7@QPd(ED-!r#NQ0L$D4ZoRq90}bI z1~54O&AWXBZV!rp1(Y$u&}+Xr-im-qaa0J|)qG1~(}m8=pum=LuqEhgo+&(QpqB!#dY*^Jz=?_f@^E z*0i9f5oh^xM?aMDChe+O03t5`MBkdfD2_4p?7VfLW>A>%_xO-xx-i&pS^)?`O@j1< zag(drzlLRdyZSV_v70%3o3g5wdUJIftN*zLkXfFRvzVYg0oEA*_Vi2iKxJ6hHu)9d zUj>*2zXjcvFsT!wn*3>tg{2wam4$yY!pdwrnPILwp?rUFSDi9zBlu@ssefB>SH*y~ z9d6c=(fx&@G=*gJyut0P|?^~vQlTTL`;^e8; z664tNXP#v6^BEjX8L0U$>C+0|!_IGirf0vvN6iPFw(wTbkBEA$5DX~KLDH;5M@kaB z1&}SX#@!cKEYVzsVNeKMhbUWC0Gzi22p?ocxM|w~#CJzMe=c5Kh5wddcU?}UA^bz| z3pf;kBf-61!X70nAA;Z8I)uIQclmzC5@0x|b-MV~6@b1c{5dyGUt+M)MyWakGMZpv z|D4aS$%XxFCgK%cCb#~$fB z=62Hd9AjDMXczEHKMf51IeMch5taV7%B{lP=?M9VFXI__qK$@P{MI$7EA<7cgj(I! zxrcBl&`V#a9`1{3(!W!Gt;R|9JJfR^KdLti!5rEObqH+LBDYYlW%94?kn{C!&dd7{ z_V9D^;*y1rY%B6Iy*HE>W^pj{aq?Qi8i*d@7^z^x<{@x4{t;)DDWO1 z_owqBuaKWF`ZLEo31;;FZ}ben5dLlkCX6-JTi7$uRt$g+GvJ#30!dW{YM4YA27=!j z?yDGnXl9A$kY@ydMWD!lwGbDPe{;V`4|tW|1%53YIzc}9JjXh1JTa9J{)@?&Nit?d zT|H;iO88fNt8f+2=Quc|T;aRIutMBmd)k@jYnb(V>YU60t#<{P42aa}+%Yo(p;OXJ zeBHhy8bQg+K5X{@zly;P+XxdZ-d5;I{FPTO9;I0eJp#j6=2P zVL_|PF6FsT3FE4@ClcnkYnJUli)Zkh_iz7wFoSb{_W3Z4_NS%ILy__aSC)*5H0*YW*pqZc@@7}Z7BYf z@Lvh0z|#Ium202Rb(+fS0(8cW(U#_31iHAB7uzBq(9j@5rC042@A zs!yBQI_+7#jJqpBf29COL9R>)So$!|7r0GCHb?r);aPCrR2u;2`q+ZKp<6v-DvpC= z5;CzOlJpw1BCyX(d4X%LL{}(Q4^_~U(4TwUx%7&B3)ad+z_|}iCpGgWVe+5KE1nsP zTKwX|`lVjG_4t^qP|!4Kyj@cTOsxJZF%^7XP^mHzYhLNI21I)03Qj8lv7l4grpvm( zBTrT4SPX2do**1}U$R6=I zft$l%@R(B&DiEs8SttTWucg!if8p>l>5dEjx%S15OS(Mfh#}`Hp<=KJ(W|;R)R*Q) z;Jigcm@zxF*NiOqNw+f%`FU&Q?=<^9H!zh*=m_o;47IQ!G0bq7B22fHA-j#Fvyw2w z&urm!8m;-8z^~Z|qY$73ApAoKNP%uRucjtr%@uc77OV(}+MRX!wZE(kSdp4QE#UMn z@S{GZ`^a{Q(68t_{1pBLsKb<`Rd7o{uK>Q{!=ZPEa0h*16|$rtjFM3uO5!1&-@TPYxIo=XCzH8Br7r0m#Le5dmbY(al^~?Hw5BqR9fGM zPc1PgE<1*b5c4(Taw}p|_yNC84xY;d;qlXt{9WAPMq2`51sIytFqbW(ptpWkrludy zoeA(Ewpqk_gbz|UUN2as%)jda6T`-G#gkS7yu| zj5*SmRz6QaK`VSH8h6l2<*e)tioU9QZ3@hDoOP%bf;TTS_=q_MvH^di1AqOHBgs?v zN0=48riHQu!%Yi9pdtO;YKGO?2gsqUu$^b^FZU)8&l!z+5U_6n)cHD;zNK#i?~2~l z7kcmhl&fb#w&1$Jzite;ET$rR)Q0Y-i>V7?KPy;;E02RdA~gO$FZ@cgDAWBfZliN2 zN}uf%a)lWq6gxr2U@g{fZF_+)oW@f5?QTTWR-B20gb&cCg*nesEUFn=yTyQBU5O7K z#2Zca>^VDr1eU)yc{c(vH@RQ^DeGhf(a>P=mIHAp175lEY^8$QQca45&rf9_`(-M0 zjaRZsyK>6t88#G;((wX(zjSnD>+ui(BLm?&VTSw zbx+hxVLd%H#>uRBeF)d4cjaYEeR4#*dUE&$jF7i>*0IM=2>t5(j4%&J-va~V6Fn1K zUknL4GBYfQyt3@0;QIg!dM~t30{W115IQ`h^bT`+>mSC)N&q;#Ens~1XCEnlwj`3e zHNa(&*vJ z6J?sO$|PhULhBSRZw>g20IPG%JFG%c0@$WtOTYsBEn5OZvFIdmTw9yUNZFepN4Y#> ztU4b7{5lb^^6HqBwS86C4LGfOvMo%4twT&!;sU;mV=c#u!1OnS{|ZmZjNrFh3w|cv zXpaT=0x3qgVpU=o5@Z(s*6ar#9upWr>iXS@D?f`nfDe70e(^LPY+Dg>Fzo93UVI2c zAu%~rSi%;Tq;HW*75+7Eyz?!*+Mo;Ze4ASZRe+E1(j!|!+;g=G<>&_(X|#ASu2V_? z^_qg5JWG+a$}>!vdk6RS`e|nF0lNQ8c|A*8bRH$YisA1m0<8S=NYYWh9&s(=dM&g& z(@p3>d?Plj4hcZM>E=Rd(0Om_vi237LW_b&3BaKU;8udPPJhzj*SRS3)&O}}tihYn zS8RMB9tR4~1)u#O-gApEE|dWc=*2v9WZV6VC75z8{C5E}A-XZ;OyzNrY(gs?>ft~s zKq(79`=2~VN!4? z8H88PsX@K;Z06yU?)6a7T}--l{q7|W?Y>vw(GSJ9@F&W6BP@J3WlI1hfGsK4X)ryr zzJjm?1LsnWmI^*&RJhRn5#UaQ&qLtDoY{liQxqzSVNF*2n(P5u9r!rgGwXPlwYLe8NGKvT(|tOU$FB`~|bnApP_ za5N|yrW`!uEogRwE2TwH2!G}~eT{om$Djxt%4@5{-<0!7JkPTm@v#4=lBg{*p#-Qs z<`LcoIKondzhS+QID%~vzq|tA2{bDL71&*C)r6D2ua1U}Q35>J#PP1A&BDXnCiYW^ zpzzefX=2~pL&H}Y#ktdNT?Bt zzqR>_IG(%f4y)}U|GLI1YYiSn^gp+?zgnWtAIxgCGYxLn(xwTyU@8aI=4t#K#eSKG zl?4mxh2<>h2zlap?A=UCx9|^`vL6}w_+zK@1RN@@u9^%Z-gVE8wNj`WhzVfr83_nH z*?;sK?=?@HWip0&t`Q`MpiIzUsuqo)bTw=#QvlF=b}{<<9W1%tubyUqv>*frpq~5) zzfG4+EYe`aa@Gky_dFF=a3O3WNB@)k+RhNLXFUZL+Yw4%3E(V0m^5vVeQr^C4zTy9 zWB+^O&4vTxr831=QfWshEsr-~N-G52$^14m91xS&2;vQzYSr0)Fx`=d8F}!{{05lYyXx( z(uwoSpvb8zbne>ZmzNu)K&ls0At{!^H~Q|Go!S$Ad@CVwGenx&TRpKgir~J1U{L8 z{JR`1>N!8;0M2x@3Bq#Q9KYq8`HVCV-4>+cIyW-sPH^huo2GU!tPatw&N77AZ70cn@12U*LkdsQF%DM&2?X>tr!Kbo_@cdO*n|p2=#91R0yKLwlZ#)QEHJ z>)rT6_@e-f#4uIvt#phheNR28*5L*+gzN@0=y36D#-4PI@TVPp&kr)`q*L)Z?dXhZ z1^R-pNa2ed^U{if_rLp_3KKD96gnZ^?R~8bd}i1Pc-po4hQgC$0nVc_1D?Dd&>cKc zqSIRO&^t;12R7;d_Z80g?U%faS)2YP^^HN=*!u7k2A^DCDXW=*?NyY3;EV9`HqR>F zTUJ?eFWt`1e6kWyGPtiw)WyL)o@8F#5yhKR>~W;NM0#JqMBK*QNBD2KSX7Eu%x9*r z{$J6WC~a8Gjwo)07Nw(JJ-kZPLkRy8X`bb%UtIyPK(X+5#qdKBQ2Wj75ti8{LS+Tvld5JqUX6lvr3`3H8L+62e3Ss{7+SDqVil(3b=wG6w-We`PP`&E zJf`?6EPHEfTI5l^9CuC;0DhX%vq0*0%2ehv4+*|0=#M6vCxiNGYnR{h&DyY64w?^z}?5(@yg&Uu?4Uf<3>_39sR=9aB#H^qb= zN&xkX_CkybXJ1cCqN1x3;ITfX2*uVwRs5-h9DHhP{*6@l`>9mTL^4u6pwnW zW)bF@Wq4L2SCPjLRs@byj$^8_P!$xvhF5b`AwG$-?|sb->(^Xnv;yOPhsKaJ;p<8B zBL-FxD7-<_6C#u;CO$t~0g@rbzJWMoJ$OXMxG+P0m@S38GOmfZ1^Qm4h5u8by>a}8 zNxc^C3$+ZSwLL+1UD&j;qaCFj({cwp_k4Mef@Q+OShp{aAa`9Usw!@~`bF|QMqZb}2 zAHi=Vu5A$|PpMNwF(2V`K7>6ZTVQNajYwMosv=#%yKuczW%)hcV)9nSgTHdvdQcZz zIn`Aq;HS{8aqd|GP7<^;r+tLB=ez{x}Szg>+mx6xMFVUIqq*3jnW>U2>_$d1=J5i#9+>Ph>vJ8 zt}m`ZJUp!g;8O2V&nX=DxW^eLar`~-f%hrvb=%%U?^i`x*uAi~#LO$>mzai^f2;CD zmsjfwAT^z5RuZ*oOn<{b3$afQ;GWCX`b?e*mN4o62Paq+&u6}HhNC>(_epr1vJV|x z%!yOE@M0#RC*s{Zo%N5rsyY3k@}6N}c1km;p$gSKe?a2%tcE4Mgi(H=dX!)bA{YlS zJV%|2@DJKhd6Pzfqi&3?eFZ0tM=RW75|jj-oa;=J93Cm_zoCl)qv+8OgigE76}Ypg zFv<)^!C4=kH@5&vIxwu6>MMPtW~8hgRwon^`giVo!za|aa}0PUs+N&)BL&z2&HLX2 zHrwxRpe-eT;4%*4C#~>NGU!Wt_{vi)Uy}zYp3;mOT(`m%{q9Jm`$T``U5ZX8Dx`d$ zb;-KGr{a~t`d+zk*6AJFo~lEb|7jP_ZBfuwh;tuG=S?p9Htc3DM{sdLj?O-WQyW-p z*&6k`jDL)l$_#!#=+laTizP2}fIh(TU`OA1E)(}m0|evwYB>BD_o7(TS6ajT4~+il z&H0&aCAfKoRQz&UVTeyJYXG?p*vq`=(}|q`9B?=beLn-sy)@ND z?}+DwoPpN~=1Fz9f1f32oOMcxhFm=e`1zvMkf}B^#j6)|G=wYPuM4uLg@A`SP3>0Cyt0Gy9nZ9h)iiDF zTLM``c#9y^!L%TDCXgzV6Q#nwC0vCk`I?+NyFK7HFJ_r=oRy=Nqtn84-|E}CGXy4l z97mtpt->|a=uU%;NnX=u%G(1m*;I!)VTFR?d&`GHqgp zLt({P`0uTJOjje<_{)?wLvZ|_<-=Pfv1hEd!0hTAa{lRG*msPPh5Z!3LQ>-=&W%82 zx*N%>sB?4IWv()P#Rr7O6#9vmac`tI1h-&Uu1cU)LVM_NjDzFANr7cPwA|}Q@{yl> znWxU5HSmQ`wLY1pUixpo1y6!qH)VJz+gXSP%hPz3D zhBE9oaj-}X9vvWa9j9_(#8mnVdO_AO!f zv-`_ozjo|JsJE!;D^3QSb5r;y;QjkMDFurXQ}h2K3P9ZpM=)-grv3R{7^sCmVKlI} zIy#CKYB(m$`950}!Q=|wUnYTtz5%Tme4wnv&wz$H0eDP3@02 zI^2V*A9YEFX-(V0-+fe9552ARxherQ-h!VvE(1b=@|gj{S+M%qeK1zcjy?A2gUX15 zE(M0LwF$H`JK|27*y)cxUZq$BFV6mWTApdg92Y14%)So*_F{bH@rF$4phwSL_^$wx zUS?dG4>RsmAnAYA&-AO~$=l0N6!#clx!4@PmY;C|zv&3S(o$Xd`!0Ylc@2=N+IhbC z@So$4MfymIIvS|?%#r%7iIyCX2!DPzMR08?0nopd&&e~DuPXKQX_51R-+!JZ^!>_n zycHk@ViRrs@ae8`)(Yz46C`4f$hbH92e zb=2{Kac2NO%;*al+CnhWw8cn6@pqeZCS{2Da|lj zt6Zlo&>JD|=WirM)G|ln5#jHNw^g5x#@A0f9vZqU*L^yE&yVv1h3@Lm6NWkVeq?G^ zD**ifV+Y=h-sMf9uQW3{(~W(@Mmd5Dz5%WciCOXYdKu3pKJ{u{zsj~L+$u!2l{&c3 z_5{hMVz4o%Vf<&y%{stEj_AXE2Mmpacknyq$W!wH>*q6hEvQZjEzs35(?xu~4g5>5^9O&cFhI;6J1y@T@TN*^4g9 zs!9O)w_K$G_i=~gP#}Bo$Q~;J9cJqp5l-IJ001BWNklzt1*a1?{sS|QTHUyITEd@b<~Uh~-s0$mUSM2)LLrgz9_Ozki_QJs^ATtZ_~$J(3{f`5Zi zxO4mDzSh};gZ8E36)}wz<6$RvGuA@_?c9i9Zx?#35Sp7FnM$a z#QUdF)*`lHYS+3OpB2t*2lUMthXjC*G*-&TII?o_WQ;KQwn|)0Nom8ohO$j!0B#%oayyK#AnU?)%%g|hCR5TTS2POG& z@Rz`$_S1jSZvC0)=$9q!T-v04<7Um zV_b%%`usUmTDJfNcip!`3DEG+2P!jsU0ciIknlXO!^$-X56gi7v#n8f9#Zf~-ljw| zeXdI!edRuhepLJEdpo-1Rtc^(bqvS&keJW59Afhu$DCC+$%npgU-=5W>h3dVhPZ!0 zH^!i7#2DXPJ=|)Blb?lyezpX}Jr|<}<8MqZjtAyrjNhmu{O$Jrz3RcUTOeMjJ~8c( zt11D;Gq8Q7zX*P>{HO32ZkzcX_bDlvd!{j!+gwgHJb+dBUs}DcB#@5|b*FCPfv75B zZ2`MJe$rD=Khi5_@2xCwl(&9c{+~0XOs;7ZMl_DF93BOI6BGSkKu2{ ztpMKmFoi$)f(gD6!CSzg6Vu9e_Z-hf!`HkT<8V&P$35?oJ_A*)(jM>Fv;ce|_pjyc z)%|P4e=1hAU??(cKRn4|aP*$!Qrc$w>38@20=iaIOZ>|Qv2Wrnc@X|y{p0)R1&V!y zf0s`;xdOCrw0?b$XI{-d^?G)cuR83x2lg47LlOAN7J!Cx3V!0_b+J5Uc~1Bn&rfAy z;6Zz&lkGdsWt{TqLI~Vl8R4QKLI_?3fv3Lr%Cj9xKv)7axL5~J0_v-Fy`7W5gukxx zw-{_?{xwY5@y_cPPV6e6-40aE9$%l2$!cAHs#4)yU$1=PROl>hBT(A{qi+)#p-&yG zkz@G!lYTgq0LSx;f^rAPG)}@zc#!9le$~}m%-HAW-hY&UY6-AG4ccw(-GX#^wJiuE^TkfP;MfvYHBT)kR(ds}hG}!D z6@DYU*Pk1p`%$g~zG-HIUW~w}*e88DziG{Y;JCoKKi!90d;m1?r(Q(mQ76v; zWPAF#q*^_Z^%uEE)#@?0sLnPV)o>eS6^tw4Z*UqWiFKD>*nC;tm^6TDeJ7vxSR@|z zEswqL5@dSp&2PxgnNFY{{Ie2ZfT)A2jgP?f*8!Qk&^Dt%(#= zap{r^-SJTZ9@U`A2fn%juvK;y{-2Vm8P2PIudY4$VSYZ`Q3bj4o$^gc;g<==bC_aF zT;PEUGOn6zNUP?dfYl#QFeW8~>g@pD6kyfw?>~nUAb2bTQwh*>WuV})tHkTLFYznR zISIZ5(FJ*`a0k5iUr#qm_bdEm^Cm0xq-%zE!)*| z_UVU0Ec`S7Oc4s@wa=yW1M0pY=)#|KMLo_< zh0oVjuj99TlmLG0c|WO+{_qg6Oh?x{XpwPXp367S1}^$ko%c0p1;HPRK(6Kq$JOyF zb8BJV$2nfXq*5mwc`Vx|*ust?YMB4wb%XG>&Muig7}qx|0O$7n>m@Pl<-kIggMO-` z?sB%tpBhiWPnb!R3^@oX!@%vkO3{KE?GEs`03mc_27C0B&jfUQa}SRJb0X#E83jj8 z=H_w)JkA@iho_08>bz=&Xp>L8XG~_Bc?fQ_D+Hwp)rA3D!Xr3q7mvs3M;U%vgxh%` zmUy+Mw68OdO<|w7qbT|S#~!?#-)WAAh!`ORb|@R{udBa(1@JeTZ8tI%POf!(KP@)k zKk9oiUDpxI3->y>hZz&v;}rw@ad(2LUrYN0uy8za)o?IUluSha7?}|M^hY#q;G4@1 z@Q>yk|IL0F>E3^&ZtEPBRb5xWI1}LZ1Y8-Lnr}C(dbrPmgh8fy8)s~rBu>J$d>CvM zUW5--)5<>CEn5lK*WTStsG28E_$j`&$%2@kqHEfTui0DFg}DtpeQg}s?-m#{p5oP> z_)R3jfzV3c0*EbKghP2UJ|en{H1{NlLQI_selLie^~Lx~eW{jR(67@J3H?o;B?}ex zwFTx@--V|;$?thti=H?$U`0FNGtRi3?}<5}eSEfgS=~Ns&PS(Ep{0DG^w{z0n#C(XSlwSuy(_@e~iP!6V3zxb>TN^GHU42kG=)91P^f_~|91x?v$h#La2QU;7->`a-*bYC~t&tF5*S!*uMF@2hrz8ooia^O5J}JH&6Me z;PbwC75=s0I&mCtLgm@v?mNx#RfDX`g>j+?SQ&5}{yZZ{r#yTAJMD7WzMbQ`-A7{qt-bbE{g+Z0t(@uz*YG7{6R}! zI3}0Y@u=9i1HKKg3jd07CB&651-imFEGC-sw!lytMq&*= zNTd0~!>tYzO0iHs`{zTE`275qfYHC%0^p3*_klmJ{w@5+;kWB~D6ZzI;Vt1$dKc6t zUi-l8g-NRpIPe*M5BG|hK(G)_A>4R|sGOFJBJLf~xM8M=2`3nswn>p8C0tQe!LOvV z4o!M8y$TId&*EA@!f-!*e}A`T|2f0`>x4(uqkoID@V9Tl*DV2@I!77cOOV{)b*Xbc z!@C?m+h=U*wUyK>97J4q9AXzw>0eFl`|qdJwP&^jD&eYZgtGg( z3VgyGw?-zd%_x`Q zv6%@Q0oSSHD4-Vn=lZZ@IT>u59wDG+A65pjgT*8gem=~(WZSs%!h2)EQt(VRVk9N4 z21z!om6RB(1bS3C%t1bvzU799Tl2duxVOf!`k#WI%pSi|;i?3j!jBRVTSUss9)H{q zu;S4Bxe@-i>R z`0UHVg^3&cu5aGQAvX~7t@Rh}@ed7Tw3_$)A>Jy48(OlPNpzDIYwhQo~VfDH`0}EeehFL*8pW}U zQCyES^K=|DA#y1->sjM>!(AY$K1+L)OX*z^T%}W{`odO|&2p07W=|FR1Ab{~=5BRj zk2aXdmhJvwC zMy9I&hER-WaC_dl&J%wr*O~DRuOLd(?B@zo!q>^a9AyFE_x8v5_E9$U;=3O$&}Xw% zU$4-C4&@gUv*;ugmqcxN!{S3nF~5{Acz9_W*(zzfdo&9r_!kuhSzv(_WxM~tEgbWF zfWkO<^op;#%*=;g&tYro|HS<)Y5ns_eBR)JA0D0+(!%ie;diQ0X=F+~lz_O>TezYg z3Bun0v+5Ra3q_5Vw(xk+A+Ncz&pIKeVnrXcb3gX{1FuZ-2@|OF=k8{lQs7WH3-^~p z?D9KVZx;C!!-(Qu1>9KVkGlqV#*}}rG|nX9yr^+gM=bs0lN-eJTUox~5TFs;_q*?Y zu09IFmhd;RR@kkTdQCqHGjXaS&;VGOPbENb9L&Rc^-p;Y6FO>D`-eRoQZywy8m!W_>+q(E`Mp~cGeXfaoNJ%>adD}G1)mZrh)oT;{tQ4 z&M-A@FAVHf9VVmS%lO9lIDCcjd8+Se)G0bMExPPW=+YhKJUc$Z3Afc3J6SG{_IRAc z4N0o52uRmuQ((5Sb|qlaU*xjfQ+cZru)FQn5ZDUPqL)YNOWA!)7l>8JuZFE6d2r{J zgvw7{cgJ~4a&}kSU#@V0KIyTp=1WmWL7KGX_(b~8<+yjnuf1_U$2=gI1;$6^B>e9s z1LA<)Y`g%(gbq`?AN<&gj;$o1St|jFc*hH+O&#Hty%nBV@t64xelJ9f3S9;_Ssu?N zPb9WK7XB^z=n;#-TyPzwj)*r~0CwuAcqQNic`sU#oiev0w5#x*<-I}R zJ5QMBTW3x|Zy@=rIGO>$>@Xg(RpIaY5^p?Ju?V4;1c)NA#}qFT{*{m^@Hglz_^H|) z`y2xcZp`^U)VJ4!P6HkmVi+d7DRL?TD3pMVevcS%1g>Mf@c2Z@~NTUsWn1th(G46J398 zI9@m~tu(xMTJ?W>-(R#89cCZf++WWNG!#dVU!(xg8GDXF=+465@f?^lv#bo%=|^#U zD}5;i#zS6*P0$ErU!}-_itZxaRPIDiR>1kyrk2U;z23@PX1$eXZxHGva*_BJO;Zu5 ziN8{qtpnU876k7ESfE6sLVO^tDgt{#)^$4Nzob&n$AsdrdE?&*e=g*z&O-V@a_31r z+&At$Zzu$Q&64{?umb3Y-ds=|QF1NfY}oVAfVN=p6#?d^)5BU^`tO`I!1(On=>tHv zM&VzlvhkYz^htLo_y8bz&ME*$@BK%OmKypdGP)cq0H?BXlt*JM{2{bBDG%Y3-UeyJ zw!a|lYHQgu^Q#dx7w@*(1yRf5Kv`A<=C(m29OrR|d$>*fr0dJi)6B!vzg1^n{m6l{ zvA0quh9_*~FZ4*y5w{ZfC>HdK`~s>7xuvVebNky*!1oJeCIbV1^k*W-f{HTQFzXSi zE;zc%a8aGiyULK`IxiFv@!@8lq^*mr*SQ}bb}zzKtlSTgbNpcsKeh!*96{rl_%l5; zYVhO$W;HbaqsJHO$hu{{BYPs_dkw%n$6lsX7U8qduYMLeyo!fLQa*96OYO5drli|N z=j4OoYdT4KUhONNm>))qAL9p3^5+~SJ_K+rqqYNp?s|I7+hO(W@v$l0^D02;2i3*& z75>aIkj4AyS!U!lg022hoE2!(Ys^2_8Nb$7;X1!5(da`k5@A{;j60_+xvT*#x>FC- zIOD7JNZ9b)F2_|`A#UOtJ=^OKhy?)QI9O~Plxdr@2PSUZU#>BSoaXrn5XkZU3tYUO zCQ0Q!ipcT@UURQsn8dT5So*-}_w2Er#vwdoQU9>(&3pay^~aZ|6$P+xd44D!_j;;767JqBeP(76d3O3`4Bqb+>-- zG-MkKS1Ao!C;TaccE_Ct%I}l+rZ-R1_^=Vcs*gQ{zZLW=ok3vy7B>ij`NL@_e~iwz z1A6uE?FZyrq%n>P`&LsFfsfjk;fsLoL&^}?Pj`Op&zQOufXQU@c)-x6tsjXsey4VR zXP=dR{{{Z?hjc6hwhok}5oA)}?2o7T%b?x*5C#V>WP;f`>Fd>H$@=zSE1!Y&;GRNe zTEXY%_vGW18!|Exp{GGdOaGE4H{r%({I%AOZw52DnfT#Y*%U%4{*&1YqUb~{g5jHNubrK@9FB=x5_2?B9~*XAMn7l)m_q{wTFGeU_+DBI@&(hU>V0DUPq1?_7Plu%_&z zxz{U1|EB;V$%{CHd9L{R5`T`bfS<|~wBWl02QXV(Z@vu3IQV)Xb$rf+m*eqmA*gXR z{GB)i7xduU-A?H{Vz%gu6e}Ihx996~1)FYuj4V^>8~xzdXx%I~LRy z{+opmY2H)D*s$>PIwocbPXA(`)qhn4mNNiD_|FypsmWi{wrWPlq-t-*?h3Qo=Xa+C z8^7A2RuY0K3P(8bB(5p^H#!Vhlz@l(W$nn91^IEQk==uCzp5^_7eu6|T&z|s06l1# z!Gio$ey0`L>ZmvSy}UXJj+B76V6T>*Qqd`FTf0#T%)lnil=4n7L~vf>fP&O2xozdO z5Us-A%D`qh9?Q+dGm);0eSAR{#HBd-hYR$+YVR&{F^8GGlMM+JUSfK!<3rr`{S?zY&qUcz}X*9%U|RY zKWDGcRc4W+D|c)gAmjW-ow3e4OB}H?#*fc0T8NA9<-7}JzwEuP{DaW12LM_9 zTlj->weqipoMT8?$;e^`mpx?RZ=sLBAx$Kv`-xLI$<9w5N3!#QlU08e z{?Fx-iW;uUPZwMkpy1neJA-D%W1n|N9mcn-VaJ7EU_vu=zvE|k%L=f<(I1@GxJvpo z%@<)`l2^>kur(b)yfwKijMMS`tLZQozpQ8avqA>rs%|PGC351g%1cRK1#2JF@XmOy z^77#E+2SWP4t)L{Az30~yNfNa{LL|UUU2%SpjgV1`Iij2-70gJc1hFkm#m?cPj|(s zx*2B6Hx2bPM2gM0?}+XGet z9DmA>?T`k5@b7Y_${fHg{A)XipIhqLsTThBfjL?*C<@`f<<6b~sPFxQz`{4o5qj_c zp!e%xBAmR|hYrPfbU~_^jo!H6rvbnT96BzO&Wm_bxVyw|9F@!qHW zYffoYm;0Mj!_q!>9fbST&@AQaq#7Uf8J}wmO{=W%DdIW4LbY&Z4x&JKSL_wbEXDrM zOCB~1;ijq|uJ!$Rl#O&YBFE}qaicfX4z-2-GR*!K$iywBDIMXciLz2CC_i0iC^qdW zmqAox)kS!{msxRziA$i=cFB`K@TLrG}-;a^C?%mhj3rD=b4vf{;ZKP-==e!u1nxkebv~>U>GMHu%rvNDgkvh z2R$vLMWzksGBe35y)m}OxdT6WTn`0LSpbeOwDOMj=;u8WIbzTo?Wp~{(F{kKE*3hS zF#+;9>CN!h=!z;ov3oPctU_<8nBpCcw77*&S;;LZS`s4DOI!`sI-;W}qPZh^*+ zBA|OcM}HI6y*c63dAAx5&U9J%ig@+I+O|Bv*#^K8z~YJ`ud`A3iLzD z(Jt-B_#8aU6bJj8G#o>^%?!Y1MFf zEn^|;0o<=T2-8ncOd=~8SWSZy%@#*FuTl^~VVN9LLS2G?2>-;9R$Wo{5&m{w zWyZ7U1)e*%JDFFp-8m>Lczk9=2{`AxFhuyX*xAd1@DC;6973hXB1}G(gbxLNymRjv zpadO&^J{llb|0U#ILrBfGVzFImi`(n}O&nFoZvmhPG`@S(m_6YSKH6f2htIDHf0v2i=jYp>X1w4( zD8BwUc!3hI_4D9Z82Gck;H#4W;s26%CzGa~6ud!9G?-OEZ+JkAKgM68X3&D(@5Oud zKLJX>!YQIo2=bCeQ+t^JbCOfn6ZNfmDy|wvXj^cHB66-iJHo%>{Ayvh?L?VY`Y3bN zua{J!t=fW%F_Y?Ss$t_CWaFow?1v=+rUTv!a0j#Ag4?R=iP|BE{M!SYioga_+{+UR z$6n%@_^rH*E32~qzqsgA=GnQqw$otpha#YPVVbXVov``d=(~k?V9{KilQ}WBc8ZVa zszk%2HMDWj3`E6i7r6uEDV|x$Zm1FN8;lJyCl-kcvj>Q}f;r}e2ek%gu zhkM{FqPP^QZ=2@@Hq6Ruvh>1c6HMA#$Y0>zkAsr{OtS){vrNH!z@7K`b0GtXW`GQdHxaa&LC`u z5-@*4X~7>#L3SQxSlJ*SS{T1B{Ec(^JA_xYxGHRBz7nwTFHxHpS}}==Jjev%vq-Rj5~f1?4XqT($ofE&1yew(5K6wavY)k}Sx(?>Xj0ffWJ6ZQ+VI z%4Dy8XTCfY^Zyo(Q*?k5uscp0a~k}t{=4wEyomC(>SyIY!b8Bb`bYRzXC)xwih!*! zdtu*7={p3%V!ZXSmqcLwB9s9h98s*!Rc>V%($bRM@CB6U+4hHkexL7*Wn0W4RX+MbdH6ydJJVbs zgyS~5Xq)+jFk%F-z>6ba+)pAxCErJa+Vh@Q0wV;qj~-6vue?>q{RCJF?lr%@|MYbA zg8+!*V@323KWcxEwfFtqI7>eEd-oqy zhnTbI9m*Qp&{4-A%qT;D->d-4oF%|sx*1a^!kCmhL{(74Ak$!9TwpEE?@rcETwTeiLAdgO zSA>L1ybr4ojfDZm%W!sQm6EG{uOR7ytVoV7V@aPfeAPmO~J$f z8wf^FnKiA4F!hb$1wHD;C$7&WnXt6v7UHaLApXbf?4=z5yO_#L{mzxO1mNHa4 z!{C$5kNN6&1y4B({|S>O+PN*{X8>Hs3H-|if+p#kU$_qDW3+V7^7S=(!E^3QaD_0x zAY*-Nhw^&9`X*FGhcfL2Tj!q@u7?NyH6ebG@JEQ-A^15c_@EUqj)Qb}9Q>|Ih~g3c z-)WEklMcfDAXbU+zpryeFp&PSM37)Fazr32=T`;sw+`#AfXl<{yk%9979#LhG$n6E z6nKL5J_HmZ1b@U!_&dx^fVjTUh{%mUJ5u5pvhM%04KTL=wt6hH!@v*%T?we)M}auJ z8Yf$wFqr%qY72jqffL1LsmI=0_>WElYD)ni9^vo9B%#D5)7T?k%qm_n!l+Lv0Y2rA z;Ac|st4aXvTWY8@5rrq-nB+B;+NQJ6^E0Oz<@~zL6d=HD2*#E2U>t!Ud%WW>FlGi` zC6uIJC%DzVuT>MT{wu!1kY+T@#eAwUnhCQLI4k(y*gl(gDeg!KsP%Mxp!Z5&BIS2Z zfO7_S@oI?5)1W)NbkSv{qQLDb2OWb=tk#Ho`qp!u+*|3JacKcS@K50n;2Gh;Y1mCi z{6?CYS2>Uw<{b7dPgO_AAUK;o1gxL+1}6sK229&y{V3VsFl$%I`()9t>9G zEjJGXmPCX%5CJ(zcamHcQToCL*Pw+?Uzk5ma-z5iKwTO2~PRtU^pBYf@Xi202n9t=iL!KAas z!Q6B|wK{X`^=RN#!1q}oP&V^0zzno+BP0Gu@Pj)EEGA;&+45rL4}8=oAvB>ULDG*| zO)kSYeAWvo%^Y>(J%1PQS%stha(}lb!iuS~C$?vjPdw2FYCoS(z77q$jGp3_y?Ylp z#&9YJDRh;40jQxPpKOAqL1>&Y- zD^zaM*X)h({vG^ml;i%Gi6yW~OJxwA>$-!X&cjbymHV0Z;=Ou@;(C8v z=Y0OF`upkd6xP~dL1rBJp@5Y(%XDy$>0c>7XmGIZ#_QvvX+-?N@0F3DM z-+KGsI;A~PXF5@x8&0M8qLvXc{<=;O>o?hOQcwb(^VwgN`fJUoFkg1^O-zK{O$MuP zBSf4gFhj}UgiwMYi|gMlC`qfJg+D$W$@i`ayCVTch^(=%P^=!z_!+v2V+E8C^(L&N zbXNLl?w@HPxaZT)A26|=6aGJ;CiH7i6=lGbv#g(ha&&ys+fTyd%%KeAXtqK1$EbL} zWzU@w{$Bmtg0zR@DBkU}Zva0hLvYz!+hUX*>1xxFWd}S{*cf^GHO=Lb1iaH~yyG(a zo@XJvs}$^I{KEK^Kua75es~m@j9I{=1VE#FlJ;kDG0$QaEa+44FXx?F`U3gIp>AQ= zLlkF%8r=shJQu}K{_BQ<=>FToOZ-%96#ho2PyqHE762TIfKC5D?Ch%phed$Ph$5V0 zXDjd?Kff}pigl0ox>4P{#4vG42YlYmu!1M3w@{m zQo^6|x~ZPI{|B8pWB!{5Scsi79Gj2Wis<%uoc;VJzX+o@<@+Uoy*PkIvE*c#Jm%D! z7S*ll*rGx{3s+A5^V@T_0H6r)nmO;sdn%qy~HaA8xY*Hif4qyWS#Ag8eHq*ea3$1iGD3xDFmq>+h)>tRHqc?kt2 zzz$`=Fn(JACBP1Q0M0OuKjp`&U(AY0&W~ptlevGriWL-0a%EZ_;3xl5!!4Tj>VLIw zbQ04}q6N4G(GD2V!}Om3Z?PuC${d+6`rCbdqNsI}SNA2BK3PVuB%BK}MnxE|lmO?g zgy}f>Q<)=f3#QVFpvWto7wP<35uX4kE@qoylt8VF@D zw*aQ1(s8!Fo&p}6y*{m+c~kNJ6v2i002VA!VJ z5;9@Fo+DOr*&>`#l+mYE<*Oy<491+y%5AOwSz!Axxh((>H%N!OcmrS}+6aWjM&lC~ z5^2nygzHnI+gj%*ttRes8z8n!g_Dix2&;b>TPt{VaqFV}20&K?xJi(yS?RY6ekS^n z@JIgTnS;KC?lSTD6mWMJDFD3x$Tk4`A6*HE-3WD9Xll&XN{~F~H*HzLjML3DadG!I zL&RIqKdIyYoD+pp|6FYdnun|@Ci^OMZ5ndZctZhr9K^au&=%0VTge^NCP?;lIIZhj z0bMUvhjBHf{J8_8u&okN9!*nUjq-KKFpwHE5OU=)`b_;*2Yj>^0%|p%{p!{Ybp3C3 z_l#bk6#}Q~{3d6MffWazF-WU`nXl_Rwl+rHW2B`iTM=Lz=I9JUTg|g&WC0xarY9|s z6|Av+bV(aBpNAlHL@MOGBt!*AZ^ZVE%NkM3-vT%DJJtAjhQ>X<>6<v6@piwKYax%|_sZY=!In$n zIbr_Ycq=VdpdSUV3)<$wfpade5bxB8j$0~8bQ;K!1X%))h$@W%qcgEF%n;5+{#ia+VV9dH_qPio^2I-K{d&YNBR zZU9hEe(-+eA*uxqq0J)A-!nPr%dx2`Z5cnXJ^ME^Pg66M^AMA*B zX6uj(;EH~gkE5KhR4OfaO~}PzccpKmpQfx(-hAtUyboGV-@Mb^B0@@e{*m_89F<@F zO9DXn*M@vh?Z3-+H$90M049*{6zG*g3HU&76~}<^Ls4MPfy?+5JnIntcKvjyeS zmZ?a}sSbfvj1V(vD{dw#5Ca(g(kKhk3in$NZ`B!vkDrAtR zjO&4O>A+{v9wW-_TL4pO==ke1c*+mW-`al#n_;XZ{BUl+ndFFF|AhnC)v)8<;`bS! zeXxgOQ3jGev!2A)R~5-m-_8D0cq##V$Xh%sC4N}dV3LDTHlTd8;CHHpr=P7*SAOHP zFYzt-5ma1QW8oj?090qJ0{+z%A2-_}{6AV+l){ap4ng*Efl|-{9RVum6`_3u{}lcK zasJOw?HBj&R!K)`S??`a;ynK*?Nl1g&S5@z>!jley36TA+9yp$eiC&7iuwOjthAP# zwao^CZ5$`UlvDC|#+JfXR8Mk4Ly62!4KOW4tG6Va?4fo(r4VdjvJr#<6oILNfZ(`J8tTc;`? zt30PmUQ$I%Fe-k#N`TwF6B zdrN?H(r5#}?^#Kz@4N61B|_=={1gmPRf=#?TG_T(wQ;N$C&-%v=ELqIUmyb_r}Z$; zeg$yP{2zH#-}%uXBJ51xs{bh$a}j#op;>6aij(owIqSF&v9=vg2=VS5W1oec<<9r* zlf*YN-E<`Yd{zP?jNliJ?obBm`2&=I$EHx!5vJMnZ#Cl|DO9}>@^m`cfFWv2j)nnY z2YyD^#yXN~2XSF?FReJF$pI_CFkp-vo}6A~`_6uZK0n_8IH1>mG5Pe$*KL3bjo{}8 z&f)ahhH7HX?7mPJpNeG5fjuCU04A)>GYGa&0;D~b1Ds*5+YV z^^PlW=Y*8Tu>k%t+ z;OGp$u1J|)`FqX=C``t<6akFuXW9pDF1E^8T3N>|&O)dP)McJ3v(jVF+?-ia2uYmt z{7_7q#8*XtXDbARaW_&_eU4_tod1j9$K7h-a+{n4;X_@h2ZG=A0nS3n*Vz(>5)iKS zxAE9#R+erp+(~su;5X(zxN6SjEaFnH3izJK*U5Gm1W*?+#C5p-yn=zol_wO*o%v0D zn4>pHB+t(c*xJYB!2-~?*@(viz(v}9^&ff2r=N$2I2;SSr&Q4IH8R0tiDRKY>+*ayDSJ(`B$RV7wg`;2y}&#J6^ zV4R_kfKr=|zVH4nb#CSkt}0~3ii2Q_lm8x1;lfqgiwNTRsXxLwOg@i2VbT*vz!`7C zL|KG^Q<{~4fHh9&BO;bR!Jx_*LDckR9g`n4L9qfbk5~XaS0SGDwiS+f%lp_CpkZEB zKF<@Z0XPnNA$UC+_9L+hP4NQ8((b0bLmhGMw*-i7KD7Zpq*|z4-LEdKhIaE~alu|I z`?;(dzZV>efh|73ROdZ!;t&9j>YRaF!ovMpGI+=wWd(Y5&2H3<`arAQHQ}tjvqOw^ zg@QC&0qhg!%VwaVx~lKn4fCS4QjsdO==~wkb6&XaqJOFubQeDLP@vQodPQ~;9o)5y z6>JxHWNPq0hIMJDphw9fN+#{)j}<6-U)?eiTf(d?=@r!S;Q= zy2SN{7XF{|Yf7ASt&WEAZX**HpGx8$)Oim&An~k|h*S6rwr`I`MH%=})X3caGOpfh zg9%t0$M?#UENEKZJMsjz@Q>{W5d_-VM>?!HE?cRD7g2C*GYrm#h>2HMVXDcdn+k$bEBq$#rI8xr_<+zECE!wYr{KE4uL9##K1k3j&P(zD zkDIWXq$}6xm$ZH1pE)ZICN0l(@&cCS!enr+^LRS{w~p^FbfsIj!*N+|Wtgs=7ljrf&gWXbsn;XpE#^* zd$qNd!sP-VCi*mK+y!TaxpNtl(z5SPSuP)xhcZ8w|xLY7=I&%>>=ZL~p836B|Dcb6Cn6HTW98c0crrFI`4}W*J+J-o(0C?4k@V8^- zZ{bha6O?o&4+Yiz5DR{M+{fGl@nsokPFpVL+fmY|tV&Vt0>-AH-~U}3sJc2S*ld<5 zQE@2|Hx1%g{cpL3eS#qTtAjCx5>O*+m_ZT@mI>~Y>h2}`>0rhq!rgLc&?r5-N`Tv6 z^Rq(onAR`_{LI4N1i94~$609m89!FmUC35|4EMY)Z;QzdydBAQKd+!H^c{JkUR^%s zBE&g2{ki(zOwCBqPB?hXsVb9h-n11qvmmXcPkN#pV2nfa??soY%&h|@g_X*5#v`!8 z<-Uh6AYeJbd;eLVErsUN#aj*z3%3;k&u@Ir-*_92>2GD;IMy@IvFTU3R}@ME0@$l? z=%NaJa@nL0+&4M@ZW9ke1&0z4hsWG6iW>^ah_%X zI%EcYRpF2~n6!weOsV?*Z`hS%h5$z{1}dS^c93eD9f=3D(yA+6&RX z-3V&{t9}cA28E8c@Hg)6TliOE1jhM0e6<49{S`h~go9zwnK%XsH?{!udSgz=h}0jh z66Q8RwgJKt;DqKge9I8F#C!}3fCw07Iw#Y{fO>lZMF3bc*NWBW0(>X5Egkkz1ju)5 z6P7b$&A>5JaG0K5hc5gF#4rArVPaBu;aw|oQ-o}V+soH!r$1NRJ-ok8R5u!!`Y_qI zR{w@czs&WP(jKLJ9de6?ah+y)h7MwbR&y9z&hgl2dBWB_HC&OHCNgfd1wb76gnycb ziGr>XjHQ8ojgxV)@&n6=pKx$}>W4Cx2z=725GGvN3@d-%6%W(4@MK=6fq)uryP|9W z0B^CvfWUU$oLNOp1%d5`4}2O{4MBk5!b}_?l`ULb`_Cjl3ZCD{MLBff;6)KAe;8Vv z{Rp>u2f)UkF8I3wF%|ui*8;Q){5r1+cm%`Z)0C+W^SrB`49ICU(qpHud?9R&k`94p z)Xx^s08mfEGoA=cJGO3dR@5Bdedy?(ttgE#7HMRXtpObt;g72d0Cxr4s~(?3%OAu8 zsuiG~5n!vTuKXWGOI7$|{tpE}_-zI7`7qj6&r-}SfF!EXb}1d&reM)<^Ca@&x*6Tp1q#=)j^PgOb&txjZ9&`76?N`AS2u#)YiwBdYU1!X|IPG zf?vD)Odw5c_b~PHgk^>B%$WnqEN)(ML_L6ag>rD?X0`&)m{s?Rz)#2JE|IQ6#$KLa zh0`vS6g^ia?=<{a6&^9Bb$Rn*9A`X1goELX{Cmu&uly0@d&e5p zyKbvJWzO_`QP)8Nk<@RkT&N*)s{iR{yHM~{ofv12RjmWz`s|E*zHuyMvCtHGoSyj) z@lA;Z8Q*6>@Uq{Cqo*RIIl#PPPjg{LOT%MzELb>)4_W~Z1RuuYpzm|8$I7ebytjsmkiomm^mf`11{ok$m*GevOcWp1!|f0bCk@Vz4~XZ%aeGfO+nx zKb>^ zFbCw>lAsMgDA#=`E285dWO(zf>L6tkD^u2!+hAk+1=%4t>4$cyZXa|i1s_Wf^CDVa z`;PC&j9BHSOu_c>h{hr*{Ne>s{Y~easHft zOZYo&3Q|XI0{{RZ07*naRR4^y@Q+ta47A~UDw2Op-VLA<)wMuY`;R%G_5uHc`qsA( z`t5{*W(KV}dle8Sz+{9Is00k}6V{#_45fbsd^?!+4Nf`edIfi@^7$bsYz;7g57_vb zTixtX1mahO%`ojQFoyNy?^?UlxBNYU?s)rKdAH(hk*dPqaHKiiaTohrnsa78WeM2C zzk#dQ?KKXJZswkm?&mt5<8AMpuE`vNNjN-nD*yxFcXD>u4Ey0~LPj9i64m{R!FhO# z2EotI4x!I4ceo-tS&Kn5mSS1?BNByx6Z!5J;zEEU#MMrId(M_W`~gdz!Tf3-)-3T$ z;m?X6Gbuvff**M1yyt(-?{JZsjtYM=ZqMgc>iS{AD%#3WZF@i?c&qRYSQH)gdHET$ zc@WR$75I#me}=UW9_q5HkKhreT@itY*TaIwvE@^)6*{M{_yOZt`l&AZfG_JxXAl2F z9!|#cQeCfWP5X0hYp`YWRtHT{QZ22^Hsg#7f&3u<(@K+2n?!%!=DL;DeB~~zn=NBC z?;`wb>=KqfuOa&!iDgvLz=X##>z9h=PKZzOtD{k>f=as*o@$2*p?WQK4 z3Dd!>vu(!f!^SoN+YYtdZste$bMn8sc#A-U*Vph6KN^;`awh-Mx`Dx~p^C4EO@ywm zeZz4$#b!dsO}|VA4pI8E#iZAXWG3ObDnKT#jey}hK7%@a;ulr))4+xuIK~r`+N4}3 zxWn{mWiI5hAn$^{KO1h8^!5H$p?_ov*bwkXC3l#{q>tcFM9|-rsaheAEEcMCFbvZj zeFEQGlZNo&AT6tlh0R&OgAb+PQR?^u2i%HVV5r=12w;yrF_k_NBs}QNwB{9Xr@;zO z_>>aRVf{Q__gm_RV8NVhbAKEj%L?DB`F>^87Jy*b%KoCh=j|T+?j%DOCm8dQCGzqR zeKJSEbSC=p9P)z07?&~7JX7B4{9F~53h(irIJ5511Y;7kLE99MGd{vz&=J1Gv4ezC z7-h`{E;+sWCx$WF5_E>f#Lgajb*Jhx_T%dy)tu|_cam@aZ+_XY*MVx&!^k#f0zPtL z+ysan7jONK6BNxE&!qku;cQ+=5KR z7J_f16SbYF7n}jVKEHJi|fY=TwWmrI4pzM)}1-*TQ9>NAIl$C*k z_Tu2eu)F%cpkUrHXMAehDQr>T@DWzs#jCxF#7EAeL?DA;$koNPKEsd=?>TbR=0aD% z)-uR5ls02gx_B!}B-TfK1a&<)R`r59W*%Gm!%BMG*O^wt5iTYE6wK_b~;sZkJ0c0YAA1lDO$-n2eGIIEYd-ach`iHB3WKU1T`XGT;UGOG# zsELHr^D*cNIn-$ypIp#(Vk45guLHLSqw6Mt-Bs4uor{s-tlpbT{a+O|J^LxT_fr;GvRi?bgB=><^%2vJ}_v7;7 z7lQGnz5U@Yk-g^oyCD%uG4$T*6WPX}!k@ki>k54+H^(o(#Xw(2-zp78&cUF%uNz~* zzPQPR{(#^T-!!dyTs#f}!2ybk*(KZ|d4AMx6UAp2nX&v%Hmc=Df?NBOFg|3wNUn^&mMY z{2-kDco+%<7YyO%YE1JD_pEWE_OUpiT#ZFNq!vK*Jvdi*^$dIfEPpI)9pho;x$o(7 zaM|08hR1gt{%lhMEd7FDgEmJ(cDw2b4UBd~O44CwKla3rqRxrO^gyQsb)@;<+b}_2 z^nHq-U1Vk#ahhw z0enF5CRg}WXb5V_5b@)W651biw&3u7@Hy@ppzqvYlmPF2P#o+{?}>tm%64oA%!g^^Nl|4;`0R1#~43tp(xD!rw-5>BpWi0{#UuU zt_VPxwCRzFn|->g0DvHv%@IkGa_oNp`#)U$%lKD+Rq8cJXxu7IB(bRjJE)X7KQX zakx*l!svGh*a8r%V8g92z#EqV459BCEx7)?%1R#>=W#4i5kvun{$kFk5kbGyWhr)? z&X&sXl&{8h9QC;iX@ozY_2!6Dbv%u?aJX$v3{KD0yiD=@oXY~O3Uwu~++G@O0v8Jl z<|e-J83BT(Gg1qG!-Oxv7EU~+JD=*F@$@5bb!&Rvay~@>!QWkPM^E>2 z?;9%w<`0OwSUsx@1gYuH78>KJXAFotTtE}f>-jJ(03^`yqQ6V=aA?z8H&ZEd0UQ4J zSgQpHZPi212nq%iBm)E%+)kP$I|+4$^X%}xCY#!A4ga82_>dH?+dqa+AS& z#lWgQ!)C%gUmXXBr*)v!GxAmeRFGkLdf;$r3Sg2#i53nELw}U(18)HR^O!(3ZTgFL zr#>$m!e4aHiof22;r?}Xs_-|{BW=zf12(@h#F}IVUE?^iL_A8s7V}&&({hlu;&3H9WKT=-Qt~)FTA)t#@CHu)VW+i}JmN&-zq zuHE-5?O4z}w~Y(m^Nv> z*G-UHoVU`6^Vw(OGKuXwe$ThC+)IB`d=dOLp9NIJH6b_*xC5GTqW{=ZS?FsSy-)%M zX#5Sj&=^^GS3$ig{7c@mL4?1Qfa`wGLuQ02Fb-SHAwVo(;E^z@(r(&3Hnx~c+$F*3 z{iU5|WH1@B;(Q?&iohTL{$BHDP@4O8d>ekicII@KG>;N+&Y3|Qj`H0E;t2QoMZ8^I z;nEJnI-WUiM?Gz&b6oWiQq|pHn>HgS0ii{OzSMb)l)uhP3%o#^g3(3zbwxirpY!D^~u;@mGBbVRRpe%frsi!FpYVpV8%r5Bti0h2e7G5f~me_%Epg|o=nx_F5Cl|Dx3 zBi!feztDBZO<$p;;(RZEhpEpWRQrD`*)UfAHAO3YSvXJva8-G!bH#mHtpLCyOELf3 zg-Koy4?a|&uvh;LxZzx>btv#bB*fBoO$CcQuDs>_f6?(yp5Umvxw7Ob8>Wgbj>d>5Gx z!@P(~`U?##UQ5XpDXHHD#5k;h2323(L$gG$Fmbv&*CeWrP(Jov!u%rmSHH)ql?z)T z|D-q$VtmkGaxmi?t;qf?^AHo~8&!h6B3_^KzO8iHtd%{PDg|do;t5Av(9#(I+7iT| zb~~NivG1u0Qb#6Tb>l`T&|FaQ&d2ErT(+hut#S)W5FE~qn$auJ~3`*yywK85W&?pvs?3iJ{09ve^59%vDv z6g0U`kL@UR6}=UEs2V6U8!m{c3QHWK${B?K<*dq$4q;W{KWk5asgLHf9fVHhI^2_iYjXkApCz2y;>HsT@`1v090ij z#XEoJRjP1vdLIjxUuy*?3RPTWL>`6FYjClZs0V6;9{G(jVVHQ;pogqbyFzh}xvm<> z4>u<32rG*I3p!Ce@Wwv?p!YEV@StbS%~zi=Pk;>tz*#i_U20^~AOGY3^y-iQ;$K|- zC-N=)|IPpNe?{ue!#Cl7^Sg(uze*9Xd&+{%*c`v-_t*4*`$iq;lbd__dVF+#?X(2& zKBM8kmqv#oz%5M=lE}PHg1ghR8NOld&ktcJg2RS5Gb5YmA~OGY)!_qA0iWYam?ACs zxwOL0<%fx{wZ-C&$xsx?$jU*%(v~QNn3_ zx`H%Uf`0cpCurt)o0r5qGi7_c>b%sn@BApCW0V!s7-7IjXplZvH;ZgAij^OeT76&# z(`m!yq)ngtpy+yzuo|xd1;&7N0cJZHf*Bt1Vj3{n_dY?SQa(HF(6Ec3uLJCLe)+kK8O5#$qenAeO|zB`AT1-pSu6e z{CG|2dY#hK7PC&52=}oFSvQXOEr-Cj@?fO`I24QODAoeL#yfl}%`o^`{TekCiJkfZ z81$j}=tF-Imvf{dvLb*_?YT#O<&tPo0z%PI;){49yik`wPf(Nr7BAJ2T4}Z`2Awu) zUcxA-iNF`maVD;Qi%UE~l!(zv3dy+X1gq z0yw}&yTWX*4q%My_;vGt$HViOb7LG3Q#@IU>JGh72$0Dku$Nz9}mCGAPJiVJoFj^5EX zUWC6j8prMV2yzSY4&#sgK+rg}JcPgf4i95FwZGKi>oY>1fwZf_zuwWr9Hgt_fKg5= zlmH8V@)P!ovrh=p$D|liig%n@f!f6(!cq_7A7BoR0zA(?<{=)GimF`H$!*-z*Z9np zTt*(T{KhaVfs)1LPn z)`NnWqc{Y=l>nYikIuIx7;a@nc=1^a@1;EN5(}YYC$zGqH90dQLNUnb>@Sf48XgWjosR2m;28b+U*OF~Vnoj8buP?1CUOaCoi{@Ef5VD3au71ND#?~3;3VxfG#lRLt0Gxa8x<;CmAG_Zx%quT; z&*FLvp)E%q&e*od$!l1Ax1F#VIpIs(Uj z_}V^%{pb35VZr%4LdmiU?kO4ou`1#19MdlKSSV$MWtR`_Dj?rV-Gr{%gBJ z2}s5zHYoak5i?wt4pkWgr-lE-&-LVX>f?&L3s-~LA69{(1P~YFFS-gP1zJdcL7L+T zS69oh07QsyDFNhL!8dumEBsZLF+UbT;W|{I?l=T~cf@U3&1xIrHFnT@b@2&j@ql`^ zf>+UKr`zN#q0DJsVKwDGg5V87PfG#8*Hi#ElG@d3gUhS+$&WN1k6P$J$K874ZT8=Z zr~RW8S{!$+*l{4xAFiv4;S~M?v^+uh^NJq#+}umzK4k-;cfZ1Cy!Z%ZhNueveip#W zK()Yz(yja`0{pzFskjM0t2y+SUt^_jcy_-V-h%(x9p{Af-@kj;xVTR3hkSw%g*4vP zy?M~;|5=Cnp057%r$3FXp~_2H5Q9K#@+)wDMTY&hAQ0h*147hLgT%mj506#TSW$se z2_lgD+xvJ8<39I_5#D@z8wOZEREJqJtO2hYnzk@aAaYF+Mwg)iwVqqKD{XYJRzA?OjZD4&Nz=q)qUw9!wy8>n{ z%%Fw#460B)6xrmk+RyLFc=E(aoZG$5EA$pMJS-JFu~b;ls=ZI$O8WkOP$m}dj zL7PC`n7o$A2jem-(MIxQfiIu)DO2hdn)?y%vdW$ zGmjd45&V?-h3N4^h5OPs(R`MNP*%Ey0BZur!ci!;4c4P1{9ci{#waq69Tt0^aZBAZs2#1RLehQQT%TgU-?*J|kewlq%kLp|66NvQ@5gYJ0QyJK! z1Fh3XSQn`myBu178uG7mw zl>3eH0YW(AZT!+0lkxX}Pke@$=qwrtq5tP%cxa85UV3MMjXMlJF~J25!UC>E$z#h& zL+HI$-Z4Q2YYP8(;38}+&{Vu8zz8}u>tiEi&)72m@0MDm^fdwi$a6p$YFVoK5OyFGtc7xT9u&8#;X$`kts zPy$#QV1EFRdm9q9_iy}gdq2m&Ux^#P?)LEz!FsL!yD4h{lS)sVGALT)w^itQIhDdP z(Fj_2^xJh@3!yLD1|Rp8#`UA>{`Mnn+v6NPpGyV=(47G)bew9;uWOd#U~{`+=na&fw23XFPX; zUtwMrpgyYCE)3)*=%avjKMQ@K%>hUpAnA@bg=<#X&Ds((Khf8u7dA4wbu17^$og(nQW)No`R z2A=x}q6GAIx!0rt;SU2`!NQ*~1ey9erhjI!T69qRO0d}$7DA@Y*;5bYjRd0-r0(SL zT>Vpqj|uB7AoTMMiulu~C;=$VBi7b0!NFyW3zV=YtagO^vkr%s*i$5l6HCg#QqiUHxxFSZImBb2E6?p*1|4MQi~WQTM-? z!_bJQS!^SgAg*hY5&meIX}+l(v@`cJJ_A#TnU%zUx`Z=W8!+qdmVmB(r!O1&Cq2eY z)RAwO0X9AbCCf<(-Viuitoy%3X8jEO*3>O@Jgy2sl!ZCF*Px%mUr|`XctlVmus;#9 zZf|#GI6WObr@x*g-P^xCujO|<+U6q+13cA2Ou1S|8I!k7g$Hrfybe!Wg3B}J?72*$ z_algfD8e^maVh{Lv{d|4X8-JwpqiTNL0iDmBy)Kfe#Gyi-<=qgJ&N@T9uhX4Q| z07*naREt|z)AuQ3cfWvEMC>2409Z*;c|y}A>t|9gTH&G?M6rdRrq1xf%>GdVvN6z0 zx0PDPGOwP5D9&^6!~(#&pgz3mwKy`r{$8ekH6#Mm>n;oZXU3mdd+3!7L zd9d!&TN{IQAeaWq2OY&i$1A1ru6pT}S_o#s2?SO=9)vG4GfRMBs}}mZ6Y&pY%nLE_ zG!Yv#UTLcFB7;bAMfU~>>r!V>wd+B(RvG_rq?8wDk6yn`|trrOhtnf9h_;n<32&^VwzeP+k8Ha4OrU9m}( zdC(_u7+-{iDR{goyt>Wgm@*7g@zP?df6j=re3vy^f5=N|L-tnQ$~6x8Y5IV*ph`|r z48BL5`ao~;F+J4AN0?)jEy7*apAC+YbgcACN^iTL$8kIMJ#YlgOp|>QCFvscD|>HJ zWaRk+Uc!H)KI1dK9?!~O&2C_9doyD-lzCYt0@K8-%xqM>s=wKq#;B2I-)(e{$S4e^ z8I|ve)ki3^pUgKZ!*YB)(~W{~P<&YtX(ZFhL>+WP{Xb}|&BV4;SY%Y0}85Wkcq6TNP7zEb)u1)3hk!0D@#+?H}uc5t8%)rE3=>o+P9bFdgj4y9^KxY5u2dNZ|DPW0IquY0J>x zZ~x!hv#+$l{(Vi)IZkfnrf^FBJbOvX1m*F&PW<%1r6HZ@$-_m=L|Zt$fI( zc__oJWXfn+TKR+p-~xd)!pBiDqt*`{*?`-Ut|Q>&&rM~0S0kwGY(yade9p5P-X86T z!3zmp)dv}Jw*Eb(e+JMzyICF7H>iybyk67@32nb?OAS>w?&(d@kFFt(mVHE&Jq<4b z)ZoMarOE@bhnd`K=E)zM^d97L{Vq4~VFt@>RY}hSt2II9L#|HCBly|eh%PLVIBHR%mDNoW2lgvAAEHta|=l<_;1*mZJOf3RY0`eX={D$}B?Q+m3)wbC; zVCzxqYjct$BsUB{E`u88kHFmJlU5^-Hr`;cz3uz#fo!t=7`J6TAJdjr;Fa$V7#QSN z^tKE8$jcDgPmv=0d&stC%;hxNtXkte`w`+=flx%)DE$-DY}S#(h_f%C=P@=*Zv8vX zz^lg_ogNAOp2n%?+|AI#&oMnWC4j!AQ{kE9lXkE$QJ;qw^)&L_P5<%xG2D!mv_Zxb zGk=6|Xya5~oQ!$5DBw{znXRWkp2VjuO7?{IcQ~;7>MF(oZIkiPCfK_unTbyZ+xNH4>|5>alCr%yfI1Rpm$lMFdtCz<;s54p z90Gi+ks3rt7QX95iNt^oW}M?GFEj~@fRR15vCnW>WIArU5Ual@SOzEJ%h%FKm3 zXJZPp5+FB9z*rj-B>-wZ9}5|8+b_%rB_M8v^y4ED{)v<@TTvRLwj!`2;SuAqmOJic ziDBk{(c*OBG6gSPM)T`00nB-I0yA- zd@wd%%Dp`?<&5-dM}9sYD{CR=8D2~0VdfuGeTM6< z7ZCnHDFH(;4zJ1PiJ){CXXu~+E@{6Rljz}@-=arkQ@@0V;4%9T;^s1G{JCiEt@7Xx z1;CkZC{{Ep`{p|yrxi-C&>h12Ml#^KCcKHzg?V^U!e}4%1+f<^Nmy3tqn>v+iM4P#q{Eo?Z$4LbH6uP)0N$7Rd&3w{oq;mgkE{S| zoV?Hd4Dnc8Hv9E^2v7n5u7=EPt817ebTDq{u+RR}Nx{KI2?*qv-tZqseAayv!Nu+T z&`lXZd7uP<--Umy0r&%1D)4hL?Jn$%)P4wiu`sDQ^ABG7x7^GW61=)BNno;if`{Nw z-IhpQ2u1k!HV=BN6O-90pj#dA&*>2hf8|I2I<4X?W7daqwqr>)|DyjkbXK6ex~J`rJ4J>4O_caf2J;^mo|zY=}zGfLW3ww5&i^q<(l{K0-ggi50#Df zgZWY~81Sk95a)(vmkGnjnvZOy-f=-=V={sr_Y^;z$*F&$1Z;le>0HWymjRXlF3^b; zAeN#9#jns=k*&rQU+(MNVjsg+UU@Oe`xKapKurcR20OK&EFRTAiZaLbd);2Nk6i8RRoe(CL_E<&lNSnb~A=|p7rvx@4wH8EuZDR zn>Y^>_-r5l53KFPm`u8=aTF|Ey9_Ha3gQO;U<4 zA(6F17&MnbTxw0`y|Uo^{-*$ZEyJBP!pB-;;oLiQ=d(tL>kJd0%dIN2-bvW4Hnx}s zMbK<)aVH4pwbFh`dMXR~n0QN>U@aU?_*Q!?SZQJ=#>N`1>4lB+#|9aW;N(-lbZ_rq zuy&w9MQqoHK}KM4gdzOZ-per;@O_*|_yDaF?WzYqU5wO<94p zk33^0EaT1Ejtb3n#PW-vATE7Pdm!v1@Tr^sM)D%pG5e3A#*x7e*|VV3#5EW2cyINLr`-rXauPLH2f5#OcuH6A zT*^gKL)qhLgO}o8w=55qA~u)vFt1ZIjbDzkqR3FUw4?U`Y{~d(Y#39#QUnmXAK1Vw zK=7jkq;2fU&vGx!hjv3E!ROg!$BQ5b6LNYb-S0JdCEh1|@P6t;39eKJ_ExcUj*x~P z;dkp2qv-(Js)C}NQ};vNhISXfn@h@ zr+YE}FfxiIXix*=ag>`fT826Hc;-sr33cJlo$!e}6&59H`ja0N&HgZNfUI&kK8nET zWWVy$E#Q=)TXXpM+Z)t3t{%5!DMBpB^jtQ<}1drFu{BwmRj3*3^a2P{? zvUZbF@iH^a;NbRIb@%TYO3v7C!heV9mo88c7X5w2hQPOyB48O1E7tIj33#26MByY> z-<+CM(pP!!E?@s5-J58g3ZxyP4DpOI14QWirQUgtaEKz{4~P^E1~+AJKP)s%>hx{; zKT3u#8xbxh_RM%muN9S7Gg?0^KT#BV--B{~HP~GgfJEE2N5$vUUCIHgBH-t~X~BIf9dVOeLVTTOUss8n2lX=VL#eYQC24h~R$?uu@#} z1ug-14)h7dwUj9)O1|(;;Z|a#sNK$jIhub=JFT%pli`(j#{g-*G+`%>B$o?_c>hYR^*hz+Ie`}8k9!0N{|@O$ zlo3CdIjH008s8`ZghdD(wFhBqT@d~#0_<8wa6))p2_Q{OT;T{2LXaLBBZ7fhQy2?^ z`sg|FBNR!O{MI(J0;DuH(gt%6)UAz~ec*{V@`{B3*IKr4b5tnxB06iyH`a(ppA4LR z|1gV1@Lyl)PB>;2(4(XmO2D^xLWj<2ohygTD%X{GSMa7}Ts_V(#4tMaNeeqNH^H#OT65 z<0FC$x`WX%OXiOW1%e;I3c##CY2z2}llD6@`Ga=^on}u}Pjml$)ap|dPwE!>X6yj) z?RDbd0K)04M6l=fQ&n_))0uFeQvwn*-;q!I#s7!6eYxOV1$k@&j{eCq(nr%oAWJ|6 zPy$c@0B#)R@9lRIYC?(SppVyaiPvJ2q|E|~hb+kK|5`ipA8HT7#g?tH--a;s_M8%c z@TYzVVfbSdM1=pfgmEl~DFW7jRRJIl3JWv@KY$j)pM6@b@qsMK(B>!t=WWTAGURKQ zDG&K#HSdZ*$}-&EK*Ogi6l(Gx9}xa4F#Gq%6%^2gao2pl)+os_zQjlPu-T#$!r6sZ z=;6H8ICOXba~?DQ-<8*&Dj*veeU$M8!J>9R6Er%X1b$B)^#65fVF-Ve0h{frdN2q+ zS((dPSnsDkN5a3)toly;lsk+r?+k_k5;h_#;94AI{pbi~rZ~_yF2W(irN=q@=NX7F zjuNmM?2Qu%;~3iyb;tmS@F#SAes&hm2si-t0_5XG!Js}XAkMNsdL*2E`-k)3zuL9a4YPnd+(;jBErf3>GFd&E^VcoiybStw8f( zkm=LpOdGkK8uMUQy|72JK7`OH<$4aX?jA+piSS=5{9IzsgsEE%7nvD9gNp@V%yt?V zFZ?e2u>_>Og4qQ*%0O2^`R+v+dKdmAo&I|w@K2O8Ci#q)6>aYI2u;urDQrVV@FQ=V z%+(m&${A}4_3nyaSI}E>KguIY0MHcy6pSbv4vWTOO#Kv(W~nYTeJ$hCYyENkZonr3 zlzi6i(>R!Pa0Le zev5198|wvo4OV4sikW2cL*4I}Jpgx)BS{Y~RqDM~OzzcK&X^!u1u7R2&7IaJE-r_e z@lxi-*NVgLc#g<gN8S*>An*wklE=W4}S_^!*zw`Nh6acIa zoZ-Kx#pOOILG}z>e?Ri}rW6HT$|U5^I_mjG-SbvAGvwZ9qVkP_8|8~t0YPMojEXRB z103O*feQU8NNEwef!Wu~GB1stogdD=6;leJ1l*_&EG;~gMTGmJgNsmjECE&Y?X<7N zL^+@9>ti8w#SYBmDmKZU9KnoWS*FJM4IsBrgkscY_^h_d0ef1xsa3~2^5TT(<*4emFVl54@v1PIdG?c2!?C*x!YCW3+IU2NKZwowKUcn zS+Dl>zKWMMX%~m&)vpKzuS=7#o&gwy>!bD=lsMi;sAx?64Guizh?%&ptBrWRsx?|J zF|jhO_#LjALWBQf6S%%zOld_KWz5E8jK#*xwR4UBj|^; z3%!Lv297uPjeR@04w3P6fE-F&? zD1X!~G~yYj@_14GOTHdk)lb%3a4ZWRXF)WD(1w;@U+9-c5}@3@tb13?Pt?Bn z0k&@H89txOjD})7dSIT8(YJMgZ$0kC*PypHMi=&A+#lr!lNW<<)i|um!p*u$s~i#9 zhrmbx_!fa$j%Z9eNWz0;gia-*UZ=yX-xde8%h-2NEjTg8L*EF;r4TtAN@%|hmra2H zN`>zW7_Y-G)3oyAXksU>hB_Z(J(wPPpqw!oe$m?Hy_A9AzZQkR^MxlWNCW6~3jgNM zBbQ-xv!Sg4b;(M07bE;*9Uu;j^VDpM@Q;E9k_7~aFt%d23~Vj~>X%lSK?&{2>?Jgy zuoF~5>So+10Luh@gsI!%AsIk0GnC2*dXNzOUtN#$AJ>=qlHa{P3ZgRKN(k`>WZ5KU z+{ZFGvfhXia0MrBa9a#FOv=4gT?XSm1*vj`|0z8DGi#>(V$#PSC13@Q83el?Sf|C} z6(wrLMG@%zV~a!$ADFvM(FlLmAyeQrk%RZt`?;}^GR2+Az`&k`eVrrtJ%La>LYq3` zlw6Nz(p=AmM*t0BD*>_!(Ml_dK}IOu9p##};}u-j>a#43MgZ>0OhOf%dO^#v1kkp< zUDwk9s5$EKHS14)kMPf?KO#~TinONci3Q9$pn`EzELKy1qikmyKjX^v58Jitl1fnk zz&rO^zS3_KJ^XioutkCRZV135a`alg&|O?hdwHlDl#pO%!qa(vM4W$INbbv{iznpuH z>FS2r%rZlw2;2e~D?s)WAf!LzbHrfVqyIG_IMz1_<#=( zMIZvm%MHT6uVa#Z){+m$SOC;1ijj)S(nbbE)Mw1##JnCightq%tTI53YN8l?(CjD7 zC&JZ8`JqlsgXe&P{fv6TipFpa@^GUF-+-8&X>R6COo}N$PT#S(ii zVtEwNaD@3I&Dj$A0go}ios1F*E`*r>!5zYT9kL1tQvs=g`A)rGzk1U`L@b&upMnVf zgv03AnR^N%{J&5qhFoJ=h%iC{2;@>CgzcCmBxLWtL)nnhfhPL4c5{YEXhWVa%7jDA zZ|jSUJ(UP_T!eLsk=bA0W080f>Ro9_SO_d@lpjPeY_{rvB7hPwc4FU|`DBI#9!d)7 zSXs$nz=atJ!psIUPK!FoKN0*EY87V--JWRslq^g;f__y3h=l;dpTQT|+!aA^nDsOJ z2T%guwTq};a%sy_o?7uTK0h)V&gUl&$cn~)82nk92`;kRbX|BEDxHp|@K2=XM)+g7 zSOIH9F5&VqtwP9o@vaC^_b1l7!k@x_&4Bj^e_Sdei16o<60Vl+FcpESZ$+_U30~*d z>$vUdoP37)o`BFH!BK=;_Z-Gbc@qeKP28ko0batR3;d)V>rv8(JCuj5eU6j>(+?<+ z8T8a3f@PGc1=J(T0Angv0F;0wiKmg8&zRtCF{}hAJoRd*>StL-Iw3EDD7e4T2gm+Q z8*HU5%L4GhGyktNuu%Yh_4{C{x^4E)7})`{|36WrhLiBD&(HTNM^0?vj~9x7Pa^2K z3x8(+2>;H7XwQm2r)}6?I z`+JoNfs>iIN(doM(WY4^_W#U8Nac!~1J(I2<=$!y$bGD}7|sN9-V&HgF+Y+ zO5kG-dg0xv5)LvUeP5mW2iAH87oY1~F7ZWlH|ngHDi@|Gp=$GrHX|8J;i@&?G{Dpg zF(GJR+7>0%M+nK(1b-|Kzq!?#lG4g2mD#xpTulk4RcPh+R(V1AU#ecLFOlRc-Mf!) z=9>cSnLwGiY6=7CT>q?JX~ZlZ${SQiyJC{#BQ61UnZhKp4}wpj+`2D>t9#t}zBB;w z($<_?#*eQd#zH_X`SbZ|@H0CkqT&rk2Zr#LbH$(tV=yY>3g5s;5p884vbM{{O{XC@ zn=hGpgdrpBC?CKz%i38YR|<>P-Tv%Pu5JGRoi>GJhRL@MJUBFKbvr2@djQlTV}_-& zvh)JnsqZjho=dC1EXqKHvD4=$8ZLwK_cs%EgV+?|H2BFmex6~-9t$*!{z%6iEl010 zFpzq!HGdG<-@q}cfthuD%E6Kl0DW?Hn77f3_V!Oq#ZjQ}Bn^L$LUcucyZx||kskem z+xwPCTJo{LH)kU!{ss&(Q=63{;9JW|A&8ls`|dly>(?(<_V7GoF~Ayi_F1bLWl?{0 z*mmHQuj;)Qk;?Wo4#5do)^F0q;LCE=k_EWtdRUJ#g(6J!hLA6-k z{gwFGOK3^Yp7m@08YM!OA@tb;@ruDIKtlYD2dONyE}Qxo{@P%iX`{c!*p9??zfia0 ztt{PMR9s{hd|_Av_WUC8w=A^Rt=-k|__&|=_Dkn(WQk+x={h`7tn5cq0CE&(E7A0EFf9~;I}wqUfI>j zNMS(<;8Vrd68?0u6#$R~>&;YL$sC|%Bi!)I%sJt3851TmcIy@ z8TZ74XB~~PB9x*8%nd0O9sx#Dj&~wWyjkDPM?O}x>}iNU*DUkR1t2qgX8XH605$W! zQJ-@34@lpjyk&Vmw>zQ$U@5Vp3vOxSkOF+cB!NKNn%`+YVd(N5XOBewO6 zdGTW`#wr&jiLmr3&(O|L5aNy&54|TG+zuPRQ5qU+8D~t?*v7|V&{P6?L_Ozd+Ty)? z&F6ygTzBEG*S`N+rvHDg<=Ve2KFvhxjmF+<@!+?AFD0SaKUesE-Sj!qMzL6ildYsT zH}433!l&(7Kbd58r90u?)3xwwCL2S23YLz7m+=2LWw9OCZf)Ut@;)x5H$Ir8$%6QO ztaHKXZuSCjv6-!@vy%G}wJNk}jVuMD5bdC3DKerf1Ht*x6o4eSx?^{}*6(1HB0LB& zkabqx5jfwx{YJvS^|%Vn&0xTVv_^#eWHfq?pAnXyRS6Kfp|8>UIAM#&?C%d{d5G{Y z1gysEdIYlYiVCGeijp!BAH&mspj6VIto8i)DdTP(=90O}QtdjmQvv zm~l(6L_x5d2+d^x(_SmB2PMoKrpU~{Lud}c&tKkA3V3GL!I8XswVSUnRbByNNZ*TC~?vM*F6mQBm5&65dOfh0MuH!eU5)J z2FEV{L2t1DM5!YTJnE7@^>L#NB$C#1#v`wzPZgnH2(kFbcMFdX?sLMQo$y!z;`VqE z{`ir9KIc1en(&VwY#rz`_l?nyu;BhN?vawQrjzm3{UiM2XC-N4m-bGd$Hmk27H`c4 zUn>Cz)u2Bkgib2~$$hw=BK#ABQ(3XFF#AUlxa{;2M7h6~0L2pUH#&v%R*LxRdwl~& zWAN+mWOEaVWc~ZK#`(LY4I)BN2Cg*we|XR=_~BOaV4Mx=iZNq0C$z|ZYy?MHABD+r zSniYfm3Tk1f8f-be+2)CEfyqxl_g93NH@YiINhZWnD`+J0pwzUW0fcXq(Qmib0}sV zo}OwL@%fVFfIYv9Z%>2g_fo#TmG${2R{(m(RF)mHVL%DXY%}lOWo8m46PIwFAH=`` zX8)M~J6uV_T$KQa*KY3Meh{I?3NUt=o}Wed<9?>AdbdR*-OB;*KcG|;SU9%lT&V(LOA%+ASIXMSSiEmS}4>2MiAEH9<9yTz=x3` zymOP_9{Kc}H~ZA|8gnD}Ekq!o2w(;1Gk#L)N5O#%Tx-&&>_Le)WzXLD7SOG3drr|e~l!aqfzxQtxB>pKEKF%_6Ai|&bA58&Z;~UEW zWB90JDmTvEv+@w&5(or=fkJ6b=+)=1&hGyHcYapa%u>N$rqCx2rmM<qI4G5p%RQ&5&Q~$-!e}4A$Z+|PL zL+ecLlj>z!P=D`LHgB@Po9b0ZC4WBh0qJ12kFfPFe9$fI^dPuUd;~Yg5KX9(D7lQn zoA)%^i^zW=9L}vnOSWxdp8%;kE0s0CD<)V?)&C z>ik;u)mk9O0p;HnznEV84QG|(bY=@cH;Uf@!9x*gqbLCp`Y01&{)j1LZSXGZGt zZovx%YoeSyz>BgYf2j87w1`iYh|ZYBdS)$Q2FbfDj8T;%yo-MQOYxRpTxx8oOyvJ- zNzN~IJJ8pf)L;d$kkllF@1{hkrY@B4T)g@2?wu!Ay>Fu=Fpd~6#Np41JkLto!dcJ$ zR*UNUJ6RE4na5$R-WEfcAaTzA*NQ}axs4SH$aM2jxB+PAq4r39DO&ncZS%YDZnWQF z(9Es+${$n{kDB*d)LsPA;JYv1DiO9_q}f@X>98#U(6Xuv_4Cq__?O1ldEIM6nAxnt z=}ver;~9QHTR;QwM#R^T3NiI3QOp?G2ob;T{>y*k= z*((s?PnmPtfai5K?eb9;g?W#F20&-Wte5ZJA{ zYUdy*O<3DlirNy7kaQZ#`*w^iyIZd~bXq((0@*)X{p?){&~T##n38$TNYee8C4lm> zu!=RI;}Tv*A}c=GtcgE#aZ?tqt_0jX_gxJl(iAj|+?XaY-;$o0XSD~;G4aPtJp=v$4-x((L77lHFRKh$6YYZGC@a$FZOE*c3!OYWu6jFtbJM3OAWWVE zlnTZ-<0`cI9R3VL`0Im8x%zeb>wz?r?)3MCIO;Ez2PGFk@Iv&t%GX!RihpGGiNYTR zxwmEZv=F-kv;Gg&4w?BA&O|K2f8wjoD=@A@LxjbO!E>%TzZBbhrP<8;so@j)6vhb& zXjJuOdn1+P(||A3SijM7#1Q`RMHn|Ed2`$@WsL9-Hp>O!v0sU& zeyKEnr#AWDq{#G-+XbI-6@V_ds0=`{LgDKBF7r_$!kMg1OHvr7;;c|zWFC`HcnK0E zZIw7bx&n}dz0LtOJ_A>6<6Y1Y{GKhdp-InYGQoSJm}8GbnPWzP0>>aw zKItHYFvm*-U;kDXiUaTlz;NV*)1S0_5hk-ogg@?uW-w6#f{r_^8RNR)_#>b%MG%Yy zgrV1ks>jAgwarZKFy$G+o-}Y{uD%szAly*`Vg(2@059v|JhM#jcfW@j4ob@hF$jwV z!!ww^3;3XmP!s^;`bmSUm;;soLPN`OL5uK5ScXyX+&A#p>Y=vj&A%3*GhLe@HQ)l= z1PKH2@t^XH@DC0f>pCFl18=oVl8@44DFlHN!5uuiMGMp+kim#DM}J=E7RoybpTNh2 z7kFI}v;rVukHC)ta9*ZAX8!=~v$l}~hQ6tGAE9AV2$9aTKUMhW=wGj|^ZAi}BCvXS zm`5`7PC=)WE+9I7(!~!UYqtx7)_)FUlc(U6(2O;~Ncwppn)4S$<8jL6Yl;h4=pXmq zz^q&G=)x!gOA>y~I&=@S!XpoE#$#_%;0QNixZzuI<)HzqzoC6}R6mF29ao+8jfC%4 zn*4lImX!Az_^&jZK>>&o;0=0%EN6PQ@X5kJdX0rUJblaL=|SHX0Mhqe_`g>8w<<5o z5m5k`{bzX-Wf=OUjDc17<8R@wetnI+5+L}2pNn^95mooC+RytU#9KR{OhpO6|3S&f zYbXL$?{OAE{VIV!t_mJ$mo>EyQ_QyCZ1JM7m0^nkP z#@u2d)@DJZkIA0d|Nr%u|7K=~@JH}l_~Y9L-^5afim~~s;O3V{?iP5?3J_udzYqAt zKNCatcPgic6o9XX0+5-1h^(QEN5)RL&_c8zAPA@VT<@R*bB$~zj)OGTUA7~I?HA!5 z0UwvpcOv9z65Y@>TbG$l8*)}a2|#=9!hgl-?`gcE`v1qKq z$BKXkWQZPRV4WRLQ>oJE!oT~IKEj{DPJiw!00cJB0n7Hbe?;g<@F(QdU`sfz2dK&p zM1aS|FKL`o0H8f+cGOtl+}yG))nO9Ou6Zf8s>=KdT7T>>vCU zqLkoog#Z(BI|def%9gTbBVQ~5;6$+J6iDKs^Q>wVxPi?4H$EbM*4C{p{DWLB^nOAg z7_;hPJ$Kl{Hb3p-I%89x^OatHs?I2%L6cvu10YXEQ}A;N$7 zY`@5__hnJb?0*X#Pj})Y9satvg#vUCU5hf>&|L}uxSfB0(1Zfhf7-QwZW$$j>)Hb- z0lZDCEz2$nPn#JY<+1W3D`HQpv{(t#bvrJ|viu>>fHlZm}RUk9Jc{jXbXr)PaFT=ofd5b;}^u_Df zXaC|q`^DM+^cR1jh8jJ5Esgde3o4b1`rqfty(3nQ2;>GO2F<-VY)y#H&VK*y?2Xdp zs3H3mfKE)LotxDhsInJZR0B{p#gY5ohdR}xSQjAZ>ZE+6Vw$om4?51P03|4#wtf&+ z%*uyQmKi?^678h08?9wk)hmiJZ*WuTGt*-xf1y1C6mSd_o<|)~91wly($25g9beoe z!VN|zM>g8Ev(E)2< ztcyj#@Xm0h^`fi_N@haVQxW!~L<-V##s~h?H|E&~Nf~Aqo$33_WMTq2#?*afvc~_MnP072DaKjfXHOY{JtaV} zV3yf=?d2UTG}U(CC3fs6v`^oqT`jQn15J@gBvAb|X@E7|q^~hB?17_=%$w*_(x9&d zSwi7C%TRtUL4n{8__@;u0dy8ts@%z+@vR`TNjrcFT#5#ny=MY(e!eNJ=j^{}>3fJU zW=qI=64R#7?4#HyW27JcTW`)E-VvqiHUe+bluCFo7JK|WCH1s24Jm|G3BzqbSXwD!DQKd00T?`{M(eX0*=dQvdSj zU!DCA|MS0o4rOQZeHQUVV9Z&kOmswh$)bz?0|@?0O&K0C4YRL^@9uVYs^HYD0#n%B zkW_JfoUfkkKrakTby6$|3|rD1q+~1&hVgC-ig1A_3VhuuYx4N_HE5VQgD23<*6+XD z7z6|Pez`cpyHpkNrj|i`|b?HdfjDB zGQywdFzDc*#rK{1X_kF{)%l8qP>Dig!9hO>=GxnM_3zjaH&U`N!Z*whMsIVX7|51< zi(QY_6e^y|zZU$0Ts;a02np6lVNYdKg+It z20^4Q{MXrjrD_F<=jVifa6jfoxf^&xo#r`=IszT{xuzu!f`DZ%X0fb!qo3}Ec7z8B z<(Y^b(x>wCXRM1RpigFV8Sm?iA4NTFxmlpbzKWjweC~9fJfVpn09HCeQ^X_9)UC?x zTlz}y^9=Z+nnn}$Tz*o|cz^2MFW^(8v_<0M=C~ivY`W#D_3$rTF8G2EavI=kDFdfw z|HMZZK|C{YMEDP@8rDrhH-MjhBV63@0cPodwp3gAqZYiA7)CfVE-*;25s?djy2S_K zKPNYepIaX7r#Q&~{^vbYDqBCgP3u$6EDb#9qM-{eACgS+#Y&_BfT+AD96bvcD`^kP z9;;mVG~??5h2bYr0D2}o_fJ434B`K~-+puUZ~y(T;$@c|$hm|CkC=NWQhIE9Y!5$w zv%d~_3wip)?BCa=z8G_TD*>Qswz~@dTXv<^x=vDpsY6)#5>x#9Ai*@|V}nrg5!8T8 z5NR?{Ab0?c7lEH0u=v5iSVDlgKxEv)$2v6Y(EujNFmk^)YIrA{-El6*81?rfKPQBJ z_7UVRfSe7V@$^8sj?T|Q{42mnCvjFFs!7L;A`oS1O@sFcf8SsThpBZq1b^UKvq)xU zY)k~U5Do4i$z{nPAJ%E!AAOv{f5lXKtMHHPjXR@E?x@nGfD3&@8DR4v!k>P>)iFe7 zO@Xa{MqOz`TdaiQ_U!!&$5bAjUMR+FcP08mgn!D=-EOj81!VB{%5*B9P?}?#ac+&X zg`avt#`Qfe!Lwqib~yzJw;MWwcK8$BqCk}VbP`$rrmkHW5O}Ko$>UTRPWjV@J*Q08yd{wCM9O76a-zs0y0dXl^Q#Zlf9P$%Bo9Nni=(@*flc z3tBxhf$=0pWqzkWPTw%w?c=p45ktgvodio*p9n$c+$(_a59n^wJWe;lACCxso`(g1 zGW0lmdd)-!d?3e+Ll;@LX7-OF5R2GU0_1}dfMpXU;ECX;*;NMvS*u;<`|#bBuDmv0 zD?W(e5B#Gj0LjcdHY>-U|Kh8&zy80swg2GcC{)~-{u92ZjQFldAUxOm{+v~ zkW_S?gmeIzQgY*h8f+E*dxrH?2_P*73pZf#L72P7VLd}#8GAC9+l4>g*>k{iX8$~I z`v@@i4vOwG{Z6=^DT>&-@JE4|S}6$%ynN7(k>CftjXSnfHr0p0f$%3ScDU{~1PYf8 zF-O1v$l%EAAFUKqD={ER{<`pSIuLl;E3N~!pQD}9Tj=)0%yMOvnVCiSKN04Na|F41 zwc|T&%(u`^wSD@XAifM~&@8C~Oc!ATlYno` z+3!I=t$M2CRbuPRKZ?PrO@6D8A{lnqpFdfzhQdxmOwFe-(vGV@jen0fj=gOyKI1f| ziXU-lt1jb`4($gHVVzb{{2B96b~7%rWajuv)Pnbjj_G#*`uQVZ?26yFrTZY`CqbeI zj$%d$i15g5eZGG~_2_O_4xqAp>%<#Ig=>JG&>k21@ASd!be+&`y)lx3Zy~fxQ2PD@1*-~>wc1oSfd`fJ4>+_6%I74g^MfLtnDW3A|FnI8KeZUOlI`#m*3el{ri zg|wGD)<6od0mZ*R(Y{TSV*Z1?qAcq5`xNAri<^zVxWy$^LHZpc_#}Q8;{)6Hc}DGM8E$ukOY+Im;UUZ*Dtz`lLmBWlwqWEo#nA$6ofUr=e$7y<^R1s-Hb zUMeqT@e%S0!igfVx`8#T;zn62gXGywcgmL86Z}*$pe*VZu|6wa*{Fd8E7AzF7#0>-ji0*47dJi2Zc5s zQkx6yHPD`_^E;hB(5t{V5-NYn3}1RFLay!>-(yRj!2Fq6^{C?q6kL!VuZF@P3+=h~ zp*=?N<ACLNI_EH+ zJiA$$u8h@S5S}zt5q7jw=n{d?ADSpL|04*4A`Icrt$6_A>0bK{y7?C2|0ksYpwtnU zbjK1vE00sy|0H*YOP-^^%z7xSUkBP#m`tvDM!1k5jF`5Bkq?MVm~vIyjLms+{Y*JF z9O5AS`FP8VgLCbCsDlr!bl5lPs8tk{2>#57lM`jM5zFj$Z`r|=3Olq;6nzJ6e@v!Gg{Vc2|79r;|p#gG^;+~&h}E9 ztV$x`D=_|s6266?B)ET|C-PY6YQsGJ6l)q7k0L}i&{_EFJ^e9-efP@UDGY_zQ6xgnuA}k#}6rF5;oj$!7K+FKb|xL925dIzb3Rr-A^My(L zq6})~X)iThZ?~=>JEDG|!wADw z_y=d_9tgo*`0~QJZ}&m-@4_G6G0R>!F0<-Exe$gHVksmzI#sYj_BhyIaqsK;YtuFg zLFZTWN40rRwx{WnE3_qT2!84<7o~)9rQBHxNPK8}wSp!ru4n$FTM*s@ee_dkELZ-r zPMI+Kf6rJ|oCtqp!B=%FYSQ{t7vX>Zs5$s&T2Sahe@OrfK+423Uw;Hp`r+H`zsT`T z=pVA|N)Jsch4+$t7;zScwB4D>vA;RFHPs8f1*yYN5Cd-WrIF230*0Sq7*>jFb4?EQOr z64Lhtbir?P`jTcB{yhkWgy1HeXB30gI)GNqPV&rVd;H&*QWO*WNNW%;crF)or$RIE zx+#u&q%Poo6q2mc3wv6H|3}m42vGtgZ2gfL4Ut^f!C=YEpQV6ng+u|+MY}zf!{@A> zX7 z0zFXAVYZ96nT?q<MIT+@M2903}$P8~LRveD>$B-Ko6eT_7h&$u82ZUy%izfwimA5PX zNwX_DD7NPaDJ#-SZ&6-{Vkb(e^iCAVO6XJq3Mon<{c6*{8lGn$7Jyhn;Zs;G`F=^{ z$-vwu9{eP`ZpR5-nJ?MKe+-1OrSHPPJwNFFPP z@nbXRe1jp6x`f$|K{FbS{*6T?QSOv}+LS#lnf<>kyDDYrmn{)5-v_X3bNjFajCLLa zmTQ?2mYE&U9?Xp0?s`u9+|&Lb)@c=H>?q0e8vtsr56XiYNH-Yf)nZaF+fAF_{=M!y z5Dps$5kT&8rNwiEvw|HTmwM4gd`t=232YzJ0ip71O`dOROng~jVgbR=6yn4O1`580 zt}9H>4CP;W);Bn!Bt6m&g3SKeKYdXqBly9k#vL2ASgW09s)sjrAVwQ9)_?h9gHfqr|j@91PK51v%C;_7tD+d0)|G#Kd-oZ15+AYjH zdE{at-noVt@eV}65x5Kv*p@YU#X`q8!g|2+#~4$aU&al%1Jo88Q%nFT zHRtBBI^nWnZt_*BQT)bL#Ejel-ezOdklw3}*!T`K5}Brd{M{bHG2P-p$HM0%HxT}r z#6VJGgB>Ta^rE&UtLvJLXCK#Jay}o@f|)4OOMQ%m&8oy_k(yzi{<9M7u3^8>=sDON zWr%_}%Ba&{xJByodX97~Hl7*FF>Qu?|2H z0XLl#2IL&YVys!bg?8oFuNEfWPp$xv36PohV+nqQKX6&+&=LNAhvC4Jwxg zv!njS|M`FP*WL4Vq_=z#{?CDVi%<{hRN<*F12SlIgGQfs%GiDs*l{?ul z>fZl{x*UQq-~r1(DFofDPS}NnKL8CyXnNKoKd+suNhr_MikBvg)qwEU3{LY>N>OI6 z2s19yh){bk?tB%YX>8>&sJ`CNvONm?o-^7g0XY$n{8Bcs`J+bhbL8a*MF>Wl*$2U$ zF)ZlMzS7-oTgnsM$V%$|m0tK3L)suFL6o@%R0{Wpih>jt#hBo3-uB3!1c-MtMCI9A>W2r z{J}^X6Icdl!?DAB#9e8ajcrzlg%5d$p__TbK%sH!K$&?KOySQ<2^K34xqJ#1-ZXE4fgLlq%XzhcKq5`{Dz@I^hJcZ*axc{3XGQ| zlqdbglEqP9J}E!xq1h^pep2WVFP_jDiW2Ri{HzSLiuUE;M9IFk>~q6EO9V`O>7RTN zbxckZbGSd50$>44Md(ODu0o99AHL%^!v703ZqA(c@aU*9)Pw=73cz3f>Tk~e_V0ev zqxzYz>0PtDpg(5+9~J&82ZA3ZU|oy$<~00;a|*1Tw(#7`Zu}ZJ_qvu9ML_IY9XvinHc$>~@N|CU)k?i1PK zpeAg2M-j+rs`WTJbZ9beY3?2gEMD&mt2%NzgG3nr2>yah)LehHL+4MUpRg_~jsUtH zc9)9$2@VQuAES-jKOy!XiIQ8Eh<@uKx+TtxJ4!$V8^_L8D?raX&prvDm(2XR3OIu@guIb@V(ncB z6bPf}#Oi>9cC|l0Fb&l;dE#Z0CJ&zgu>z$2YZRD37yg(Wp~)xufnK@C2p)Z@aDi8FaB|{CQl0B;&oRK|V;KS}YtP6+T1F#AUlAiu1yq6~ObYGeHE zF;PFwMKG2UFqd_hftRI``W*>h5=W3xF1N*}<@Qmm+|_T(SB)8D5VKj@BJij?J%9-Q z>0gEI{#_Xe-YM6@zXC6#B&iKpqTp1~4j`&lrv8l3r@XA;^9;DH^vrS`{1%8J%5u<^ zKH!Em=-zj!Z(##-{LZ`mLwIhS%0MUx{y_LS`JMt>=XxDL6yLOfUn7wxV}L>1c>Rh7 z&nEAH1-{;~Rz(R&7?yw|D?q|=u>@cR=t{tkt^jn6#K#rVXhnoqC9qR4zHU!r&zb+y zi21gF=czIm@@;6~2Hi)4{z_}`@7|9ig}?gEuf1V#cVth*@LG+Q4@yv`UdH892HF!) zHnEY7))p(ndY{V^@;=A5RFnsivQYzVcOJ&CIB0GNKst_n3c$-+2Dn!bKWGrzbSdI} zU>9yT2s8p9o)w_(r{ad6GOX53Sm;~Pl!*_7;h+$BCpdn!6!V~RhR_kg;U@sAK_+Wm$O>v17?xtfEVyb`NI%K z$+lmFxMwdyM9E;aEXN)(hkkQAZd7E3f*IRug(?H(dZ8KSmFk#V5V=R3{^U&Xx7vWj z^OgGV`g&MZF5n6>VUI8UsaqG?-%2I=EP7zs$luOTpiTYD2u)oR*L|h(aax8CI>oZV z9qsJaew1~o&w$gn?1jiImi9$Z(q+3B{vdjX?f7rtadUT?m;OAgn)UJ#bhl1 zjDES`o(HrlwH?Z`H`1vJw<c=3MSF%SL9C=0Vc2g+d1H{Ps>nCZwq@FVL#?C=63D`SZ~}*9yWrX;?{+fZws)7 z#K&*As3*WNy&TnxB0yM_0EGXW>O`KO-b9v^j@>EnkAn|=V>;@Atg}D1dgg0Z>|o`O z^Q;J>K64-OHv+m5)m@8fr}ip@8hbsf-800xgK7&i8wIFI3^U(8;46&r3lRc5p8}h{ zg^2Larbi3-HBa&=Kc~er<&0k|143!xnU1plBr1%|byIq+xs9G#EH7TitlFc10k{ze zS;KZf{UBU7;Xi~tLCmuAHN`AX+5h)ig;Tq6we|ge=cE(~slMVwT*TC2+eAdXP4uC- z_*9CSVvq6k8R37YGLb&8pM}qslJHK$ZwwFa7p2boIZD7>7NbHjS_MB0nKrlJk$Vb; zaxw@gyYR)157BcScRqdu661qBum}J?p;G%R>`^~h12X%IU<<@0MVr&v^HB;VWNC!~-|hGT&pOg7p5&o~bjIQ8gI^ zBK)(#96y#Rm}qjB20W|`Oaw`2?hEs(hUA|sIe$5@-hZVm$a_ai>K~8Gs@@R(;{_g= zu|z&RXSs>@C(zpTNm%oU(zePbZ?Y6#w+3jmI;K>!mV)XaS$ZKQ;3ri8C?Gq|v*z9} z2Z~>xjqgghyhI7WJF|J7nXkQm_4@4Ze*1U4PI#>^`1#_Vy15SF|6>CJy(h~DkV?Or zX8bzVDWcnV045x)9ud4K0RUnp!em?_Idx=*?{k#bB3Rg2n>>lI3eQy`=&8dDGq}PS zGeeK-LbRXk(!NqgK4w-zCn#n(`|&jdv=CetI17v}4aswWy5#x5WwuE;NdUB9cJY%h zR+lim)CW9fuqXf)W-up#g};PJ1RZ|aDar@8351BUis^0 zX|A`%3gE9RUg|50`in+|Fv~suNz3V|4(vk!aG9z4c~4GWQh-rL_=7_}to`>Hz9YAv zP9F$Ym{c}$f<}8>)a`x``YK|UW|D-3zFr)+I>LfP&z;t6;gTZ6c;{WhSWgiC><7Rc+?h2q$zCSM6>Ww#pnWTV zRS%wfeIrOQ@n?!$L{Rx1EgJ|53<2?#);pFHaOVjUFhF=RG!9PK1XDI?d=!?5f z0wj&%n27}beGdS6FQOn(pST1pj7YMo{l_qMu++ zxXJTg7eE2Mjd*{3J&u&b0)P%@}}3KmLN6t8`0i^i2u){c9c_Cw)9unAz~zB0MYxZV7pb$%muv%TW) z1h*0PKfb_6!g`z)7jtd`WMYyIKv=?yX8WwtIQ7F4fWD69w=K=Q54YpzIecIWCZUE$ z1SheJJ;dAY98=9VmXzl85F(o%p5Ltj}5V0@JD$Bpox z>C^+W|F>EiU_7pMi-OSC{So{}(1pJhN+D%w0(@u(y2&3(PEG-!2w(|Jd#}9VD8G;S zdD7XI0XjZPz+6(TfP3Ly${)ZA@Z&20p_Iz-XZfymy|3R6_^iGiP{E@0*7Nqo6Bn_1&kJeB-X=n}aV1i~C_I|Ja8N z(SoQMeq|SWqWlICBsS_7?F0Zy0Vbj_T-J0RKMaP68J9ZVYF8~E;dxoM25y@IyxCE8 z&#iD>TPEDaQI@O~!{0=U6mKKOdXC~i9N^@!7qxK+IaUX|BiiX-6$C!DYgcLC^Lkzv zOyRT-^{@8JWhdkIzL7l10E1ntuiJA1A~Up^FLEM z(gMxo;1>4-Im-$t76=L1?s;DK8PJv}I&6SFlK_4Bd3CgR z-KyWUI{f&Z5>(n(I-YSsIcf{=6z=L1=-GDzND+8jJ9c-Ue`ZZrbOa-$4&2Pf*Vdx6 zxZT6Es0%G7-on?|yd0zafz1BL+xYc5ZuiJO0QyXow?HkvLm%*NYmTi?MC7#mQ^>f2 z4rt#Avn-0mGhuQ^k5G2?wSxQ}+;WqVPw2-l30EP~COi5IPTZO?cQ);|fp*l!kFpls z^Gtmehc)pDc-C?oo2;>TvAGy4V)BNTQh%4Z@?&qoD{Z2_6HVM{-vM~9w4VJgo1Vf) zo$tsKWq{>3*7bi|UrUA9DOZ3Y1>Gae5$;%}Zn~N+`UP^o0G5PYzl^K5GnNc|s(`Yp zUet%X5X?`i{BV6MkjlppcQRx7D(zl2@K&{#w#noXI%SD$?9_6q2S21Z+Jiu{rGEhW ztA^_E_>bimOF#&kJplmL0Gn@Wz+{<#3qt-$0c)u+1bZ1HxbiVU0lx6NykCSkM0k|9Pw}^yohQ9GNke z3#S5VKzs~nzW`NQ2Mii{HrRm|E&nEp7=D${D*Q1!BH#lk0bTgxkML(>An;Ox?ok%% zZ@;_q-&6t|N?&OSK!TsM>jCz_0QtU!g@)eg51vy$gynN^Gj~>RdR@wp$!&RbePnUXUdSWbsV3rY0Hdk0>6{+ztimh%F5)^9?2e`o(|6_AKd%FIEU7) z@XG(X+T0h&sW3i{Ej|+APuxsMyeCb({2Csj_Ty@56aX)c(w-n6fZLkD@Hlv0o)7Rp z)hj#wPvL(kg_H}sP>esqR!$}JkK_N)1U)%2GYMo*KsI1R;AcRAhb4fS$~OB??4QnM zSLS({SWf2RdSvA5(+wyCB9?$P`Kl|7C))AY)G`=naO38f<3rt06|=O4Vo;&YtoJ35NM6!$~EP%8l?ifGa90j5ax9^8<4Dyh80+h3WNhv!4kY9#0mQTUza{XG zDg2XdKbnExa|*#axMKkbLuG^w7OW>#Im!U(!W=bRM8LtocLS7wYh7(g_>H8-wYWBe z6NBD0sj-MP?c|L&%s06U4SFn;ggJ~sYYQOp=K7;Y0 z-MxMH41FaIZkABevdsRU1I+(-4;N>zK7V=k8|_75_Ky+(Wck5M0B~i&LrX8SfBcUG zNcICbUbUail`0(ckTq*Fo(O%ACo`#56yu1pSH*yQyrv5Jssx~LciKYnh@wsYhGk73 zp+EkLlAcHd(HrZaMYGx9NLqL7n~>1$dlwM;4qImY+4T28`!P@e@@)Vkf8vjCA*|W{ z8U^#}fRTTM|8DKSNAmi+%D=!N!&jdfyF2UM1=qP z9hBUp*Kv=Y{q@Bq04w5*%PoJKMDUnqkACIUb}q)PugRvpf$S)sOh~i6`p!m4lP#kS27o6J%8H9kpnytjR>%PMfS)0!kNV7a!Se{m;U@Nicx~HF+Ln1a8g~!Ux z!ZDM7pY=1eBJfR48XU6>y@AM2h2f?}r|nnGIwXMDlm_HOCPTxQX0HK!TkDjB=QFg~ zx$XoBK+sBx@HV&XOryT~eYNNdH^Q=qhLm3_Nr84|@zH9=Y zQw@FmLU$J^owcLi8}k(Bb}mmSbz3~7h*l;Kn(YUmS6dn^OjTIX1V?J|i^UwBlxTB*>$jAk>412-}Rre#@)zO1?Wv5gra}y3uzv; ze^A%WeO$s5zg)R*jCq~v$QZ;gGy2dmNA#ksIuFsDm4}060HTMkGE2TV ze>s-8C=gKn{ZgHErxRlD<;C7A_H#tZLm5GAdLy64-4mcdvrsw$tUkU|Ti?q1@d3IL z&1TfGDVt4;EVJSE)ZlIT>Sgb?SqrQgx;P0)f3T#jq?Cu+MY1i`!pq=5iAUlJUew2g zyq`tySOPL;*$?uA6#%FD1AiWx5U%p6VxuY6bHGR1O3yAc<_P{C_8-G@zYBo!?g&Di z_9!lG#pOh0`YnM*DU*ND5k}lG;LC?(u6mH*zpO*A7urO_`squKpA|q@xh6J#NA79@ z1}9AU2>)Y#VXEN4WLC&WcPyO1(I0IUcg1IE3m!vSJohwtXVj2Z7ybyStotXuw>4uJ z)|L2fF1z;woVEAGK;Eh!-{JNf_^z+UF87>$&kPs$$pBV#gg%-KltUC z5yCfX-L~{N!uG?8S_lpX>6wHW*?L5E#(>F{29_BVLLbPk`;-lVYvEsO`$+@gf2U=V zz^-5Fqy+g-ix*`C=(N;TuW5_WTofSV){jrIbdUDD6aL*_6tx%p3T$Wl2OEW+Cg*Cg zj~`J+cY2u6`Zy;R&Rj!dVsoFA(d&8!ZXFl~stf z|5Lz4SUJMlao*_VZF$6!6?)>Gd}EQwa!dqxj&1k!j-Jyu#K+1*yrdC)=!E|Bxa~97 zLhy0irSB5=hq|!{tnq$w1)vN6tfu(@03ZNKL_t)4XMUhj@y%kbggf|Sg1v`(*4UJb zwQ^&bARGmzS`@n?{s(*y*0Pr(dM41xjQ7X)I~5D1|b6w;XfIu-u2(mg@1o03k!XD z_5q5(U$f6~G!jIZg(;03vq8vI5_r z?*fqUlCPdnAa7GwlmNtL=p8}pXU0zxjLE~yA}?}tTVL~f^61khYWpV&00k+C;Lkg5 zZxh~OVoBoxrK;@OD4X2i_8dg`b4#Y7^9McqUN-e_Xf1BijNm#F{zppC7BBgUM#h}V zL0vfFk@NnE_bKkAUE(hhOt+?ch2h4oyWp*_N2d_LNk1Rfm8GwZ{W;0CerdlozmL9G z9X^UDgga~Cg{dNS1%PX`^YJmR9_Jp9C;_L^-j2>br7hZtulXVT**}#Hu1SljPlSK` zKIVFJIY`u5?b&%u;$GD<<89IJ+FvLF#PikDdIn4>(H! z&k5D%()g*urXtXoQS$2L#xG^Z-@B88SZ4o7no@_8eIQ5X@Px zU72uCXMK)I7XR})`;5yU5C#-?C;W*64u}ob_XOE0SPD;HTZR9G3?sY}r@L+&4bH9r z5FX(lT+Z?{dygV;r*`8H_$5bC1?(Y+6#&7{?0+l)IC!_tJ$%M5ZHv;yT^C*okhhtM z{47i{F|tXrWNYTB0nS{_ily#Pwg1cxvnmItf=oY3hCL}v5z>R;h=O!#iD zKRSu|6DvSGh;JIGzQ}l_jv2FY6Q{eLyj6on2}pR3u15H;iU3OjSOEf20zPU1Sl9f$ zOqf(~mo@*GCOuoBgNw1GVCkGBk@bkYk0#P@5#qFP&qmu1*2~(ZnfOooLL4$5~?(?%$RaO%Ght#P^*5FtQ?$o4;4Nl+F#i;Dyg0 zyZKqW?z{R~q5-(|3*eF`$`V0(?~>CEV?bEowLJ=E9*#MFuDP{OsK^T#2C4hTMA}Br zUD!b?Fox;6{q~j%)<=igpZt}e+E>3`ZjmDki0<3a4SnaOaUs;#BYOApyR7hReoXzw z-jz{z(u)wK53mSvj|TZoL7(wZbkL8(SS684)mvmo~46A zsAs#F=tEcLh}g=_Yxr}qjk!tGVFc$PZgo|9EH1&JrJ<0FkjDqyZB0CzH=z*}f;Z|f z^A)+!86OHt*RnStiu@QQYK!VO?)x|I(z@2Pf+`LA8v%_X;c!)~E3O;~Wc*`gSU;!} z^M9)9a=Vi>E~`)|qjxEw5Fd0;%e-<}dA}6PywwKMERCJ(n0EhSslm=U(}{l#sq!E_^{$U`75W%)CV8N__b`H^IBQypL@}UN~b?0?@w?KKungY zNCbc0pL2`HZG#=;DXCAyY!y6#p~1Z>0jDtk>G`ki2lJsmf!Y${SHiFgU?G?SKZpnJ z+uw^BigA4PYP*T8uYLQ644IM2Bk zAn~!Hu$+>86(|i6cI-ds>E)w8iHl2F#zwi#mkn-!d3kFO(w>T*!dW}T5Yg{BKN21} z>PVUi&xJ|&^;uD7?1YcYeozS6Ks7`I;lUy9D-GY2mVpYI5yU7`f6 zyh!Lfn1a82r=_Z4xk=PCC;>Unn&4Oh^1iyA1EB=06WSI3AM}2-M$r?zm$2G&9xBsA zmuEHZ6EJ=310WKPTRClWgb`~KnxDR8@Fc%~0v@S{k1!pSrz-&o&JseF4)AC20Tx(g zzGfL9uqgsi`35gP*GyR>np@rOP)DVivMYBAtv<6-w8v&Peq3hzq?#F@1%GA3GydGt z$I?%`?bsNeCGERi+AmtS;z$9o;6I>j$RS7O;xdSGBx%$^H2H)pj)Ec3XkX4GBm7q& ze$wq>Y3se;_6DQQ3|}H(3(!->1PnCKAizYUi13b5!>k6z2!kj-O3(zB%&1zYgUkRK zt9>5|43X~bia`>(k|cPi4;=v)b>_bdaq5c_)XSH+t976=Bydtk`lZ7n3uZGhqryPd zhWf4rLnh$SHq3qk%V1!}Zr1`YrD@8g)h42#BR)nn{ z)VKRrg1tQM(^QC}6u*oT7iD0Ug$Ln(ObOWG_ZRBj-|Ja5G2r&{mAB|97{ez*8X7(t z3#|KdGa#o0*p(0TeE`S^s0}yyLE~mua*5~9p(~AdO3SADMn4GuC<01ir~LDt;cj}b zq9gpV#-)D|@ZXSmwK?&CH!UBm1ljtNQ(39|z#hNQD%L8~WCd_i3GipGcUGu!W?qee5hCYJ=%Wl|@NNpgXp!t4K*;Sr=~`+nnUoPa};kmuiF)ZC<1B!Ca38)031i zv;H1yL@okiR+HhiPQ;*fe}GD9!~&3;&t_f-D2K;K3Zg!b?2qtlUUT*zFK_^qfJZHP zL^;BZV#6}P4}q00c-BJ#G#A}eZtq`$SLliXVSGyiVD=;RQi6peqUu#G1K<+sPkI|` z{6qn@yOBu4Xpd#Vm_BMxbNcdt^kDo)uqr*qA$|dE&`8&1U7Iz^08#ur>1-tOoHf95 zyYYwh*kF#PR&ne^xro)Qhgl)%=~W;~K*j|d^4?T?paf)Q9-2;iC?Z2d#%H)M73a3) zk=cJX>Os#~sOEhDi*l0G5dKHN4YN>pKKSEVe?#O$^!@Ic&|`RCP?=Q33J|{|*E9O5 z<_wH1C#?7$6QU=S0G7FjH9$k7CPOR!`mWJ=_St{;FaF!se6naPciS)Y1HvwyTqqDz z_1cc>`+0Gwb$};P2IdY{PPPj?cu{RI6UGv!rqS~@YI(}{l1J<rEL22bKiI_y)j7>vm=UL z&b2221TT=8|GPRqm5V#FCt+ZH{5K}w?Ct0~tdC;PHP{M-0hs9)*+O@i2P0HNhvtQ2L#d{aTNntxE(CZGC-Yd}X?sf_Q1a zbv)(RX{?m}+Z3cHb!65jb)Fsv52q}Fp$WKKmYO!DvnRB__kobUv2WMf2+wGk!W*BH z?rGtv_)W;pMKt_MIeJyo}38Xu+0rn?CB-Lj|p<5n~_CmrHH zb4^}xxk8(7u?}k>WwlyIFm$xhEWY?R|L0 z#YYNED^rKIsc5rK@>#@uV-iW)z(ogA3fpSXedjzq+=-Ull=g|Laz4v!9NlH zpBgdD?U(eMR`wMx*{-zZIH@+UNKmZf5g|6 zC*OZg(qmKL=-Bw-#v)?Bt?Gp`@L$&8({8ZNgvNf z$wOZgtj45%lTOJG=BM;gCPPn{ngMov(}p?!jo+#a;O9LI5>DNUH2nD`kKyJw0-tx^ z1et((w;iI&OJ9lgPh|&G6xa^X^O0f@g(A42Vfqmvh!Vh!lHt9fkuK~L7k3JA1`ln7 z%b#Es{1aDUPs)b!JU2w@13pdoJ2Cy_Sm4(>!u*S-P(}%WM|Yu%RWM3G`&5UOfG+&= zIp7HYDA~yup&5F@@1;Cm7e9Mfr))q-pCN~1uZ1(LN`0WUMw&_WdHhJEijjj8Ay;&=td?o#U({{vi5ymx7WkM zPaKj}rL{~RkMQpgb2D>ua}VZ&>hWvgn<{mgL9E1n{grwBZUG<+^R)&5Q>Vva|R!83itW*43PSq6(o$GKU7`w#+f**5IZ z8UIdjP$a_W|2`KtEbY0dPiSlERzVR45)+|dRpt8HT2*|Fn>3Wyzi%`(FH1WTAN)!j z`iHTP78I9FiVoaaz`tBxG}9_lXjq^B{TgZKvvf$x>SgfEyf^NZfRyl;n1AAUz9e0k zKf;6h{EM0sAt3SNjypN_70jxiIH>pgJASPE5dzQxbU+jNUWSGb|2}*@#~Ug!->hUP zKQn(_oc6ihOv&epN2H$f{`q~^2&sKFT^tEbz>S^|0yvR?765t_+N4+aiRT4r3)p)6 zSUl^c)xU)R=G6j>TQq-5(8=rX7649i#3K}_0w?otk&WmYgjb<;3x`>RI2z#CCmzuGw-Vqu%_ibHUkj?aQ)0B#hScRU8(25ZsNrAjcyF4phF!@2=G&P zLL|aS69<)jUnNCAAe^`-qX1VcAbedZGBu7M!T|L_GeJE5dYzJ2@^xL8ITWVf%jiM` z;b&L=DldXvUpbRk#`yGk-=RKwmBI;1{mP|#EbMIEl-O2>Mnenp@4!|b(7M+QzsKRZ zZ*TAn@y$I07HX7DgdF1c75WsC2`GplnD?~j#6R)X&b}%&V$HoFG?SugZ za$t5H&a*;*GuwWm;oE#(etPS|2-QFL0pw=D?_S;WU&>wSm!+r{XEa#7)goGAEy|bk z&L#p%w@UGJS;EM+GjiUI3_KLHVvHoIPY7yU&S6{g50PsW;QjJ3q7}*Z_5u{TM-EhY z9d`9mz-ueQi^XQ(S>F;k+FHoUzcYRaR#r%paLW&fQA-$~Jr91YVr=~}F}D0Jy;K^+ z*U4F-gs5xcu!_nG)2k7AJZs+zAQk7o`;kP(lZiLSNre77cet^$c^VtUq|6$> zw1s!Z1ma75yyvR^&uTl1xrHYyrp7n8;5YrW_L1*;yvkbyij(nwS9|azhxuQ%EhYTU zZBpi1<=7yEkuxV?&Jlw7avL8WL+G(V7gkW>@@_I7)SR0&BxYQjd}~9 z?cu-EJ^dHOz@E#s09G`F4f6Myo3ow!_6CzCtkM`h=(`#g3Y0k-LQ1ALM~(xb*$RLrUV--*ams;)bAQF>OisPKo+|sf41E!B z!JTW356qwK2ViUwN^qwQ;#m<$9jKox*)(|zpzs0$7+UK%s^t5L+^VmT#jAh$p$(uB zXq9LSv<$aHu!V)j5Hg2PgsSJ_7vE{X{+2zC${-hq@j3;$#iq~r{mU3^dhmB?00yEm z8{P&msjiyfo5UMs+UF7CbVV&YRFC1%H4z|UNW|o9{ohmC_yQr|QivTP0PV!6$1du8 z>GlG6?)QIYwExtHFna`nJof^!Qi;|gVP4_1{z{)De04KX`PE(u{3S1h3HUYTTs)3vLa$F0) zyH#4l^94{dCZumH(U18s!fIke52%(D?e;&b@`Y(eU0S(!98cRF6rwTX=^=hh1(k=D z`g1XHyEUGr0ahRSixD2QR?PjbRWPUM*%$e*pXIrF2&DO8I7&|k-7U9S* z`L<|>j}W$_v*Wo=*bH4bkdHBOn_`~HkOjl7jJC3O|D>@9j4?YE!LvmWoQ@rXg#h(M zaD#l-w)S`WtWCGtdT2!T&M;M*MEfmpRl0ftH0I5iFc0OVc$%d(Y=>@k-v% z4g?EF(a`Sk71M6hFauwB0B0EE9SwRR{%;llUP8_n%6n5#Cr&+q&(Jmx$XvQMf`HQs z0hpP|rzMdPpw*KYYZn4~_^*9VhyU7iZ;8J$e? zu-xo>A_!z_BWY2^CVl*(E}mM5!s-=A*jBjIssq9>>x2M-M0^?PLRS$!u$#E(3yUOfgaAYwFTv9o0WgUVg3O>Q*_h-3{4B4 z@jA`f54rh}Z3z^alTaL6r0>1Z(lgnw%s=^pzu8g?tw|UzT7X~v@S9n18}(N27A=#3|_}Is}7ZUU)$`_;*{_+_(9NKFNA;z6sZw7tj~4EeJ^9fM6mBuyP`t zc|f{#avcc*l$8}1b$~1?y9ur@9_N+|iplCfaHGk1s|xdHKx0q{gWnf@c`iYy#PT`f z7qU;*XWgii5d>&YU$ORQh&GH4vK%4dt&;e;!n6I5@CX8C_VWBzMo8HL_{K?vriOMp z^+RV=X3kAO4t?dw8ez~o1ONzN@S^UD+K-*`2&2bEhVvE=M6SRqPRAQ_F8vjOJvb8= z1_kqv24JJU$x(G`mrKPr7W>gM;h%9!oX+?o46Fn_eUUVAGiUnzGERv>O;9_t1t1L2 zzb))&TaP?_e!J77$}9p?uEp-xnI8!QvkpA$gd!DEfDk~vI%KbWt~6EUXaEv#Fn*0h zSxrv*tO%h2Vf;yhJHkZ&>KH9J8aY4ly#KGn2m&2o{s;pP&qLr(81(;Cr!zvw%3Lb> zt;r66!S?$3%3*IYYQ8oOh#?>pY6nycuYtZZXv3wAHW9eqT$=2<5HK^T2kJ&0S3nCe z=2f!XIdi1%IBejbEt5PuO7*eWn4zk8= z0FS@iOeU8$P!`XF`AI`iD*Ms4A)-S35J0@`RjaD8eX)tKV{)hFavi@lkRaxQ`u&?O zQ8FP_z7{B}J(qRQLKucIt@Rf(1mJ8js?rPXu|H`mg}flhj8)Ro7qJ@8whwh2cRh^w z?gKg=#F5KCV8b2NRcR3VLL`kNYJ-{XavLNxB7!k4f&lU7ic|v5-uO}Ezu_Rgg^D%C zSvl7oBhsZe=XlS{V{$oF@}#{qsNUbJPoC=eQJqU`Lr;i?z!22+xpCRdM3^DA*04lV zUk}Pv!)8CsYoKruqU@Ra_=TTN@rEbeA6V}Z81)`yI*!H|*gmEP9;v_5UUispRW#o1 zQ2PPulpTO*oPw|P^=ptm`S#1z+Qhl%>N+RUTI{)ZJ;8? zKJUeb`4=HeoYl<=qZ<`nsUZ*Q*lS@U%pWO{vOdV#Jn+{Yu@f=a`omHBWKEhwmpbY% zd!fXM!N_6!{|rx+XGT)9B`S26O228+6(|y%HnSUWo@Q<#@L`*ilfAJf4xQ$R& zdm%b-Eyy`_j;ZJr|jNL@8dxL03ZNKL_t(!Sk;dP052fpG2XUc+KUhX4gphRpg9%_Jp}=U!@Sw{ znC&e_@{ZM9jU7V3qZoT|3OCH(g|wf!;%Oy>+aaeUf=2LXG#CZ4Io@U}mX z$oDz-?jX^jXy6>K#s-%izU0H4$tn}~Zim=|0Xbd!fp&op)VXUr5d=DvN9E|*)!X=d`$0HX$F`0JHH@MXO z`ZLVP3`w3WC?cd0hcQGThFJ&JynZE)v z7R2k%{V1oyYQp!6oyPOn<41eIy#)viHdH2&zyhtte*H4w2;F{#CL1tELqqkLBhy64 zHR(JbL8mQ*!}zm^#_h!r-qudMz6_|Nx4o);+?-40CL&-WYF6Arx^ut;f&hp>cfSr9 zUZ@f3qAq=Y5TQpPKm#zZXee>dPpk_XSAd6h2z{H@(^Guq;VJ8Q{E!`@9ZrUPXRe`3wsOUiMDHS`X z@k2RBBOC&ds397u3&&B$Dp?g0`2L07M@{?W!Q+_Wh&r-tjU|KPu{zmiM1=cM>u%4K&3hJTm+VDi(i5eW#T}j^G$Q7$++)Pa%RVsyAYW` ztlRsPr_Fu-_OFjI&aCvavPwQvn^PXS+PCX+Bj}*<00&mPk>qvc!ssFd5T1U{f&iP5 zzMoGV=0sORp9s2l98rvi2S!{0ltik~K_C6tEEd9H|GboD?0KJ8NhVJh0 zgSvHfgkC+DtB+}Wum91QU;!j{~R&?#C@-G{vEtkcA|0VG4{_> zTP*L?ml!ehvk;&@>GZJ+1Idl~k_A@$aN$j+SJ1T3HT5MYAiVI>wnZ0={k@c>|C1lM zNL-jc_9*Az1$KKb$?y;I_0|7)j!akSX;mlaOSYag%@6fIEC2UeX*_Aw!RjBlFA0Hj znn2eAOy=*9(;us|>2!7K$W5Ko2*GKJW1kBR1gBOa<$HxL0-vKfN2xeU0#nP)g6j%5 z_og4EwV&$Aq&v5=Thl?1I#FsoVMd+IfBJ~n6~cue5`-|2oAVI900aRewT1yLKu}A) z;Bs-_0wD|?e`Y#xCJ@1~%J29-g~r4!7v>N6;+pCVR{z&hD>=BYVRW=ZqWXuQL?ybdbWT|3qaAAVM8} zJZE1X?b13Q`#f=durElRl%7>nCuUuU>8pPFJ6Z_Jk1Y!36Azb_ctbTy) z6b44H8$)tn{lKVD?RNp-h~Xv8HMms_+cqyX6k3n$AX@-<9vMaAAAF|2GRJYBio$x{ zKnE$aCQSq<(gVHkh7UN988&>nHo!)J4X2W(yZMZ)w+dT8v`xKCjy$8?ixz(&UdLD_-Hb5`m!axN^IDUK@ z8pGJhtYZN4&gwsmoVx;G{@^Q&zcYVtkK$hld)>4S|60%45<+;Ue$dsFn+uFO$(vgM zs!QOrKA-%N$t>tvfR}^-;%dVWXM$OAE9_JNSnm4gY-NycML3A}CJ`ccB5%|zqR0^M zSv*qpCdHUQ=vWV2m3>rylbg=T3}G^tG@FmbyuZG++WJ)5g5xK*&*FxaYS%%7S0 zeoiOqaElSg6N1u-a90fx=Xqfak*Eoa@f`+8+!}aidkhNK*WA=$A0g(yJWQd8G#D3l zb@jbaXsX7P$HU*=3)vM>^#XYz5N=oXX;$3i1<+q(uXDVUmxT?b1H97hZLWMqsD5h_ zJR5!(fmJ$VB9<@Wti$6!Q1_hNr)Lr~JUnxr$ZY z`saO5Z3yU$^U&`hSYy#|m)aveg7Daxp1%G?v!{JC-06g$!4I#_)i>YDSWB&Vcd7AG zDPo$G#(1Gc8+As|VXVPj2;5-gTYVr>8P5sO0FShzljJA5G_IXvr!TWGBCgA>ymAFL#}&Dp2&MoYGIkjc(v%4c zkA_|sJo;*GXv=|j5wQt9ba#)(rBXtBoJ80BVx z;19j2FCzTxDQuR!H^ zES;~Owx-LUlA#GIQDx`bFq98)Ig#{yetuF}rviY3UjNxmf^*SplCHrZH63rJ-5S5f zLlB4nfYbw$q2~Fitek(=BqlHCvn0N)^P^U!!2AIOfj;8H_tjq*{~^%6noQJT69TBy zHY#gswAxd!?~{>2*7v1g$~bE8eNl?R+z_Y~Q84ck7_at=N|G0l`xA&&@U4h@7XlIn z;|@dhF_xBR;&itoX8faR;2nm8aL`wfpzjV^-QvGjtBtWm2nZYr1G`mCMP)zvg6#sW zV&0e05qTi#^Vb3G005!7(~2Zp2tCekd7cbjiM_gfVf-JtB&Qg8SIxtuVI;U=*wiJ2 zmglI^5d^|;aM1unwHYA*h8~6=mpl-dMlWouq;8Z++-NyacYk7)-&Px};xH=xq7A;Iexcl1VUR*dR(_g!7RE;JZW%=Mtvg?XVvyBhS%pNaT)6f0Zv;SMAbO~ zv?b~LXiiQdb&rq%TyR~+Za}sYG0w}$BF3Z7kIXeESblO<`6MKLtBknC_>(LQgLkw7 zXasOW#~G&_FNSAApKw{Q<;;BYitBz;bD&9?E~~&oT z8JZOC4v;NJi^!+LBLpCnbZx>#8J>RA7FX(-{NlE1nL$q@$wVmkrW3P zQ>|>RymQQ2Er@^BvNx9Md|r_LY>LP zP@i@I;8veZ_7;KMOG(vHN0J5B=4>wn!W6pUTEbp)8DnE2P13U=NK>zIQck5%y%VB3 zwLW_g!@-Ik0U$yE#(hz#XY5d)0<3TXUWsYEa6`CF#1x_E&@4V_z(W9>{2`ulBXs1m z(rm{7sA<{jh52Iu7GTd4$f*PbfS>-P6`&XnR@X3pv;h56ti9b^KI18Z0LZ{|X4aQ`_7EjYl<~A_#mC zKJo{c`42fxZ}Y)nL!anJ|A6KB7Jxm}e-9!=*AWENaZeITgI~nS2^~&fZ1dcyg`;CG z9x;EXO&`j&0irMn0YGPfBnqHE8V!pO(9mxb@Rr|5jW5Q9@ponkVPNt#jIO$#%_bTE z_6fTXaI1V_{s26?=R@|kAqYk~*7idu0KFc!MYM1~OYQV?!#RBb*6}$*iy&Z0vEtL7 zAS;o^>Psb5yHQo`(L-@U*qv+rK(HyM5$*(ASQu5X7qw^7MeU1c_U9czKQOPTu*b1M z`H3KmI|W9K^7X%@=`LCTRA&&h%uO?A)emOCD%g9bdPjJmPIKj1?Ss*;%%3uj7{2qa z3c&o246-Wtz!~GY24q`+t3EqeohOgf!)pH)0pW?i>`_l+9K}HhxUAI#LI8joFHFtH z4V8ANtVg~0mOyV`%5~y%KMfC_mSb~az)2c3kINQQTO>Q0ZxyQu2m=vLED$82Vn!1H zap8};X3sa}v68u0*iF@usnFYW`Q27|G);YF1%rF~k8kgOxV^O&0N0k@$`cnsfIa_@ zr3JW_+S&I$h$H^_lbF3+RH|P6N#%Pj%)8@eK-D44pSHs@_(PnC-~wats!-!KEa&$# zbIuvz3p6DFVGi)jv9=-!C&W4NAllIq*e_WeqpG9C?u6rl^!;4@vlMTzWB$$mrAJnQ zfzZFaJ8>h0F9YaOxc@K_Wuf+qB2$J2|Bn^!cV3_W4Io`s(X0UtE5 z|DeJAS1t!@0OM!%-!%Yedq``oPu1sHbUm7YmfW@LINHOGnE(H?$*4W*;d8VA+15c2 z0Ir)5z+B=R0tf+tqt$=Hj@;dMGulFzxG?^VKklWB^ill>P6PmCguYsw=hjPN6nR$K zO_JEMsw}}*kk)!`q>im&XacTUf}j3)@$P>}eG;Q3Pu4Q}Nd>_zPblSN$>>s-L-0>U zusQ}&`T%0|&`Q+4>0m_Jma*vTR*ef zikqDo@b#Pa)d{;JGeDD{`@CNS)d^-#Eay*T@>Rumt6%&D5pY1r%n_IhL?VQ5e7ZM8 zO}(zL0i!O&Cp3MPumAa6Djk+8|3Q*6lgi_#+9?r}mx)UrOnDOw^#U#{`y{145d`Ar zI?&z%go4R1sDFh;h%pmQWVx9%&1?UtbHW|^Co+-wzo^B1H9s{S)jyAO07fn_m4Md_ zx{rJZRo@$pF)F;9*?RSjI+u3GAc%A~B3xmnxZiY+_iF}im+|q-Wn<99cqrjAtHgB& zEqmf5i-A!DMvo16sW~Kc(?etLjS( z!G5e~G=Hpc=lH3N8^ynt76pOnfBE=P_cKUL6FzX;TNnhi;IDW0?>GnkB*K50@2z8- z@gKSz=H^BW;a>Z(7rOLG=~bRra^SFld2m+*?oPDiK_@{zCxmV4o^czIq!gfkzx{W#P zxymW0TH!~7(gjkoK2ZROSj=rdh0`rX#fW|un9Haa&~PyYC?Cv+Sr3~ZD7jl>Jjk57 zts~iJ3BaN6)yG!ND-Y!+dao^xP7l@I&>&ZaE@h%KxgBB4c<2XxH0p&A zK== z6K!?L4QR>Bnd^s17(i_6CkmL{^9Ha)iYsI?)u-aGK-xP5gyYCC5W}v{!wcpgyMzb? z6?-r%)pO&Siz?5AC$hHMtA1MnW|u9IH7vv#e;7C0KpE4MxaAS%&+Af~4L_>A{Z4WV zxWf5={4nbKMH0amsXKm+K#)2`i1O$xLquPPp(cJOvSuPMYW@V1sE$_?9Ue0W*dBlo z`8woE!|9bfStbMHeD$cr&kquw#Rvj0ec)d4JHY%O9v^fG%sUAK5)6vL)--a|?@P1tEzOd}?sZ4Q+iGtY zi3J^Db73d?qJJ=m6|C`V^R~|=j05>-7Z8KaoZQ0i5e?8CzhtHBS1~F1e0xALXABiRrMD`3*vzc%~%kygmCV?_i9Y1H%USaQ!E5 zEU7#5=NY7hG{BF8D1!-%3~wbI@e!Ss@JDLzf&fI4dQol|iR*Uo)0-w9@G6Y)-lFyP zQ=YomkT!IJiy>o*NWB>G-6ZZADr{Wqxv^p7;SO1;%q@`~sONi0LE}5*60TG^Fg4m7 zwuH2UKJ5ueioPMnJG_SkK@4~vn7%!9A|YP`j6V=zfcNDYKahDa-qa^zlpKfhZE5Ano$422RJoK2JBkRXNte|&@2r@AP=~?}#QoK^Z%PHJ@MxZC~n9N{4Dvor(< z6cGegeBNeA<-iyUBKWVvJwn^>+)^kcfLInx?SqD*VE3E1rWFYyki;e;7Xkz)N6TjZA_T5vC7J#;l)W}jg9cM%Tw!K+s$&=i z`MM3;n9rhui=Ljc;>24;o>}5 zpfTS;t*}D&_Zt#0(h)lvpk$*|6n@nx(h z-u3$HnLG5eaw7p>RO1h3pLai07|;D1%BnbS(e^ z01)j0CprQM3)i|Tmg{1F{xUXu`QjvXV=D*fwllN`*l7SXRv6WdmEIt{HpVI(^VQdF zzt?e zWS&Gb?M0xBFiik$>vx$zXMHhF+M_t$o}_5*P*^0E|MR*Ii(>ab+vxh|#8fDUUkLIZ|o=ton5LL31KU=)$K6r=A^P;N1oUO>?#; zq3e|Wd!XNQkz<%|$qzp4edZSVyY;Sr5GMOh#AEe;q!vmZOCJ>~Rj3f|ImccmkqyOq z_wFyDjuqXj6*2N?0lZy8o%P3FXqY#KaWGE)E{bVW4-ie)z085kB^;?ME&>6#X$B}4 zL#VqFL>?qrdJlzg{W-oycWM(WStkX@D?oj45J>I6{_R z#h1O?gkc1C`R>P-jxDgCYk_*H6({?Lfpx*c93nL9+3Ui&#K(;a*M7zLF#sJ*M<>{O z8ts`QoCmHl@a4hX?EpmB!bb@Q_#tdPwH30zNuU+)^WQjvHuAidMgdL1qs9{30It#a z>;GH5>UqkdfI8P$NC;rA(!RgmtFFR_TWJqq?EmBL@!kKX=@6|3b@=hW+-P+==E!>) zEPh`n@4sr*kGAnzd;Y*rT4j8e5a4Y>^*5`q+dqnsOQ?ylC)ga}gth`wP)J)c>^{IX zwj>Qx)y~mKr40U8_#DB8kI+H-US<>97J%kDMP-&_BpTtMN}3KvzgH!s;AtUL6SfNp zj$CzMf0_jiGzXLd=QIBk&s!eBX^pXM1{^qk{Hf-`A@J(53_9u6XKfF`O=NgAQ(Q^F z_J@*G2a@H}xz(MfZA9i;c?2{*67)&-ARlXM=~C)>j9QapHx?%yTe3$&2Votq|2T{n zKgb4(az3eTpC!zG6wdxoCkXE8PXwFoS&rlldzU={CIpLpn}zl*{n5Dy9wY;Km~?=cPB}z2kf!{!HWu z0cI?;3FP=401hp*{CDK0zLl`?lErdAcYLlOk57$P;&8$v@Tdvc0Rt?U1EA9F_HM!U z1GCf>qGH3J$y?fJM@#Ya`DEg22JO9V&22ku4u*si$~0|0*3 z2VH*rFCV=nU=RJk{IO8y?`PjDpAk$9^;xM)A4J$?BKi*I58yt1(Kty109^l3AF@&V zat{ISO$n6wzC=zLM8gvS3|a7#_m2%gjaKBdQljEKjLUruCmG1qvV)LJcVTykdq;NOB})<;*S;pfdJ@+i>OVbI*kzj*HU$_ zXWd6?+Fb}3k25ZPg@F|Wh(F&H+S0OW2f+K_epktMi)-Q`ymLQafE65c0Wf_~5R89? z2m$~6Wqj3*l{kN)BWdRsS#JX$w0h_HAOG~h@AtK;%U1`#7qkB$#{XAo;8^*?{2wF` zu)@k^L?ndq_e+d0@=Td4jvyR_(36%q?A2k-d-op!g3S4e`wNp9u{8F=p`SG7Kg(q? z@S&|Ieay0LX*f-dNA~XV3-eE&-3=Y+i=&ZdkgE(ebE8Aw7PymqhGA*81|ksj_-}dc zLICs`8;uwM{-hgW*$Vht<9n3fjkE<%C6OW0g$1o!t9&yAA%HK4_REEa9m9TJ_!hxd zSAV5j001BWNklBGlVH zV;PU6pbyuvOc?Ho0MG-^J+BDVrOq`Cgp3M?@Sz6G1h=GLlbv*yn8hd}1o%9<5SZ0} zgn;DlGrgptGxR_EKuYZ>sHS~HZRr?R^fe~QN_AVic?Qh~@&o1s)iX$yb`b`Il*JA4 z3o&%0rB3$KPcG!34Eia=BdZAFG3kFVWD=9lOUPjXObwxX7GZN%AzLNW7@*y#80I z4bTvLEw$T)jci8;M~EW+22#%==KW7Uj3o+c{W~!mY(fBp0AFS#`h*Y= zEhc@%Gt3_?z@$_1XCC){bVlvRv?YvxAyOex{oOVR;tiuxggFz#w$n|9A2pu=dx0c$I(f5w%_sqvsEY1iiK zWM_Xw-d0uZ$lYIt5^~#UrMiWRh53)d)d)x5Dx9l8XNmfpC7)={M-r@>)!9mpGH}N< zM2|eeSej91!we?%o$I)uy13|>|Xiq9&fIxF>g#7~m}bhofj zJ@u^!6Xzy@*@2bb?;w7uPf(p*sxDtNp|Z+j&XOAAMO+_R%tU5y&*4(Q)g&Ju2-5z& zx{rP_La2>^nS$bjU`#gph+gi@(N(4(S5B^;-&^9xb4=)Nb?ReZa8v!oNF_Idv6l?= zi;4!)jm-JYex}FVD>ZovgHpV)pz2Rvhfw{=SHfAbByAW82SBr$ur!T8pp1N)K?Q>+ zx%G?uEdcg{k|BP^nK4C&w?59a&)a3%YTI}0s8Sr}0N>i-wv)jw-R3Y|t|V3&a-jv2GQnl-9T+Ns9N@yJGbzaH?!S3Q{@G2W%$GC#3D;2lAjt-KrM`?VOO=Pa~{ z3_$|uZuVp3#Vnx22~=8f;BU_on7A{8kDK`e;&Rb!`P0`VP~GmqJ;Ts4W&0(hB)|4G8d0|L%i05*;*Vgd8VhzGYma5N&-FP}l3zzSu) zz+9CMD%#+E5vAtk#|!oDGXqC-`oEIxG!`N_{TNj8NRoMG+L*4;nh@-nJ=9)g($LoH zG8z~+79?cv&MyNB3Fk+SRKI>^Jou87VHz|is|~^!U>L|;Sk;7|_0D@Tk{jj^QNe;c z$GBRQlSdO%mBZWs7+YKSj@Rj5uhUs?aRfo5>6nr9;B%>RZN!s8)aMY!6;-Q4|soJ!_ zS#jmW?&e6m8w4QOSsPU4882A~sQp zfV$Svf%zf35qp-2RIQGe28=?IeL&gW>p)D)2XTpb&z84l;2~qFFEpes4QW~Vj4J&i$0%f5-F`OI4 z5jubAmP#@Fis8=)%R>a5cq6$ncq@D>!QiOBX~qtMZOX=0_IX#NF#jFX=!vOs+IoO& z2re=Ff!M+P>GSOE_7ea-+qXUkPlReS$tncQ06p+QiheaEVLr_fLTRMf^6F{x9HwLB z&gvb+Dosn`tuD7{vBw*!nQ(-YTZGOkAH1`&vC+T*hF zfnf(=S+SvsA3{yPzLt|M*9T{&=L%m5{ah0b!C)t3lmO6AOJF69CINS)jJfGEjIc97 z>PUO0_8^sh#RWIB?I4=JJGL0xg)q_FD*8&6^L#m5JfGT1@v2?D{6QA%Fn$2$&-0z^ z5!Nk>l=VUVyp9LB&zM@vBX@2ICDA#TV)chY7`Tw6ivV<|ISbQYA%=mgf8O~jBln#A z*Q_KI@KLz(H4(~%sb!lH#vA&)i`M8-{G$bBg$}Gj04o0@A%N{*7G#~T#Gnut{9WPI zE!z-f1cBCot_8@JAp&$XY`bzOHbSr-)8#ZhtAF|lTKYw8_)>TRJ{`eO@2frn`qiLJ zyPRY^5#5Zoz{lVt%v6%l5NHgG5Fm4tBZ1H@=vj=)2{+@P6E!VST*W(6U6O4OqQ3dO z{=^C~s@%@}lQOp%h4JIhnNF_CyePtrg((C$YSfvwBv#(}Jmm^mRj>Ye&$Wn1PwVQR z?qQh5Q0W0C3Q}j#^tb{z*5=h3?Dua?Ksk)CdbVc0mOom6$v9G98bY17@t!3_2!Qdk zVhVA!`&vV0F8hZRxA#4M>so-7`5&f$(Ex2S4-fUb3XXk7{H7aW0FU&8vNDt0MtDZ& zA;LiF7-nu84&n67M{yAbkj^a>B!4n#xRUgEA3(VrDdr@ z`u!;3oCcCEEbZSt73UeM+Hto(91c*;fvKLE|PW!xS7`a%rnmuA%OS7XHqd)Ro{pw`+QK^JgUN{(4 zau@cqB-g5`+qtuuaKA+XU9HpE)3MQ}UctWOms;~E*u^n+LU{L|+gv^Au_8`YM)+kr zfV?XilbO1BZ(i+qme%Bkts-S%OIZXqPi%QqN0~si_C0iWLWDm@+t?wbEeltv+Zg$`q?e)yzup$;gv7#~*N%u^H0>a&x) z@KAri9D?V3?;VJy<5_#AKCWwDepm&z0iOQ#pn4z>_rSlJ2nDr5rmjV(97zH zFd*6w@C>6rj7lGb6PbGuThd^F_OIV`0>S+tKcNMNf7k^PPPt)HFr(m98lE+b_jfgB zxv$5kBxo+v4YwG}6@rNRH8wz_w(oS$!R5RELx!zC3y=OyYe&Y@D_XV3Mzyw6kf#7) z;b(RC2gXce@Kt4Gwf{x+#Se{m`hYRvV_Gl`1T^LpLIKa`U>mAY!!UIBiSoJEcN_q| z!vOAf{JoI|CHJ}zXIta)Hh_L>B-mSc19u9K!Yx!5_2wkNGmJh6r>zL+{)7Bj@US%v zzlmmbwNj$kfy;cgNR@HOv0}}>s@hd`vmSm z*Qn2u{`n8G>Zt{BGy}<=?EvcaPW3XL$Q_hd0#QZ6=4l72ht>Z@kK6Pf(J;E3%-;l@ z$?0Nt`MmaGBajUncG21EM*2abGxGy6)NoccF|s4UlSX=UeM`=S%OBoK)4{7+F|M5u zKU`Lq=}_yPtP-57P%>m1jdN*i>f-oHV*S`8)JHlQgDgi1sJ_fKoHn!Gri}- z+&3(r^&RgnB+P{UA&3{m%2>`7$QC(u-h9SW--BAiz+KI!^8hnQnFq1@eE<+;CgUm? zoFt1tN5C0s#6)83vgc1!R{j8lCD1LFb0PguJ^KAe}n*zsk@a+ z8TbuM(y!9=OHLvPV07DY-~`vUrrMSu#64|*xvfIL`kuHixhWSyI@{DI%aRyDEi{>+ znMODe11kK@gdlK&oE{p_tzizUcRpqXet>rZ82Q{DD7^7|>Q>1jB&@iKW(|6f{azSZ zEc<;AiSQ%+ZyTOk?NK&+)Ce>{zg;oRKMU^kgBL!~v(zoFymCQKpKSVs!Xa>uJ%Zog zHC+C&^7~ThzE|7Yj)y;l)-z;ocG{mYf&s77j=9#E7o;EArK|qAoQaFVW?!qYaq*Mx zcM$Wxmr&KUD!ndmeeT=8)l;8XVGt;rM7GV}LpVITlwY=Iy8qqaogqg)uhzf37S z2*apG-XzHngvmY?0UMbf(R%60r?+!vcJKh=0YSp?HV`t;xN~2zd!Bo) zJZCWdgH%~UK+vSu+i{7fKvdj(h>5L(H-T4)C%NsCGM>3}q6-0u6vlmYaZlo$xZsb5 z2gyHz+Ztyu)#0mk`3w%uMxcxkz-lU%zGwmNOEipHeP-~+hb{<^B=s43fPMc)0D$>B zuH4`gOf37DbNh!#3jxZ?nxNH&0KZNn!uX@}S%OFOmcLhq%P`ZUl$m+#JX#uOQgIx% z4Z#!$()WoQ7wh(XRLE+1)awOPO8`#8QNxH^{t*O7()*A1XaHD2rC*7IwuZUb0U-e3 zgkW|v5CRYY_#VOvVLrGk{iCYUc+Pb4dkqleum@ow#p?g(l_M(yzHRZBTEzWV5uhJI zud4gM=p8`-4bGP;?}OgCuO<7(FltVccr4S86?YW^I`coOI~Ozo<4%Pk6mevZ%auBW zzIH#JX(s|xFPG|vfoMe_4}I)E$;eM=<8sD3T$-v%9^gxC(f{bitXu3nB{SXL+8r#T(XppZpAJjc^=uE zB@B0$J;$=9(cc?Z|6{O%88E4hfaRkho%vH>q+Xr_F>G2_CkcOx8xcQ5is7~jE0J_*&LU_T0h6_EPJcs$`{UtX?S}G<0|-pxO;n0-^yJZ|bk&bba-ou(%ci3WXz7atB3>ge(l`0+Iki01PRsaTrEa z{bBTpySfSIs@YBbzs8~++c>eJ@yD^s&kRcaoc>Abj+0^PgmoK&#AQb|3_os9Lp<;{ zq>BEHkcFGF5>EUMUftH1;P3Yyp*^!8>)RtOXg-F};gM&?AOZo~9!A6v-zMbEOzMID z3+`kO+54%%r^M4d!e+^Htq5~n58%F^>f^P5Gw-2+@IF-fJ`S3>O4;eJr5=F9R>MtAVVS;jZvPu!55y@A1-<}m- zW$H+=J{UCiN1}$Z5t70qg_9O()1YdEAYDmReq@6a!J$^de7Q?GI_mhH$;N|z$rr*3 zLNUf&3bcByCVq}!P}pT7yOS3d+-y#QmYbFcAn|AOw;=FQ9rR z?rv9kYJhC)M&+qTDp0}izN2*t`uJ?ApANRl$+K?5Fm~L z98eq>YLeK$jg{YP9CLDJw7EqZ%@p$;58V*V>D3R{x>qC+OI=L$yHl z1bp{8oQr26X;lBbW8BC-FfeQ&)IPt}kMdYblQ6Bk5q(b%SVwj({ru5Aue=Gd?V|V6&ke;3ygZ00zr*j7#xLU3msC z;0-=)rML!_pXrhjgWe$+tm_*Vi;TtJ|7rAC=ehZ@d@_@{Ky5abb0Rt&3u0T)hIBRY;dGDc z1IEHMjXo*$!>0P*D8{A6Yqu3nCdv`q2q?Q>4?84O@Wt+07bR@X7M35!%92SDb zr02Q2m6%S(aF4W+)=-}_;8^YgaUqI z2}z>8i}eS9FaTtXQNO~RMqfH;|3k8+J@ik~?;~rBYT{0f(HcST(FWi?Yo)ULT&pHL zfuof0=?Cm+uC{~Cb#=Yu6rP`LuHeh;#OFw$SM z&ko`w58T&m2+kg}Qd-;m^vv{(7^$6ey9B{Fy2dThng2r=5W$mS7b|$$6vmPd0&$rS z@Kx$t;0t@OF91STUqMEIh~@Z6(uKgklsj4k3)t1CJRfNoPs%6{j0)eYJFu*K&pdZOA?ugxfsXujq)-3Jc(eajqM}#xJ&yeka zZXXa0PEW#>@qM00xa)DkV50%(VH|TN4MIfh0I+9@9S&MJni5`;J2S`w=6_osG8)W( zblQXF$92(EE{$^Bq9Jo`%kw8i=U#^YIigH0%ckep3s}xbKM}lbPZCeLxhU;@ZKb!M zvyV3Dmk^MXa$_64kgrmGx2^tRsD&8{jPb`@`JXAKGyfrPRf}8vFr^Gu3!2D0{b2Ti zF#q=6nRC3m8>SykMq3O`%|Vxdm;_8HTp+a{#AW#P->gJ%x%49Oi9^l#%lxQ$N{|UE zt_PzB;CTittV|hpL>en+)wzV7*bJP>ViTTvgslGMcf|bTXW^ib``iU7JzGDYWBeJ{ zR|FFBK!y+F=e;w07&*)-6UASVtBFY5BgTq1X@IfL7|;BsUA1nQd%F9PCH*$i`CKdM zA^5EP0SuZD1TbW>F_U-``Q(f+=Y<2ESj5i^toj>2-hEqK#}~CfU(QRqb1wG*^!>@i zGxM+f@#}R-KjGh>c?Y%@jCarzyY7CtE307lwdy|KGcgn&X2e$y^VwnD7bm8V)@L*p zA>cI_3knGcniTn4)AX-X5_XM7P{5t?K=!WZzOQ}N&Jvcgp2`+M+=@2$)aUyv4=|Z7 z1UUNZO`W;Y=Fro4W(zg%=Un0~ryLnRGr*|WIi=KB{-LAvqx&)lP-7XvfigR7Mi7Xg z;;&1vCk7dzE?$AQkvAn0TI}%}kpSU_uj}pnkmiZvt-*%l2FRsCRD%%s<~U zSdWRr{JRj4l|Ol5#GE?Gr)#R6nI(a#EFZshI-A1y2iGW0FBOjmO~rT%yW z4JCgx0Ac>TuYj;Wv+aRl{@ssfERG{Fu3>r4-hbZT;vPzkc!n#d!40E=Y)oLJMAZL4 zChT}qSo!BYZf?Mv#uf=^E@jY(J760_(2Z3T%}gKvJ^JEv3cY{X_qSwDCPz>cEkWsj zB;FOg1yY{7Ndfciw<|6QbHy*-y&4dzN2xGhIt4%)p&8Dv2A_gpnCBMMJ`1z}5d<VN<~_n#t~_RI3qgHc`J9w5yH^tUI7);jAdGEIk$VqT|04ktBDSvV$KkGh zY6}K!g~*C>3Sfn3+1F$X03l#AbJUzRd#bq>6w@{w!Z|CXA*63JZe69bpPiEfAM_bl z&iLopXWZQ8d8hm#z!3bSK3elmOBd>JF#oHemEcfAkhb-x@k>F?%|Z(DXaRKVf);Cg zWUQFjc6n^^nLg0DXlKLx`|5uuM5SKTRnL9ZOo`Mj^*f~NL=spNpz#Sr2#A3t8UY~h z(E`EH(hkBqof|Y!JWBim!G5T}M?MG=2=VY5b_m4I&mis(2qVnORegUy)@>B002%N z^pn#+wH~~1fvU5_z4xjZw+Y%-Aw598JSTr;3cEh50k+UFFk?*|qCvHJ80F7$yJS)!pzZz>}cQ_yj}?z}TgZdQ5(amhony zS)kTl9n6?I4HK|^Nd!W9B0%j3!YT-8 z(=ALC*)1wp*B=~g=cFMLDL*R++?TcojtnMKSM~rQWDvIyH1?6XCO4PmWOY2#EDzWW zL@*!-H87JNp$n@U*0Wt$@qO%-M+AuXQ)t!dL2Z0$!XScBRGB1Wobz=u-ue1thfB4o z+Z6OLj_`J)MZ$94KJmcq2YW|9}9s#moE9g?k+j7r4yBC1Nw6MVIG%Hs>rw%EH?5M;o5FQD=nmE68#i(lafB0V4uoL0rTRS6_f5&S7l)`q6cNjkjMD02{jhw>#$J^__ znNY;+&s{QvvA>jW!V@Qg0PmcmZBL71Wu zNYJWrxs!?4xQJ(8chcRc?wz62x3Pd;RiVlMB{$6f$gbchUDyZc&mTj{EY3>DyszO{ zR-OpPz>3?KWuP}g_1hRAe&~VNXN@YhhMOQm1ctb&U&8;XR;8bXYoAnE()X>K#QV)| zws^u6jfd(P<|%%Cz9vozQ)lHvV)4qJa#-lPpWU}oFps_w!w!V;=N-2T4+sIBVGzz3 zMg^T!IgI~(`!+)6AS-NZQ_?1nDMvZScNHQO|9mgI0Br!6Kxe<7Wm|@Fq7fJ+B3!H^ zNvu7f0oc!gefX8e){B7DXCEvLm$KZSH@4g z&Tjf*#W>z@pSV4o_Z49B5dvOR@3%$Mng@&@;2OFqPiFO>$S(<{#ObTHq+vxkm`;2^ zp#3x9@ynQc4z!L4lOXb>yl ztp15dKc^kMPsYy+KqXq+?6>@M!3i7;X!TDvD}h|HJ|!wA5#Hvp(xSJeQY^Mm z5CRtFPx=_8thm&LfJ=1-N96zn0gkEW-T<#IYjun2(t<$iv@XfVS~=PP^7EE}7&u!3 z+2g;g6A%~&_Vf_7fmmpLNZlY>ju7`2#N)U)WE@ok9dbP`F4g^5IQd!2nj>N0NC-#~ zae-;;wE4fz|)qJM{?TXIsHgP7DmYutI!9cWRcu%vo?AO#o9PYG>z{ z`Ca+uhBd-&i>S>r|MGj#jL$s{N9n)TSg|Jy!2UWB@6V1{U9di2Pd0FEeAtbS~5FD5o-{E4{0j|CkxRePk04{{qiR0)hd9JIII7YjLPG;F#ZT~VgAW`3IOr=JuXr`QWy=*HozcDBUej8Q$CF5`E?;1rI~{L&m@vLD_N z;8i||anRpYE`%lho2o;25c_`EG*ROoI1jIS7Nu?7tFC#-0jYSt$c_q z$J#nzbQ!Gy{^MBL#)xB_c*K|?)%i=jBU^?K8YcjE+7wh%vq$X+^^>w#LBD@`&_`Fs zC~=(BSD=F@L7??iN9)6$r=Jzp`^;zFD^h8yXADs~f?9`RO@& zP(Q2wTf)$R;cnw+BC@2ewpsPFM`yrK4-Gwrx58-x#UKc<$}{n` z{#GfHJ}!BP`K(}{sUDQtL<2{DFzKO@-VA(;I+Uh&aC*7+mlsZm2?DsRyHW}}!hgMA&A+}^Ck+;3N7NtZGgAy^Q!Dc*69A;;X3ddkE z1R{(hD_>S${;1N3uIDDW+HX`C#sNd*HZOu-#Rq zsbe+S>DC`af~@`#0-kkGKvbGNZV2Ew2fncnzBe8O_|}B(jiHYYLOlv3<-PC?gSzWd zF%L~auok>gT@*%l&TDPSpz`6->QD7cwi)mP`iHc>l&U#)1P`@G9WB7a(|%uk?CUzOjvwRqz2a{e$0~N*$4@v0gMOL9FFn*ZP1Mw7qKOZV$51qNn9|tfIiJ)OH`}cC6 zp}!)Wlr!$>9~6)}q6NS&3?IK0vK5m#0gfnVQBN>u&o1g;C5~Zd{;J3o|_sgQFHx` zals-#M|-b}V6R(z;eYS|FNPt1MFQc63}+}9`A+)Evj72wHf>wU_^SUGJivDk6`}B$ z@f?uS##?B^c)QrP04nxxbE<)~>{0b#a{5m#q0>MDq~Z0b4TVK8NWoV7D=y3$Awd5p zn8B*7xHEtUmZ%*xsJTOcNwo-`j!FKr0M*lww$!U zKX~4dPk|SjMbC|j9>mA%MJX5U!DR4T1{d;A^VoV}(q!+LV?un|)@QFZ7$HETtgYX9 zN47)=upm(FXFM1~CM}RX>+wc<^)>@o5C$0|r1*zKM?k=zTfKC(m80YIWfU7`ts{kbteIXe^w;3qPLh)UnzSK_D(dz$%_3yVRF<38+*CKaK z!Ho!%g^UV^*<(Byrq6S}2NJ(a4G=;AZkTOc=G`8&I;#d>D{%Dk79+hGJh*BRk-r_@Zr`19Itol8N4KFE(V+3W}^k|9#`h( zec{5{9x=zr((aOXEDSha(SXpO$6V|N(JZ)BAHnDm2EqVmSkXp=1|X!eB~R2tH^#68 zvYNiC?SQx+<@Z_KIGPvYVSA7*2n6n~1z02Tl??5FGiZE{0CVAUu*#$7;thXu z%<=fXRtG`6Bs9US@*<^USmLve^3OTbuC`0sxTvwuA67$B++Bjx7wWSU0EqIdgn-jL?Sl{?$Vy?gSs{!`6GDa{fDq7`G;y8_hvy`% zen1E?sO!KnAVR=+JN-onfPum!0gMun`n!5PQzmi1h}?RYBXCY!Kd~1;7ywr0i?JeF z16Dr(bwC{%q7>_G2iA|j8b;kTGBEx1_>--}71!(Y1uxd}BRr5bLO>TFxCXTY$D}$y zc<=X7CiB15Ub2rW){KcwLDIwg0W^!DD+$A$b_BIYZ$U$y-|I)bXe#|Dtdhf0%zx`D{lqvd@3^e=5dt0yzss3XR`M1`J|olv%zuSp1SpM^`Z4K1OY&5c z$NZTSt5VkleX2zix9bHs9kVX35{6v>b0hZxOanyubr{qKF&t9Tjdc3AR^OS}+h{B{gb zlW9UtzJYS2thW|bxK*VGnsI>sSqsluH0;Vch-C!Z0 z5iW>8&?4P*khRASfAGx4Y8s4a0x%NnwgJS0m~0Flp8;0q1)t(6#?E?(5Mt=BzKMo%Jn&xixRuHjK_rYDhHqN|H5^>^Ntl`^gaNsI&&FaW^{u+p ze1Kdd1WW-k9a_=e>TpMT1ct20NE>YdT9OVIT*EDZv2^GQiHtqrXeEwdhx)vfz>v7# z+Evl`q0&Y5A8UKId}231cxp+t{3k}$K_3h@AOrv~6WcBL%3FLS09f_JGlGn8X>N-t zzHsICy@VsF{tyD5+tueI#r`)J^F!@DT!d#}%(;(X3)aN+2fj7p`(d=#E*)x6XbE9#c`S;|5`FEf3tR39b zD()D6U4&zmC5Atd#5H-c?}9WM$z_{%<0+sdpA`lYx!m-#C1TZ=_dx)&CRh?szM9}YZV;RE^^#C&^94jzBR=+1{Pp^o*!KVw zm7xb#i(K0TfGs60_5mvM-O2_66(K8UF3@4G)E56L2UYsP&cY~8Y1{_2d8!!IR2abSUVs>Q zjZ|}m$*X%tP3~~{%k`XbLMxTg*Nlo;42XU5`!*4yYR>i#ZMafq z)$e`vOD?(@()@-?XaOL~sM}e+dz)-C~qJ@~ioynn8QU&bGRzEb@;o>v?G0E!zj=z1w04As~Rt*6NN| zgTB8Ggg!m|ZNK7s7T0`~rs<2~U_WrJ@pOFVjiB2M@V?p<+?GJ`u2#OEWb~PRW8%N> z{h@c~S9Ftbe=h}hnKy(P%HKGv_QeLEAInbE)?J>5X4(qub3We-W}hEJUv6s*jCdL! z=92IMCVDBO$4Qe_7p}0i=1FZp7~tC-;Ry&d_iFDDbPnFs5*6qcF+4-RG&+E=9qWX{o!r5e;Tcw$0t=@!`M0BHB}73 z?eTW{OE?Qp0B6!;`=}lCWg|+~B(y%SXp6Ir$+|e9o#P^>)NG3jjr{ItB}FHN_GGUT zgNzkGs&v#EmMeJ&k|;l@ogiw@7|O*~0M!~ypFI^^$N;M@Y>GmFr&OglK?3pwRz5L& zw_n0Z6Xvmny!^x}pS#}!Fn=I!{HMEglP8tRJp`m&wWarW;u%rurSK&|=iOkT`mX~> z7DCYd&ps>uuZ1w&lXNg?A>kn~Aj`mYhJWr;mL?>X;TVn6+_4V;$UggoSmQDt76#N; zSpBm;&g$L?X#3KC_UA{1*#_gFf3lK@Ad7Is$An^CoIK`yP(2_7T+|XKnj?HWBRM6c zC26Nu-+I3)!Gk%$>J%Y>_I<3nU(5AsunLUTvZ5NuhkefwAOv(E^EBE4{5tN$syr^? zQK|CW;a+vjHozyf69ccTq%)%szgH2wUp@rA2n`}{UyaNIol=nPg4LcN;qmu-Gi)4! zphS$CpU@)u%$lR>a186#%Z&Ob&~sXW?;4Pf{=7YhKUJZ=jqp(&@wwW<)yO$yAl#+cP+=x_6p|V4t~dW4|mgMz$kw)t|m|KZ;gf zY9IfbR`<`Mo!?5p$}XU_8>&Qv05bUUIA#s*?H>moCi|N|>XgTNxmN{Zh}`W-@XqQ# zZfr-AAFc(K8eiTKgmcV08VLMZ^#hDQU&_sAl85j3J!g~E7paNwxO(aIzSFYAi#=1` zqsHGXo)WUTiL?2Pr@{R9z8Oz^m-Wer2m*BI%zsLf8pJT>9yiZS9E5-n#_YxJh%J!| zBm2JId{&rO%*nL5Q_7SdoeeJ`tMC)AHd=fh3G0G`_iDq?QLj_L_>yr%$+~20!`h?_1)7C)#l^IS*nEFD7R7{n+Sh&ZY$2vctY@}KI{i6_Vxz7u1oSP18DD*2149iU zf*;x+yNq!)iMsV`u}RB{7abqO-;AJ^&8+?r1VWz>1pGN~QPeH~aJt~OX}vo0Cx2Mq zM~~BRzt*upj)5W!aOo2_=W%%sLO|D`McvQVYG`rqf7H?V2lpv25c+8B=y+arF`g5- z-jgmaOk}A2<0C;-h0{KmKSF?kZBq3Kg20gwK=xmjV{{KXIg=Il{eQ?Xwob~df&g{^ z*R_w4zM#x7|G2J4`(g1p=lW`+Q1PPjkMOr+{^^r#Dzx0yR`q9}@78MWVvHBlfCGQL zA_UL|0By!OChrJu{OQb}B!>dPjyToq=u-GvmiKuYk`o>cK;lk8pc*s>pdv8&SoyOM zi2#7hQ5}eQAc&iH+;lc!5L*DJ@mTx!cSjqRti>f%&s4JZj{cGKh=2*4G`kCK&IvNc78OTE|iMzN;1hApj80WR>4n z{v+^hztbo%c^)JS{#X#GMqosT5Wx6ly9q&H_9^+$HxS2+OZ8iZdiW1dzS0#OCn*49 zw1lrH#7aFJs2|4rq6wVjmw9oczz6}vhn#|`G2o-_K8i`8fVS~Romq(j76SU9$?v|( zL*+@|(H5A!wE=oT9eTw4o#FC>%|L_zg4|x!3wS8km9~#ox^9Ke#n(H`0>ll%zF>RBj1n6mKJd=1Ss#Q{~71>WthB$G;kJB zomu&>8kP~*enHNHj{iX&+vF5ZrMj`x0S^K2mj1i?<7nNtvT=a(~@pv(z?HQ&As5au7_(KRk}ojOPLpYUt}Id;MfHK!GT)ai4lMc+RmIO#kXH1h*W!Et_TST9wF2hWi^fZ8yvk6j`G2$d~OsRwjhxV zndfxc(g_?41Oqr$_^j+<=oZ>a2ylIQ z4&7Sl!8aIigGf3qMd4FF@?)!wVdV$k!E8On;_ zLJA3mxTvj=-d^I&`J`v3&Ae4#G0!8QvifF!nRl3Jv}l)gFM}60%;}mJx!o?GvwfC7 zLO|#>7k(iGWGf0r&vw+0f0WgYD#@2NS+0Kl4toH75UcvtMt2$;3%k@=Z4UmrEymxi zm0&CF!Ue{nk&e;}o+^XB9t;_p^e}}!;vWGtGH|Ie%2mna=W$D*T-NbBnkE7>-qn$U zLEAIIpt(l5U7~rr6))Z41`MXx8)C zS)Gx2)U+oBnHW_otFKPtln2LCG9mB^6T-DTA$JNmMNlx(bG&nz(sv6|n8U;`Zo@&c zqC5y-SO3GvRs=s+Z1?YqeHg)9Whqi;{-nVmChD-BM^_8yZv4(TdR(5l_Zmp^(ys`- zU7+%rbNu8PA%Jx5ZytbTqQ}|S)nAN9h@s=wPxjVfXxIh-5d@+c=--2QZT{rg-&TPt zs5#@f;g~Z~3`J|e34-^+WsY~@Mj&X($72^x8=*Ui*F0d#eJ&7$AHZ1kZ3KJjhihtW zRA@>ZU-{R3Lw%1HlGS{Kfi2eYlUM(3tcYcSTy6w`Z>$wrHKd=S=sNHe=Cd&#t6$r zV=d^#$G^#H{=17!02qSHi%E8YFA4zH7*aJ;QPi|iFtGB;K*tCOW*mkDvpynXkyvvx z6^uN4cG<_Hh7mfLzdawXH1Px&u$n*+Gyo*X8PRhH;fQbi>Bm;yBZW$hm-^U_loXsRA$TqmrhRfSKNNv$@6xan(~%~HOFi;-8VGZ8!t|p&O1w>s%|Cvz_;{SjX}mEW4Eo6Mw0&9_sbCkSTSV9(&Meq z;2Lx4N(?7oBO{J-aMY}{2Gd_tH(WUlGEt8}@Q|A$70>mm`Q>C021ABmUi8nUS@jMOTQ&d;?d2 z91o3Q7Iz9fz?8LDzk|{!O+QuBLV!H}s?69f_;IVIGz2r|$pc}ge~SM>`2R)p_)daC z=|$UCkXPceYqRzQz*?zzS$ z6Vd_zel#y(m6ozsK_IJFCT!Gt=Zfn7toQ*00hmFESF`}D27oiu07v)&u}47&5cb)d z+&D5ee8iOWFG4`l4IdFV;R_H!AY%~XZgoA(S@;LzDBiLO0wL1$O9+VagBe8#Apao< zZ1@sGSi&L*eACTy(Ez+gv>>>sI&%)0zM8nJ?(yDzn6%2kfQ{bK5bXdW9zw~EUFK~3 z=C+1XMc_A{q}{CyGM>UMFBPW?0eG(vL162hEe4~AMu4MP*cB#i- z)R%v0o$!OV3C4ikO4tKuSNNWC0JSrpf6hD_0l)t@pWqJt?>R;Yz@>(00F3LZ&j;~` zUYB*{e<{sFzhatv`;pFAHSIb_9j>0v^v;wwrM>G2f4m!rGuo&*Pb}LA0)o1`FX*$kdkKK%jIi<0ACKg zy=K2k?`UaMH_p9A18}QbrRFWU7DVU|#Z%lz><;j2?VPQygU zsGkt=?#DCb3exmF;ZtGia~LDN1^-OA)!hv#_r0n7oa^Zi?SxQ-@kh;?m_smQOF;eA zGUfa5u=hZ}iW6ovzBLicg5k!n)7qA5C+Up~{XKn}%;owB8OSXF1ux4M#!QdC+^XU@ zLdR`vGM8+i5IcgOjYe&!`Jtms}F;>K#(F^U#AXnpR^DF zA~>+m?Q6v=4XRlB1cua`_f7rPnUtT^j|gt4`7abczDnop#ULaUX$&8WCafBhRQ0k} zsLU(yB>gvX*?zzMEh4DKlA5jat0vTy^5agEEL5(F?y&6vod|ppzH`R_ACmDmRFviS zTd?QdmHLD`{QU`9*+hMzTrEYFORVp{;GGAAk+8o0G|0e zVT>~AC$_Pm4cmMcy;P-O%ul-G!rxxF)Pc|#2{w9Zx~F)dWu$x1JqcfQ7r;obJ}KHt zKZCb}A}OMPE405!qP-R_MQ}n$0p>zbLKV|_2;-v9GUxz5Ce)VAMetGM#@!+OV=K~( zup+ztGvTj$n5+Jpzb~Z@?iml4h~M;$l~Jz*>=CfmItlcmCyQe|zv~g&IL`!T{(9R! zw!#2)1ThV9d42Szg#dZxoOlmEdcIWyb6qaspH)ZT z%hC__%ulu`Lz~j5gvVcPiQs@BKwA)o&@N_NlVrM`c$cRa3nEc=!vI7_$P?z@0qwz6 zwW0g->;=q0{ykps1*&1nu_ul49Y&>mF^|vYX7rv!6ZjyF*iX++d;22>R|fMvg05jg z5b#$)TaxeF9VKMM4T}*nb{YSQ7c@%|G)czx2G9k8qjT|;ON&5S&jZzy1r^L2t&%lM z>ZA+b6CmczodM2S?FwVpd**)yopm@hfZ^cSju|ujlof5)Ah4g?#RQQ0^S?Lga$ien2V?_W-@T3?z@AuuZHH(8Zf~yN{ro8x zi;hW>c(`W%w7d1mHw}!nC@>xYR9T*0L$t!;mZXkH)m-d4I0IU-@1T;dxz1qf*WeTiDX$Tcz`Y}`u^Y@&s ze)j1P^*w%lOCVM9>QgUqzb|9B&%!Y7be~Z9?f6^^c0A%h*bayr;VXUUHYkL5V7$B- zD7;M=%pbzfN-nGaguNsLB#y^g>DgLfDf-{K+!M7@g!03iT|(}6W@R{RJ7oC?Ty z35ds><6eKX0D&$9&_Zw|N9AD2FzeSK#}R|~!6!6K<6}?b+X)tOlo@&QM_&ggp_4R+ ztt{%v+zcL4zUjr~tyll=McbZb;1{~r1%O^xw^!8G7{1_nDNW)f!IaO zwj}TccM1S&oU0d*##;aie`dh@2)9f^G{iqAAOtW0fm}L5F?~YEnl$ld;`VT;6`&p( zx89LS!sR{zt=@4Z2WtCRNkt+K+X#`Uao1yvsQo*bs3QpIkFQ68gh6uRrCl(8 z{y^U#f0tZsa9A0`{BN&s-u)zM@UMRniLLoewXd?0T?k$!wUZUSSD-zhJ$FXhyiXoI ziObg$9l`KdPJ%U4j#Whq5a~a4Hshzg)#fmXsO^r>kJTc=z{rxHj6H6wfj(hAvjr#|;L=J!kHDCSQ@0X8N(=7oTsD2W5)e32FxD7a)p?4A|7L2%Ee~4+=J5HQPXz-U zbN2WT56z0-G?tQB%_RX8fzRv_k$3;05BSB59E*bbb(a!wtc&1JN&&V4po@IE26b0vLnsi_+y?VUL)3U&d0r8mqCuCzSu*-AsxZtPN=GY@+dQn6a zfi+5%>U*Ja6rk~bAj?YUrOp%Av;Q&P)ei5_@A2km3)mykv+pjM<9x__-|25<(DXG6 ze*C*qL;mwbWmW_tufqL@C;|`6Sm|GcvDXoqMuhpP1PrDfW?spFh4Au^=|*q42V!*; zf~7OVxW8O|4!=NvU2Bbg16=vxDF$A%i!{e7k+k`!ubAYO2sq7TSzrAfDdRzDxlClh zBr#}nha|`Dv-wPPn}`Sj4<7U=0|Gfc*np_Eqm;t@5YDVf&{tlWIMmgt7AEpu9kq|ythJtL zMca3uuXXpig+DHNlHUNeAAOE-fg9sgfnK=sM_PDaOGvO3LK&v#h^IP}j*E<9Nih0) zl(6vt59l~YSWvD#ZJltU{pv@*N8Qy=EEhyuW85gTW`@Ck^a^enr&rgD89s;3()zTb z3D;`7zsQ#=fD+P1ZdruoaUg>KQ`6p)w4^UN;$xag*^~iuSKu)b!E9R!C-UU zEA_oEb|M{nkRB;AdjtaN+W{7*;NQyES{4Rziik$^8JFxy7~hJBSo(uPqB6&f8(yOF zj?|%SbY!2GL0l~O0VEDjWb9dyNE{}Pz&sm;^P~#bJb_gfdsMsH3t$;>;Clqram0!> zd~Zxr!E6R*Zv-o{D0<-3mom9t@Hz5_7spAPq6uihn~8I;km9lCueQ0z4s?%(TZkg# zXXm{o{MGgjNxO^B6fF94PpkgoO;{io8KgGXUJg%$t=K{f9Tr7k$&c{8d)i;2{sS0W zo!{+?zunWGfeu2^0=@DkXhOX%$1_@mnH29^u$g}ZkJ%h=svOM0UM)n(_i%-C&nysHm{mQv-5qAi{_JI+(Ze`_ zweG&&JJKc|3I7>_aj9`e)mp-TeX)+y1an-Q{}0fDg_BLQd?P_{Ux|%3gukH+e*5im zgOQLeNi~2tf){IlyCUD=$53P6gkiq#9Dft@1`WyIN|-GH&I7@3257(cxgq#>M1tWP zKc4Ln&EG2TiU9s;5lIYtM?L;`f&0PkU2%Ovf|;FXT?_UyrPpp9cg_zwmH-bNcX-7MK{ltEvfy=51TxSA_DTYVlL8$OR2INAc^5E1V*sn{ zS>Vq{glyJxJa0H8U+2DYj=0*Bb;#1q@V8B;*%>GTvl4(M;8(9tSC8gzoK}N^0jdJ8 zPIK)aCBXY5?w8GS+i0qMaj2Es7VpBTVZ-cX@69fVs4$c`+p9O|BNPGX zz%=0u-{Zy|=Od23kJlKCy-lCI!)Q=Msi!|F+vE9pmy7Z`o5uE9d z%}}kR+1pA2E&{;-TJ8%epvJ$^^pKr&!-G^}sF5K^f29%${OrEQW z`EfNdCi&Nu2ulE8SVj2LP7C|40J}fZTIZZU&P5406JekLaLf(mo;z=Yl^@; zTa9Za6&`m?lVO$5V;A_|Q0Th{dN}bc=y%-|7N&AB9O9VicxN~lwE!mUc!@vRAzUbg z62L}5gDnAX;%uLN(?yX7cV>(T{~4|s1T}-V6~IRf?Z1&GMjOPDj3;W+1V3>%g#Sk3 z%@@x)@a=;rECC;=1RSW7Jp2|VAVtRelz?8FCt3?MV5Z!#0w6#H(3Z7(Td+El$XFl# zclko3X5(sv`w0cXdq(EmxW$Z`vfrWaH8Bq6_;`I8bZ2>)deA<(K@XWuDOZySevp?Kj zj4|>W(q|c;_*=0b3SC52p2hceu*ZsVw=-s{iq@OhQ^DkoZ~RdL>cCM%dn0snIgkZ^ zPdh(*yxN_^=l4M`74XWI1@W)1R4EjI_{|CR9>Pg=vjRXAlz@Y}eGndL3xMfvpuh6- z5$0H870p@+fXe&ER?q%%IfBSN0v_L$RV>~4*?Wk_dp)G^pM7tCpDh3gS1SQ?D%U6F zX402u{ubVT@7D^?`S{(+K`1^_x-2uv%M&uN`8^>!-FjE>`b z9X5nN0X_4L=S;=&jfDy(G;3mnk{2DvAc`3tQ(pN27TQ8<>@;0TxKqEmK7;im{3B)l ziD%8ew$^M)Gw|I2-e2IP-t0kH!EDgbB=CJ?YGIa;V&ROq#R=Sjiz1cn;e2X`t_Z}G z$0MLkzYr3>2*u~egNa&Q){Nh{RSi@b$e5a=$5y|!83lEU{*W6?HW+`!8;5i6_5KhwO3K0Ik7WS%C24!!f;&HX`TC5Hc{rj(>vH2c01@KG;~s*Xg($zzmW; z;%CJQ3xNhJR)Av zdk6!{ktK+GBTj3N5bM|$7(C~h_EtdAyY;rP0F$TkqF*kwM(rK&FC_G@^|6^RYnFU0 zI>QQO2u!Ju5Y{n6CU52CO|p$@s9L1mX5>Ps$!Q?_{(?*Y|*Z>EEs;El9D=~H98%QgI&?N9wqUfOY!33(~V zHUEqZ-Cx!o7WO64ZZ@dLkOt=h&+PMU`>)3gA%5PNEb}c8h0$mHI~09+ypiTY9nuw* zF(0M#q66iINv9gb~+e__&|%G_e10VRkB<6qD{C|E%ALTMr1}6xt9Y>vb8AqmQg5Iv=}p z`kn8T#po=>Y*qmKS05Q%XrY**AWCbdbG|V%D8!pN*pf2G-Sv(@G{Yj?pZMkZ^P=d_ zRGH7j2oX?^b=%&n^Q+ZkZJ2vgyRWST#PzKt1e7mJ8Pwl(H~kU}&31?lHf4da|HdXC z5w(RW^v(0Y7kE`8xUG->cMbeS0p+$imz3_M?hxq0Y%PVuLY^2ydDu+$-nS6`8cN62 zKCCJL^aulIr*(oh64sIp?nO)~DhQ|OCVUV8gUhIHqDeC`@Mfc0b#Eus$0k#r!UgCJT8%m3^J*Y0{BTfMI48b37^~YnR`{@}) z74f)VJ2ox+#|G*t{#~!jk|*V7rC8#Lu~Z3pHXrrLqi!hzeM}fo0t|f|*{}Btem-Z8 zP~l@p{5bXTNaN&Kztd@4FlJ(`s6Nn<>%ds|Y#8AW#9DnzKZL*P7~kb^$3|=^9P00s zJ=s&sX#(MyJbfBK@pHnN34>=4T=~E!p+>;MKcB;E&}F`D{$-5&Sn+1a@;1luOyBzw zj0g7@DPyeG`0f_MC0DVEqIde5VUbt_k3H7XXYncPNn7dGiWt_Q!Rfu8gX;}eU8q|_ zKh|Xq{9aF{Y5KA=&5?HD7g1BkL7>nm7=eXq?BMN;quRy*4XyMR0T|IN{3}i0Kfr)A z0aWmo!vG1QgjuN^ZqD>J$4CyVzKe$R-m(mm)n#I(z!);dtRvoaE0^Y z>%8t#0=DupzGVqC&gQgU|`Q4QO@C7q)f4e4TT;P@2KQjp{1CGPY7P@qw znMMisfaaN*E^t&dhVbw3M1}E7u!{*(*R!g>tpwmA_+zjtnw0?Om2F52Fo+B+C3rwX zJ3&7+vhRZ$VQ?McpyK1UGQ1> z;{q1`c3Ea%ldETP^B3@XUYW!4xAFR%X(`C@8QcAMVJHKlr<3Z>N3!H#%wdgt+%-TQ z8+}s});L?_d`ba-gO?G!jQ274+Y zTY$Rmbgfx$R|0x|Ja-=F+5a2|B>+GnLJ0_kO@61U55QPq+#55zTM>wve;+gLIa8|+ zs$g`gZrqBvO9^nA4Sjv)J17AZ z=$TJ4Ko|nTpRR{_T#YlMygLrh9jpk1Ij0BcInIsB1@V1`Fhv`$W`1~hwjMKoJZu55 zBEb7yKs?8Zv`gdzu4P3iv;po8po4-?iur7k<&wwzXpQb2y z7pSLpdB;UfT>(JwTM5{eU`zNTpmxA@qfnS~&i<9R6*ndG#mJ+}_&j6oc9=s=f zZvQjyc_L=?CH<{zPy!fFd|G+T{%e_rxPd9v3BmB@PsT z+n|qW#?f8-ZsL|$2Fh&!4Nc0PWdZv;(gL753n7*_b5<-Wv9yh)?=~1?SU9)~QrOS= zU~*?9CHPpMm+m}K@HY=S`Ol*P^=NL0YenL~ z+K^3tTTp9y_D4{5A$Q-xzam^~jTVS{N|=R^*E?7W0#kb!NJ~353Dy>r$OK{NcK9o6 zF)L7h)nQ@AaicU~L$DEMzsM;6Ah@|tK7hRS9J3e(2IYkC-K-DFM87Yev=GHY|C{mm zHnf99Qy$}Tu2(TL+LJTiBv1rt2+^XHaS>DN&qJ;KKR!BIy*UTx8nmLT*YON?6T@-T zvpSoadghYlA?R`y`b_0~&Fx}hs;nQs5MsHs=CR5!ywEbh`bzhT+e7ZLmIbcp1SF)O zuW6skoOrD7U)Wqp_=BcRv7`3pUUCU5$=vz z!#;7~eml~*&-)q{nxLG0-RyR%v@U1bdV)UhfLJGYxQ@C4>uM8c zx%($z`4$9#a`>5kC=1>%fPYs+cn@V-jv4P2J0YRr>^3Pp%O*mE3j)Fbj`$vdX)&I} zPuOrftOjM?cbZ5o+~e})#>9l$p!TfeJ#xwD@UE)ISk{}Cl$1-v4SKJ!$E1geRM3g& zCdY`Psc%`s$DglSvd`#R8b9W0#v*hE`3665y(`bGkp3Dk_$w|Bclh6DO<6Nalme9) z?ShlSO`gko_g5;LB?)?Zt#kn6nW2T1Hx+^0rOsX(;?mQ>jmcYa;IBvQZxA2Ex`Y+L z6N=cg1?y8B0Ob=t##L&ZkYTJtx39o`l~0+Bjm>3CsR!VOtn|;;r^u8)H?^LHDYL+1 z$nTqO=HJJlg+1}EG#-G9k~1s?1Fjqu|h~&V2=zj(jHj; zs_npm@Cn)g@U5@U3?+>H7E3E53P?#Hxu31I^+r~-aQaT(_w7jaY|3Wgg>kAgL@uR9vc}{x;2};@Rq| z_5Wy9HMx&Zgjauu`NJUkjBIWWmM%6^TKL1H`9RAe{8NyT&Xy9Mk97(IB>;$-m+Ir) z^IT%HHccy>ack($zGJ{)xG-)$wzY~2PXGWQ07*naRC7^0`5?Gemg6I}Oh))U7b|De zV9Z*VuI}08Gv&KJdiFABC`1v20Lchg54=o3xP?9$IsV8C&pV*w>yBt26og`kSP2EO z7`^Z7hkhblZDSl7pkE6nHWYgakn!vxLw6@ZIhDdBP~(e!ZK8!3Pf@;f<{Q=Hkuspa zQPJpgD+17A^re`$%c6v!ucfHmd!szCVE7hQ2iww19p@7-rq^{bC(9Vpme&{yR$oz+ z7c=o!bg+FdURTqS^t{okSX>La|P#f%Tro2n&XU6&0 z=fzyv#z~#M5K$^2=~jLcYx=s?E?8 zR?Jkp5sF@M^%32G4X8!=f z|M9~VH&z0;QWU^_siT@NT3zt}7$qQk3_NTSkd^4r(n|?|(Q$jEX%i*DpP{APVCHg} zU4ze{Ic5-TGb!=tJ1cMqsUe&QETG)Zoch`+QDQHKaHrfNg_$$L-@vSU+;ah83iw>} zoL7dRz$i@h?MgtWbDj|v{g@%8o9Be<%;X{z_8%mj@U={i){fl(fwKn+ zIx&-tnXPcJA+S|`>~#{(j5lz{n6|LDGO&@Z)#AqVSv{ht)X&ED%aJM3cI#uBy~SbzTK)27Q9BlvqF%i?*0p- z4f9EmFf)2Is%$~bV8sYl@i|PTM+p$PePXNe?mr%UjTRhKrucmAg5MEfe7AxrrbVDy z06ZcHVK9pdm}Z$7JO5hv-zMN4zL=_e>i0j#EJ+mDg-~ZsG4l~B-?ty&y3o&AaFqojyZiUx*{gb^CDnMRmQLG%Erz z(-5+gbVV>^l=$EYCBP>aE?`arHTnz^(kS}HCGJuX{Nj}>OK$%=# z!};|No&LMrH8a6OTLNLG|LQ=)O_VjMhrj zdzAr|(Z3k!I?gVWrS~cU4D>t3@|>sNdtWj8M{(pJ;_jDLcU%WHEY@u*C?%>PiiM0$q4xj|QlI5o_^HsFrSn;+8 zyva&{{lYEfX3Q8j0+$!~WxuoEM-IE-UU-G-Sc0D%kbBg;p+I=)dDAxwewL8CpLQt$ zPSN?-E*`9*oyc6Yx_l>t7)Lc|W&&}n8f#G=gD++{P2)Nc*XlDj!r7ECv~$-~E}EOy zbcc7FmEadltO8@O>zQw3dvnN`p;R0jOg*qe*C`*vbW4Ym=DtLgOh9+nT~(PCzd>Z?wO zPMWSTXoW)_KBnV1SOj8yRcOIo+N)WVl)W@#t6a51s+`WH=9<`<2J)enTMlH#K9&Ul z-gm9%$6Dh)JkrrJdB7}QH`Be##0`9_ZLh`QOq*-ve_RbjXuqV4)?!S>XW9k)>$q<~ zf=Tt0>Fq^;P1U@#$ZL!jKC&k zr`S^k0&l7t%*Fc+JU&?S1H7vpVLOxr(JJ~)Y@!AC>H`!b>KOQmPF<)R1{6IMih?LY zZF1;vp_ihGRK9WqfF}0;ct42+^uF$4;5hJ=>JJ=h*=((ukoOdv>ie}Jkf(7)TxRSC zs$<`%New%2ipLut*$==BYk%)(@DI|nZ^C*W69g*&EC-y3i(%b}8xg^mb+^`U-Y7`9 zLm6n*FpmstLD3VIf#^%cL+n{$AP;!W@@~vRKMTHzw*`!|Eek*rw8tlVGUzv$GuBru zjKSDNx15Gy(0pnvocp^x_0iZE{D&FD=4E!G&fcH>G zguTaJ#0PJ1sj|?ScO=Gy&*F8i$6h<-6qA|C#6sTH3~&AMl9Jyoe|Tr(AN4YjHY}=) zM;fd)dCv_rwF@pwK~#&QeH(GqcE%@@4^oek+}ZNG;+VT!z8VNrcgM35;5m}T(_9UQ zLSP0DINs6zJ>bGsaR_#UXQEC+XBl96Fz%UP<7-rk#AhkH)<`-A8w6+Q3WEJC{KK3F z0KS4lgr#SW0Qw$)*u>ZB z>pJ4b=amcp5H2tilnFBer$5H+hIhm7hCeS=M)()g--tsv{t#yk42O@U0NMicsB*4k zIq5=9G%sf8RGTh>V(&Z?o|f62dm>^Jnh=Nr(9L-~(?Ogh zS+_Q9?9$bOxtfIY@5yy*De!HUl%qg(=BGme+~V?~Qs#(Ed# z!AAyOmwE?ZDcn0*5bY+y!XM$>P0siQf#ABbJbMO$D`E;{gYYGL5g&C%x9Xk{ezv8yTq(}o z&~f7P|8@uR$O6GR!C=0so3+sq1wXyaX0Z|ep%1$T+3dGVA-FAnD*?ACHWr>GgGVlB z+!21BxW)67699_jO+6#x^bm9?+=UB58khmv3xzQ@iWNN~FuswAAK?#t{XMfatO-&C zB>X?qXPT`9ctArEv}0~VWbzSz?phi^5%4JoXX!m8ezyrfzdR{rNh1*^$Jp6mR>gVv zI-P+rX!^m=W5P-R%%q!qLs^*Upm?{l+|UbA0+?MHtOWQSg&CgV{TcZC>v4|5=?T&u zGDZcAZ7Tt|K33)UeRPQFvLxTRQ=hbJc$eV0RjFIZk;K>JKc;GsOHu-fEh zOYHYQ${3V11N3rjp+4v3?r!oL*&_AOuqq%q{hWQW@F zX%x?#!Rqn8PMTbvYBGSe3>?d|`qM`qy_5;}o?%u}=J5XB&HLS-XAA$%V;b2+bPImV zI|hiAZ6Yw9H)^Oh&k)N_F;eG{4}13!KgXuNRtW89cPIck`%mxpkqlL)5irw@#$@uL zaq~J5;jq@;SsCEn1Xj^EK0nD>?QQ{J?F)kQIw@(e*f73oJZ__r0p`FMh^i2?EQG(b zLz`e+{zBsR*;HyQ?5%VxvD6l2xmAH(8CIg0{oN7nygNbJ&#ni8-;Gbt{Otc;7sBk! zzn-J-VL(~P?m>)#Zbb`^5BTHFax=c1H0mam#DX9HF8m!Y>Rm5e7TcnC(-AiJtg%yXyB}%+ z*iO0WbJuqOe7oZ^{H%Gx+#5sJaL-(8@MK4&X_f#s+4#~B-aTU(X1E<14)FjsCU^ zJ|s*OXDu7XaZ%@1(OP|WUa{T_W?K5ZQpS}-d1v&2T;}x%j#tbufO6K_XTUlc^uhCQ zzEiKoQNg{{Gu=tx-NmO`3V0$*078i!=Yt*#FU(bPJ$3^FTEcCEhjPJ5gT6<=_XupP zQMM6*T-x)w-pV6Pn9_2uV5ADasPCu8*9ij$*`c%pC7>(zWI;Q6d9i<>lp?H8v@2$q zRW4Vr(s$J56bz5^WAaz$UI~W*l?U{3q`ILb=?f3)@5GNc5i*7h+-Z+#81UEK_Mj2L zaiqHnGxDkO^sLe|87zV1%$hztN;_jTYn+K&aT@*!$6^97Zm>>X$wtklGI+_M8u^*f zda69VIdtq9h%`#uyBB;{yUpOaSHOD)D5uv5R^|8TC6(V51STduE$OYm^K2MxQeDU= zX5&Sd#9_BSZRN0DSI~kt8Xro_*ev;!^^#v)8ly^DpyR0jzo~BsaEhe#FXaYJt6%UFpMa*t@yEU}Z~^%#x%JZI zC#s*R%C76TSzFqxG75;xvI6elqpg1f&wP#63ChLa%E{=9A?H*_Bb9uew&d&J$M)|o zymln$0qt3R6N=;@r0NxL6a8ik1cj;pGeh_W`>?!WHTqXPHxz(zW?AKU?W7es9=Q$5 zU$C<$X1NU$j{|OTu^KF0pibTqkAVVl4&+uGD*|@$4n`<6mT6et$njJ5MB zPo;-3&RQqs&oeKU1Nu?`LcfE}_Fl_HjS3>qa1(!HCL^96_)dZ^cG_&U0!iz#ES-De4}A7)Z_&!d0z?c5Ezi6y zj7OGC%}WuC!K?s=#bVs&v#Hs5c1K&7;LdvjVn=&1C+8o>&BTm4P`|#%poe|zvu9AG zgM@DbFAv;rM?nuzU>neW-z$K(6&gpGO_uhLxT39L(bDES%;((-0i(9^5Xu{sm9PoM zU*?hiVIt@4**@=Pvk%>pT?Df)>$;PG4l=QahJ=T3^pgT+41X7 zb(~awFQg!hYlq3eG|sb{-@7XWYGeLm#!uV{HU$3^w(HgXLiv-SmvdZ+se zp3aYpr1;GCg%ofU0Tjo6Cjj;3*Xv=W(Deuxi*7*nQ1B0gp#^dA3%568Rg&iP*}cb( z%XZyIbow44F0f+g@*KzgZrTW?W+)Gib+=0%PCv)YWtilbov#p&wpb22-GdF`&&G&( z(^19rRgj_C7egip{cwOf#wHy5Z82*FbXE%D&B9;_X3j8yfnXCTaVg_HfO*)RH8%u_>-*%nmhTnqR{hE24FvcKFJbp7v$klf8g1%Jh6kr?@Ht2Al7Y%D+`8+ z#)?2Nr7nPb!5{Ms11JLS$wKgVk6q85F;3yECDO;SrZ|Q96_YqC$lTLsC4lqgoxu>d zGx(sq5mSaLu&=D*zYH_}H2K?P3nxMc)qp zUEIC~pXuF-&D^X6unQn&|5a}`G5VNPC;}+PVi^7E=FOaTzj^K4vol-WJpN#)Fqqic z+-X`fVEWBw|J;9(cg0iET4^3P0dUkTTvi@jCN5S&#xQ+FpCSBwtdI?6K%6QXy`6sZ z-(CI0@(B5XCj*Kj3IKq+CoKa-Ab-V(Jk}cA zQNgcO1_}Ux67XWWfGhib8Gk4Ol=wdJH9CSjV#Qv+y=QZ&}>=IH$ie@)QVfMFx6;wJZTl5qS-bYzIO; z6N@BeV&yAku|aRrX8JXrJBkRzL!u%4E5bl-z4y&1?ie#7qIgzO(TApErh&f|3!b|Y zuxlU@=VQUgDlp;!{+_jG3_eYQu(y>U;!VVZpM^iqz!3g{EeLCq;3Co;0yx4yky~;XejUPvf+9XEN&t$0XR*BVY!kMZj`mgOnVAvS z-y0ZTE3_~uB*L8O!~LQ?TV=Xnk6H+rSC|;ipJS#+sblz{>%I&opSos>ksj zj8quZ)M*lS7mwPwdb}#M2>-kBFzWBN;O;;}=RaKuVC?MT?~9O`Td(hQNa!Q{KdUjz zQQa9#&sYKc*>o!bV3cx;twd4_|B=s_{in~E{f`Kn4~*gMT8K8}8OtWd5ApPT7j2FH z0FT6_C@-(`+~8vczmwi&0U(a80FHl`%ZhA-CllLTfeLL)$RtCpCIvILK#P`XpzUc5 z5(1^6G4P}ibhCLM;1q-&*8h`eAN1;Ir0 z>@}%T3sDo-*AA#PNczu4%D(Xoby?8!QwdnnRDPFUYsAp0%JUuuz9dFg zedFkSNzl9}V16It$rYH~2fCT;-SuugJ#{p$KFT>7%-AjQn1HgOyI4;JhZ?M7W}?>v z(~EGN)-owI^qWwgf+x>y+bq8>h2Pb*Kwxtq1b?hDUaI4`{SV8-Nnl8Qs;~nwerAFw zm5+2Ad9!vygAwfA<&%4T|)J57}H{d98Y{ z-a%6ti_wy(ifSzgvwVvV^5ia ztW4yI2}WPG#`18i4hsJq#*`I}Tp`x!p5;F*uHYq#^rUo;E*82zIJJ%i{mA^Z(Uc>P%Q{C_P z{;c-j1)IYEu9#C815U{1{CEH2-xO=-t2c}h$c8M#vF`mu*|=c)`7IFiRDI(pp;XcF zqV2dDPA-Cq4Q?=yM^XabTuSiB0&rUNhZ4Z=@83?DIa9eXT{BRdB3tn9?XfErU4igS z&jP~*TKMzs*%ao~)AeaY=@;)@PSfgO6dojsZ3am~7`e~TM@A7YAur+mx|CpV0>&B` z0=6Rhrp4F#1_Qs7hx`s#Pmip!(AT=zO$a?HCXXTz*9kY5?E1%lc;7`0P<8J)gg+(O z&vn}ucl1R=3eG`mS3Ke(wJgz{p3UeK&i#Y*z0Lh3*>$ggc_iUG!Ti>NybI=|u=7$T zaae|At6zYW(FC_pO<5i*On!{Z21DS<59PwSv?xL6LkXaqrqqN?P!-_Kvn4FhMfH>< z6tb52i?i&tV{yf=K0RLj^6jaP;a-d-I+s71RUR~ntFZ@E^T+#+hqG2+g7;e*S81(> zL*Zr@E$ztiyXoBDSN zf3icXGl5k0zaPg`-*YQQXD|A*&pzzmU6cc`W#%-=k{k)~27HzYc%@ z@vPpA+w~)y=V>&HUm#rdlM66jQ34FkXS`2>-~PCvRLtXs*`LyEC>5Q@Rk}B6C`|B63A(wxEmrnp^(p?*zdgeA%=j^Cp!Z!$0Q|Yj5TnDi zW4S=q{dp>Cyv7yAOLv5>ffC?VzApPCPyOl3MI$3UuoQ9Dao+-M`8u2Xnnn5EeEKaQUcZ$A7%(s zv?e|0@yCAevwq4(A(;J81m;sKxn{rA)~3SYiX6QW(@fp5E&ShT=5E+jpX@8;N^8IV z=#qWI8ZeRjXJy;972u$j9N0_nK0qM%>>zJ`0D{BHf`vc+eWM!hF;SqQw}5K_g*ZQ= z`hp=ZF?y46@CUN1vCy-QG3GHs#XWZP*ew87u;o3#H}$m^5$EY^g;?ezo+|B5H-F|r0k%80~Y8^7Ttdy z#~$C#XP1jY?!6?0v;1UW+;^#7hrV$Y2e^|+KzpX1(AmwAI|+_zGB7$3Zb zx+na8$fiK^^~z>A4^Xkj4o-Qap~v7ax{AVuKb!7{j#-tr$@hBXwAlhHTKzvYv$rMk+RV_K5Jwpm9Kt|t3&G%Ze%cy+AYs8B(d|of zuE$n?jEw!TbYiSgx;iuDGDH9XAOJ~3K~%1%g@fOvaA2ibmTwB-mEAnR9&?kMxc6FX zd24NYJNTrD81?1JRfcsBsIR;S`EC=1daSH@cm^$j#dzH;OEUb%L8Vur8Y_Zpm!Pr4X-p-EY{^TY4XxyO1DbKzL_;Cq$y} zi@4};%ss68=({9A?C|t4?8{_F{Fn`h0w5a9_J&=`z`mGlR{|Ut=8NFp5bR6;JKEwJ z&lM*J*%I8JI-a|~pZRb~S9a`gv$fythR|Oy5lR5+`$qo?haUx~{~w#?0}43QXyoUw z{W(co6`~o$fqqs5*wo3d@9n_CG?V}lH%b5yblz}}@CROtq4RqzO7M3I@aK}7b)9YI zraJbh*b0ElEUBABN%MyW?kO-_yhHe>5*jXaTRI8 z3h6;R56`T+Up>r~#BpRx8KM{(JRx9dAoj2*ptlKZF)A!9EG*|8;|L(g?8$;&(WRC{ zN;!RP<=6%9a9h_zs6Q69BdW%J^}TtDBkdT%qt1@ggoJ0k!Hbj^dVWDO!IV)5pZ%ckuRe@21_5n)D8_ro6;$LiF8J#CD*($R`O zTSN(f+;(+b=8#H2Rd1Qtp*7jFB6^(-MZnL_gAIHaH3LKmm`&6s4&uiec_Vf@<3eQ_ zH<72yCZ3*+Z`$!bfgkDb`a_;=U=ww(X8%6kXSZk5`n9UE(OI(fa#BP@u6L;Lc&iM{)|tLRpL1fE`o9q zrCUQQEQzxffIQYxw)h#wre2LPlmHX}LstS&2rp{qb%v{r(0xHSrDMIJ=KWg)jyJnj z0z6l<0+2am?4t5`VY~+4s`2bP#3gA8W0uI$0}4-^m{6)mQUqwR_hk6OAwItha6!^- z!psx55acjwh*)6$haq%U9_Yu6wZsbx2|S`VCUW|)Ki;HGeR!tk$P>Sl3wK3uQ5zGH z94i_xDiAAx&GRo6&q@GkHoy%LKUwOZiiT(Y2(_?ei3W}Pz@6IW**|&uQdm9X#m)GRfpn<~G5enZ3qZ;4 z2x9O-0DbdTpY2=t+a(c1a?q3jGg_Pd`^=yCR*ZP=#KrpnQ?)!ifC=+6>FB)O=_g#Y zyhi?duuu=Ya-$!9r3|pF5mzG1Ps1w0`k#Jp0sgls1S5?Fj{1S)m;G$|h;z%s`;JZB zl1vOn7xqXA;Izp&aiWjY``vpzuG&m5zAYg}!+)K^JAT+e{i(==D)sNee;V~;j*z0U>V@H3yUHGeFCY#DD^`Lz@4ZkqWVuL1>CHu zNC-mKW@kkJ^K7S0i*REQ{BexZfEB>YiIl(f`ENyhRT~De1eo{R642L@!vaA0qO+K7 zO3Cq^0hGrx0;Veg7XG$IaEuo?)CR+s`ryoM5bal>@x>^Kk+L)`#wUW;fGOR8a3FEN zbO=QNe&TxuPy~!O-;UV%N8lpb>snOq!efVChv8pQT32L{a1=njTYd2}zk!u{ABg+I zg2Y0{ia_K=TGffLNUKD)LZVpl#ZTZ^{KrcH^wXKbPIM~dsW$mO*9W`&aj=N2Fu=3^ zzQ@eMpYRRgulFwe3AX~kGw@13kMZ!(A8=#~iG@F5CbBasluro^~-I*q!%jy zzp3X&l0M_N@Q-7FEk)+Cor9Hzk=ZQ|mLom*L705y<4als&9sto)bZ?^jsX^fOekn; zW^B;2Wxy_XeVZtvAmzimK{yK{w`LvdwS_#Cg?UrTRlDjmm5Ma^lOO00D4g(qA(iI7 zn7r2}_c4nDau9o053&pS8*QyMIogRf?C+YBB(lF(LlOdnnoDIG)(6c{GH%wz<)-KM zUt;$*LTuwbtG1EIgV1gd#1azub!Df7JMmy1Ibc<{>Vv&|+6Kqb5(3%ah(;SsK&*&? zIazG(O@w`;e5??J(qmy?6^r^%wtg(hU^YWYjEzjSsf)cNoXx)}0-ptcWw)%=*<<2h z2jA%ov5u2n>0CMMi^vYvocTD;;o*_ile7O2W}M9BTLA`d*n%#gN9xSp0P5WtRaEiv zZ1wcv{nhi}Fv~}&PD|nq#;wRip=}Am>AwK@R>DvI{ORg{{0~2gT&_MjS^f2&JYD_u zzhA9>{-1xg`rB_2Aq#x_56q<&IBRRFv@jH4n6ubXn>Ys3BNakx1H}ko`Nuji0gNZP z_yOQ>rp*Pz5vBe}@etj;()vCEIRrC;VaFaH3qOcARaIpn1&5h2{DoT`*)6`3@IEZM zzS6P`Lh2gE>;^EC7E@t4{Uij4ct;Kh`D^I`1gO86Il`JnL85>6B<)h28Sj*(rb8oM z&o}?_wcX$cYun%pip%K=CJ#_TVi7^O^jFZ1#;X@qj6@pwC2t)g4Al+}B%}!Kyx!Rs05QF!tIdD z8i_QRw=ExY3WO-kaNd_O$K!pM@b8TDt~~bYI2rk%1h6NJ9}|6)fH38<`7A#8Lt*+R ze0>R!G(a#5(5cP^kEAiMX3TLx1WrDuNb=0Z@n(1aBKFg-FIRsr_v;^jz53?wzS)dCzjet!hv^;q@r+MzV}liI;w*sy z8^_$jC;xbS5UVra7!wK%A&RgpIPh{>!}(dQk)P=f284%?gz~|lU*EEBexQD3qA@P~ zYVlI|bH9LUrJscd0?9Wedi~h-nq3rF+7LWr4%EA8W(ZsJj4AG=%-$C01YPT$&9`2P z3-fZ(;`PKwofWfdF9FyO*JXG9W4{Owv}gZCx>CME`0prdwv2@!LM{{p?`sO&fd)|U zY=y&5qiajT#HWA3zraVbIoipX>MHBYGg)CI_zhjL!H*o=f4uw1DZ<~+7XERXK>Zdn z$%ILw0@lN0G%M_RktE_7z!DrEmnwg6BCVubjs?C0z$t*GB0p4>@8Mbf8#1KfGs52U z=Qb-qPe#A=zMJ2B+y|cd;|W5dlR*}mkLnx*Ur3OT1{mv7i$`Bi#H2S9rcFaA0RY-z zvQUsL1gT6b0Tz;-h%9mG#M>IOF>8-fmOm^9bU>@8_Any)0q9CcRB9#`>fYK+8XvtN zpV0pCEHJb1yIr@B_g*G9)4k7f;5;I23IBMm_6>rQXD4_I{+@n3cii;n5n=lQv)2~v zz>ni}GpPM=Jwu*_e;53YKl{xJL01A+$1&fCq$mOV68!uwO9?0*w50^NEN@bRp)+GW zEn@VY0b#aeUA%xDy%)795HIc<=-=0Hyx*sb@bB=aKl*YNKPdn&-Yzp(;{5uT->zQj zrnN0V2@vGh1x1ghdB#~WC@TS0Zi(+rf;s z;plXBu>d^L%gZL*3A+r7pXO&p!@03AOXpNl2>!~1Sw8|KetPD>K{p{EwQ=AR4^c)j z3-`Pg0hSMgW-5Os2?=shbl{^C^cgZiC;-TOyQzR&iT0$YMkIDDQtsTgO8_%HQVytu!C$5wh|F(%fzV zs0xnJT$y#@Kj)7!aBY*g18JquFjF&J-F>X`M0xj9m&6`&q-4O4{D z6#$3fh83WD{Ep8*|M~M+26$g`lzjZYs|vz zdB;R&ae5x}}KlMmTyO5em+% z01(OJlxJ^p<{6kLRa@^uG`w*J_)t>)?(jLj-;D#m4<)8}3p7DL)0bG;01M8eg*}CT zT-K&RH8yoBKKQ^2Fy9awdo`ws7Q%m5+sKc+0SkYg`yB$j8(e4JiPI;(+zs$lh+-*V zeT)1eoh=tU?}85!{<{*&&x$|~&ZE4l6nGcDfo6kFk6Zq3_2G_qD6S7e@Kzw`Bq2fv z!U?AYRtNJQV>>og|YVbm+KnO!Iur4eX zjXFCG6YbcTp{(OdPjN692~3EuxAg(GbrX~t%^KmNbGNdoLsmCEX>`<0o^*mBMOr?` zUzP3V*WRVU^df!SaGf%5W|eklx;>IvyZy?$TR($s#hkuFp&NbUT(poN-0NiGxB;KWLj{CnA-gVsQ^39pP_NG-xE+lX5>@&Ktxkq@q z)>6qE?FC>KsWSwjTb}4^acdpD>wp!2_U~!E_TF@kzhC9s)7<*3b?%@2^7ZO3fBj%Y6d`u5&>_3ZO!tH1rb zUpr~JS$CAB01+`{A0V2&6ivmDh2{i#Q|8iMPFNu18M6pzr?t!2=Jq{iT>yC@bfJA_ z-jG3O##gLq3(POL2#D`50L&)W>>*Ho-nfMcUnk2WoIm!DqrX%__Xb?4zdRFV;~jaQ z#)$*<(SD|2BOaUZ;wY_>T|}eRcG31V8zBY3RBO5H!s930dYbzS-Ky{5->R@IQHOfDoXL-T_j!8L4RP3hz_zg%2UtY&`JM?643gZq;vtimU^#2JXI+k!*@2I11n)n^1OxVQvG_N zAG35{iB7zY&(SL_!XE|xHo>pb0w@QFJsc{Bc2X773t?FK4%9!!mv$HEIeP-R6L(E` zxs(I~@&GLSiPxWp+z<@~?=HsdiJ$NA&s-3v&e1;Qs=hH9tajiV8wcn3=HHB4;meA8 zv=^G7vkS0ZiR=^Ts2Tj>i|&u`=U4~e(*RZo=;Us~3t~-bQAcN*v1CyG9d@>&8>ybRc+WTh`cJkwNfhues^AW_cbamo7p-1)p-LTs;J0L zPXDbOHa(o*@ZB{A=xYsv+kg#BK%f?ZZqRLkD}CW_00QfKI!yT6^=ki-l!O{kSCt0R zcHfRPda!xY_XjwPD}s-8o0&Ho+W+_M{_p?C&sMAdRHHpIomkI)AW zADzVS*`HdJtXALt;#aG$zId|w<+n@x&D`{60RvHk2%Ju9ih_4otl&*PD_Dh_dbdM%=KlX59wbq32^?5_YPfouz&yLGtWMT zNBFTeI{6|Z-hP^5pszx3WHZU}$kvL3tv4Y$Fp*|^vs#nIHL z3OC?X18oUMUweFvO8#60*xnDGpeD0ANT*_kC6 zCRxSH<4EBhvv;06fMFB>g5OsZr`15jCd4h_8P9)%SykFNe_GE=cn-~dF&3M2Y<_ec zTr;FlMmA>JOHTzOn}pI3L}-F)zdIR05j&}gUv+{3GI-1oqkLwXr7ZD|@b7L9>(-IJ zQ~~XECE&_xb>wvWA2zHoBX}Qpc0c0L&(vAJUFlJLnEl(#I@0N(3;%eg@*WtD2+oXl zaCZyN9X(tt0Un2+%(0KJ#}KMu;BNUx2B>!lnz1WcXM>gdh((u^vVBSlR`^Yorjp&Sbpz*2nP(Rj#@nHXu3BrZ%ML==md6yEx?7zcU zJ}6HMf6@;nvM129g?9H2p{zQPp3?vT=6~<+Ngt)vKf_i&lLcVJEBfT!!XMh9}GJ4e@`Jc{B1?UWL(O3gn3}1`O%r4{da4CnFI-9(3I&@Be`>#hfgmmr)c`FYo`PcD!St=`JOeMbRl({t)iZzIm}a{y+cI>e>JHziwoY6@cG!S@+kc zr>iqr0r&yywu$W7kH1>2|Lb*F0SNo@TTT$XS{<%+yPT4r5BSuW=hTy}0F+6;xeZnVm{@cfK)$bp0{V-5T?YO({rkC( z@mTX$f1~J)r8y!_uqCt=ZlOFyjbp!Y!l!r%b+!e-ah*11@Ld5gvvtJDb-KxWObWwa z?f-qihu#Iy%Zfb!zH1tiL<`-Iv*8tu4I7x21&C!MqRSbybK9T4mt6rv zA=r$*b&N2S64lwu3P(COj0M5FQLG(+3<2}_MfX>URQI53$bR+5X!*TY(ISS&xX0*vjOlP zgNgKR<&ubXduon>ZJ&Oxfd^y8I+U$i;?K%n^fQ7&zW~vw&6~XY?)MB7t-X{~e5l#~ zm3|_=iy!LF04V@``g8B~TIOVxsAYo7@5HurjF2&KDj^yI3fdRl;}`o&GytGRXzNtJ zxJO?Wfdej+QNICKbr(L0Af$BDwP+%^-aLN*^nDHo`^T%F{+C~`{_2;{SAX?ac`rcE z0&4*4$UpmsUv%&B9N$Z*i-Qh7eYErn+;=f$z(Ud&PbRzJ;)^by8?9Ih68|>HV`K-7%m|p|2(U z|PwLX_iQ$pWrb?uGVF9F*yQPnJS} z8$$^0&egR#W&8Jj&5XJ2WI2~zPA9H#>bbS(I>Qlwgl}*?EHg(CU4^G+cZ<* zC~eLIfpT@FYq>=ubRRs1GD3+`Kb@&R7|*l~H`edva=hH&30mweP*`j#SNro@3s{)4 z9b}9mkR>=ZZiVyI_BW{(5$Qnk3-F}xb?uo#p@2qn)n8*ixC(X?jssQ&>4%m-yx|%= z7H%Ws9e+Y`X#U{CeMpW0fq!vDoFhtel7oai%griXKoL&QoN^|`8@ZLv(DG~GSed#Jo0X!kpqyr*a7s7Ht&;F&fN%#LNU;@NrLSDO1o zD%e-y;LA8e;P#Dm#)I8JiqfLI@VilD`r+0e6|1`8nqcBmBg(Q04Q@kw&B!-4O;=T; zucKlaeqZ6>68AQ+l91sbB5BCY$9-74O!kB%@JtV}dmlG0G6HuZijI?B9)k$t<+J{G zjjQ<38T&|Zwast!NKE@Tb>Ys>a*DnL7eLbGy+NmYj2Fe>msZbY$T5b6+j|nA<|Pk=OQlqP zV!X5v7fFe(=T*ih)6| zwfT^=2x-PM{^ts(j^;J*B>Wgp&;S4qTpzq*C}wdHejv}s2M zMQfQKiEb1RK*41!$K52=2DaQgd#tV0x4I$H@ElFjoBb&(fN`T|>T6z)KlP#R`~bp9 z!A~iMKW$^2GJ-ph-jL72Pw@<_1w2C|;Pjqc`j;P6flImM4X_M!E&*>|$`bLp3I%Tf z--=TR_|57F!Z$QwyxZEu7zTy{;EuEcKqY}gRdipygz&clfWL*>Lzx&uaN{ZX{t+m>r$HtJ z2hk@(Bn+j2u7o)}5Tk+C5AP#zA$rQl<3<+vq~V;kHKur0T;ji@kpk)#!lfFduNwtH zK~(-R1}HO|48zGZCbY;%f4Tw@?N(X$1pI z$U9-6#&`{iOiOy|$p9SR-B!Ll-}Q^ase;l0uB&(bhXN4z&2Z(I@iZ`*4fFw>#GB!n z7t8_S3z0kL%x4IH^;swuMK9n62;A$Lwu4syhWUW@sg|7ohxxn0DE73UUWH)CPXaXr zZ{>fZ!5DZVseZ{Wl}OM0U@{$sqGKgs|KVy+=Kpt}e;SIwo-(7X(6 z^x3o3xdi%90)(&6pM5oy01JN7qYRvVcNz-7`t57AS+}x1Gz(mXBJjm$_f{t-hg=XD ziok({5dH^PMUj!UKnVskYgg>YQdyE4Vxfl;p{t(6hihx9*@Wa?kC4df{ zbtb~F$P@2eZmUl46w^L^1c&j6rH)lplxYP3<&8eX%zt%ru4h@IG)DHtYsle3VdpC3 zq2k?Zyav7#Bb@fAtRpe8Yaxod!5iY&`uB;#PqfG4fd)K3cCgdpeffh6e)k%GfY!)A zg?@H%Jfm3Gc{^v%SdD-75I*G<;|2huKwQ7vQWxGg1d_@ljcGY7C5i_Smo&y@_|MBoAkwQ+9*)PwJK?@Ivwq8Cw~9wkaorLi6BZf8tfr}d3>2BZaG&zGwofkSk6N7~RP|IeaMPJv1>NmH5slur(s$vnfnvpgOygEJ(hGK(u`uz+ zI=*n$ZvaI2-)8;~e2dtaEg0|M7UmFm7qR!te`t3H9|^Tz_Okj?bq8#U<~fv&p1#^b z*iJZ?j<2h9frDSYT3vkkIG*=ENt(NOv(VDVak z{GP}{{nZa2#qZ01JX!txo8PSV&oxeTkrIH}+eg2`Lw|aosHehPe6Apgld<6aLIikS zoU2?7+zJOhTr_%S84JMx*u~^;fCl=lge4~(EMB1ln-a1!ut9tlxdDe#jeQ4`2{R*!(%=9&czi{2p z>9diqFHt5BySw&m+#Ji*E>JEKi{I-Qxs2Uxhjs_GSougF0+fdpW(J4bpLhu3A?V>wfN?9&4>MRFtNsXrDkL z0ETXKUvkb-1%?Tt20zOHYjGHM(|YAD)?O=p#D_?$&Y=Wo&FxqU#6byoF8QIHSH-DV zM>^5jZ6F6tCDuC@2iE+oz%aP3I%R=Ktq14kLZzokHyD1fL}W+vH!V)pvN$)tltEmy zRYM58hGLV65@{&A}oS zPfw~87cY}uN&L%i{>$p`|L)89<^k_7UcOj;t$hH7XMg$cRR6uzi+}uu?mH-@T&DyM z4vtr^^|2LTy?!3JFU}8Ej~*RMnK;(|fG7GrUA_3{)78&@mhrw7{>Hu&#Xox+ z$=aVBo5RCfaKPUki@tGk@SW}Zr32q?HZO2pnQF@Ohd`w1GwitU!uY~IK zkt{}gLx_uJL@x^l)y*aIFWNz>3@um@f&S8hrjrV)H(&F6 z=5egDxl4Yn3yYW>t?T+}_#^aVtJqM;MZ3@!=7Yf!!&`^%yYqM#8F+F#%|8&0IL$)mxap{(BfR zW51~t+7IG&cYKedPK@1z6sq-tqkbYRenHQUDO!LJPJpaH&KW-hGr6Sh^jGxFlxBV% zGI$Q)UHK2#!o>)Q2PRhx^W5j4x>C3Q_|>z&Arv9O+Bd73KnQaD<4uaLS`t6KdpQ78 zp2Lau?wzEwY}gRh8?8C6FD_SawKg|4ZYU1p1CusL;oHv4)MarE!jre$cdDdVOcCru zd7jEtiRt245$}l+U#l+Gm@(5K(7cI{Iz`@U4{d_MgaA~XDEAZH2nXV2mZJ_0{7{m?SP!A!?C{%Vi%qBCcu03{|dziIUK4vZY8q~QgmQ=v= z0;0g6Q~YIc)wbiS<3sUP`77S}+4<_8Xyis*{=Pc#a-Hkp;2RKjh1bL(?mL;>k3_GS zhu>ak9l83A1Xvb${KG%f za=>r3CqTC!2`;q<0C=dSg!A)D)muw%;zItNYs`YKH+=a}4-ciieR6cL`q7V`tUftb z8rfgperI)_@hV(3;zvPanZUn6pWrWW2o0$Ke)1aOdWCiwqq)CGw5xnEoYCio#YU4N zC}=~0X39m4L4!emDhPT3vfno8>n2X05T>!H%-#jTC~pR@;H~xsutdPO1^{77@9`La z*l)mEKY;sCea`X1CkIEtmmZ2PSi@$?GOdL0Cv6VYG5~Juhfo@LDqqRN7~I=*9XN~Z zMLN(sj3eV7`IF}SE%M*_Kg^X$SC2!=1_jEW29u!cfd4xV6g5q}< zFk^Sw;5rQWsC9r^@htqoFF5tjeF1KQq^f#^_kMA^uEbBM zi}wNC?~!&kOc@nKe^$L?_OJT7zlU2L$HasMtxy198VF4`z9Hs-5Ynpkp=vsWe+n>(aL6{0hpxOdJhhQLJoqxH`Rl-#`jUR=oYzW5dW)_Lm zh_+LII@ftJ@OTGsRjmy`@Z(35AOZ#)lbui&qA$srw8FjAH540u1Tk<-co9i|Xcrpn z1Fc2ThwNtV0+9k92q!Qw!Xa%S2Vn}bj$gvSqnYN7XhWssk3KEy4dQJVn9%wFuwO7X z{_v|T!;GeUEeP1C#0JL(W zPDBAf8F(jk`$p5C8`f~$vHhwCD`ao9tJT^+LIG14`jDpcJJ+JSg+JlT zu|M)r|B4u)D>eY52r%xM&HMLAW5;(4;CcgF@Io?-@}LiBM@thi!=-Hu2->Io<!QsPa$Nxkx+P61EFQxaNYs%ZN{z=N(NRhbAEE$65u~HS0u%u174?^k0)WNM<&h`t zqCO#L)e?B76#(jI1puMWI0434e+rEE?C+2#iU;t$0D5!?e>@8}?-Tq)1#-{Hq7Py5~6+~&=T>dRW1rZC_yFc=oo&adw^D{{Du<1vw|Q+ zT#B~Y5foVw@PHs5pyou}d`rUMIR=x;fe?Zy;%~-c29!c=kVnLK9=ImFY&8U%aebG) zHB)dwdkDo;-W7mY6I7V}dj2Nx@Du(KXk+$|XD~43+6F+8O5o6VaGqh#q7pP*?v*S) zUFbWW-QsV7pTJS!1nUMu_(pvf%0P4&_>hvLe5nJz9(XcdAW+ zkF_aK@9(tvkC}hqDwF^=wJicpnA@N?%E6?|xL|L}J1L}QYN%WO?!gc|ZV=`F9^ghC z{)LY4VI5|$KKGdVP|P3cq`{BBey04_GFvNC1iWyJ60oHJIJ4n;M5KoqF5{ga zV>ASH@Cfyz@<#~-tN?iYrSI~WoSCObb*PVi_f#j-3M3GpiPS?_1@%h#2uXhQ$&mU$4hTO?=kQ67U)xwv zz^wpKS45^Elz>7f{0UyMFI#4b+RrRMD= z1;E0SDBw77BbO$_T9NUrbe;BjdoFy~RvjotXW;g1?MjVdaTp(;@ z@PB%`K12X;6a+#!6v2N&y+ER#nc*;Fh6r+CNtsZY z{;~ee53$4Vp3cLfY|t)JE{+ry5MdH%9AiBUsBvKD_5VEoDRQWP_+ihIcvfdlUxLH^$rf9 zS>qF}llSpczlKsHMQzRCmR9dFa;Q^2{g^*%_*sVXQ5hVe5v9Zre;5Kv0Kfa{IA$pf zB6fW<;DQFJ6V(;Iu22#c??#H|eOZ{USc9TGoe*H_2}A$>JkmDuT;C6)svHBx;1_nG#RQt_~K7ipJ-kGOdB1KAAMg+_j$ap*Kb$*8hidd z5Zxc57)fy^kISnwDFNr`7ae6sq{(@&M>S)7_6SG9ajHZ&5@cU&aK`&EB>!F!&{J13)7C6})>H^E}vL4X^{} z-c!@3CEJiD_4H=|K>S`)L}}Q}P4TJ=paFVD(FZ+Hr$~XPe_|pXz*h&}tqjBfa#pM?(J+6XK;x#Q>C|oY>&YD*SQ5$GZWhlLW zFhw9}P%dghpAmT91L2_%xPuj!Jb3MGf;rx2U7T!H;TzWfMd&x;KDgI1>F=qp3FjFF zfEt3HXsd(({mniAECBa3n=!3JfBQ9qQ4-Zzt<384`awWBcY#fxnEtQyd-t9CQyls8 z&%YnZP<+qXK&yOCo_xM~^u5nlum0)V)zK%9B+%c+=EVbDfOM%3DFORZdiJ>tK=owo zu|$I8~Jlaqacn63>pToDz2#Lo#r9tYb;Y@ZAH2fs`gHOTi zQ&^-0fn_-Q6J={H9z%UDvG^zlFOfbH?w&~7@)g6c6pwpOyj+UQk^<-30eGOl$-&sC zKG3&k$2>!;OpIbFMQKd`am}>em88KkA`u}+ZHb>c&DPFP#wPy7sJ;z?-W5na z$rha2!pl2&q*OMEQcqmEbzgrh%-~G=<3@ zc!CzAe|hLtR@jo8fH@LmH__bZ{mp; zC9(p5hSg13#6by2Z7AbLhl%-RSPEq{cueYHR@bxFz}8}(m`csK8Biz#-UJ-NS`zl9 z?j^VIC*Q+|nw2STSOBEvp30;dyC{`6M*|;fz&+N?hHw;t{I)hT2`Lt0V4rf%S&fb5 z2<5}saL zE>Ug`T!;xl06_5lcDjg-(m@>r)QPhF{J_~U(v<}!Jp|-{dafk$&IVpF<5nXX^kf}6 ziCo$XZ347)RshJmD*-UHz+0qXfRV>in$3S!0xmz%%uTl4YaKXeZ5w()@Ly?0Yz2VQ zX(R4^(I7PbNT)kkLSy|s>yTyqu@nHBhZ6AO#Xqk!NrLN!65tyttpvo^B88Ck>Dy2O z;B%L<9&{yuyifwjk7YW*rd&8S3IRV5@Z0Ys^mWAdSa?Gb*q1`jsR6_L6adB=bmt#E z3h*9Fg?dFHCmwKF^kSx}>IcAu_z??IYV8+(zlR8*P zQod=`N`UL+uS&Xok(pZWam{;ik?UXfp7%}era2*tf>;*2LO1V1)I6AYcpSl&}ZVs;sI84mmYPDqzk{{rYb?r zmVfy320W4l(QvMIWA%hP0&L>sh7y)Kb*@cTJ<(DxU+wTaZYXHZOfHi|aAcgB7s5S5 z0e~=FWyLd?zf+6k!?54Y{$wmUsneNX-lYIgF8T8VsMC0!6#z`)i!c--WMg8W0HlAX zfk21xOlR&1nas#7_;4+t88i$GZt04+dM0l)Ut0pKaCm@o=?G~&Aer??VJeRq``dLM zT&9e)HYk6^Aq*iO+PUiGZ%rexEsSxIj>Pp^Cq%*QpZEw4eh7Z*LmOFt16gz|(C<6o zoq=qPo_DVYKRP&+(jcu;CfbUqt7i1RQ8RADkZW>11hFY?6(AGt^y50H*i66;m`ypJca0QL#ryN;iNK!0+*= zhpQib`6M?EYL5XoEV8x_Ku5C$02%-oZ(#)})Dss!#tE*+V^l!h3tclVDthEWOEJEG!oXS^@h4A1H zh1>z8p21_9q&2i63OHnj3*KluN&w3&07^gy;=Gl$5nuYE3;z)Ou9t)=z~`7*?)3hL z|Bt)(`>`xJ?)>glO%Y`_&a{jMe>>}1*R%u568p}DkWIc7h8)btxzl(K*RkK%dtMXg ziuQ)cfHoG}b^cmWbEK66?om*r;>7zfxB;D75Dcx|>31xXlVN(TVF;!GMXL-B^^gdN z>*u!hbnQ_2!NRV^`Jtp(;J{9yhnit2c@MR`8rMg_dmSgODa}&84x$#+#eH(~ng_6Mznm_uRAFa;*UMB|rSKnEEeA>=B z0PX5$=c^ZQe!RN>f#US2mrp+ppBmEE-#A`ve)hS9woIZrF)%=FeGtyJdVkUH)tifO z+U+vz)%?@K2XERr0KfGu4kbESz52;UXAWHJRKeCJFLerIg-eZhpb0CrT_(1J54TYO z03ZNKL_t*k5*4KKkkO(?LHLn0LNvb9iFNC@9@HIl(EB8FwCu8Ew4Cs#5K74(JWKT+ zY`7Wa`6E!5%E&qYvBjAWoG^&RJ1_JGa7gl9>kNiVjgNM+KzmO7j+Itq&^&omSDX!b z2dsANm!GUJtWD=YcX9C^eq%+Z!bCFPNr3yz4&EBbYaD+mPh7g>LBDLWrrs+FeuhxF z5^qP4-xJ5At<07@z9^UW6Db6EYxsF6FRejlhw21hX}GpNw!87Syt|T2N5*Qxoo8pG z%gM#Ot>H8|W&HDGaD3B%(wds5_tV;cgX9ao>vYv3P%P%q2r4GUO1MsXj%672ttWyl zkDnntmD@ZKrqV{GDpH_rAnUO&LJF&&?%{#chzhKJ4}G(9CCS~1^AKj@?R}o%$PGx1 z*&0Eg!J&R55#XYLnkgBSxbH_)y4E3Ucl({J9?C zEIpSAE29r3Ko7o<5@4VXhIQ^Js3%X20@AqkgB_G>I2SXju+fQW{28Vz$F$I9FYXxp z)SHm;ZRSIo`ltg+*YxCum)+kIjLSn2oWc*ngOLeOqneSvT{6S1Hl zv7GMs_LabPSIZ9tL@ziWpw2ag=v62Ip;4; zz!CEK*)$%V?=E2|1A12f^suhkLE_mYWzaR#)3ek<`!Rq#PBNLGmf`V7oZqZ>cNu`F zGE6AEN1bx)WJ|cgGMaRAl53q_8UXhuu=QgJrwa6#AQ;Ka!jXE!cBTaC%8h9MHyPJRG)Vu)&M@yXq z6R}J-kMu}{`GGVP3w7cH9z4jF(rI6O`2rY#3yr!j59ED)8rOjE=OjrK z0Q>^3!=mFx0-ywZ@<~$ws1HiO(eZJd&S@p!;iJd;jPR2!B>)S+ z!*4v)?0r%WF3JHw{rwR3C;(EH3>UiQ4@Cfrl$8L|@BPMF3c!I*ExcM(1eoyx7F?A< z5??<%%r!^Pdh~}7x{ZD)UbK)hL1Ug$8!-8xjH(QD!7mi9q0gB4`#E7XBTha?qAQ>9 zM~U#dtKmCzBdYO=h0(Dz-3zjU}6%2KQmRq?{eNo==VI?559M3;g2Q6f*#=y z5ZV{R_-y;?UrOzf4c7`o;M)Ns%!Tbd6@tSQem0o$E7qj0wAi@; zvSQA!S%!$Eh@$Y!F{V54CYTQk3;rp6euZGV3E+n|{g28|dEFb4i)_)mwRlUe*Ru?|fvk4xUsmjHUg@Oj~)%wP*!TxKmFTOZ$J|?O}e5)S(a6^k4NI4c3+#TUB z=J z{3y<~0KAqz&RPzK4}L}V!{dw9i7YNJesZ;X=?^gt^n58L6KjC^5xwALNfd$ThblcK zeBDMCK8=o5ndD<$9*YXnT>^wG!YR&G(0#YmDUXFD{!ED;c|sxJHQ7@Qh~BU;GTXe0 z!6|;IZ%N==#Crqq8OMfLY=cl@?C_dNC)1g7)#`jwEbllqj_T$&i!6~ISL!3}U1|84pNSB(#6$*Y7EQgM;^UhMDyo00Auy1Sf_y~K zWITVOiYxieRp2Y30kzH*LDyT#ui9xh4DUCTyDz843Dkl~hm=SyLtz%3$5Ok(&W#|F zIx`&aUFcdS#I?>&H-wX)ZZP=)M_(MzO`zfA5lQi7z*dcR&+qa3C#%n2P1}Yx$vBMh zFu&gB`?H_5FPZuNw$QT$<9RT1k7Z*_AGK|ZHRu0NEj*RN^fEtPTkF=}O9bi<9kp~> zHVO@O=IG32z%z04?Aqq_%1oRE6F0+5Qpi#Y=&PkcD0m=7&DVcuqNftPJ;Q$7{} zXR|dc$prKcA!svi7yOx8`2|s1`~dpaD;}i|>7}x^oY)FM2q0ueb8{#%(1u{Ne6^hV z&GP%bE-X`eoQEBCuyT;&F8pK^?Xd%j(aCQmfoovvUUAgWdFnB>SOx2QlHap`t_@)s z(G9*5$Qbhy(yQP%{utNKN)S)+wQ*g>G=^Q%im`oNWu2EYqpa+Y@p>#_Qb^}1UM`)- zZr{}<0AG)az;-URSN5-+Qge2FiCKWVuZSE@|V&O!YlMPL%=4rl8S+b7-e-bTqmODF*oOcL-I zMw~M$`&NKwW_7IO2|G*3h>gZk`#ftiWA0jGx9}%-TkF?_g?|?50O21qYLNtj7^g!k z0Z>UJ)QMb~YcR_<6LUFBq1SRbw;>$Ugv51KK*(1Ie%$LBs+Im}mZ?9e?NEETL-2!u z;BRIx?qY`lejs^%QpAlv$LW(YQvyIj8^0TW8jFm3d`4<}FCy)TMED0BOtgX$aN(~4 zDntP|eejX&@}F)g0pvvyV4Pq@FkEWu-<73{BNd_qUb3OTyoIN2LM9ul6%~C^X?E1?L+> zX8u?J_`3;cTa*C)+<$ScOuLi-TQW?;yUK@0_WoZ$vJ6;AT8yHvO|v6HC;&Vx9tu-7 zlNM&omP(H3NO=(J=<$FJCyYtB%^()yrkIV+4_|9r)g~jj1egc8M_0!G#TPgF15d0a%pscWL0ciC@5vYI_;Bu{x=>WwF&>}SW)oyG#WS2?Z zYU*?>0pk9?{iTH#g1Z>alcza=Riiaq6cf&W@agK&Hy>%upMCtz3Sh<9RsfrHtpr4$ z$ku+T_gqp0Ty_mTaUkxs=pVsvsMmd2K#5B}0U@+S+XfVYJuUgz^bf;Ffwn*!g@W_l z6vEv71Zc@MosT+%+@x3|@EMl~NVgkt{Do4k2hvCM59QwpJg)A9O!?c0DAG_k@8fsc z##)XsKD#cKz+0%tHU4@=$e0fYPT2&I;Z7XRjf)aq5hko7#_9Yn8FJ-CbyB$^V zTNyBJ^^NOs$uek`XqtiFfL9flm;gER4PmvkRJ6Ma|GLwv=C9W*2fX*+ediC~bnRHF zJ`T;4&PiJ#)&vHWk8ftz1KTuVpk}JJNYt5z3t~Oi76-=>o_d<6>kBDJ zlgLp-zAx+aK-vD=tRFd`%y+6u7TpIc1H_luV*CrQRx3hmMD zH_yGe6mw=B_xgCfx-3fWYgwvr3S@Q*(7$}U0^l1MkM4g{3cKF= zlThKkH}i7=MsnqFo(dyx+Y{sRRwMAXdN&nTs?c=BBb^XFR;PkM5t=;ZRGswvvz_=JYB09@t-;I;B!nwV7bNp7rP z%TfRwB|kXRe52VR`-ug=P(p;`djc_M8*g*jdMO&?wFQvbtuEV%aNB<5?LS6(M* ze3Q*>t5Z8!6ikgr@gjc~n0u^;a4%{O1z42vyn|fx_XKAno&t@cL>!35`Vr+)B5g*; z!oxLmn=2=chE+CTMaE-+INsNN9^sr^dj5`+{FJZ_S91b@F4kB`8mC$GY^pomQccip@^9~A{tM7w@j=&!wW6M2Y$3>P(iE*vo z=h^)w0=501y_%_3BI$y^;8JN`!VVa-nMb@wD4GZxX-J zQK--5!|=d(68_J%ruslj9fYF-;MqBOf!8{R{amNBbp@bB_hl5kQZFS?uEfZI13A4_ zKywYjpOLe+uZXu?Tj&$kt&a@iLZ7h&!JxCiu8IJs1iClP4C5mz`D`pmBmEpXL*hi) z!ysF#deZe$QYZyh0Qi{F5?~5M%O;gs=m>}T(tD{~RV4u2ZsOK}zLJnb2_SSo9?R5z zj#B5rMObF5&!@wC_9cve{o!Oq+dMy8@%QkbJ`P3T@+Xb{ zudg;*uV2fgKaCBZeDd{sy#gMiJt8ky1^}!CWOM|a9tgy7!W!F`YNiwU8Sw|;ZuCUe ztx7;7=qFC&GlR%TW^JrU!01o{Jn5Jz0Z3s1ihw6S7OuBhnQXlpmy%5HE>};Nu-9_m zAaLWs<);e&5*?S7`MZ82j_-$Nh&CXt3dj-1dEX|qsh#DrB^c{jdB+m|+s5rIZ>UZc z{Ph`g;ji{d2SDRsfxIgGz{{mhFS@IvRERFOS;&;W<0^P(d7+u`-;u}Bi(IYL8@%S+ zxLq-->-=H-rPDkRLd(rr14;mhF2V#!H%L5HIZ~5LKYhQk_<8qh5x=3f$KpDa2~?i_VI3MiucKk?nCFP!k)O={v3W3 zUe<#^wi&7_0xr+A!u`A@jWG`y1Xd=P{hMJqG&VfjGau-jd&^c7)jIQc9zwjYIm4nZ zVcfP3So0qi`a}uX%cY&VHP99S@?FSkbtLOm2P&&^^a}wTYB5t5rtxLVwGwcVJ~mYe zpv-4~{Unrt!}Y_}<>pxkf8wt+leZGE)>jAj29w2!B=$xJ2iZaJPznQr-%3EPkaa7- zrmV?veInlwaK9Vk$end3;Wm^}?Ojg7$%D1Ot%{>B#Fj-)bnw66t!U;9V?rs9YrG*fHC)@#(+er9eC|#=CoB)Gp zRPvG%K<4T3^J^D8hHY(2+VxUTjL5&hdlZ3cqNC`u;iyt^qW;7)A9vbg#K4RBKccH@ zU+{jJm*cD-CBV>*tn^(A5fCU_c_)Xp$?V(*Zpnh6pFmDav-^oIDkB2lioldtapi`l zs}4Xok-An!v+(C0^Vv)ZfF=_W#+MVf9=eRBu+E-1#ge}`%&M43+jjueB1J&gV|*zW zs})MXmF(w)Rb6dX0F|pUo#e(Ma(14 zDQ_PpDYlG*#PZU{T?MkO$`sa=fQ9;)eGSht=J+gIwj@Q3%+z6nL3T8v`yCchTZ;5O&1rBBxu{@&V1%1j~Fy{k!2zYl>S z_@mP@g?n#@v3BcB6j?1dhw7VSSs}Kbwr+ zIJLDl66%&GPJf+i$~NKqz>DtnAMI1xpsYc|WV~iZdB`Y#2`$R+N<@1abvaI6#tc{*9#;*1rb5KBY#1BlbyQ>$(RG$~(7*M&X+gQp3e;2i(Xj178^K9Ul!|3=T! z`>(D=r7(Uyi?!)!FWy^q=%?sJ1%#pxsLWt$u86jCr3Jw>d|R$Ad{WuocF3pICb-_T zef~bEh8+vfo;+J!O7Py7IsfETBQV$DHyd#_X0iM@8{XT z4^HpP0wTB5{j)xqIJ%HUKz=(u-{a+_l=QE#4ll>aXgF<|l%uf0D{=U(9Ex*YY5;~a zWg?tv#evU$zs%hWQoWot!Z^$+g)aUP_PMZ+K zZ(H!kY5(LPS3NsV$K8OQr>_cU0s9|Uso*X>I>B}+n`zgu;?HZSt??Ohif#|F|M*qD`Kyd z2Oe}%o)7O1c_b3F^LLgKydj?J;V?V6c!ca4sBl$29(16iRV&QzTFNMn-Qdn= zLE-zl=1iPlm+Ls9Gh>?YCw30r4&qq1MHK>08$;T~oj0cWz6*XwEQE9AVcvd5_hA}i zYV|2#d7;jzFz0)Kc;+2PDORw^elsr8J<7hga>wa4ihGd09K4@bqEHX1v1+^kRU?v z14m&=nF|~S)~;D+7BdSFP!>wFgfDT!tbc45jmSHdL|z;`FLJi;Ob6E&tH%!}huTdF zTGB%a=u>31Z8j!8C@2B@vXYFuQVtHLQ6GxH*CrMJJkJw2(k>w@0eq?(I`$tvA{RR8 z^GJ${6#>FiDI`_`Tz7~2eNd}!i-~liNn^OYo)e-t;8%Y6UfAS7>aG}K^{4F^B zj-73(!^S$blH2cjsb7t+hwaq(dfjm51=J4>f!phm87-S#&bWqe!Ot<90mA^R?@l`H zJ1dhJ?7%2Ea~xB+L$4PSHp+-6&3UfLc=Cw(wpFKm=`Psp0R<6Mq*vF%PIa2O{Dvey$g^ zQ=9z9Vs^#bQc`ye)S2oFDFXameWMBgok{>F0^S1auT74D2M5i@hhM;2p9*G|2;USq zvLdiA1#2S#pGp9;e!z5H&r(1U0IUq41Ssoj!%qRXS11D6c3v8>#mR!mGkc#SfYl(D zi{M+L)!Ih!h%lA5i9l2pdWL?J)@|yw&k0`yv;tbHD4w!C5Q3h{471{MU1$G{7>}CS ztbWY&CGY*2>^8>lUPxE~Dmw2o@SvVd6Ws8=9j{)v*~|=T+Phv;=1^CLx>+g3=c(55 zB(5JyidpzaWd7_@0xAwm3hqPVk-1h5E8ebare~E;jd+w_A*|cO`*j5XL@E#_12uA5 z6eB;CWY{~5$UFYbhh{6I3jWaoFwUTlOAFE9{pitrel?*J#r^r9s#K$L9Yo->m%D=N z+v`}K58hZm;$|~?HTvwV@S(wHxMZG@fXW}9H@45#HoIZHe#GyJKs;;ygCLy=f08YX zGr{a0;UCGFK4T1?T?7*pJ4$8-kjGdI%M)d8RYREQlU3(i3mXS}vB ztML}{2=neZ)Dhg$Jt8igCzwDcMgExzEsy)>lhf;x60r9(tznA>prsgt`)toogjvRgTKG5^d zz^DWeN88ob2;ZbwqEVuWD#s^^z~nd61b@ufC|k6@7ENqK`+jYQd;++arF8fQN`Mss z)4QSr5d2m~;(1sa7L0dTpVpmO0VZ6oZ2osRPbFRLVxBN2 z-sOJae|O39HaK6XABT-(H)i*Ke~?%P7{8M+X14Gj6#?Tt)9#q{YgxWz`L-f(uI0cA zrUl~cOz3o%+b7&kxFu|}e~^;G%S1eN=qSOnf1U&E**ey4SMMV*+G;&Tv0lQUVI3kd zvV3k~9(DaUG4327{AR*YId^%<+XQ~W04p$OsT{ad5_Ner_ynLZRG~QL9|h{P<9=SQ z??wS0=f68qVSQGK?w7mYH&KQGbH%!H!llfW`$K!|zo|A57(?qgKI#+z!z*xD*5rA2 zX1&#!ug}nvpy=;9NTUBSWdR7vsGo59{?@kke`N;SFyl99$oD)KZC+*cP`6(5_ke(K zt@Oia>Ay-5>)6-NCxP30T1jBPGBk_>C4-K4#AnT41VjnoZ!g;ijlH)+GQ8$2G_@bJ zwg2XowyHJZf2wD)Z#)>d+9`VC3!bMF`}WmuO4~z0@H;E?%&^$fKhrHj`CxZ<*->py8uC#*|@cFm7 zI$IrR`yRk~6!)3s7x1y+vD;5+kCk@D=Y_KxD1n@xzrH8uJ{$l=cLzFn>-v4>wfeGR z?ozODhA!AG5KIpL0PPyk;ejjs6fb}NT8DB?{Y5q2zp4B}jjY-Wz;|p7fH3`_$i3rdbS?v}3eGyq z9T|{6Be|pKNij);K2y(o22q8nyIO1&W~|>-lMWa(V6Ce=)n)QY$+NB<&1Zh#_y7^( zyTg1xXV#9@GmSWC+v5PIZw!syv^xX~nr0XLiL^DFP0rGVo$y8_z~vLx_L}XNr=b$A z2gg0f6H;3+9TK+-y8pn)1e9Uik6X3eu{>riz+v3n;is92w^&r3u^nda* z#t@!hx{UhL32zH!{N9w+O99~QvIJB=i<`>2HH~&3_;=64Fvx!Cad*9t;H$936KmpI zTsMdJ*7o?zLXZA74#kWnc+y9~zk_6U)}r>uE+lH?KjU}_unK?DLIIFIu%$JPN&v|4 z2nK~=R0c?MADNi_f);RIGxt4ZjY5B>6buA0&4*hpMvKBY7HWOT5r+}Atnq99=P1|L z_jdmAef4T5Zp0tu!j^(k+RtS=48@~pm=Qk+SNTQj727}3>x{BpH-hw0ko(F%35!Xc z2t}!m3w2yo3ZiV7gcOUJ;Ezg8KNkMixgG4PQ@}JBT8-3J$`;oql6<}e|7iL*eT~9@ zdiwkd1<2Yiv$_~8JKEa=0u36$?-RNtVxmxd1W*DdQ(Jph75rENDr2uc0ayAs5IZ5Z zgg)==_n%jP=iM~>r*6#pH9AGO@h$Zo@3*V4Fb(JP=fW@}b4EdalmKn~U;W7sR;x!3 zPISuQw6;$=N&ve)W{}5bcO@XFP;B={3Bck1p4b1C(Z>R#1O!N+k4gaX7Se~BX`w{J zOo6LZFqr+L2ps7H7e`;w-_Q4SKFB!w7_TiO?_S^E@vYSM8)p7|PLJ2Ul|$lea_1WQ ztK%`^MDP{g=Kd=D!R!1o`%|Pf=PemOjbL&yp62aOI(`g>I$?0!+k^=Hy9k}PDRU<- zW8)@zPJZ#W<7a$c^-pqIZ8671TaWzMi5d2#pdo(O?b57&lu^6#-WCtdj9`8^#{0fo z08j!NOoovl9ubon@hB{}?I$j_X|&vVpnBGCf!$}>GBM2r{!~Q2^4FvyVovWJ=Okxx ztk+eT-ywvOBMFJw|KyWgb8TOrJaN0y)}H&GahVW?E) ziPnlh-Nw2-W-k0yyCVFZd$cOug(+DPSYjG3*WuF_XWD;%CQHC$eK2TL0^02Vk|~hj zx*Y9jB>>^S1ShgEoc**d8CVgx&&Pn|H@H&?z)F)OYTjZcfM@WHjUyBRDFKguRmz=q zJ-!-G?-HH`zKy^r13fMoDat*M!ax8i(N-voRng;_X0n_!0Ua8MAD1XeGkqCvbj&3_ zo~`F~p6iK_1Z17{TOlB{GQbi5N&ulPK;2SddQ85+`*?!j`s@lr5s*Ug&XDcG+s`-NA+|9PYOR<(UA{;umSezZ_O)9O+g@H+ForSx5K)%-t> zL@?7B@weY@9wVRbS(dsDFA@fUKSRFZ=B|Uzo$R9gVIA(TvMsrWfGjk* zH_YEgv6a$wI}(oeb~$T=tTk4^#N|BER|BzIm~RiNR!Xc1vaaQ|Xx7VBW_5D%^H@Kv z_2&!#9#{L)3PN-E(^|4j#`f^X!H@hlBU7%;e@A=r(%)CAWOQxEOTB-+-_sg9@5C|3 zz(s1k92a_tWKjPz2~GK@b1t-QjgXR3!M6dtryh$0O2LYAD5fFSXFOLqlfEvqH1@$kV${>Dcfwxstlj7tKYaipL)$a)=0OXT{ahYweO^!pz= z`!G7xJ{K?L1ga@!rFn#b)loO&!w?gz@NRmSiL%HW9&>P0A8d6cUa_d+ zt%TZy&%iVRHf9S)`gmP@vcRCcS)b3dYy7tfC$t1C@j3duD*(f1Mz4o+La1*A^I}5# zXIKV$(qkF2ht=ynCitxk-n?4?To;cZ^SZ@KsySvHJb5j2qr~)mfy|&No1J% zO|&LvUOonj!rP$bnd(!WcDj>L(ZFkYe%`39jr2K^VAakk10g$`0i{*)VQuSpL!A=|`w@wy2ZGe$lPR0Tiz4Ho{P++=_IgCTA!EZ=qp zL-?ZvaE8F44%I>UcMHr8I_H2TD*-$g;m_=!HuRVwzFtF*C`6`x(!&9Ycg``_+XF-Z z=TKc&dST{U&EbJZe$N&aaS310|4*Ntt-kwbtF8q2$X|aQ5aEBJ!-Du*edD1NfOd*t zl$k%rsllNHaCC5mBYk}FrJNA&%Q|2spr*$)92XEnJ50ff5)jKVsUYwHqHDQ_s8dOPr1ECf{v2;YFWes`4;}9wQJX?VekLJfA)?4zFp>TcGzpVR`NGv6yly}8E?uz zzE2Jjp$L=J1YLzcg8z#*Z^8mV`-F6%rLlyP1{y*TNB6id*m-Tyc>N&$d15kd5N?C8E@~s_k^!}9^`aALhK9uy`PWa-QCA1 zJI3XCz#HmB`Fc%4_ZMwKJ2ox6;f8>0m!*a+55p*XNEykT6(C;aP!@k*kxJ?>DWe2f zxO4m_gf8oDhfoHT2k_Yd`&NUA6GH;M3x5y`eDOw9tNbu@gufa4d!--VmqyNe0|a|& z=<9sOzWR@o5UCew(3YJ95fH@f@3+qhyU$lVa{vVY>ue8EL>izfQ?<*pv_a&v*S}p*tRHywJtO|zwt**{^0WG{sI?pZQ(EX)b5Pl7)OyxomHApyH2Wj3tvz;CkI{tZvpD-RpH;` z2MdW$3blNQLU{RnZ9fZo13deOPPn#wVfN3p>DzKkqwZ#?8tZ`y(NKyE6a~O?00`ND z@V6DfaSkDFV3!u_^oDi&?~+5uZMm#XM_5{bEgLg`0}2{OV4qRtL&kfeYh1l1ZSp|i zu7R~Q6Un8B2EZH{X2@hB#I+QzCV-(=@K!IvUE6LhL_}V$tqiD^<7+$Vac`o9;9{_r z3dPp|6%RPNGBL-6`5#MwfN~H-BZT>1eM6p^1z<$fy@h{G;v+zJfnBqH=dJJVxI;Ap z4uF7X{agpLDfEIBU{7ZM(H|kWK(-V443|>eYyo8UA4>pgraD#-gueG+Cx5pvxG+MP zNuiyZ#5Htd`ncGW$px5cQ1M)_S2!DJ$>?{v6IuS=-r$$M*`MInxKU1i^-FJa# zD=A$S7#|}&+o}p)75+7!uPyw2?>>gn``T#{=GW|O^7j$96=zNxeH2!dU+DE{38;m8 z24CZ5*NlsSpUu+W@}^n<$clo#P8r6hdJ+C8&8Pr3L0@W2NniOoQSS34{=QVM`6y{4 z|6ansDbB**I93XLzboYJ->=#Xh;o(fht92bYH_(ox^PekXMww++c#_<{{xMr;Wf>`8NBLTC6HCjUaGW-v; zk^O2(QWU&?S?DajZ7qUVtF>fZUtqFQompE84_qIi^9zn#odHuCaR` z?*8khxMBJ-v2Iis6Rh|D%0QV2?rTY8z+S80Vg^`}ZpIDR#m(Psm zAZcZ-wOw{PALt}Kr-Scwt^ouXgE+1g9!ST>tdH3p!OQsoRgUWMw_Pkeng z_kLXnnVk2u3Vx-w_8ARp?d!Jn3;e4PCTp4LTZ_cgRA)onYfRxEgD0kaWJss3Fo*bv zkuyl+U<@#WVOKAjJS&)6!#45vqy!*NUrV@y18vbh{9{YqwGJ!d8TS2&`ea_Wn`dP_ z564;j0RVggKKd0Vr z4jSaJzdDvr;U>NHPiSm?NpYjC0uN7Rve&Z?_%4x*C>&7?y!`1%S*BpU8^onHtS0+D zrX#n0^s%B>dDze^mCfcA&MH`Qo`95qs{@Un_PK=BnG}ZO;me!d6fD|`w#v4^AAxBg zuMqM1yzm*xLE$AGl4x_3Il@X~oOW7Q6`1WWDY%r;tgX)7o*F%?GQ8}-nsrt3=1in*)?+LMz`m2fTZ};praE2LiFSishjRH!a zTAvXTyjAUtbEX!Ibk8{e^3PGLLyDU?7oa&2QzZNmrQS<=;2>l83h3)NbZsgh{02O? z)y&jstK+rk*1QJXkb&y+8PxWiCD2|- z#WMdLp1k9>YO|n>-%}Hoc+yk&S0yraVQd`gE!7+L9z6z=?*h}NOGn~1t1-bcJ ztTkuuV%^LK=wzl{fC$U0!WBXH{{xyUe<&^II=J3x3NF&Q3OUncvmJ7j5a!b#N58eB1OB=uKdEB zc_LF)I!+&(rEG`KB>(5_?60px=_<3`q+WcgruMDtfRnGcaIKRC zQ34KSim&a@DSy!9nNAQq(dmI_93dgsV6j8|<6&1}jS zKljAc*?|xWfD{4h@HqViXpyIXr)`OS%Mvj=0M0wWRjG%Q5co^r@n9PBj8j$K2~9Cj zo2j3m-8w6Erja*z{5gFow9q&0Rh*gduL*g*v=wpztw)VZq&?w|7Z(1YBkp%WjGy2G z>i@(;38?jr^Fc%(@S>ZnqD$?(>$$(I_|ZC~50|$`TS1ka04)4%!GCK7pq0A)>!kt< z{JOV)m+*%_oXTP9S=lE9<71F|AZ$NrJIzeG;@SWV!F%>k82ff<3@jPhD9(pa&1P#+ zVeQyWRL;lj&w!U@g^|Erm%zz~bz!bZGc0CqueWCVwdCnK=lm_g!k@d*nvz*YVV2QN z3DC`$&b@(t@jcf)X<%$_h1zCcjp-C(eWq~SOLPhZAozH39Wrw4l4oNp#(fVJ6Kr>Anx@=Qw-K$ z*LnR2|5rAvQ=titj@n4I5koX!-fHCQiP3usV_BAaE+{hAH*s3psYG70&Q~Fu1K!v0f7T-pc7L zgx13;-Mor;$lSu8dyfsSD^vl6bN0Bj;LpNt?PAD6JU(lg<8@fl#>gA)Jp#NH61uGd z)>%!1QGPC=5QlP#U~0BCW8WMi^zUNArxfaQEq<`pQ>+Bg_Urw_SZ-sT|f>dLIokD*?x<1j_)n0_@{CE)#fF z0xAQiJcK{~Cy=P?hazCV5OCT_b4^^>o0<6f)(C&fw&0lcm2ja)(<1MFq!Gf_#R_I( zHE!t|CBS|6RKgJjfLVW70k8zT)J#M&bpGt1={+%gyjx1qQTyN$NRyGJ3pRFxAC7{(q1t(zozX>*CR$U1o8$3w$rp`A1 zd;BoaG5;??ohUdRS-B)bNoPENDL~i{NMd|H?ogIF(eR8faGsNLHTkPAN!)~Kq#74=$c9c$EM>rV?@FuKtgL}3joSNtaWQm zIyEpaL10>Q9roliag)XyM@yQ6sXeg}aQa?+dp;gI@8ARVLxoBZ#EZ;(a#&83oi>Yp zA;taRVzU2uLr5$3kr({xa{j1 z+OCfro#ejTgZwr@tooJy-1YTJ%);?`;L_j78NT^mEli;hs46I_yc0_R0BeT;PDZhg zC?aoRME9ShlwdYQ*6)ZnfsdeXSjhDZPDGSL`^MI(eYw`azL>`Dy@bO(h;`vi|Ll=1zh58LU~)7hK9Ja3#mc zjZEtNt@)mSW?%PyMYHZ)4&ZG6S9t~idHC)CTMgN15XS|pK`_bNf$&vw)s0SG49HCu zY!Pk~mx;cD2Gu6fPT3Jxxn|umw>I@P;a(~m$Ffu$iC)(_SKz^e_3D9?n&+}?{Mq+$ zQkbCodgM4nz)t-s1=GAjSy=C{su%Twg%~)$qSH$ff@h#s29i`-zbhk7b{=b#Q;KWF zlCCRA1b|H3LeP%mNed`rC+-U^Bt`^&4=Wf>v)#w{-k!?+xWoW`n}1CB{VFctmhTEE z!0_MT^=gfE{Izngq^uttGnVQiOI183 zx3x{#Lg4RJ-~l}BYUo>WQwgwKOg0!}+kQ(p=^tvsM1Ao32fXj!igD!yq;FXOhnKWCs4N4>S;E-UU9(@6xZc z{V((`=OG}=3k9a?D&fyw`~V3cn@E}2*E%NpI|Z1{+gd#BG_hMd)v48^{pxd>X#h42 zdu9**;B_F_6&4e#Ar{WnUr7*b;~mFwR~)srLS7GRN2S$jg|> zb|?O|gj-bth~tAO&(u}ld$L*m&f{rbi_l-aRG;Wzo=IeND zV^s$h$%!K*Yj z;)Y^SXv?FIJiaE6%b4DJUXpQZy5mOSPfjQy_@+Ygz&8Qf96ngv9G>Cl2h#9Ug})Wq z5U9fQGFU$!AcgeAhlav*8+A~d$TKAp<*FNDEZIpB*puJRPL7cl**Y%9C(v(}Wv=Il z6ZhWw!wr1C$`az-Zy7?*yX4Itya%P%e91 zx!5W6831Ug0w09Ib)C&}??+XF!r*|;5p9pMS4Iv-001BWNkla`=@x=E`4i`X>VZq#U4i);Nt`OeXQi61Vq29V_^|CccO^<>xh1;mjkAy2>MhMx}XG*=b292`|e*}h7#~F z*U?b|V)lQeZ>MXUAi(S&B>*`4NmBw|{r$!2;jc|!A0#c#7~o<6lz@O?yj^Pz_fl&{ zJ{*Z*>7fZebWWSmURDBZ(F@*?$aTz+&x*jYwh%J&2T%YW{>r56M5KP|C!F1%q;ZW9 zT&oVu{s~#(a36xhnsQxoMTktZNib9nJTCjR#Wb4W8vf{hcAB@|^)M4?ea44J3p7RV zaL;uW^12P-9rfo%z_sbnmP`BJ$uPU<8Hiy$2j_1`78&KR8wJbN{wLn_0OT^P&XUGGO-OHmb8h z&;H5JHSKSwzg=IKtIz6!-;q27a%7z40~tH+SEHc>tXWDDF0+4@0DwdJwp?DDtt(#< zuuDv(}aU~2$){!$><^@K?7E3Bm? zp2>&6b+!^vaok>30-RTYED@#0mi8cSdR;? z<2yZf;A;rACfMNp6P-DS`4Ift*G_X-m4N-+uDhqDNfdxZK*`7>g-vV5Lss3^Ux5pc zuEO305L)opxV)xacLBb#Js#E|?r>_Ac2=4$0k`B6I zKxdox=ti3PAoi~d&%_F`GwY=s25~p}kU*rs$^y(eOgNa|)!3|^iybwbT=Nh8F|Q+U zq(Z=A;FRx0(&VPoS?z5JAolY6!I?LLV7gSOI6RGQR1}0Mt7goz!LBlB3cuTg7*~E* z1Ul^z250J>_@O=LHR*i~UUfNCJk18UUB}}LuG4XnDgf2w%6eVQCR>sQjMkuXU}Ti~ zH-~;w+FE^akmr@hQ)v@D{6g_Zn!TOz&H3YXgp~0wetkZ}x>Bb+`P^-)K`MpfJRP>c zk4Yt!<(+xoToWcO-c`@50=OPJ5{{1fqNBhh{~Q`3O3iDQcG7XwjIL1`cTEj|ZkQSJ z{dZ^?#&5;ef{Nv*%b+*)8VpM>U`4S%oA%P9qh$3tp?CU#6J4#JklXn##G??nugyeh z#e2f>p-Z6Q;`TzNzU=Mhk*5Te;r9d=D}bF$eKx=*35cV_zxU+%>O24RkqEP$&`;kS zNz1``aD8~RIylsx?62zlf9(Rg&=~>1zVyB4n{yo{e5@mU@yJ)7{#4e2bPl|bkIhkj zYB?Gra;e;WSC&(06WW*1l#*yV{HnDAz6r2*6hZ?G^}NMIQ?4N`l!;p}yteEPVK6r9lfRhrBa9n?CWlvQpaK zu+^BJL2(8~y7$ClZ!mc_BYn$5U-3EU3iL7U!h6h2L5XB#i_=EHeW8#8;lPb8kMc>1 zZ`d%h-q&-!&{omhDL@fTk(_9#(j)?T%c`Na4zTb?nea6UMfgXZsmlVm9hum+&ztMr zqkW-zK-+5dMw3ORJvYj12=RNX0#I;oynKJ}3mx%!b8*(bT~KR0-))CsejK8^02|`# zt+n8Yqj4E|30~Xty+Z_kT`s8C#;IW)cr_l`?MYJ*c};X@E(-pFXc{(MIV>n~sSXD$ z{M+5z{d)g@9aqTwuJ>edSNXZ$eG%;FsDt1KLc>;_U}Ofqw0B?U!M~7T=d-&&9Lt)a zHCBYb;VGYk6MXwy4_A+WMM{BAgfl$X_vs&h(7s6bE#1M( z1}FjNSd8=s9J4G`W@*vlKwr+mgkSmY+lX#P!rnE%V~9m4eFCOb)dS zlmyq}TqWK|#e$Yin+v7Gn@sP)yP-wlBfy|ZD<00;KRuphRz;xoOG^lU0eF%AwP~Ge z=8_n@?X3yjMpNpPPEIf>nRbiAo^)g9Kkv{{QV9Qp9lHWZzY`$jM@1krj{W3uTgx?1 zVhPLO&zt+cDprnL3Ja@VO8$q9%N;)N{t&1%38oen%$*SdAr#H33U^;Stog_5=7BE; zqRv}n(wU(u0li*O7K6o{J8|DSh%%;JR*0-zS?iuK+LehW?uIgmv*HX*U3&EEnw`%T zmW00-n`ZyUoQLCb7OC}IfI0SD3E(uq!^6h* zxdx8%-c|tOtO#sgX^mEX16Besy`lhI$m^d!`;3qWxXJ^?+TCOsxR_qsNn#5SNNe-j z)Jx`K6bkPVcL9I-mrqycni1XvVTIJQQx>gGG)7J;=PsEUH+4CtB=t+L{d*Tc6>M#$ z+s22-Jo6%O{RPa($5`0`t;Je987-6m8cr4`w&xzF{D5Yv1pprnO#TMicFAee z<1%a!+1Ad}L*=b~MZELH_4JtVUm>o|{<-os7Dm5Oi@)jj7p4Hz*}u(SH$C{Kv>--0 z_iaI~$BZb)b<;9k#;!(p`VC>-72tt#1Nw53-^ZO8TLgu=WDPKGEom4i!T2ew;4;X} z$UMmA;yVjOXi%Q$gzRMnWF}A|9*P{mJ`zOp9GlU&ufpH68sa_sKQt#GQeX=}yPN-F z33&MaT(f`t!HJdt&Q>2jItk>1A8%IA^HZ-8F$hHB{0a^OFMrC|jhH$Et9b8vjex`w zaEZ@?8r`!ZGr3XNkM~>8HytS7`BCC{<%WySPKx21qNbN8+ehqas-+ZkcnCpSE7R04cY+D%FTOBM#K z04M-#MFnEZvO?3I!$`~@$3c_9qv#K%QL01x2ZR#KODsUt7k-!49E2YKIOumK_%rVq z=Yx|xjHb7m9u`VKksC)ai(;t+(@uCxLZ3LlFSs6?TnFS>>ec|B2e!?y0f^k!4$cUA!Q1|NZI7)6#JVcMi(;-|`EF{Mw9(_h|oQUlOv&0$Y?AeWb} z0wemqGJH`G$7AA%Xh$lDY6hjO8o!I79f)BgY&q|}ftW@i%JIWjea$6t`g{6eHM8O{ zsaNPe4UU{Ax3=*+D=pe1se@1CZTSkj8Z~{7bg$X>hTwdaCtR;KlQ^)uV4V z^YH;6n1N|%&-m4k+o^Ei-2dQc^_${Y*FS6w`T5U@odj&VE5B~LjPkp1+m0Y^F|4ft zL-Y3-e{d;~$`1^mSsJBGvw6zm5ASpZFkoFoo4!sJEt%*j_**TMC&BfF8X={sz=ZPU z3TJs_yV5&5AM1q4GebCC?aAXgr>7hI7?f_)Ck&9?8Gy;wM}NbB88hv@0wv7D2!HC_ z&Jd6}HMh-u`uuYB;WtiKzoBmge42HnOdnaw;a04TbFRRph~p}c>qWqy{X}*sNyQMx zqVM}!IzWlIlm#H!OXCxI?y*ee*OHvP6MOCttZ26?>bFrM>$-6YBWwN|<8G4!eH&p0 z$?%VLND;>n^TtnAAGatc4OVDv(qdu%zUVNoEB@@g?yjb zbG~`4Zz-s4+AR-Cc=|5O8S9?{2-= zvyGj~0b%ZsHm*<{T8-?3<@>{Om>uuW;dbzXHjWs3;=tLbERdKw{H*a@A4@f-zg1XG zA2p-3q8j(M*Ph8bA2QBbP{f&ljgaBuE(Ev)ocRXm1LX!B2BI0^4QTJ2#54R?3uAU_ zjgq#AnZm45CTtUAbAA-zL;U&!5d2m66X!IpmtZu*`TGUnBKY~+1;@!m@3R-YP$WD4 zFsoi_Z#bq~lz^My{)cTj;ogHb`*--k$;7l>4VdoYpU8k&>Ga1ewf*sI-mAXbP4yYm zJn+7(6`=}$w`M5A$*kP>JlAySbz(mg1=30+VKsf5=`j@O2a^uUUY~W1FSX;|49iOh zMza8{Tj5Ci;q%Sv-~L70FaMFOIEIaU0r)c<=qrwgsvKd3E4?Vk10(c-gWML%^~fuT zGce_l1mPt7 zZ_3fqd=T3b=5-1Mlpbcu{Cyelj)0o?X)0Am5{E|;;4C8<=AZI%YzlwfBH-&^cPgJy zx322aF+9-1A4CK{e~br@i5A~R)LM$6|F#MqB7B%wR2B0 zBH%6LdpJC-%3GWM+i8DOY34yw%*|KtYyrUA_pQ$YP@U9o0re=#Y7H=Ra+v5XK=`8} z5ymWJN<9#F<5V}cP#ut&84L;l0Ou=;1I+6-!9UIXTM@VY!kCACyDdwko1tPw-1ga_>a zm2sm40L)@viqYE&;4BvYCldZ=e|xsF@F)F~oc$ZuN`UWYVdDcOYHaVJp0?1SJo&oh z=92dC@yua?DzlgYb@A5A0E>wk38SmDSIOcKUX1TthvOyhWB>(y43tt z_&c7jE>=gl`yM4gv>BFcxB(R1R0LS|?*WmH{PzBV|W8&9Ac&UZ}z+-)J+) z&;H`c>finOk7ww1ikwB(nj2WLO;~9$z%SMy%ZzVLrKb2?K7#UTrF`Gp zUUn3K6Q~6SiU9P$shWm^R0ee7aV%xoSHKK?z|HjJa_*NmpeFH2qNf*MpIR)0Cde%dT&t7Ki0fp ziZ(&wrOz>+Z6=^~oILY8)|9HoJ9K{kLSV*oc0ded-bZCB=rb{xaXq@(?`9@lL)U!_ zd6x<%;E^C;(yjbDy3kzP02@D{o2}SNr_u?m$04i@hpbuY)}<4F5c>fAHpV2>-coDW z=_q#kwbDb1dvP&$j=Icchh9n?G}G>`D1-8{I(6ob72x>vXm$F#4+B}>nvqpO_m7WO z&vIMfzx(r->YKKv;2Ga-6Ep@C-~%$;P7$e}%QxkHbl+CATPi30IX^Kd0X}dECoJ|T zi!uWlW`(m^?10yM;sC_^a?)PRoT2YP)k-MW+1wsa?TPuTG`cX>AI&hyi*VC@qx*(i z^KUsFWpP#zD32KtLWMe@;KAGg7F!PV+%xqTVBZ_B=VoFMceqZfGbSy}^rHf*a?+4S&hDT=fum+8ynUW18C`qT>bIxdhPN_L~3E>YZ)u(?gf&2<0736vCujTVJn=L}W z3DiTa;M=I{ek!=9TK+nc{{w(hf}q!j2EtJg3(mQe0zCVP#s_0mTK3*Zbc;wlhm8{( z;g@=3jDX~6<{vzVc-pJ?mF|yA{lH;O9tFb72X^FRh8=7|6>{H$@5x$hz)M<=`22Y) zj?Gyg4@EZ{Dafz-oVy|TIkeJ}uyk2gJi0=!cXdBHj@>E`)vlYg9!6fZclFY*CtIQf zztsD*Z*;VN!rEZIBkGTFKreV4yiWe&dTq31q}}y1M?-jzPya(6RVyyz3UC+$xkbfq z^j%!FUV6<~N}!GRIFT@@g1$;#pEy`FpceqS8-6#nvz239^B>Rkd20orJ?`CqsW@HW z7uYH>Ut}x24mjbE4q?FfMhA|qGKr|de-R-g)u7|@g3(JKIche@h(!3;5T*rDIc%xw zRQ0zN1>#1*Z#;)Sc*py>w*|j3Tj-g-V+Y68Mg^SBDgNPNXPNT=Mof#NB`u3FC+ZqPuk4if`68H!_9T|Dk^x> zHqe3ML|4G{Sr+wKQEH6s{$QEFCjhpb+rPHL)D$xaD*`obc1{0ykgIN{MGJn9g;^fm z*bAQc>d3@>ECZxqU^WANAV^Rw5Lq*kjAbYUj}Y_WDEue^Sl|3z6UyBMpZ@J;_1!;d z{s4dU?O&I3U^~|V{AWL$`kedg%G`+%m^oKPU_bp#@D%{AQo0aqS$ig~8@T>CkuS-& zK5kB@A^d+L2Qv8a@KV)O?7W0=a8pLu63H#X|9+l+naL4&rcaeExKRR70ICvDY1{&B zJh!BlTd(1<03^e!5VE9T;3}*Kv=hozj(^h6Q}=yjt$44#cL_Ai_FJDZvV%JQOlRb(<(OX*AI^my2bCa6 zyajIK^_cM8fBv?JXa2S5rDg1@bXVN*`X5aJ7%MXFXWmNR5m5=Vb{^=X32v(h5$YB= zjzKag0eeg@E!mYZ`aK6s(qfFVg3^mOF*!_{iF98_S{Z;IR4@SkxVNC01UpV^3-8gN z+%D{xX+cqwJy_73(KlgU?4qy|a4HXcLtW2v9N|Ol)&8AF%bfL}fBZpL0%F#m8N+Km z-NWX%R0KAYI&KpBj=4Sb zbBwtp%$-)l=?GiRwhE&NlA8E&%`&_0LOT_bnpnp`?cb3OaRT)I@tU9O5Hdl;&^WWC zrU=|q9(vzOz>cGrC}JltI~o}hN&xUb|Leb8edpVcyArUkj{`mZY zDgxvUhsrXZ>+IiU*YGx>Z(M{wR`p7*oO&1nM!$9fd>7%*vwrCcKqbhj%c#mSnBYu+ z#&W#xYk1QkJ%MK-&&{~j&Fp3Y!u)>+K}%K(bQfbrJjRo5Vl(b2^c`=nXb)^Vhg1(( z3wh_cDV+G^^81n(2b%R)nz{6&Z?u{Hkv1BA`nQvrAEA%%ukg{sNntpa$@h;xeZHzn zK*jZdAB8_S&t(DlF@j$T0DuzkY-YZQ==iZB!0faNe;At`q*}ZO^t{efN#!bN;dUw= zl>lq&l(fqW+De;`q8*i2*Mk1G$=-1hQvFn(xHpZ#YnSNEI{?5%K-8I!{YFRwP!cSd z5YzOgdo)C|$4oqo924NI#tieOgMlXOcJ=T7;qO~VKe4%d%xYV}`oAAFq&!^hH=$U`Tw$%lJnP*)^ z@x~u)U7XDOs(fiLCxr8!Z!&Dczuj2)R}^o%9Tn}0vvmCy)o!P=!uHTcLNbl6Q z{m?0ju=YzsM?Zl-lPV?ZZWt#zGishh~0JYbl)_?Z$LkT7T7-9wQ zdnFEff^l=Ks}FaX8&s8^nLQ&tESfV(d_)JF5CE#r{p12KUp$SR=Xl{2cqkEf@$!--eVqwkUde-=beQ6wJk_}X ze zT2f+fJoSba_R}%Y-v>CtX;K|?F6XTF-HXdM0}+P_lV;Mr8PfPVK2snpWZ>#AYNcTp ztSQG8^)x_trZ?~{%p+ZCkzb*o<>sdsDU+Eez&qVf#>)M&HVpq;tQc=;YV zOL2UU{8~N%QpXx@{=Q#7eX2Om_5a_ef4};xe|@(4=UPJgbtwU-`uou{?e))Ppl7*b zfL#g|d~U^|q$URoUf`(@NO10J3*Ua4v0Eg+bNZd)3Zgpu6z1m2C-7B zm@P^Q|D|hj*q0hpFZIoUjoJ_4kKtUc6Q$tD$2dRGUT{L%m%aY_NO6SgXk*cA@|pUf zCJN|$N_0rKMW50}&_&j@_pj)AU;GkY;xAYBT|>QHS`So0HGXswApj=k ze+z$T2rxglxBqQx{*kHtsG{6C001BWNklp|FBhSWB4DToxcC}oy#$msmN(*=S2(Qc#QASY@EaGw55NHGU&P6) z-ru&jcPi#Z{~`24@QV^$hb4_UOpC%r2;J8hJyytHJ>Jw?@uD(s`E#sT>h~v9IlXAfy zjC&MPOQkTAYhK^2y*b3jz$|_Q`k21}hlP)N-QU6=Jd^;wN_ZDAomy!mPvvPn9mPw3 z@G-Uu#(SuJu}<>mrY1DF4}I^DXZg=@HS{yjG>Lhlr2xVTd^I$7fwUpnl6YUYk3yGG z^X!rwSml#L?IID{;jc-f@JFI}@tP-PZ4OKbm2dEYipBH+tIcs{x@hhplt&Sy!r zw`s8jA>Q%ntSt?`r-l+S@A8tSOABv@^VD{S@ZVb)P~_QV_V=lIF3*D31Hz1#bjNL9 zPYqYi{#-K~=pgT33x49pv(G(~APuI^^QxIMn0P*_nijza>@i!5m>(gN`C;^{*@>wVYfBgSE)8~NaWx%+s2$(#)wZ?qn)6ZUp z6#&6+;qQ9H`lScCGdQt?-j!0K=9j4`dR;9T?GEK|o^kixQQBlLN;xP2KB0G1@Yth7|-QFf4rikYoVzx8|o zX8-R3Kh(_shyUBBtN%jQfZzHJdFAWlPy9Xm{ABeqcMCk%SrCBfh3hI*Py)`h#qd^O z(A>4Yn$7Bovm)y%?M;H6**{<$+`A42>xc`cAL@yJBfX5~f9Ja`Y-|5F43LEam`s>H z$K(*sCDK*{N1+5T`?pydc|ji2wfn2~q4PQf$LU?mqZvM}j+5GQ{Hk`b> zNlgMp0E<9$zYMBFy(W@-F|RG_0Z|L(F2xBoz=FRD|7Ho85Ad7Ha9L)kX0BD}8^@u| z{Z;5Yjctq8o*h@a7fXNzrM-;nAPPRFHew)}m^~=Z%WGi;VE-(@T9$=BN3C)k>j)oy zt;FOE@JBx>1!gjez|jq}umAeL`OfNx|HF4z&+==3rPNz5KmD6_{O=EcWTSD*GCD80 zAe*N5^DAm@Z>RS#g}(1C{JDqGZnuUpx5GV||5*mW3V>r3RsfsE!EROnSti8MYzaV= zSA`9{sswQVHc*8>`B1LBrcVfMj*L5YmcTECdr}l~wxV5F6U$0e3xJt!CPm*|?HKs}|E=YvB_%-b@ZqE8%!lpCbiVm%J0us|z~)?M4}6|} zEO!*VkNG92A?Tea>+1J&)ps>5ve4`CE`pGSA|R{)p-9GU#EyM<+w33uLHM`HpKH|0 zd)wdl{^cM3-Y8~oE~7U{Yl5l)Blxeb+w6`HS6GWhHe2hf$8d&My~-P3xL1I^`+e=+ zv8>^5zqAE
`X`MYNE7VKi#E_g9~Jw8jFSCxj?3r^1MD(SssWYZcHp<$;W5&}fX z0IIY6J$Zv#*c0EhzQ!adb2N5h)<5mvOILcDq`~EI9{q-YKu$>dRv*&Ws=#3$v3l|q zF;Y$9AL#+7UoB6`H9qixADfZ3+toLKP0t>HMA0~CuOAAdL3ZWe%Db0fkZ|}o}t{u&%+`D*1H#`uhZP`>P%Wc9l$-bwo^Y`coysQzu+yL&ODj#1{z8@?80}RmP?sr4 z8Ow1#Ij4{buw{8xLtBqN0OP*o$W(rOuE%372Yg2sfk(gAggYpoK9SSjf84B|_zVHX zef)cmR^R%t;r!sU7pp(}{!<+uH4(zax%R!Y|1{x?!KZ08oO8mye?#p5FMUls{ow;@ z+F>&1A`QTj}sXM>GaEc&E^$B)lDu!Y%e5C2%_yKmeHr2ub@EK&2ziCiMSf8IE; zyp40738kY^!#+zV*?Hm~;ieDQ2k@=ah*JnoQqSH*%i!!6dgcB$_|g`D(B>+q-tnY5 zF|X~(DP5reC|@U{}uD*+eE4>aK~r>p!}PDJJp zf`5d2QUEI4&zb$@>BN8|eNX_1+q~MW*7us<`1#XKC;(Ohe(U4;IRO^fe%9FjjZL-G zdTo4aUcKb2ce}TIEhz${;J?W%$I7jh05ffRk?Wc8%}Sx9SqUI2Os}fEm4Nubj_$1l zfWy`$_7{8h)yIly3#0-|ZBdfr5=M%30Yw1e9~OWC$?rq7twbUGmB&f|X$T%G1Kb~{ zz(-rL5g zuGjkm!*u+Y3GwOnl2{cq*K?j6?N9kW!@jn8eQxyCjzlXC6@L^a2=~r|Vqi4vswC9> zSgBTJf>6_ZZQ&p0XUY_KLV_O>*DM2Bpf?QYS#%fDW&4F}85#31VT>I$Qb?*2aFk1; zM-q+~saRfEu%JwfX&k4}_C(Y5AY`nM%YPhbh7y3_uk6nszpDA`_3Rs{@_^nd!pxjKJoAEY?98sJN(iLz*uB8`+MeZoTX0LH>Wd_!<~ZP2ngxw+;~3gFKhZY6lpCKl(oK^$LB=7{f9W(*vb+_gEG)G z4`%Od*^^$F8bA1kIF?s7EGq%TGwa3*fbg$o|2BV-DR@u-$aDJD;}z~%>qk1h?P)Wi ze)C(8RzLnh+aYkYZrcCmr%h$S0BBLP@AnZd zna6Ps+xoxnwnNs=u>{-%p#%&9@IY2c{6FjqLVgSX_BrsT*y3x{x6a-45c20UqV0e+jJEA)leN3-f`1Ax_)Vy_>!H%L~HP;JPD}eJKi5~wkl>qAT-T(d5)klwCu72<1 z2T`rhes~s30iV7~+q*0KOAhPopX(+B+jw(TD&5o>Xct04L=oVR{O-RHjB%9qw4~@V zL-_lKFzITX{o^x(H7jQS6@R$4vNuF`UgUUuToAB6D97*9rP*JtriCgP^ybM4)Ao!n%Cw~TCR-ah-Z;cJACFO-NZAF0d zFs{;S5zphtR)8IR$HL$Ep8flNk^+wT^5Lxtz}CJ(Q&zG+*61+Xp=VLw>JWt;&zb_@=;&0l% z{8vw(ufFx|Z>_%f$4}%xpqbcl6Z984)BQ&;&Q@zl=<6RJuRg#UpuhWaC_MeU&FVBA z3u8$lHGbZ=_mAkRIhT5*k~#;zsSf>7+rD;R1S;5L_ryn?9I5B_=62Ce(><;>?#z8T zXa?kx3fCdLHMn6Q&3rr6)h0Zj3jkeF*DDSB3x%xJhuJbJ4-<>h!vT=BTzDL(w8c^U zStqXrH_Y}s&iv~P2MpdJo}HOS=7KpEi%7FH9j?ywZHQP_QeRUi)+8}|nt5I%y=8G) zqdd~Pi&k@tUBA!lMWarPugw@69e4bnXBH28cs|{ZW=9AC(Jbe0?CooeANHV zhYj6R`{A@WeXnU!I8g{R4Vo#<8x7#IMw(H^c=X<3`iHf{f5c0Y;UH6Sq}^w{W%Xzu zw{k0N`y{^w(lF{`c&h@im}`i%@UPMKnw(8%LXfw&+0#^$Pf^|lJWH*Lz+Liz1D!!v zNv|!NTdC3TRFnx%G32=wVsMp0#4HV7FXe+URYPVM0NeT|CE#fFDi7DWr`bDu^eenj z+KJ3;C+VDbDu$silLnlGFmKO%e7_0aGvS|U7ETDvK9r$*guk_0($BK`=ki+WN&pGB zz|pVBvG4CUtB1d)J=)*QKV4tTsSV)|IDGyWPgfs&>zg;0I5E}<4R6}P+BYTY>JkQ$ zF-;NOrYHA%@6Xz=&;g7x1oC#?EII;a0s*ES-I&G+F(ulYf1FXYjLb+>1~f1HPy(DV zgs~1AX=h+HNiR)VV>!|;F*_!VKe zwh}Q!ztgP+|2q}(u9;0_DhGcNz&;~!v*X9+XOiIu{B=4bPP_xf4EjQGCxpi8VK|JN zE#aTfGtDoh(_e1`D3=Z(rQ<=jif#wLDtNFn$+T!;`K5(Iz$-hkpJ;ooY)=g;}_ zDL_B@5Vn@8<yxN2F3wjkCCCx}hI?E?lncNXyfb+?pIywi$r;rIyjHzY0MMwz z%T+@3;^&hVn_K#wEyB~UZZBmV|7ue>uFje-0E&R&sC+xXai9O-$6X2d__se?eP4f{ z{KaQZo`nc=z!re3{iBJFF0(2zW~%sCZw8 zMG0C{IaUH}Qe?&ry;LE9+1Im2$^fzo?MA;h34f4i&4p@`6foPFBE(IZv0x!M(Tj{q zz__paHsSAQ{r@&B0@cFbM?%MPN_lZ+{}%rBj1N%U|K=aIfIw6KA9rutTt{-{`4xc% zbRmckAhw{U$Z3hA9?7lfjR}p{qqV)`h}{UshP~kzw!f9%`vdrmUppLrig3idnYFx{ zSxX+TLOs%GM2SO+ElfjzK%sF3G|>M4PUgSrRNlH50Gr(_?ICfiDxWGV^W=HTlbKTh zbH5J1vv7?-;U%c-MKQ4FsnS(8LUw&YSeLN&2%%t77u;8YC+D`ue+kp7i)uC6kbu+g z;M!NZYW}GJgn%q>X8O&}et=h#Wk*`VEr|F^m`0syIc~shjX{nR_Ofi!oe0;ToAK)z zOTeBit86uFMQS*qD1TLGxLKch`I^$f~04l?RH zUDh`8^Z`Nuf4eg20~P|j^)6vdfy{#m2(MuXXn%SWQ-OKsvb;$U`To6wX590AHs$7T zjXC40ba)ED@mVRb5a2jpjbqTI9-kfAT#3(MT1Hqf{=`@i|6A{M)2^`Es4NQs<}B@8z2icwqjXifZc}nd?vZ095ARYXAKq zOAT>tbPgr0buswrs~4fM#;CW3S$K@Y!06vK|IE|(YG+Q z){J^&&JW zg8A`)Q zHJ-3?A%uuds=V?tYjqxrsS4v;%2fF=9^*Zw#j=oO6LE~o%d?S?8iyHaAY4fLh+QQs zf#xMaw1qcuub+*W0s})c)Q_tS<0A{qPNMpK9Jp>Dfwt^q+-RfXxvhO~C7evHz$yUI z7Qn1(yW6q5jrzF~c`P}kz;4Et%7z`ZVu5$$^yW%tz|3(YL_%w0125qPxxq=wbKg-0 zP|;(cX|;X(@aoIL{5S%xj~DlTCu`uhx(w?rcmtjw1bE5bC4H;GD(^_0I3&tEroPmm+-~yM39J2NmB0X!Ot=eHz__ zWsNZ@I8vFwmVA63iOcWG+IlS7#L5MK5sV#04WKXX?aKjG^!o4@&-GltN#U{jsjh^& zOnr?|#JZIONMe1T#OA0U;~C$F7%lqt5TMl-toRS0eM4BO&n5I@|EjvT1Fr$ixw6TU z_Jr81f}Z)WN~AalUoe4`E`)&e43l07tKx6amU)UHgn?lG0|J}4<~jsn6sB(qi7I}@ zjKMgK2A7I~(Z>=#M!5h}tBHWq-%DHPdb%LeYMwt!=1!llFn_}f5vK!96ZFhq5oZ3R znN?!s^!Met&$KWnr7eRE9RM^1KiAg1U#SQ9OvMxS=2!Q-C%<~OEP68BgE2=Ay^%wQ zdziloWoG_Eit%06!ZY)aR5S<#EEB+*9n)$dCnX@Z^cCSZK={lk9G0(Wh(%n=p{ws< z2iFP#Dgr#c4j@9=LWNd}lbG9srA_PF*vQjJ*OfOFk7?HC?Wy?Rr!XuX;GX*wS}}!- zMaZ1~G8jLn7qSZ{XK`34v_=_%xdikrkIjl;IJ^N@S7VIH;%Gbd5OI~kPBH&nL*omt zoBF20T&aL?b_o#<3m*7s+^e+MQ)Kyl{d6(oiaPcZJHkjFRXNu+_Xq|O2HYl@c3^?w zo!JF@Phs~f^M8Em7)_bxjP;c;|JT3FDW&D(5CQ;bzJYsceqK%D_(ssLOg{kL7lQlV z@sWp55pFF2xNabS5eCW!g9IT6B!X9k;>Z#w@3Ha34Iwk$oMl;fPSf9iOy=L0qnq9m zVCl80V}oXuQ)|!=Ux6$PsI0-IXeW!qLN?@O%66-Ex|&twzb6y^>kBP)+9lHMT~zHv_cUxD+~p5HL)O49q`|cNdbU&m8tiU2i1- zl*S*9`lV8R$JZJfaoP%d`(6*0o}so0_3Si6c`o0{@-n31jdjfh2^r zskEbviw~}AVd`}_RO!Y9cC@y?a(B|NB?6EIBFtVP6zFwW0c;82?PmTvA_#ZIlwth9 zkF;?hhASG%-{Xq&aEO+(xtvq8p=bZAHAuK@aq6GKdsj@|LZc;cr$;d z5~#}*PUNDp5D+Hz8p+yWgpM&$DE&zirUB3t>1YZk@^3w{ty5%gqByy2h4v~t$sO;oyi=QopQ0(;V*)> zyVt%ix6Qc(;mdHV@vvBLN4HC!39r?SB;4N=v%;50uZr{xP63txXrP&JRg6ode(e|; z*0q|4$jtPec%@ZfiBJF~%zQko01AWgAJZ&)=bSU81u*{>EDSjO@Zhk!_vHuO>u1) zZO8F<>Kx!l{rcO~(@JzF=5Gcx3kg(6+k0zPh7MCMbCy~^t0FueowL_!Dg(CmjpkGr zF}O-AuWLywrc787K)oRJnen?I*R^b7!M z|8;5fN16wGtU3QDO8CZUP&Xc|`R=4s-(m)(z6PWtlh%oh)iXGY} z9{9;^8`dS2W#(fu_5c7N07*naRI3*8n!^oqtlEI@3)3`$M{Q7VZWVP?a^4+v)F8Z4 z9b0c}ip;<=tt>mdb|+Uz)w^aLelF{!?i-(`cJKd?Bx}Lplvb^l#UYit7d&+vgD>^K zN3AEj-zE2<6ZHweUXW2;N}d4)FtT zQ4C&$0#=$ViVKIoxEp@leh4!?gBC6Ukv_g*T#s_j3MuNh_6$JJ>3xnSB_C(u`2x11 zzb*A2?}aZwp|-Vde^$SR6$YD?ztOL3Z{ANR$X94h8vZU@q-z@VRKnE+sy1R%bjF%44#YCDu|gGp7=c^d7bye72dxYcjN zPNwsE*`H$z5u!0mW$5UPB&2IKcjtYXs~IYJt&MZP%9p?h9qB5L5LRkT==G4_l~cFO zzgPxJ3fC14>LQts>3o}ma#`FL=5LZRj)mzTiNSKc4vw^(@45Ej55}Jo_sqW%dQ0Gz zxO4qew(ch~*}wCT-poNO?;q>*wjca(xpw~po$Pj~`Wc?QccKAa27trbwc;XIjv8G( zK5p8fwC;3CL$PN5F+W;~=#+We!p)Gg-suHFT#aN1h>4`e;MSn;=Q~pYXooTcg=a8? z2?7B`UqK7>Og_KcPKlAIGJlv#e5ap@gm~uX$k6;CuxBBli8k|RD#M@VJ<*fA*yLJ# zWEy}^`F#XCsgCL%4!Dcs7W2Qs{m3)RJ@={;*{&R7_qN8&|Jes;-DB;oVFAEp6%%E+a{=Ii*ZC|EHjpx8v=03o3Y8z*iS=6M~Y30q0wFUB>t! z(jF+*{LMW3PJ>8Ss{vPPpXYvf?{;N+Y*?`hp30N-#l`fx{x;v^x*mT@PMB5Vjvzo= zT(#fBL9>-Q@G*y1)NqWDSJrXUKTOTzq?Q$G~!OuG`;3Sm+BA zn9F_#%E2!J0pKhNZOh(rDu0S?TT+aGjNyW+A^chpbQv&8vjv!X?s>G2DRUqi!ZNWB zD?|tZyx;Ug>HU3v@2k4P{6muwerKiz-dihf-xbROt--XBzvIu#zG+nL7{8^{*OD_H zQvfIJZZRoiX8th!r*-?{XCJ7yg@e}t8Z%5Ygn%Y-tTa(rUar|BiAS$r$C3c_G;#?7 zg*LBrRE}XIn`Hq_`Oz^AaES#J=Azv=d^;2h~ErnJfgr-8vxOt;_t%TgJZ}&AKmX zlrsZP=7UB(PF0>V^LM-lU(A6e=D(=}h|awzy(WJ8-f{Opf55{x2J=178(+}2$MyAS z{~rhJh?gw@abn*R0^okX$vYRx(U1$K&mYhp^%)EgVo`UyE2$t9WgJ)=Z)k**t-MAb zsO;EISSf?}=ow9| zBLqy>u)L$340zSu#i>tlB8BYUXLT0J#71Yf0$j;Q%gmqa$;tFi1s+2v0&JVzS^?sP z6F;w#`BVIB3v>R>9Gv&=*Q~PW%y{RhEDW&ZDG;YYxYqlh<2XOOS}u2d)T|V^!<ElA3;*pyJ}PsmP3-IA~&tQ!B*WDbI`O$!r_pwFv zB(!0|bzME*7WwsqSqu1<&RPeq>fYtw{od1fK9Y9w-Y?5$K^LkU^Uxb_YFB{|i$mc2 zsfgGw=iPVy&6AS9>3_F(nVa^o#++T+Zp!073gV~fJA(2?L42>xn#2LQ|H||5POMXx zm)66@e5J|HwYPk1flFTfQD6El=JD0OEPE?4`W2%@!*YqFZG}Q(MB$-I`JwXAx2Ag5 zj-s>VgP|)z0DWoZPZ`t_lfQig=(pGxUbsh_*^Apu-gBD^ZPxUMiXDM`_B!$ zV2=;_EAXPu5i?gCf|~jozYmu3#xSmH(n*cO=W~tK=g*HcrDwrilogXan_CF7_dL%V z+IJ(5*`RHS#ua2V#Z!i+zZWcMYJZQ#py=vQgaFfyIrqF+MFxH0o-&1tKsYt)xqQF! zHo`HPcju` zOx^f{oIH=;MQKwdIAJOb^S`zKmib%zPsvx_nyt2pumGG^^WnCfhVTB zp90+OoT9i4Ue=r!TNF2in)yREN2JpPyGb995@gzXPbJGvkuV+qp#`2+FXpLy4s-we z`S7A@MEGOD_t5o(;$&}jY(+JB$u)!$S$@#+iyBuWe+pb|6;p;HZ&$4lJjfT>Dl1fPm;!qD)u z5MV)ptBJ*hOv@J+8)XVW`3HSnrop8Y~cDo<_NG7ZVr&`|+aLw9(N;0~IfoCR=8UNILp|$@q z7%Zy~MLv3TPiMiGbKsx9ue}DI9(AWx<7%e>$Yt%Hb=uba2|rUmWxxv1LKYmNubCpj z0+7H=l<5GNV+$7ISnk=#cx}>N`-gZL%-sFlUayO9)A!F<5;Q(s|319A$<_v2xJXhM zkv2HNHroJJ!n~mg!e1~S%)iMj-emiodR*n;I91V@0;myK0uFHM6TtWl{f>S$U_?t; zo|nwy&chW(xWEKcg5qwR0(5(h$Srzlfq__7n$QpQM+-3H5HQq5X3TAx-kOx~)AVN{ zZ4KxdKhFry*8Cyp&`sW(=-pH~76hi^99Dz?6$VVu{XC{hqF47je{m850LfFddBNPeA*p+ywz(c)hDJzQ+Fl3IZ8v(3ry&E)^mR z0_%P>k6(JWcjQaffpN*@sgQ}G7Qyc;(~lGt@urx6j(6EZNi`&wrJ#&=gSCKMW<13t z-j|oPzdDBU+WM|;ymNYb+|6cMH_Fzjnkzy^JeAbAuBCcx2U*tsuaB5N??@Z(bq}<* ze^X6*AfaL2m|1!TuO6hfJ|DYhVbxl+uVaGu?`?MnheZrIPNvB}{^mXTAZS)oqkg@L z;F@LAc|qG(2j5yHa2O`hNG%|Kmq~?B4!^S@-PzcK6-CdKzK)EM&M$ z8zIr|Y_#J|L|9XsP5uz$t&On;X93S;#{71rR$*mH_|!80aGYajMlo71#U!iWAHoFz zP-Qr=>PORH_P0jFII~7X{Sab`nY7f1?*WHPYw5n?XJ*uqvbJMpID{iGk=L+M*NDRi zaLAl%ds^yprEwd~MEgnru^n*qtJ0_hw|bndu6G6V2XE>CGoedeALS&}iRX4-fCzk* zKg~V>p;YAZEAm<}y<}&*+NNl&w0(Gy(C<*s^Z}f9=i$R=(AA$_cGtMMt)p zMgEFY;DGUpvVp+Mic3Wp(3|onQ~}1$yzzSQgf=vjb99z< zp7-IpSx=p5Cp+RHo$xC9<|=%8Xvea*#aw3}K!bvAD$S+(6b$DmZ2E7eRYAuUxo2$1 z_TgD~`CHXWXMkL?7r>er{+{+jQQ9-@;js6{{qB6U6ze$N&t5J7>CpB~3u)tk-j~Dy zHN3fiav9teIqWv~ZFwv6-gd6Zh4swe0V}Q{P^9>bTPgVEZgXK1?F{}5LcsN}Ktq7} z&#LDy*SXB|^XlNkbwite!1#evX#`iEwAXVH1R^SaieEqxJYfDiVz^JTL-D&$_$Pyq>7uEd=uy zgT>Ec8EmFapXiHit%^9)fX6c)2=Dk2wId9oQV1ha{eVs{G4oGBH@eO9|EtXY6qdhg zf%%gFhSgAuNJsbzFvCGhYd4`H8$`9z#}%bCQNQC>fS&m;(Z-vv=^r^az6BUGkQteo zKjE7abb`!eZWEhyZr%ZR%`%duv6e& zF?|?6fA9Xodn1H&TC{)9@sF6l6X*)_fBUQVx>?&(9$OP(ccVaEq2LUSG}~9RThPk5@7%hmO*PP05Kbqw0yL0Tjq7o z`(IoX0G#LB|Ivf)$3H!u6abuttIsFTVfo(7pX;SId$9mO8ruC_-^$fi7>KK}+?qu$ zFYm;N_74Hd^Sn82dtaOsOX=AZpBaMR-R50*rZ4m_ED5T^$hu*|uS_P6)NxJ60mDFG z5-gWw3)AZ$oBo})=&64CJ-jCElG@V@Q|->We!y${&5(x2T)n)wlmZGqc9um%ri$!2m%cFKOKX?;FS`nj!=MTRu*`JoZAs zhLi*g0Yq)@7D1pUTfCrQ_TMs&j^(ry^%p}5vG%`E-AcIK z&ct({Ny>qi^S(P@v_82k7F^EO$`s11PPO29?!6$Kj%gT#0Kgm6fD`y?ES;OLnGrZF zY!K9I|GE#&T77F^>*icubSrccrfbGq6BAeRE8vDixa{MRTFA`5mYFXZZ~J$VUS6siR6V$8t( zJb872K>(?1O=V=)V|-5y_9j5=7PrZO)qBmjJVmj_dSA`kY-_K0ZzMzZ`EQPN{G%pI zWG3R8p*ZLb=dG{H0>FOYe8ZkhOE7=RdMdM$H>Jrl(rhHOE{$wMZOtYy%$95Gp8gdq zMMP5F-@mIRDMgSVa#P!m0_WOz0AJSlHDdn+ku6P1bN)6t-Tx&Yk=nl`wmub;}mEi zpqw?~%<32SmEQB#AIYOO?bJ7uZv%^R=f4^T8D{E7U)}3|{A3`+5ZE|GMQs~qAbpct z&8-B}+m-2VPyOoC5$EzBI8u9H*#Lz+Z$~Ng83GUe$0kNNT;Yi2HSn8tw?_ypbL1J; zbS66?Y=gWd2~#?so^{ZRen}6BhS7tQOd0VU{x*6xz7y6nbKUn~fv~n4>3Sec<@OK+ zc}OwbiO?lV$|;4xe3T#i3w{VE`a@6}TDdPZZY%_F)g9%R#^L@+@Dnl(K+Dn!?@8ZZv;t$wWrVQp6XVIpli364{HI2w}KtZewfcB_PloHoO{~}B@Xm~?p3oC>18VAkO>Sus3 zFpN9WYNV>4!w;lw_)=8#6`#!*4FQ2wGr7&e%3Bf#Zn}P+4geoBI!T`NjyM5SL0DuCWX#!y zX#e)AJJjK79NWIRRo;K^bLBk;a_+KHa{9q>_jf;i(mnXHu|V&Tzrc~`?hq0+>3`xI z{Up3vtEVYC=##$QS^%IzC`BM+hP?NG6_#`Kt?nrr9BW>o`FXaPyj4+?iA_X_?48UK zQrl+%K>%WB2uH_2vJ!$20L;(IG7y%7z!X}>Us5Yv80#qjb_(>C!NebFu4z|)haa4F zCvp^Q0p`y}L74M``7?Nyz?6A^W2cA`=kf*I*P#{H!3%9xvLpWiV0~x1cZq!S!A=MO zQ~8VLu^7WtK%()B37Qb^4d6Win&|#x-#96~TS)kaSAM~3X_4f+J(Rv|X0lD0hqA?N2F zjnCTtl=rfkf19s;j(R4XZR4+db{$}HHbpZ* zmekEByKyxGf%#_$=AUSc{RMn_=c%l3fSG@vHzQvkxcVkL7MhZ5OKIR;qEMQ47~?C$ zBbd93<(&6K*)D{obk#qP ziHSC5Y6c;IQ(A#?TB~qg9)U3b_oWB{+n>GY4*ub^^VB5t#_&{1)4`!uDgC2m*`Dglq_sF$X2>4^#6LJl1i)gAOsIfcYC*X5$^i96uh~4%Pd6D}Xc(POzGS zW~Bj1=0AAc&E9#W-T(H(3P9LD{ZAis-T$RyeV+~APWZ=xYz4S!IcI9G*?kSvFYL!( zwgj|g8+e`fu_@V?u50up20g(R42lJTuhjXZeyhB-2Kp&$J zCdBKQznQM<#Wi=0nSThXS@>8X6o&GuazeOTL4^HI=1Dp8z=DWP(J+6k1GW$xqTNVv z-II`bQ}|tE{_Une7DA`K>9RKFhO8R{xtCxqrEo`xa-{xV5C9a;0ZLXHIEouUXl5$K zfx}^GHc^vtp)O3Z3m$N3o`8-YFqWU@}hCX8cyyph^-j~xC zEZV2nb3=7Hp>PYoCoYwVbT=_wmgQNBx%Leq~-3<1fs=Nt7O8 z{s;lfn14#z-{J^p&EMw<5NR`WpYVn^76K-d>w8#+2Amue!!Fk~5%zPI`ZWap&94?8 z0-OJHnM?w_3OJWJbQ#RW{EvTf&{^}}`^Gzc(w{sX4AW@;E%S%*@3DGA2)tcAcFBBN z2P>L?2G9aJkZ3`UUbr{&$BJMAi%iLQG4o$fg2zGuO9EO;fTyY!l4oL=?ibRf0EoAR z1UpID>Cl>gN*<0>q=WH$el*AD`@C~#4*y-ahw*#=4qtCtFXqq*;Ui z-&+9^A)Phax#^bQbI#Jh`bU`k2YBy&sdHWpbS9>EBp;Q^f6ujrH-AT3 z{(Dw6^uSH^e=u`CsnS8ev%RM34w`tIXxVea{GBYOAN??Kon-z_cTIhr?DyvSDKUTA z<7O5BNtl~pq8gg{Od|lq4M&eM_d7K2c%E%Mr{6l4z=)HAD`~A6JwvhOE=jw=XN<7d zAwi7~JLzA9110VVHUdX;+eSKV?wsb%ttYQx{>EXEF^_sREaBE(@<} zG&MC`ID^rEmZDTP;DNifHfZOpPmPwZ^<^HmCC2tmASLkVA!hrb48kz`Z)^5zrgN(= z?+oT~;`*AZ&Zi<27t(-%9nF7T{o<^fX+Hh&U;L=s{Xklt_PU9u@ z(!KjPf8D+PkM_IofB#8@@qPqFj%F^xm*(F=G1o)oGhfeUE%X5ng8;j=8L}7>>%!G% zQ7v#^1iP$uQ9DPzBL1*y1{V;U8aL%D0MJgHE$(|P4on--?r49ZFNhd3rqFsAA6fg4 zjP+;10#L(;7AgT|>^bkU`xxhnjOCK55A*!7i=74l4vyPe<$`&5TYoY4t#-^)0M=;O zF9cY#FGOXQ?)N&w8#HCW0A1-hEfwgJ$>@Y zO#lEO07*naRJ92s?Wiz4fXlTH`0kdGr`Pee=>IZ;Xlwiv^zka+?;q@S%NlkajZI0ue%p>X>1{B9kL^Z~qT(rge-DRRZ3yCSFhRp}ZZot5d^WrdjPgA~(# z^m%H>C@A5II7u$B*A1rS*duzn_;~t-Usf4fehT z&euB$)_`*n)4h7c=3_DZzxdv~`-)a37><7SwA=mJ0|_S&9W=U{0#^Kd&d%s!*(AtC*2bGw@(l`Vm?=l&20p`8)} z!bfFDcI{o%PviBbuqnwLoDAVecx)l{ruj(+;e!C)7OrLdO@X#VEfoZ)3k>EH1e_(8 z!I|*NLO@PqJVOWo@^li;zF3N|NcGNxRY0{6aHwo26=zGi0|T-!SHfYEDsQ4I`co~P zu(_J~wmT#8d=(6KVDe4Ycrh1?N{!oee?H*5Z?$P#xTR^A;yd2a{o9%QB)-mIpwQ=&% zhPfSs>8VVt0QR3~op?j|$OIzZU-D4qtpVC8+#3lsS^HOX*1lbS*8T~z|H0HWgc-h9 z4Y-VDSH3?hqFESNmgnDP_^kwhtnI~z@~vWUdC>8}W?Fn$i+a&MZD4AFt4fsCOr&ZY z+JCG9Xb>p)^@{R(0x&_O`qxej5aKdzU{8PyJdXCbrrzQL4B0#dVCHYFZqr*n0Kh;$ zzfu@l6@SWW;%erf-{pIl(4YP3gYHcU0EW2#OF85zW-UZ0_=X# zI{uK-bK!){Y7ZVgEgJ~^`0UU^S7sT&gXk; zLVn&&7>XdU`?)TJfH%LiD<{OG?wy@d|Kq=X7Fq7UT?8Nmfh+{r0$}Fv>y%dLI>i0~ zDwTG(guk9FMiv5G*L)4;p8|sU>)Gc2c{&9$B^%u`2X7(T?Kes=@vw~GP)_s>;|ePP zJ_yM)3a&59o2^uS<+joz2+SB)Dmx1SOapALkMY9!u-Ju})&aM;!u&JSiL9bGFIyh@ zrIYoQ3|z=1RvAiwrQBx*FfC0^&(WaLvr$ALdTt+BRHfs-(ZuFyA}XOy{n?QyJzR zd9O|#<=xj;Z3n1Ii!jCf`D}-asN3`3CZ{57Kw1hRLoprA!TTdW#H)MgY>>!%7ck(= z`1?xLxnMuDy)@u~jWbV%?HW(mxBv7}x2rk+LEkU)k^fj`{dW#a=mD8{K;weI+Q)ZOpb9+fB0S>@rFvl0kN5KZ>w-j$T}LZ>3`%0%*B-KhKO zXE;HzE`6(eqyv^t9&C5t`MO#GQH-V?>6Ne2zUoRaGX6E zoMv5kxKXuu(wS+l`5+;+J#(L#+Ewi6zxvs z@dpm`2Uvizz-`}=5R?%*6B92v%5OW)9LF}WL39bIL@D-_5T?Yw5*2q~LfiVzgWu{* z3nkqQN!$7+I09xVjq1+`fl=W3e)XDGp7Tw5rfqucKO;r)34Xb) z`Xu=#;UB@6m)m+oc$yO~=}M^|HALq%oh8t}k8i3E^wTyC0Wk>1=(f_{8Pq|j#<}yc z?p-wRO7F`XPR*~hnu0a(wf*gjGS~R??vePIl-YOPRPdZQJ|}4Z%jW!{MP@+U(?2kK z3mPu3z4rZABPioMcE{8nDBAj*Q(+k+wo>8aVH19gec?b)qg6(1$U{3AXurxZ32GHB zGecCX(9|0XVc?m|@--NLc}bi^m|u{5%+|tMAdxh^-$nT9T}}P$tHAcT?iH(mc;8YuIy@5pFZu3kTj1~i z&p+s1u$hkF=bB0Yo@?_T!}CLJg3}H-4X$H31Rk9gPx*EpodKDF4Q|j}00aOI+sI%q zX2Q&yFOnxThj(OcDd#g{?Wi~#EH$Lv(cJ&>HOqoll}Vf}WUaI1b@?3cvFc}Em#r)@ zVW)3S)r}Tdop0)z34U3ErOYsYh+Q3fH)8&^@X_vk9@|qd{up6qTemIZJk{qypSa63 zkKi~RlF_aLSoIF?T1gr#Q8=uHpjtB_qycvFtHH%d+Yh>WDj;v+p0&_c(}zjX#~~o4 za!f)O6d9#~zTFghLAeTnRvdY!ag4I2ECBHiGj-bAmC|h<{rTR4L*$+KDa^k_z>j*K zLis>?M+qpuH(~raeSBLjlQ#Ag3+)f>al7O^pXPl-j&JvBi2u1nBnA&)C%|C-OB#@L zZtPWpfHfu3w=n9kHWC8UFriVBN`N9v9W!M!{#(Nt)n@!y00L6`WMRNBnCozy4Ch*Al%XXckO&xmhV$z16k)0D7%VWhO$K`d z;h?9mtvW~DM91U7@p1S3$3;N;>;JE;R)G0qZHW2oCex4mJ>PsoxJ}zz7Iiw=Z^!SX;orMIhl~O82AKaXpf~k5J4l&;-n6Ke(P=MeX%}O%*V8ZI z0-ENvu#x~R=C+WV9RaiUf292<5DdBMe7Ru!xs=UhCAENUK_I8&zOGM+;PB$F<2mjJWdI><;H2Q6I}Xqujpnx z5^h)MfrqRSX@gz?$Va| zy8}(&jMy&krdOE%pZ)QJnA2|a!0^AV!0$>B_}U-th34-xFn{1cmVgidbU*u&w!{5p z(cn=qsgn`Nwb&zirN(-CHzOFbSY0j2CyInHIxpHQ}@ zz7jD&NVl*@IA;4%dyux$NUumD9YC$JfD9gi_Z|b0NI$J6@9Rh40V4wckB@pba^i^Xu7{Cj1Cg=0E>uZ^d5Hl>PiyFSMoPX$(l7*TvNC z|3;dFrUkYrXSUTn{^3(?J$c$4Xd2<2w~LnV1#?fe3=lZcE>@49zUbc5&Q;H~g(d4; z&*X*9Zf*gMY1E1?J{w@NB+TR{p#F6jI(x+Nym(f`Mr7%i=|k z4S_reIQQfO@V*QYugeGE>3qF=sI55<)E2=1`oFvzR~>^G*B$v>99MeJ7jCN%=HJiN z?*OzMhIN&kGwpE4z@=-$1S`CW{Q{JSy2L>$x^8J3VM^N2=%#*H6@U|&fcLldy64&- z+yrZ;&gFE$041Zz=R)XkjMTfklZpClbC5h&*%?@F%DQhNq<`a3F4?pP0t$>KJ;FFVO%_OJXi2iSWBh6bgq~@X;`+m3dK;7o%4TH{A@GfhQ~ip7QnPm-_4QTD zsuM1=Pk{P5tR&zU{i08bd1~Fxdygs67j+;z{jobAQ(z~TWh`>w%!w)%bHly2goNF+ zAACRVT%o`|Ka@7~6IV>=8SwF8Tn$qOgM(q8PVorJY*2)c2sn)20nl0!FT-bsT_Vd= zN2hT!gLA4)3m?!v8_HWof!d?D<~gL)dBEEeZfleK&)2YMR2tI@y^IUm8vs|irq2$X z?CC#a2S>pAUeYGWCn-cfRQes`kTPo%!~8RtM&z(y^h#G+uEwZ-{g*4^QcT6u#6_6L zs{`8MR3*1}2mC017)AQK^NT;m{fM8gD#ruTX{IE;-Uq;m@-;PP4!-Ul+!{f~`E=i= zvjxF~v)A;S1~l^@B;-`+=*8s$N!(JoqnFLA(y2yd(%Reik@nMnROkG6?vCe)3wtRg zmv!DFbn+|X`uP2mZttx(Mqz&V^MCa?ZXbSrtZ|}w!1#gZ5&{^!J@b#y@?%B>T0(?O z*t`xG#^5w5+qJjt*SPIye+US~igGPQ!+@vYQ1kx?0KiiTHP7na+&S$xKEKNhBmpq@;&MIBsm?b$~XeXS?aYAwD{iC zJ5{j4T1G`O2ynIlz!X|9^(DnE4fX~sP5`kzZ>AL-$F-1SF|!*qG>pX(Ro7t0|v@J|o0K7Y4SQ=`P z2m-j{ASfa9kI}ryGAuwkiYr#95CZt-F!k4KPL%J} z-Zx=}nfd4JtL{zLLf}ma8J8gtCmu32RviZY0ESj8&p6j_i0;y^n>sbE2mpm!loX%d z?~Mfjs?;LEWHpVCQ+$-T)OeHmuL}g9DPyYqiM&1IuW?zcFH$H4N`O>EY--_7qqEaJ zX+Q|VY>sOMfk-nk;0TBL_X5CI2d2NnseBbqmK+*^_W%4JPNcP;#EErIpRarOwgtwfn-%W$5{Yo zmBMB9bS{20xwT7b+S~#id&e&W&NaZ)>$YMagrnLpyY-uc`KJO9;HH>AOxKz>$su=! z5u>Pq)(ClQl@I5OD~uok8Y5 z30C#ov?ihW?YE~9uh7b&83G*Kqdwoe?;#e+sS%YRdbPqy+hDo2Zl>mvbN3I=n2FpRowl0%c ztKDSgPbzEwB}doYy<1iQAOP6>Ph8OmN-CIthDY~{;P6-ufRDcUAfgZg9@j+s^6s|~ zkn@@GJIsvV&vh&Y^QW!6EROiXq)SQ3$B^;au35O z?XK??ft&)rYbtIk%*>zbyUZ0NfQebiNx?nC&tV7!Fn??Q#Ld%IpQXOVgpKx(6~JEZ z76Q=zVg9xPu&nDQ5FW#7F9QtTedDlvwZN9cu!611lhb1U-%`VH6tdTy6Hi-N0LbZA z-A`En%=|OsrwlU+YwCV>`KCR7&NPUy?9Yes9$*B*1Q7xl(Jfq5rivio_qIYn(Z{Co z(dEHhs?zJAxbBOIw!l980LKI8bLQCw8pvZk=FO@Qz;^)F>f@pQAOyIE#n$L2^;^w% zUWEvRfT=Qac~}9gy%UatliM3VnDy7nI}jEOu{@W3uUA13g`s{h|F8srCHM9J3v`rU*Ff35?@={SO09r=uzfdzVpYJINu9sSNmA?UR>MeO?y`_Vc-qrmN^}(ds5T4*Cu=5$V zLoM^55V!TULBoyjsCXG0`RLtoP(^(=CcBY10Yd5aT}*cddVo zUATa+F^-fjves2AXnnNxx=fOc^$qQZa3X0*r$hALL_WTW^W}GCX*gner@oW#w=jRD z{4k#)c8kH*{*N;hl$ZR5=tl^CK$&-5nDeJH4WNbDX^j&(M^Nbj=IKq{`)muRS*!R8 zGb@6C-w$3XRiY;d0lh+?4?(csXjb{S+_);<@Ci=H(LcpFH~7-3-wxky-L&f;s50CB+h%WNVgY5F9ocL0V1r^Jtz9` z9pNM}Q$@hbC{;9|-I)^w2<6B1C1otJt@t>nebol*iGv0T5TcN4@1e=@U)Y zgBX|7Gu=x4St3-f0X~H<&!%=5XVkv-b9cpAE*_OC)e`Xp^QU;|Q&w!v=>0hs5L~}f z19DEoRb?<(#iHr;e(vp~R@#%Z8>#@M_wx<4n`+Nam;EY26S@z@4MV>+z&&dbe0>+Oy5_V=jkw8Xh9S^wfQ|BC_KBf z9T!*S52%E!J}q3lS|HKmg){`b_3-tD@UveYbz5KB>-PTSQTLty;Ys)S$w~L<&7$GM z{DEiBi^=}c7mBqY7xL^!C5?pu;(qvp=iR%1`<|GE=J>1GpYU^203I4(IhflG=0626 z0rv^_9#4H*+R5XM_RbwfRBcZar9NMC18x-!q(qqD@C3s@4{c*nZ0yyz<1?sKS+h;l@BofDL9#z`Ve=d`{U~U&9iqN{rSiRmuBuH8jbK{tk-+R#r~^j{&yUF~-SDd2?!mAm!+bZF8NIq}<@^ef@b zN$hY&m~qSTpieftI(#ZD;*x@J&b`NP&6sy`j3D7C!jHk)U@yp9f~g7YBVf&RXeF0W zuEG3MP%!`c4CD9cB7gSW&%!Lp5d_QxO=B!f6YqKyVTBO&znNco?0*sFUEiQ}`gYgj zL>l~#R{`_A*jr+%1oBzCe?>~HfJFEa-+bPzApZsdxz4e8G*&qab_y72Tj{fWl zGQ@9NyX4>i2yn8Z;e{AJe*jy(8W03LXX>zg1$TSx-x0j8Vf>Eb z`ZCOaNA=#3Q`g;zU4HWLaKE1j$96--@t0o2mv|YCwae80KkhB0>D@?A?OKV zQ!6xlGx;WJ@v+d7^cD~%*>zr%={VHE#$3qi8En$I*czFawkSO1IP?54JK>K zq%rbZOZAmFn3t7quK)f2_?_-+5AStv{oy^LwSK>>>wo^gYnQ(N;!niB`q^G z^Y;cqVQr|D2fx@0z83;&IC~82)#aUL{L3r>)FEsCJWmM$RB@`!dhMT##!K#30M3~$ zSbk~4c|Ms^$C`vst9)bMMsFsQ85%+W;CXzk05-VTw9FVcBZ&jt~v@X|yT{<;${^idhZ5liCIes+7R0C}V z@KN9h4yynrGfV>v1F@fe)wg2iW;%BZL9Pk`xy-X_VY8gEULgj8#zPHAJpfiFYyX5^R3RYlRd0M#yi#SWj-esK^|>>-cqO&#BktH$C)3s{sICncuS9LwnA( zH|b>}_-GW?BEv&Fat}Y=!ybf02*9fsAAtgD0U<%b0Ck(``3%z3w#4;*7fKr^kyR={946h%=x^m?zFL2m5>hM> z;9-pLaE4?d_~HBW=+h(l0=$q$K93pvy>3mNbm>!gn+1T#cyzF zOOe*vKe7woBZA%6~Nnf(=F9DsMifxJ1;g~l6izCeOdR|bCaOh2oF8jlfs5 zMbmtOfAzHc+8^w6fA{x= zu^;Ggo1XdC%vocNolHf5?KO-AoIeB1KQ@#}LV)9Zwbt)vuKkg|m0&v#hqVmsYBtvk zx5R7_1lULj(-ztjh|J~|4DP&RUY4jS%hN~PTOi;*!%eJ78#2|?&V~z_Fzf0^2Wh^& zZnHX{(yiFFZ(UpW$_Yx>osc3oVvfEqKsQ?wB4^dPF%QWth>pG&20#B0VRB6j{Y;F1 zOJ^k%6}gB%rL?nLSq0%_cVn;<7@MM`KI)nOL_t_@VuVeMXXr6>=cZtvkc>MSFI|oa zYnVA9a)pisj*tf8m+86lwbzv`lg6j>L70QbIG|qriO?4W0b4^@v62Dd5~sms+JCHW z5%VbuQr;(^)YSCrR9ulIo-lvF&WgU~cXA&zvbK@q`opjk9&_0yl1`wj6_^y%-;&(z zM|%TVcI27mn}DZq>dM+)f$`K|ND?J!|Ld8)KHz0;_-0iUCTPD03-WHusbc+Ij-%fZ z9KbUR0mLoq$B0Yg!3^DupJ(H&-@$byPoz9}PAWI@D$Moc*>&Vy?ia#61r~w;0iPly zwmJP)q!BtKB)po056F!)MXXoN_l!HL6ly7*r(v+FQ)>;qmx|}#H>%3t5)+ue*O!I` zKwjQ0U~&P*K{I#ldW6H5!VrKmJ`C&getgi>Zp$bFpgx)@rFQhqH6NP~m< zADy0dd)wRcULVTJcfBU9!MWH2(rBs{NgmJVJ3shDT|+of`E5MyVh6noX?Ph9lXKlY z)i3r~ugrf>jCoB~gKcU5+o(H&lV25*QkZ{n(DUI%EQteP{0_BVO`e;>Hy27JMYvkZ>r=SBNp zmO$ZHi#%_X+%(S@vixjs$otBPx!%dLMD@RBHaUMB<*ar?+sATurcdzB+7{j^03jfo(g|Bn z^eL1t<0p|zz;)=OX)?N*Yo+gI{(TzVKu@8eVb#DAm%!NxGLz*SsT0f^Z8`dpgxA27 z9Bw>X$@p`*E%PUiFzTUp2C|^yHep;$OdeZ( z%=D=%h-9RldS5%35CYKnrvN6mEypZ~UtWt#T5JDP`5e|Ve~0&)ehrYZEbi2E|k<&KYs)ylJLJ43Yfa_6W{={YGe{ihzE|NCys`E}NLpJj#Er9ml0?hv`5xzVH zkkeuX&>}hEr#4uTFvS(-58O!mkEyjZ>O%-nX2wiAt~^aZ;ZwkXn<7$8+A#Y!VeO;G zAmPCTbTxyCDU+1JjNd^{=Vz|VtU#)9#ZHYawH+3pW#$8{8JUoqDfm6ipCb;V`Fnbb zxb=^;&x7cSg#dgLnCe<41h_n|SOdg*Lt%0F)CNyT^Y`g!C>pM zse#P446ztd89>y*&SzzF9nHoCGf-J|-g^DDg8E*+-Y-N>pXYZKhK#v-OgvK3{uZs2 zIYWsX8el?n5gZUZSd{J|E-@%X@-?h0LNmY_CBvYK2mN?IXrD{saIW{ZX5GEd>QC2W z&CMO1o_D8bMUTF`GqjH-OV7iRm+yxx_2njso%y?s_3c=rd+83;oH`|M;_)k{ij$<* z1XJFed2E^VkLsNM!@I?Kahq+lfKjZgJvJnyKzujZV5eg6shF(^vY9@4J)j{hJ2E3($hYEHe^Ptkx&5clK60)aO0>r0`npz?PVdiSQcs%$$TH8A{}1WW`|(?8D?=y9q@f(zk(pp z8q9@pj%!rBV9MM&%s+5WT`}W~2Ng4`#{n}<23WzNY+$>_$Af;>m@cbrK^U66g$14& zKf!2y70#U}KML8V^v$Jgjb8a7l-=zYl!n?)=q>D5u~V{ioE5OE=V7-H-l|VgonXrR zGeFBi#3nBYrhN9%V*WbLVL?+@eLRLQ*UGy77|ZmL&fq|hiz!10X8M+bOQpRT>mfMM z@3dX5zv-zD#mbBxdT5%6woM#zJ?+`&OJ`3YIeho+r&v_@W#+?-?wABz(Gk=%oW2AYWxAjpNmIW&hqzO|iH!lG*9NPp~ z$EF~5+N*7eBGa}jd2C(r)#bP;dO@^Cn8BHjqKU^}Dx7JFeZB9IQ2L>+X8tFsUBUK@ z@n)F)``vahe!jEzFQPbqaoAH$oL=1v;6$|oeY=7H+_m7~_j0BD77+9-9Gh8_#`G|! z59VGOyTfxooB2ELx~rML-`}UNR^k4+xyfxxJ=^xk@m@L86!FR*tNt`yE}an)shCSP z&A|LJfzHg(%-SWwm@-UtF!3;Wgmb)R?K#VpA=S>IVNT8G!kh7jneZ0OKP0P)7_BDb zIu|WM$fj>LqOpeDrcDN>#@qs!A*^ej&ki-1*3A6Lz`Z4Gm_OUG-t)SuTHV>{--(cBRNVE({vodRG@ zI{<+S&A(b?Y$7C%HnbDjStXW)oB0P$)wVQFU7|^WM0Idop{?rA0)UzS=?8M2Oo9OA zGUsp2-x~jmbnGhk>~5IBjQ`=?627ka|2OJd()TpU%hD;db~|F=02wrsp{wuLiXb6G52W z+p(UlRIR}0ZM9t-?aG`#0Peou-~{;x@wud1`5TC(6jdN7_6F#7!NY1?>8%zF-M0Ro z!fW5tDmOWv^8KzH?t5r+%=?2Md?PrUaNX(hl|1>K+?&SdbW`^W%zrA;ON7C1vqgv^ z!V$Fbfq03cC$lUS0BB4aaYGgI{CuoK6(xZAnLxW#oBG|L2m(Oc2}Ati0E#^Frq00p zTnpAN5dti|Tax#2z-^wXXHNkThXuf!pYbjH@tqK77?*)*i@di0gb_k(A;3h#SDgCt zoa1KQV8`V_I^!7D2@}Mj7~1+oI0LGc9)}thA>cyGqp$`*`dZ+~PXqgS1781rtb8Y8 zu$~5RQai!nBXBBaf1xdtH!AaYS;q>Wy|x`ffWx@vIo@3f5=Z-diaR;Sd%dOD%Qx#sBrwErwz0*P$y%Nm}MVifkTcm1z;&S^z3~jB?O>763*OJcwQdP&b2-$j`opB_O49I9Jx8 zgXlyr`No`l*?ngC?8Bce0yz(K#EQht=KrUK0Q_QNnQSh+xp#ALZ5eiU0*-9Ld0Y4B zi!HHQz(PPw+eAqDVS)#tffM>-&R%&AvJjQha_cFy9E_#XXCq81Y(hPA_*l9ojtg^! zNiXTmT>R2|c!l}H(nJ#xA=s)hEd=Bw&`G1uva(wNCFh^I|G3PbdbE5ozvt5w0v6e8 zk~GSk7`qoy;o7w^Al;-Q*16`o$0-l66ytUHc&rv+*CXH8pjDSdfkGPoZOI#&X6PQG z6{)yW%~fIoGqe_n+}U%@Kh3L@hzBrhpzmu#7uGie2mouElgYFUiewLX(io{Im-)Zh ztgP$b7V|k}{khhCD~6;2ml|9+$1%vl<5oR@Q`x+Fvmc8=j7)f{!?DhmXN__|ZF=4t z@2uY%O^{5hSOO3{hMrPxF>lYkT7W>~$J-r8Kjzl&R|^Dfa8RATf~vyv~*LkrKsv zAq=Juu!#t3mwg{M`thFo|H=LP5%lLjd+eyVM*UOB+pm}YdaLdn$e}%doQ_atS=UoB z{%4X7J!wE4^xk>GwT`~>be8KzVS;$8z6 zv|werP@9B;1U-SOR=UEd*^#0GzR(O&Kh>!SxdWY2RKPjQJS*swi0*D}=hy2L)>$ji ztBnrTV29O2d#Zb^9cTK}E*PR|V+y^6BWVRJBD7YXZm?y|eYGGUpyI1e^Q!7oLfNk8M!YWY5ZYY|yKD0*EPE9}`hT;%)ED6Hb;m+W*5${!hMSm;L zWqccgfYPh|DGNrMTRG}0;mDeP>@--4Fa4u?O#Ei@2tY%N)r9$yd71Fw_c`Uv7+K? z)xf#>K@@_v?hdsXs}~&7TkQ0ef`;3s{nj$|A(iSBgh{=EmSc^KsMeZB*iE55G{pH@ zE1nq>XYp)d%d4uEPkV#$Z_9a)>%ox@_Ysra&>SmU)^auTr~L2L5=RZfvFSG9G*KM$r&?$`I3x!Drm5@8vRA9Khh&Rz3N9w7VNZ#Aziiks$qG ziMhNw3qdCZD~~ooNzP8OhrJS*sANqy@}+M^An;}}IGh?R<@1aM0ze4J;Ax2*w*T2= zepiHgpu1Oh?R#As{sWt;awgsX@!jq2uU}~Q#mfA-8W0Sb2FjL;6FL0>Z+!{ozZ1;g z>3iny0A26xY<7nyLzyWmZb$R~vGzZcF(pZavCYdf!=|F`OWbG2VVWJ$&--au2Lvg)jfqOyQa-RDSLb-%w2SZU_kCiBB z;>RljBC0YICzD7a5-+?DwllB>h6wfEk`<|i6A8x%0jt1$z;xW{Z-a#fj%~KWUsH&g zKUd(awhYW4*xQhjqura%>XO4V(UYwtq`~}6t4Z%K;$SGiR*`t%N5N+@yV=jB4{vUu z#TEdjXbvbS_vG#u|Qy%wxqqPQ**1#6K{ACH* z9>6gF4BoFkhj9;+rc7_bk>mS1ibz`kfce|xJ;nUVZ+`<{qf84Bx~_{DAreh9SFs$kadX>iU*|~+R^E`j{G%pgzm{kuIPH*+iV#^fbg=N25hnys{k}Wb@g<{ zNU#}5L7$a(Ey$ZmKqMi=8qv@MyY+ZqB?PQu{&7^ZEHew!j*SpN9a>^Vu?n_k-r;JOeQr$b5+$iUemTN0WP0x}F1-XaLmj|fB{kgcTl>NhX&8urJd;@ZFz2E0zE;e#2ej>a>c(@->9IgwHu{)qNp~ ziJBtIjbIurX1=zP?lWEaKBY6$`kAPp_-dPe)$?oZy1}8jOE!PF znYyN~d!QnI>?J^%D=o2*aPy9O|070_K^%A$j>d_mT{O?~l{h@%;@!>P9~*}A`}AFPa(f@`MePBc)pp3e8O~cigCSCZ2L;1TpwQen zGMAmxzAnqb{5AFMae3bn@4q28EncDFn{fCcXE2D z6^$zQ!xOa+_%_rxc0JQKg-IN2yk@viP0Z2;1SkvX2mx^}gy(%Lvvpcusl!>tGb}I+ zvzV(+V~u`~J}u4XtkS|sJwV0}LO;@W#1!*U#sAO(^&EnP`e69-QvSuI{7P&UlI0)^ z{IPws8}lj{AAcwzP`JwhTKF(9p1>D&+hpW&*w(hcj{>VN2)75?xazcST*dRV zlM`8x%6OkQc;HhzwJ=x0zQ#he2wjEXugq$ffXF90Cmg{1k3c~mvBHY|5H2;1H^a=S zcHM$&>#KZHW{m6F-fn}SRig1Yx*`;u`90-r`jt>1LF z08R@G^L<~&iW@X;fHGBA<3R~jnX1q5E^1TLlSTFMRFW-_7x)xt>cFY)d^B$89$%F| z`r9wc*O3()-PCK4HDdx_cWJ&z{3C9`oZQJ<}ftk4+g(gEmQD`VmA#srIz((q4C$ z7kyVZ<#D{{)F*pfsSkb z-cJr9!$1Az!?^zZ@TA*%up0tEDd~2<=sH;dT9uoWhRhHgw(N@5>ptqQV;a(D1wRqy z5G;(VedG;qoIfWI!9oG}9@t5>C7h%;lk-wi!XS}`LdFZ;!XAK_dJ3XC?o+4~PE=293~vf4ux!o2yBT0f$S1E0RHCUl!1xRHd>$SY?sm6AoB z2ZO8`mR!vIu|O7YMS|m%(vNLuFqa!V@`h zvbbJK;6Z3Gz(0yJvO^ZHq;?zo>QqBX4!QXiAst#3La4Qinw=wp<3vN%7n#f}EpA@= z%~M`00Jta%0&24b7@H!DZ41d>I>6dLS0pkt=xT);l?n4VSP1C7=W7H+)y#ii%-@>6 z^Kpe2nSt@l(l?+idmDE<1R}#c4_+cv-ypK7z+n0c=jvcft>HG4hMDN^SN4&P4WRMV0=Cv`emt}ra8YpHf5Be)H!*E<`gaCh! zohv=Sd5sA#_W>kEAW;3w62CE)nfW{UW-_B%+eHWn3xF&eSO%QNjNN&0%7pp%>;KUT z1pQLDad$=><1^E^Z%FgMCxPe3@&tYJi^b&sTt_wk$y@u~*S@?HdHi#frWXji|HkVP z_5AM-on+x!$kaqdnv})72&)^nSCj18M_Z?+62k0Z+Aw_Ilg>EoJeciaIO~^Md4ixO z`~es5SkQCAiEA)^hdaHmV#Y1NpnHZ_33_4vLrMsJ76OKt;Vy&#eOCrEf5PJI4aINV zLI@xq%Xc%d?K4&Ygn)aJ5Mch_|K&mV{Daf7(jg_*zMJVuc)37Mg^brgPdjSf5CX`f z=hKA9(tY)jrLeF9)N*0|76f2Ec^b1O>6bd%dTDy#cyF|W^$?npp=JIY7km@g5cBWp z;0-c>I;>EFnPx!yhktOrzBO~siTi3HnTWYnklPDV*w)ttm8F(`;v3}A)@b}g?9J{H z%e+~JF|)r}o{yUf)4iQpVE!N->#(`E6CMoTOn=$?7zj4~lsT@U``I2A?az$M*NuAI zFlE9NZ4&1BL<}|Wn@?D~ju)mJnz^Lc%mk;HKVcrccC_3W#%L5D-u*bpS!0jT@&n_$ z4lw0AR*%L4l1I?c^BK1sWlI2im`U3%hT9 zu`CvdqvVnK-8p_ItIfbC*MD=P$ z?_gU2{OoHh01%#q0H<4arOs+NLPN?Onoc-|j zuGqWM{BMsRJ9y=l-7C+vEOOBPg+nU8XXwh!n(<{|TH<)}or>v)`QL%MVnxdWK#Gc6 zRxcU6%F8|h_`?`lAt30U22X1Nuvxto1Sls9156EMzyh!?dK_A_1jI~FbGn<{n-8pG zRS>MQ1h|C|D(EIg z&~4JD23P4cy>n^9ajIP1sOM5wJe9MTwGU>xk~#fS1zlDFiT8%zg`|BmaV#J4O=+-} zpwc-pKV91*xU3SdsmysL!kk0S#!fc#B5d)G@93uj6t)Hqqz$AH0yeP4stw|sqZay6 z+ij`efyvhX$G<>#$UITYa#`wiQ zU?dcbA|X%%Ft)-$sRl9oR%%~_0D|)ps}Q(7P&F@36SiRA5%3(aKwv9?TtC&0#5s3q z&q%DF$fx%3l!8Z+g;DBji`1o@IoIVAFy7#*5$fEm^^N{M#x#r-hJ3DZb2P_yfbmi4 z#hmZEnqyp7qgaT!==-SD_O9?fPpzz}E}8k0Dl>ncqyM?7;JIZUahh{=-9p+#TX^WU z675qDa&+;P1Z$>WAQicb@qy~wM+D|dbv#o$h2>P=$|@2RvCPbQtG_$yp&$1OjF-2& zUc^r+LxiIkU_0>pgZVRlgP!<0#@FG?6h8qWv??524d5`QfRghPpS28?9uq{0J9Rud zN#FlYN8>?=0oSuUE&PtB0f;7_ODw&xR((#~p6(lbIm#Xv^<6IgmKK3q3jlu4r*UPD z8L+uOc3%^-10bpy*wAFoAI!_GloRM4Ms`}uJkvdYTTO?OC9h5}^KXjkAK4_wU~hR7 zZHL=|hG&0^LzVPbEm8uIqNq&Lo8)%I~2lzA?vxXtPa2Xo9$awZ@) zrIRn$vDHjHC4dv#1sbjD23Q*J2P;H(BD{nR-x!IO{2&N0P=oQ;_hbu8SOSE>EWNrZ z#NG=jF$6X{See{Y!(nYe*ZoT|Zs3Q9+7`Kb`p>mDfC zU&uli0zlO;v0OpK-8SSwxXmX19T-L`Y-^&v2*X*(n%a>v6%nM6E_1oD8)E;IQ%>I- zpNP%<7(zhws|4cetAoYN*0br-N~kGj)C++?H(_leTK7dsSS%sNM5Qal_IaY6{Dq78 zra}-}M(>?Uq%aGbOQNTPU!p!Ph;IzbiTD%>GI<1poG3X@? zdQQiA`4*S!uzaQCAr4ssARgkJzco7@hQ=lamZfjTvR?H_Bz=_pXGBATq-0BUut`2?z^_hznOU zu6Q49Dm)l%z9Kxx`>W$EZHFngfrV(~K1J)tSm5J*sU3rAiuphPZ9$fq)^5Z6Gr;@} zr+@pyZvVgjZ{zXs>2nA7*ZU93G(uPb`p|OIGX7rkZ_?gR-IRdZ4j9gBU_yfW!uj0L~&XvdhAYtb=Uw5BOh*SJ^l~ z5@eNNmX3h{f)^7x!c5dq(w;_3Z57n28n&pS$RV2|n{2Z3{XFMX%g!^aaa(3y@a%HJXQla%@E`3mI-iL82QVp9mGWoK+UL? zYq%kKT)HOh{3u3?{f&!?v#e@!<+j0nMjryaFIR>RCIH}W766S75KOinvrvJ*HG@0@ zk&1D|gTBiI9l{(?zkQ5LN)U0um7&pT$4*UtmD87TRiqkrQzjs^Rku6nI8KlJhIErvC;~s4CuSmrvP@8%`mGpF?I%B{S3T<8Ax z^Ne)Y5I+RGz(j?&6Ug4T{`p$Ww>Ob`*j9-!ZuZTE5i^-5{8GzTWSyO1kpEYYJ z7tJ=ng(ke+clkx#_s_aNlYvQgnf6J8!T^Z>sxTU-Z%#v3i%&G;zXRR7GQ49n)4lwDFDltmuzyx3@b0Mqf01XCe&Kf(% z`?4<>sb`@QKC99&R!r!M*Kn=Mb&XggGAH5#ORY(1XT1 z^V&e2saIK*D|NS2ZN|g(@R$lMK(iIh`AxaGMWViSUOR5DakD=Rt%!CYS{Ui{eSxH% zP%d>kVaZN$xHS{djL;}8e!OEZ1Y(bRXgnA8GinlftG9*RnFpn&(xVBdsHbHsFzQn> z7GTAM#tH*OaNh*Vi+KDAt%Li~zIDE03qZy8*%lkjzh+7ZR2tI~W|qa6gF9laU+z-1 z_3;wit>}ZYL>HR6Xg|$Y%GEPp!&jc`yI_6-zd&ukN6c3NGuGp`#8!%0U&4dAT3FHe zD1#{)j#!7ecP?}d?9saR`FbGt!3-_CD+*GQBDTB zw9R_ryqv4vXR}l5^r6dx|sosN}bG2o11TRn<=q zOC8s$w0u+#yuo$?0&8ITz{EfN7?ltagP-f59fc{5&x>Hf!5g(&^Zn+;*j!taG1mO;cC?%kFY!;sm{IS4zg`85 zpRN@Qhd-NlSGq$<$H3lih9i)-MC5_vz5OvFkl$kw{|DcDC)|iM@rS!3e4AmYaNWi= zZV>(^-IOZPhjqd9vb57Pb?&R0hb_06Pb*d3i^^zY}(wM^avIxU}N|FRQ2f|h+O?O4M zEG>Ci$wZ_rkM}r5k;YVf#$qA*Q!(YIvB~Iz@W(D8rDHdO>(QpVu76h5_@}~$91s*# zMR|F&AIKK^Wk@r0q~Z;dEWx@ z-_$(0%f&!|rWeN)w>4z5SE!?s}Qp3#xmD^JG0weX-^TU;=^>$lRB4)r(8DAyLD~R{;i6fI>n83iU4zUM-u+7h!w;iW&pOvgnwOC_p|fE zU4L`1%)ii>$?N;J4u_mA$8*w{kE|h$RCd?r-&-1hZM1=T9^JaY4 z$rDIT*h8>RS|nv8w0f`{vrq>Aerzt)$CurPu3pRUStkGwkL|&fcT>YIMjMKVB*hnsG)gCu+4^a z0j{q@O~KuN^auC**W+eD_Y1-!%-?qJuZh27WDUTs2+C2NfNSbj7=T+V>)pX;MLORQ;osgE z&f-7(>_|-G)5r=k9w8M0BmIL6&1mgai5M&J{il+KDg$u$YXdWppItxH|1ba<4tJl1 z768A)-xfr8XM4Td+a0tBj$e?V47r39g2*?`PrU1hKXFXNuZwRmUBc%bDbGTI6{h2gEgK+RZQl-fd!H;<(ujZPSFLnB(w#RURhz zZihDQym!wda5p#tLdACg{nouPs)=Pkn1ERRD^cTb;I>LMAW}e&CwMm#fLp_3yQ=cf z&Dqz93@T*8&og%fWXR_TU?j^DTxJ4V4S zuuZrEClSwW<23ejNww>8@U_ozgs}R9JVxow1T?t!+6~yGseX$0Z0}i4Ad%y&UHiZfp1hggsxej5j z>UY+iPAZaY*9m<%5Ck?YSzP?s0t zyb%lTXVL;_om8E`z#)DR)9%yC1}x|xn)N&S$Tv#RfleA*R`~s|iE)wG z%V%szfpDPZ0Ei{9^!m9Ds(~o6w-@3fLZB?pWK2if(R;zAs|~|t%^pNVdb!?Ss5d39 znd*_xTbGo6M|nP?Pb-2$!av1`sYb;J5V%#xK~~ALuIl5R%QRy^Y{+wv;UVNjCg%$T zYP$^`c67jLY@Z!;_rCoez5$1ax(`8Xyp;I1Gzo9(l%)feu`8pe1Et%Nv_qN4y32q# zxH~#^@v*chM@y^S+i!14^HlQk-^Y99_}{yA$>mb<*T3<0cdX-GkGX`XuJ7+_k3SsI z$}QPH$e{4xSI6Ckj*C4}`1+e~_KK!c9nyrcSWIpROC@lj1u#?K!o$^eH8p1oy#_#i zQWao5@hFYY7pgBSBNlc5T3EhS$1M3_%my;|(pqQ?l1)b#H)<|Hz)TRZF+e)?(ofl| zTxxfrvdjn#$)=9TXjBIo9Q*_A%*g) zQZ<8yQ!-ELavpJ*uhCC60qSu}l5CM?j*K;|F>7M&9@`{v7I|{GmK29&DWr~hn1Piz zU_*6KKIkHu&oFBoSjJciY%jvMpg~8R6ZwD(VAinYS$IuGjI}*sURWjw1IdW3IUHk| zlohHCln?5;sN-3~PI;9$W>$Ig_@KX3O#JX)s&S2fgBB>V^B~R?IDQ`n$0u-^ltI>Z znJ+-Z((|*%hVC`mI6-gJDDPmLDxOVI;?V@25u_fC@+b+LHOdM`Pq_K^Gj+mqKtrvc zBV~)7=GUV=Qz6}G5}0KhK%@3{MS@@YIR41=Z@B5_e6;HM2PskqZ8!r%762I zA&}1N@dQ`7rnR~wsp~K%yAZ>$pRTb5HzXtZZgaCNA;1I}R_gLYJ~eMi#0n+=qVK^T zL?tGuQ_gq)pc*4St(Tch#f&zo+&=2G1uUDiBoPM+%^AmBm|}pTx>V;6J`RD=(SbX^ z+>!deFaSUO`J-;{ulBolsu3r|zlAN1K$R8%!p|?mFMhV$@q6^n-R|MHHoAuo%2qxT z{v4O*RV~Nx+ub|rPJXlB9enht+j#e38|^E32U+$^z?>4f)QNL347OwsEtN7bL4rV{ zDF9;G0A{cOOQ&W69GuX)y^1?b&E6jgCxe$mvfsRCnAn@x3TSB0Xq@Kdd6hpn$lrRb z_6RMar~=PG-0o*%-{KX2%~&O`XlK9E=EVwMrh#Z7ZvdH@Avy#M!hb3ie4LR|SNV}+ z#*Dyh<}d-2>SaQ9G@LXx0c^vyeMjUlfuCk`9&mODZ>j&ip5JS*jBg;knVD6leA{&d z++`O-OTQJDw5jNEV10v5L9=WJ5Q1b{wwX+nJa6B+t&=e4AhQ&2-s997KNoOu5Ks#? zTyOoadcQdXkgPMwu<#uW{BaZJV_Bo%Ith3N5ov11AU7jGC$t3FO90%s))Ig34JSYL z@tXmu0`;{60`9mikGy(6b#}QJ=v=CPczAAo+lceMxsvl;No@ugfFm7-!!|a6=aYu; z<8K=PB!Ih8gF^TXCjPhpC(6MLK>Rbj{Wm1}3LZb&>mKWtFn++LPNvI%)DLW=%SM6; zPz^U~fbSuP=%beJRr9GoL&WJ*mItK%b!jpVMI>-rWa#K-h7#KW-c;+hhjuf4d$Y z^FuKJPmT)lzrR-2qtO6xEHOWcosrsFfGqt({5NC_$PW#`qhE+9(U!73KnsvH0Iot$ z_~j9Y34t)iIKxr9cccbis?yfRls{*e5?^{_Ajl>zufMN^NOKj8RtScvPPX9T`+pnTW5J2JYo zHUK8TaQIuDQveeH@yF$Q;1+s= zJ~4Px*bWWAm@Q2?WCjv%#k~%0!u-t51EOINv*Lq!kp2OyY|ESex;{|Cwyu4o@({vH z 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 literal 0 HcmV?d00001 diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙.png.meta b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙.png.meta new file mode 100644 index 0000000000..6bd28d9a59 --- /dev/null +++ b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙.png.meta @@ -0,0 +1,143 @@ +fileFormatVersion: 2 +guid: 37e38100eb2a32940aaa00d564da265b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙翅膀.png b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/双头龙/textures/双头龙翅膀.png new file mode 100644 index 0000000000000000000000000000000000000000..d854ce86b7f4f241ac73dd75d7753de26bac2731 GIT binary patch literal 62471 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

*u@S@b~qZS&&C8CnB1r<-Dd+}v|qw`hrGOY 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Ď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

*z;2}*=6$PZ>n8sNEH z`w#;hRxX?Vv?!vR)nNSJRKa#%*IM;Fjs1MVTtz|%L#FUuu zvzp*``9vCoPsbYu@=Xs1wA;Z?=i8hRjjN1i&QU{iT^{x}=628(1Sltcc{OpJ2~gQ) zqDmG~Hr>&&em^1HlA!h%_mwf={vI$G)PL25E_opQ?$`c|DI!cj3S50xP0!RW!U$H& z2rLtXCIF2AK)n+>@rQ{J!Sb?J7zYXuI-Tq=CsVBe@h1MbOXs{4pc(YG0aZ5ksJ%G~ zxech5TrJZNfcqtG{sn(V%i^v2y*9YxHsEQNZO(uXNaBoy^-aS`kuXLVVu<7*?VEuK zIF|PMfZQ6IAsB(i05EvJ1F-h5SM?|FcDgPcNl(a&;AR+zo=lEUOcjVi>N~#KOmCFO zM_Pqc3WW(k<^$~MtRx@2gz&=zm=SO$6F4&hog;RJ2SRHAYVt@6V1|P=RQ>DUr3cC! ziO0g%dolo#hYhOZ3{yqWF`5p>Q z{7L7U`H#d;2(HI*3frH8(5o%zK93=5khmw_)7bZZXPs^ke?t&(wPz>jns^@fO`4}% z#%yb47zV(EpU~y;ob6P4`SDm&|KB5UrQ@J$;%|e_A+)e%ALH%Zx*tq{8G(C*Nd3z? zI$D4#BFKEZs@6pOk{@r>kUIg z>`n9?QjXiQGe~}y+egb|0U*UP_96IF$={DUjK1XcJX`8(gF5FMg$y1KFegB`0T>y+ zgZZIOvlgH&0kkafn@kGzjekjitpOkp#NT6$d)pP*mcVuatjL-8x7E3FV4B9`UD^h< zEr687yb+!hLt-YN#pW+RAesyw@g3)&dZ|KQ+3WeQOr3Rdu>1@@<}TP3l&A)Fm57MvnQtdr#}P+J{Tq(#}C^ za?r;2X&?wqG-A$U5cNdxeK7p>q&?e;4N0BObiQC&c+UN21SMlIqCyfaolCiHR3)c` z;DYstsqzsT}B0(Obj`i>neXwm9Vl7<=V=vzb0P9#`P?Z%Aq^pjP zHi``RP!NFdWpu~jK<2D#@f)p|<5L_0#~0kmxevx)c-K2WYZ9zbvQ%v-;Uv5I6VPF7l0Ai<-p5sigt=DZrbcu z8{F-*Rq+%TrN8`*G##&lDY^L7^Q^1Vq>|_F)BpNK6hmF+XZnuo@y-Do1-d%+ujBir z)_5zdQW9|7Z~yJbak-Mje<8^qwHb)zI7J9o|9G#XiqXf*6XFP#gW36BPL;Ou_Ybw$ zqw*IrniBqML(@*F8*{R){aXLf=W+Igm@>vY20qbK3f;~F`DSd&fDh!V=K^o5XuhS7 zDOEhyELrDO9Rna@dd|!PQWVcpx2oj==~{~C4D{v;KqY9rF^hR;gjsAWy!{Tup1cCR zz+uWRMar%H*IY47|g&rDgTXZUD^qd^VwA*MLa@=XE~Ljto-)de{K;J;^)$(?>d8*{#{9HCVV``U6FnCGFEmR%MyMk;7pR~K zA+k2k;(Ir$GpF?t2gA|A_I)q`)F})y$3uc*16q2+A4DKPnK9!&+L^hXeXx(UZBo>x z!fU}i>X2*d&tKqJ<%xc4+3x*TT-g#UQz&hxjF7j&i9q5gA=ww;<001BWNklmGIcD2;2Hb;hTnF zGyeMqI4qjU2=Mem`q_k&51#pQ_VVRtvr8Sl3%q*Or0TPhmw4|`XY%x5jaqyJ!lu&CxG@+JXS@OJk zQMII?@!5*lv#qd#r61JVjHpOUSETc; zJjWOYYRGseFO02sE};Di>tgDnGAnWNu7Xz5Uhza2N_HB{e2e#r|Mjdz_%r5I-h+Toe&vR`xk{$0nfGfzVK_sGVJq!2L zPZC$J8<_+#feR9DvBU4CsNV5sy}oG#W+AJ22!92LKZojc4S?6;l!0U31D*(eA4Sy z$tlN9R^aH_S^UkvekD7NXS3}$VxGiERbYLuN!ns`L3n~G@vr&m58e;)N7ECG09MgP zoIEdvfHq*IBP6aYz{K3!eJat9ENB993=VD3+Qav*3-?BlF_ty1I}?zZO{AD}VaXkH zS@VfWfMj}Lt0pQ)9*3601lZy}BzQGHAqWp90Em!w(0%;n^3Ivcm;%r8cT!GAta=&dtQSwBYNS2Lj!V_83QotdF`V#tXyr z-WI@0`2AcGf9yN<@&Ic9c&|&~x0}yw^ zPi;S9kIMLjA(+DVVgOhnt57fgjos)Zjh!gggfWz!Fc4Rj;=yAIo)>A@UsT)EfkC!q2rb^d&1z z0mdzV3{jq~2&@iU*FEM(&uM6qyb=p6 zg%h3vJj>q$yQW4(+!Z2rL>udmw&nY{h9H{(fS6mVr;vK>v|9L>_}3JkRry(VCHmy@ z`_f7)9;7`XPR1vMbK0~5%|r9@r|T*4k7xCW8BpUz7h!_Wy`Qal`gYqSXlxw}ow5fA zV=%inqEe`G`8|Zv7GbH!=LKzJCS$6_aNeD?r1-J$>4(7tKw}CpA3UBycu9gtvU*QrT(HsOxV zfEaCPiezs^@k7P)maWSp*agQ-KGqJk*HAwHXL$e!lcpd3qshYrQcQcE(V)q1*ReDZ z63fCyHXtM+$DUtL!LdP-LeMSAf531JkNKH)t{^vDQQ>)}4$ zi8MwL8G@kTNC75FDIgdU+JkQ)OqQ~qh!xxZ$P(*y3Mqs4Xi&trXM1jQulmVO^^ciC zz4YfJR5dx!1Yl)hwPBp|oh;i@k~w9DC9LYd5uuL3C>3L?ef!9$$n9kLce9IcE@wB_Z{!%Jt-aSZTIwIFLIr1MU&gH}+`{~w+6bKF8vZl+ zNI2EON(%^lfpzwEY>m`d!goI3Yq(7g`c7;8;pZQtBbc1bGynP6Mj#NkCiz?o`g8Ts zwwww`57R4seCe7cfPFbD0G|>V)6rI;c`1i|qXqDmCekXi%Is)R#&^by0>&bp2GIFA zAGi!vsTe#EcpJBj7xE0iyjmo)${4?mbd?DaRoQIQ^c>(Rkxsov?IA5dyhE?1uEe#| z1Y6mR3EqzlLsTnY8AhN~mue{VSCSlrM$Zr*=|m=kR$XOcAjpY&f&7(bVt~4t6G=I6 zrxLwr1IkbuM^~e~FxcCrP)~!DR%11Ejpte>Z3*PF`1}uI z7C5RUE#AkjLh`}PMc)wfoAZUl^fsGW=4BrV)&L!bP z=rIaiNFzWWa?du}rIrA3z~f|jz)qO*Yww!+h6S3pAvS@b@i zJpNeuvk5Q^oAjx6pC5z+nbP!22X3n1`!y^#{-8Yo?|vnIqDxnDXmxm4>{lR%%DEErVgur1 zZ4$iEj<82DzYxe+CQ>I{1c4RO{}BQpdM1tDRTu%@Wa_oXeu$agx%_~FCY8*oz+ z{W~#mfD4joro87((j0%UiAV7ClV#Ci0w>KS~h zJlfSo;Y8;qKD}sWV2}(W&l%D^U9j9 zz8XTn+?%jWo0N%bCPUY3-81GA&$O$;7n&$0tS(SPIW>@P=OB2POembCh`ui&Oid-K zuF#gzX+4}c7<&i$R5Q>)q$S^E{z*uOS3M`HMW$WaZqy|$c?u0Uy5gGZB&*m$tkCr-FcHV2C>PRzo`TcYQS`2ud*j8)?H> zP1sq_6}C6U{J;B~|LV7533z(?aPcT%06-AnO5zo+>r6aCz+=bgHR1AX=2hb!M21-a zE7L#-0P?jzKeV6se>ntzl^th^BuUpLkc8V6)!%K1R3L&8%pXCDzw4rMFmhnW%wg;z z>~Fy?eG=AXLOj~K#eD%K1Vq^FjAmvN&Vi4eP?A2vuFLBxD*>5A;0Jxp-=rGyE8L6< z4a~TNH70M|yO_!`kq11U%4FT%HlRk1QFMcF!m-p<_fmi}|J=k9AhRoA7M`(20}|Vf=()1qk1X1%UFy zoBF$YGx4W6%t`u*x*!C6{P=M3)mOJu2!NiV&%`M(E!e; zR_God_Q|k{6d|$szr{{dHlyD$fFi5DOnS65Hs_i7OZtD-+5a$pipvJW_#x8W0zi07 z|M*upTn_Vp5AR5e*)eO0qyZC%4-U}$#Cwe2AQa^P6#V+v`-`ZS6@rl+b+0TZ*P0Oh zW<(NX$z}LuLVHb%FQH(5?w1%)`)30n z+K)*5PWvY>{bqsN^DNX{ctFt+SYhq~s6|1TKacj;=^juDh?aY`%;6EM-y|dei@<`< zX7mb+OEL=t#bIK04RND;;JJA=^f!6EB-lw_h6og?chCNb@I#uQkkXuc7fc^|6@dVM zECceX(V{ERTC4#qq0%>bH}!3O#iMDsJ=+iHz|aSk*!&#fkFXiHmbDczeX(YB#!r|9 zsWTQj3j)d=cNTQU)0HOgsLwp;c&mKr=QBlYLG*VCau#q^#!H#-Ba}SWN35m=VA-^t zwfPkKz>QZ8!uVT|aeb+7kG6k}Pkp#4F+#veCIx&MLY&AS!yFUPX7rPe`aNH6$F_9p z@Z#yPX^19VVjxf+m^3&g-$sP=3^AJkK|@2u)Lx9vvE`rX%EOuvfJPg*)}}H(HZ+Tc zfiPL*YKkSyc@ zH7P_v*|yb|7AYHvvdGSc^niLz*m zKupg{A6ht%MX7I|i*j@8*)ey)mnQebrYV`%Zi^A$X!rh6`xlO-5uFGFvbEYQeLXA^ zhjmvuR)8<{Z2*o1YTQ`@IQR8*Gt-SDjd3g#9j(^TrBg43vSO$+rdHazYCCarwX z#laU8mq}VM<6<5psMdgcOnq;$lkm-Fvc3ccJe zq&~B53Qzl9t<#wZn7{Fzey^oCe{CiRJihFATPM6T=k9m>L;@N) zn&uM##(*lJrAe8%XgEGD2x1BPUI3m`#6)@mHDEUL)#NcTVDbo(eiFtJy!)lBAjU4D z9xjFTKYqs5$?5n`m??sL4NeFIFAR>=dz@C4xo!o({DJ2tLEh<`0Brc9-+h6R{4x2n z`<=D_fSJFLm(K@ZiHY+EAjH|loGV7lT9g58K@^frESSjyhj!D{i~LuYT4rdIBI$A} zf#)!P$7x(Q>>sJ!?`QhJu^!-&j(jz=6`-POd=u~-#-BPzYfpm3<%Y#vv+UazwFe<5 zD@b~LS}Il>jAk(^|B?-v1?kT`vuTl&6)=ATCkw>PQ(G zvY;<6VG-`~j9bH%SF3KD*OM{xx60U2$Ts%iK`$SngYt_Nv_dzp>)GDtI<^0T~YA#=a{{tACYm> z2TEzka**b1H-~ zEU+-P0*@akq34WQgw_ZtBjxgo!XAaT`>V_kx)%7Iz76mie6|443kdUn_;C{gI-x`R zKg;|*@Ec}X<3*Fup!fX!UES|N?US6%Erpk!ygf1FlrgLD*|C)eg3uu!6iQg)c?Waz zbKtFX)G_rw8O7-|G&Ng@c2(3>{8aM_2-&p z;xHj{8Odu$kx28R3xRShkmtiMHbDzZP2kAU$zuKp0TbBNi4edM&*FfX`(yG?I`E@2 z5i=JEhVTU34yyD%3&ZY$0Oi4~t+B)Wff53u`4cq!(B||qq2oCuB@87(z(_%TlxLZL ziNmFiX39nIrUu&+;b-2ZoHqB@WPWDuD2Ngnb7amUkV{01qCNZItSLb$ao+9{AP|c}*Z#?yx^>1LhM%%iZ_i7;(nPBw=kWIVEHVM5U_McAr|I!+ zu4C#)+wway4=Zhi0AAJmsa|d8+?=(z+1}xVp=~^Lzav$LGhr3w^joB3~1 zNpj+*ABmt(K=-ukTsyK{W-9=u|FT55U?jUijuo!|YXKA-+RV$s%$<4ri9k;NF#j1_ z^xn_iKND=8T&y;i0a*T<$T8C0Np3~}7;wsen5WOWBjr;-Rbm+lk9yJ4SO0)g&g@SM zfS7)VF#d#v@#ncS|8*H4Y0UWZu;3eGow4;&8gz4E{>e(Z3}wPr_sdAeJ3`P>&2#;f%gOF`BIU4WfY1`g3}@Y*b;b9)w{nlr_&u zz|2Xv0ksKKMWdC`?Y!ZjJqX9rnr^?;&38=tX0D=cCM+QWS`}K&{_FG93LqHZIPI$Z z+zsAg?cgwf(txLjg9yJ}-YYE`f&k$~Q($rwMV=F_Pk0SJ=fc@AG$)a=jn81p+%66L z1!gZK#Dvd|^=Dlj4BW-s&l>KZ9wwt_4W19yWbeR@>cTPrKp9vCRPcDG>W6g(h@!wf z>I{CQX&>to0eR6!e#S*Ps;klmNwv#F;~_i|j7xGhjd*k^6sJK6bP0J>-FHv~HJ=&v zyY#ZLBUieV+84NFw>{RSI>|uHoh}M`{6Wm0iKT!?-Po6-g`9%8t$PBVBwX>Kk?()M z)z{@#U*#P~eQRN7F?dnFEIY6~qjKoeTo{xklgnSclTe_21DG`oV6*zFoun}#SOhAs z`I5!5RE-U7smY$wTqHl9cS=|DuWyjGnLi8^w}{OM7a|(hB@n65&5|(Yb%cSKI9EoO zXA`Me8FhKRqXpRu@#Q^S_Qkgca%uoPLJMUxV%EkdtxDZfSZhP(u!W0yCw>Hj0Cn*$ zdHOhb#ROJ5s1h1|_Q2!>L-OLLjj5~CR-Ken|HjMkp9S9A>g+US&Q0B@^R$+cfb`Ia zdJnUWv?b#zV*j?BsaJ$+;fsUPA39dI)9|%lWAbB_e}&MlLFtTSc3%zHply^sz;s-6 z11mrT*WUV>Kk1Y4Rd>w4c}!NVxYQu#xb@8>%qc)~P0M|@PRf1eTPzT-Mn^)MsC!KI z^d}!|%2)ShX{Gtc)E^4~SMNUQFZp5gxue54r2^unPtDf|*Z47JjBSADbI{W`9`?hZ z04tVBP2mh-DJM(cZ1}%Ze|@E^uixtyR+0FPmnr>}o5=h*aMTBXR)9H82G4*Lv2i*z zcE+t4>pA!AvnCF1Ba}=b;7p!uB=hl)F3u}0%s(9;LEr>OTA9)QThLiA$N~g;{Llyo zeGr1sg#f2J_p?-LO3d_KLyTn2#0v8#oKItd=vlufEZ?)w8Er1kh?Wnd_xbkPIEWyS zPm*$~;Qqr87q?$&lc!AH-WY@+AjIrz{=5U2T5#Qwe_2NZomLZR1%C%XfmgrW%;VSk z6!5!u<2WDbzyJ2Xia9SD@>-Cdy`#K^M`~|D(&EQ^5IO?6-SGQw|L)>eO977`Kg?4Q z?|(CH3M4Jezq@|W4?@*5dj!;ve2Ee0)&d784vRyCfc2uFd{+1<=8q6?{DU-;X9*-v zADx{am=rh!#GM8K#hvhzA_(R;5SBcXRMdz0m-{ieEi*y@_2B>+P`>YzSWgdL+wg6_`x zk3hInUX2SoMi_`cY0xazit z5~ALla&e(U+}kmsy6UBb@K`Qqe0fsmgg?n-A2UB;kM+T+$3MPYJe0Yg@M!Qbf1qpl z9Qn)KAPzp1bNs=_xWos-v^%pWEY`D(LGt1z48bo=O?kL%S;#V14`2O1SpYcvsGZ~N zj7IxkfLo|mh~^4&G!bc-=P*l7x<_7vm@9XY-d_^}x}?RsvbK#CfV1tn+LX@cFOwtn zTDAT4Iq6(>nQ(@d-3@Hes}TskKft< zIX_`gYT!xo+{u5ZOM$-qFaPNz9?c&JjpbBz^hS2_rF2PIiY;?2p<|l;0&xMOCXX-6~H2oBGn9b1h%*#|l@cA!a^#R;J(MVD>P5{sQ<3nc#P9 z@iV-6vL9fj0WFEWVG7;>{wV=~SJrDg^QWLF8u-m%@e~;U=x-ouZ3#=nSxCiNIT2Oq zB21B|3s*eJ{V!(gk6#k0RWH%0F55uDpr7TxAiaslO&8k{%1D5 zf&84-kPyH{I0ylsV*cdsaH9|Q05{S^?>~H}TLwpapPPnAeAcV;E&7hj*YCd3n2mfe z{|EwT|G14x}75|03vI{EfYV?ADE0k7JzPDP`sJGQ;wg`{A~?b1dxHh%t7^!k-ue@H~5;k zEXk7!9=L{Q1mRJU!RYd|E2Sg!zJdx#Vz$BA%FGYQ`V) z0U#QuiWsYykgX$PQX2BFI=XelZI%>@P|P(>6=7+1f2EK#zLtLdF+AVq5WvX|waR*@Y&VryX(j>8j0G#{R%9M$3H1VtJucyWj z(|gpKb>OHz?m;yzFQ{emnEuZ5I%*{C!z-F+QA_Bv_DG`Hp?Fu^}9Hx{ZvBqV(N!$1CT zargc!_5bnWyTAEwIyu2;qNVH2`Vi5LmLPnOf!_Ndp^7~f!ClI{lCa?K0f_Ox=nIOM zUp)8-YAj6ZL6xUA(Jn(xQSFHU&~Vu(c&U>VCX(`duLPC=txICD(n)$*z(#&uxa@rN z7dYduQY4w?YQxm*2L)pPI#*My{fSH<55Tn_N%+Qd>1e`*)>M+99)xx_72*x{= zmi&~Lv*0j)AWIZu`Cx?c8-fQN4-sRopg=jU@_V^M6?Rx zsdta#O=?LGI`PwH2HdW^)C*mwu*|qXWa7<0^$RN=QlVr2$ zoWN2=G)H3crw-ewRHAaA?dA)wpQZIVG1(&EUNmJAJQbD`kcM@Pe4} z?Ph$G^c-gNFz1z}mZN@I%s*7QRs_V8eyz3tuYYxQ@%~o_xq4R}+vffYU=HVaJpB#x zf6`}G?Qa$2@)YLboZ!jc2Yr$Hrly;;xU?z*8w~0#RrFwjb+H7{kU7&7k+$0D`2zr1?xYgxUS0_8p?JB!6oT zJMOKm*P;+s5g31%f3kf4yT7-0nEr+Ie0H|JNuD&g4}U;I<}<&tE^vfRa4Y5yv$k-d zr3jN!Z5Eol{p+MP#}5M>4+IFCL|8lGvu}V)if+EHG-u4`tknZIztp<@hauqbehUqS zkCwijO6h7z|NGi&Kzkmw4iEDOy7`{-|1f>P7bdA(P6NRF zCv<-T(dq#Ps1jjfaw#s*abp#|wPT%tqpoD^ZO2+)u$l_9%=5tM6Q1^x2u za#j4qF9HNvD%ga8<$WWW1#7&SA50%0RY5REZpnK`tjbb-h)X)$tYJa`iBBDqCVAtc z5%brzRJlJZ9{OOU*mAS!@7Pau zFwH<;{s3sz=Rgf)%AZH`T3*LdZlg&pdgqzVCfo!08TE1UxE94nChZF zFqQ8cc$uT#%?8A~+d(JOM)Gsc-$FnIc7-?Tx|_L5{XQuGBx3}DJa^ZVPRQp**RJuz zuN~GWrx7Ls1w8}u1Rz|4{yF5V;Gmd{4@3o6?;m(-2+sY;Zvui#69PyJ<4-m4_X%Sm zAd$(-`v{}{9ST#AMbtA0JxToZSteS-OsGxV5;9yEApkQRX0ok~2mpMI?$E3ZhfAFn zD3do904x##J~52;I~c$Cml$t|A@~1Z@ku~oOqjoSv{&|Q(xEIEJ$C~D94q9HuM2Xt zFdy@{s&#ihNR)jXE?1NA>b*XWQ-Z*wgb@A$9BTyfK_lK1iJkClfP(o0-~8*}Y6)S> z-`pJr4EDuCh`eH2w>ksY5p*O%=?#o4!Io_%qN9U z%20r>E#)S_!jU!2m`foc70V9ioe-dKtW6MB6W1WMZ}N3bk_+OVh$1JWq;-S|P2>eZCNcPQsiq(=Rvg zG2_?6v%c2HJ^g)I;YK$r0*|Wa`*+;!;zun@UR~VRz18o&D(0ss>cc*ed<$TtKK)Jo zEC4Xr>95nIqGQtj1G!o-SEmx5{6-o&2xiz|WoEnQj?=W20X-dqR@&zE)tP1Th4_H0 zH0-9df2W)_%8}2<#6b910-#RIpl)wad9NTCX~uFw&6L@0l}G(6*hosHK$4=A^mTdt zsz|$I@G!$~8cgr2IVocWkei;)a%-+(tp{$f<*h`G50fxg~NTC{(x08d=ytF?BH z#!Zj~;qF&ooB7}WUc!VXH4Hn)*&w*NZOd+Bc9enk?>hxLcbJ6>?jzv30^uDREQB*(nj}dku_TjGTJRYBFkY*SVxHh! z@F%X{SK*lAqm7Jk5p$K-H6n*Mf@&c^)$K!zARcC)_vD#6Pc1))J8HhQMbF7sQD>c; za#`aK-Ho5N>_EUW6n@K++ z9BKRl5nl6r;x2vP<0+SSOxyye7`TEg`E?;6adzo8>I4lGNYol0{er(IWAHglzbPpx zx7W$UC14Y<>=oQx1JdwIVFDe1`s> zyG2NoD@S1LcQVm~A)OxFU=CL^9Y~E-GSbn zNj8efPise9bIi9-qr+|xP$_4Jk+beoky*u)A!ymRT?sc>4@+Ex6%4M>wMS0xYha? zOA4|^6b|yiB7}iw3loZGL!sITGwRGAY5o5DvB~aAW`5d+)#C2%oxgwZ5C8C;tQoB9 zyXr2V@0bH@>|Xp2EEj9dtGRFr%xlEyyY1ffEnvABLXKIbW)s z6EXn7?I2qvIA8*-SqiZfMmXl&X3()LrM{uxQXZ)(lXfa=UdNpBl>-Xc%~!o)K0BZ0 z^$buMr5(Pz&H>A=@yq|fg_%{8f#*+L`q@#>kXG{YUKp7;K6cyfIVXGTig7fOv z(QXAAG`~Hs#*>v~>Z8ACr_nf9=4-)96&rmlH}!H+6ryUjtG-$9=MR{Se>^(uQ$OSV z8i=0)g$oP~`yzH5yFiV4f9C&nyGJ6g$q9l3n>(8T?0poXpS0A=X>t+Jb`V9W0$KJq zq#4bGZ|lp#&{bn6hX#{HI{1EoM``1iaa;tB+$S@Wb>vWBpIW4Ocud8H`&dht^H|@9 z=ZlA8jHZ=Mpd~nHhHD1y_l-H|Iux#jR&jKF1(>-7UFE$&qgSi1)UIo3^H_~z1?c(i zYAaaw9FWF>!t8JfE7JIX^OvJP;b-suLUdNlpHpGq{Cb45hx?n~Y)Z=4@8N&?47G6Q z-8(I53SUqn+$>d~p~F_4F#m)|#!w^l;UE3I29u7N*;R)zm;xAo))bSUZvX&O5Rl(t z!p5YXyOf=B`w6mp^Tn8_jx-@q=L1PI{0Iefkj%|OL$u{?vL2I5d8ktGhm3+~T;oY~ z)BC~<5*D{_0@)Fpl-YkxxeYE z-PupPP3vNo9C3Mg*e=_-6-L0=@7{myVz?V1aQE(OeK2U-wAh({(r`Or2blJA-IslJ zD?+bG?lJ&C+*|D*2pl91Pv$Qn0AL+H8ckfnA9d~HLtT0V^9P$rYfJ@P~txk{Y?*7jFm7yL_$|eB(%`KQ`6DaUj5?KU_ zq=^s}(|*?TiHEUwcRX#slkry&d9x(&_1D@WEOXkm6tFv%1ElG{`_;AoK4?F~-+g<3 z@vr|{`<;F_+JARD`sSVXSHb+xK~-l&fj2AjPo}Gjv5xw5@#_)9S|tcTrUsozdtjRo zVAHlx2DgL5#nj^VxcIXPa6W_ZtsJjiQihNxlfDZ905p0Z3*^`pFN3M`C+2A4r+kA34?$t(+vcXr;fKj@VMzY$&W8El!1TE# zQ0`N0$~%1dY%Q652mxH5d@H7Y!+n|pz6c29?tolele6;Nju*|Jbh%@nBVznvdS8VA z(g85dYniWr9Am_f_76PWfA3yH2nck1vM^EhW|%)h02}(!4frNE7Bynv}ON+TQ<4wS&y- zUEmuJKQ%o?eGc=V+W#Bx?omIN`5$zPW|k)#sT)NXJ@@UY(83Tb`W2Zv{kyM-#}mze zrmuqg$(~NP5ir2dSvvA`y9b(KEL299d^$MaHA7z!^7{t0gg3V=E={xC(X zct9@kc~ZVdF~h*)6b#tgq_|etqb$fSua%#CxT!+IyyUC?%DWSe5D>_wbF2Ue0BHR{ zgn-l+avNt2Cp?b^SRxxO?1q=oU%bMFfL{=@gWQg>JiqWvc=E~bC}uml|2{r5f1>WBG9 z>kjizo$tT>yP5on_3s9qffIa_&nH)!CpPQ70v#WcBv%dR2DeY$P{*f%56vvfi45*W zI0pMQFZc>w3~gjiWj~Li2f+Dwhak8&(Lv#u zp8vszP%V{wF6=42A z_Jzk1kmGSl&z0BX$oB~8>+|^eR5u$7C)^DGwrg%<{-g-UWd8RFYGI;vp1j;WZzivTJM#~Nzh=!|Wk6tT{$dm0StO*~RyMU$ z(zT;^DMU0~zeqA_%a1?y3agM1R(XM}Gmao=S`Vhws1BUJNxrnM%=<~O>ir}9Ne>6hw| zC%}eA;NioA2mnht!bNRde603bg$@yM%JH*mlq^GV-LSiOXa5>~t(Laj3eywA!|Qul znV=WTo`74{9F>XtA{eWi3kgCD%t0>Wy)gghA8Sb^cqM|vC!7QM$j*y!fc+knI7(I* zzoY~Z*_Ib)XgVbBjF2ZBzrxy!vu=w2oRPe zTZiBkew{0iGHn%Toox-A$&iUbq6U-MlIIL_Xi4n_=O>Xb!n&qepV3Sr1jKw8jby}a z?VI)Kg+$to5TH1M^7=4Lvd}NnGNMGgeyVcVl#+0m!fF-Bt9|)R9-0gD$3g=5+F!Z! zFPbkV?=XJiG5}J>NB1}{w+U+GL)uo?mo8KX-bl&)0 z3_OBg$bH=YzSIGi@TB26a{zxBe@ya;3vT23hC+>H(!?eI2{eX(68D(_o%xd`bv&0n zah~U4kmnMvVVZwf0=5r6jRa==OWF{51RHR!4YB86l85p0eBfg~ZIhlYYDEW<9_GIb z4>Rxd5DOy;A8sE+3L#yyU~%zJZUyx_76G8-hP+<+*8;bwbG|HLZgD!dUweoMi?;vx zhfyv}{JEL=p^yDoFnM79vDoq4753mD;TDvNBcksh^rJ97YWehQeQuqN)w!pD^dIUN z9{#&uYEMz^Jz$Lb&Y!3=LO@{DUr%k)=AHmE9i{Jtz?Kmuj}VZ4N_pl~Eq;a*rWg10Y$jn19l{&! z8%uze(rx!KTyLM4Rhb1V_SO`l|^bSGdDCgPGO8yN9lYqw9A_z?ge{_$^! z`pFPMz*e)C`=tpEMc#Ie3e{(aARb~%Kibng708l61hHy{_N15RA zCTfi7N&Z24Q_`p1m6@Y$uk$2U0$Aq1B&>{|cTu0Uj=c_V#r1UdGpYL|uLPSJd21hZ zKNd*@0Bie=K9H4p7x3wsdW87{Q`oO@%k#`r;n}O>@J$<2muHHUupB*#}7|-fBUcQbkpebyjS3xZ`e>g>N}Z!O_u9e07_tr1rep_ zxo#QsQcfyUZZv-$j62zy=dGal8IcIWsgu4t*V!2AO+e&FGa z{RBxH_cBX2AV-HzoD~k!@4#~e0m8%l<8G#L5wd;OUd&|v1a_+cCS{oM%Ag0i>Akxv z?(D-lC)P60X8IQl?9AVr=VT6z=|5Wj`g&{qYv3!-<6aPTI%8G@daxAmDtNgcln`}_ z^tTmiKK55w>yKu5CcdYA&2Qn5dd1XF!UflMc~`uw$T0p~K(-11C*QbVECjoEoOyWs z{W2evrdt4VQ+Bd;=1*8>{ycZ)&vO8aI6^?^C@y^@Mc+ahG_UkCJRM~C9z?`8LtqWq>>CvvayzE zOTad;_^fqu z-F|neGt(4Drodc92@LbZ-B+5xXJ*~s`L zNte4D&?_->KU-ZGotZCs*??8=U@{Zl1sC5#!Ry2L8xhljhlE$PDLBSJxKBrY8E5xy z@_Nv!zZ7TYPtu9I@}{g&gxcW})V7gNhY>|nhX8PR(nUiMJR0tGe1t5eLyIrM`x3@q z<;`=Nd5-i!F<4&2q`cWG@thiwB*NxGb{?(>lGz|LNEKjC*w4$ z=a0(U-O{b^+lT)0o(arxG62DO3UB*K%&avRJ2Z52@Ep6INdBi%?O*0O`?2?kCBT3M zm^_r5dpBnAA`pB!ekc;mEB~n=O!a8%Y$W!l!D(;r$aD)Gyw2a&{z2-uae+?W(AnBs z6h_Ud=UZL2^We?Xj~DOW|CO8a@`Kua{nf?0Ycbn*T7&=nxMDark&Bs9$WoPTZALrr4hwzwKeAu)t2cZtWW4FZaP=0@^;Y1P5IB0;zyVfn2IRU+z} z`bXPf9y4gbWH=gNgsGU{M=Wz*Bs7Chp!_h~2ml}f5X(Tyh!8O*f%>8@%*ZA@Gk*yM zckO0D7o;E7{2xE=HF=o-b)CVd{y^G*ALh?J`ja>j_zL)#Ppw5yqL#F?qZ2UPanA!d zvV}9Y+w`gMboyvwALN z`MnZpV2%x;2JWPTnbq?12hK9~B|PP;ligZCP5ROS&)^<}G&_UEvSydNt&L!k{%1kf z7?#X>(-QJ8_c#UPVwzDXcw@KLO~(IIssc_$sH}W^Hr7Hw!@!PHYw;oIea_%#mwAUU z{~l(4CLIrb%O0uTV+nv_ob=l)~@Ryi?);zqcM z5HQ-r6zMQ#RBsotVf?*~&UI$f4dapg5zu13kBKsGTA(v#2p-q-#3SOM^V{HHzR zhp~tGb7{}97S|Yh`j)T&Y5V)aSYcYZ%J{Ju|J=#DEZMAtma@bA?Jpc$1-spIm_I~Y z_}Ouw`=kALOH<71VgAR*kGe*AFn`<^?J&Y3aLk&jE4B4O%&znE$kjdsfpbCt*?}3~ zi93w~zX+qlMH$kk+;4yoz@C9XnEyCUFhYYrSwh%tkfLvr`7_uAQ~hlj3mQzB zX&TR=OSpoGCd3sG#tn^O{#-4~n5~=aNFD~?>AmwSt_uk;p!qK68JYd3VISl2tu zpGS^6&LfWmbYMQT`u8aO^eb!P+|I`ZK?njc{ygIc-ov<2Rs=U?;-5l*%D?#)-w?UI z_~E;83n|M0*#!7O`vb@uA>u|K>ftXSS^F$}EsY%kU|wAGherzmEJYvybU^^zk^V9J z5g`CT5CFdVY7}eAILgC))4Qc4q;P2cBZ~|YL5$1c7gR1 zh8lOS-6@{F?987mr_6tw{KRLf(e+7o>EPjRYE5kwS{B1baBK(ZW8!Nz@^oT;3_qa6=EC}=xi!LQ;k0NYC zE3HX4sjxGD=IMsdy@bu*ng0|LwrKmp{Cn_xXEDGY$A(#7yWIm}{+4hJ3CGNun{Z&V3_y$wnY>Ol7$`I1^zkX>l5Wi+vP3nKyNJHvfbnjS~gZc9qWS`L%|~ zx}Lx2mR-rox)AJ)#}M??ahh-gSIMtTSXRgzoG69{T3OIo*5Er)hRM55${s=TrU>+0 zyHkCi9zI+=*Tj!NgTQvw$qFX7dJ06K7Me>uH>ghWHw|cW)ziEERhdienE+x92woiN z2j-Ig?TEj=)iD8zAQP&!EP8>lM@v*bGyU`l88Ee~!=BMzfvT6cHi+PCL$~7F7E>9A zQ@1@mofvRTA?eGb)=KBF* zNoDv5p3)1uy}=Efy_ed0qxqUVRyIUrT&Hvlwo}L5uFw`~VE<`_f@6{fC#4IpqW}ehOjSCi) zr{GobHugf?={7&c11qX*3?mcm>_SBI=R{JhNLvPRD+z6s$tLWBZX`rtdRBjoyFZkY zeiF3eMnL~Pe!<6FI<_em#A;MC%z5TZ=g)wj=7ELz(hp^`tNuI(X8vOIFn7|C4;Usf zWwK;W8LBeWIc}@FCzv+X0NZB6V3vc=|MYdLr9aMQ=v|oh5Eeg~>N$0dkV6y}7l{hRsc{6C!xo*BUwn;!(Ijc3YO-Dv#@w=fvtrUD24 zCdF`B%SWiqvBJb!NfnOym??E*umEiamF;oV)!|EhN2-6;UvSuh45IYB|CIjlcRN zlAa>~WV}e1%iXfKhp-c?iNekb07rc@9yoBznymqY&^izz0R+?WM*GJ_vS^h&H}S~+ z8ie_ui)X^F4DHqQ-jz!!O3`LlkUtXx6YSKs&b{<=!a#ERg+3|CD(`W2x{Qg#>|n;2 z=v9~;1NjtZ;#hrarl=93&AT=whll=37(pP6vCyK6}WK!wEq$~*3F8^e2q-hAliFn2J z(CyJ@rsTa1tsLH;@%LvZ5PnSNuYfR-xS(#Bzw<)7fZ&t7Q~P(s_#tijB0Q7(K*aNE;r_JVa}CkBFhtDxV?~Q|2JapvFNd09?hOT0Jqv4_@F%jw_4i| zaOF5@ZnJ?;5w`G%fdeqgo-yKOx;ydcZxaBx^vc$DgpuuDhWMr640AT%J$GOn@fw-TV^kM#aNoW2u zOrCRutjB+jKbjwD*U7vI0$}WBrppGd5cU3^Oc=B+AXb2$=ET3#{?+NW+l|gQqG#s! zjNm#0mr1h_*Pb-~2s&NbOq(+~lXmZJZ6D!Pw@L&P=1L#UYo(J*8uaJ04mW-&+} zYyEoY-we3E)$!OS1SGB9tS{{X^>9uQs5Fg%pHX3d_KD9=e(DJqG0~9 z07UY~HfF+Kgu~_<5FemU{AFhn6dQ_9TDs*Y4Bbyis-h{J;+1P%8hC@DJJV}F2nB4!x4}Y;dPLD}AFY)1ArONkAw5iSKT-XTr=#i@`D!omo%QE$Nod4g)4Ucro8m z&DHxe9^PQn#DQ^tr>3da{^U$7DihweGb4Q1l0LtavD{u)I8ZqEY zdXyi=#|ePIy|iO?;^%tacWqaGHq?>U%wNj@(eJZi4(1;~2pE?;mIpoHIQ7=rk>blH zrd>Q8exnUonEj^d{_;-s+X%+- zaubleo~bolHrR}Q<=nnBfT{~&hd=2{ibvgvz_`dFHi@O~{6;tcm$H%XAc@~+_KTrg z5Vdew?`JPct-ULkafUTP18a&Qj+LKspKJdLX=ul#1aw=h)J;QB82#akg*2A_IvXg- zAmGvl)jfMlp21U(qYC5%LWt?S!(4Sm5OSXto{%0K#tP859d`@NJp@z`sI=ojzq~KQ zp}6eCr(|#&cL&Uub)A2gV0lRTvLs~9pLvyKLHdFF5KIr`?{Knlk!Z>egT>DV(_ExOH=9lo@dmK2yMu*6+%M0W?>$efe1xqG z&g01t1!pRwX1#s655sdswDdum@Ax>8#+QbQKFFfI0XQe1|Hiwdxq}~7egr12#T^iL zpc3;2As})#3IUonAoV~;_(yu~Bl+fkxViXH=Kni(;*0KF*O9)j$JfrK`H#2clgKYW zj*p(PA^J%h@D6pfd8Cp_UUZMmkI&pXEAXwQMT5ZQ6DD5@V|3DD6Pl+ZKjD+ctGrKc z;#=sQE75);Fxj#)Y3i0B!eT;Zacn!#p$HNE>Jg=Y0jwF4(ae9ghQ#_?kuiziaKrpb z()~Pp;|>MSNknKtg@ws?4Sy%)_d1z42^&QmOyqF|FtT|}P=kvkH8-=7-}#($BWCsZ zDJRUmGx`V#Hf^05B+3k<4}qkPMz(5CcGY{rz~PILa8)nBmkw=muZhLH5PufNjtO$C zBO@0wQE|&(Aj=`-CFKn#1Ayx9Fm*Hk5i=%w`R$ATe_zA?wHN zMxlF)16DOdC;$(k?jvUWz9PA!1$6-iA%QW9l>o;7QbJrWuKRO!aCZLBIGBIoiy40E z08a8pobL=)j>4nl-7XeN$Qv%WQ{xIgL-5Wr|2K;GxltKo+#Ov=ft?#Cthqg!VdJke zv@oo=-p>%aNMZ!I2(&7A|e}ek53ytxqJ8ZoM$7I&{%UO)&_)t z(454-=K5n-;6nlYGeSVZaQSdhE?w&3|D1kg4_iycOQrz84S9n#j8}z-zNXR73el!8 z$c0GEH2<8Qyz8fwnR-#ze4TH}ABOgX76p?McpW==3CQ>{Y2qjR95k!IxoE<6fb%{+Q2p~DrR1Q<)QAqY?gVKB)~kh+ji{s>gFB6TVvePy9l%sCqk=W)oHVei=( z{|FD`=gAuf_sQqee2@AUAz(7sFjN>nLJjy9Ke=fiV;y1;<`CxFtQCHl7zk~!_OJ4C zLW2+dAPB6?zb^q;>*aL_5i93m;~)D05CV8Nb<#D=1`q{62*4X5IAf+DHg8)9An#h| z*XF3o3FF6|ur344h);Ode0oOEULi{;Jv@TJD%fOL;*ux)96#2Sx`v;}Q-)4rGS__U z%-Jq3EC73WoP~r9Y!CQFklq|?(W8Y_D}k9C!5`#WO~ER=C(U+*t^%6 zd+Pm;&3gq0rMc6WeD3uP0bIVUX~v%fa$_+dh-u*yITi1t(4;BFC)Pa#Zv5S1gdhNw zwG~9=l&HdeVS{y{B;vP>6mleRRHAv1wXv@v&`#0jyE=M3_j5J1_eD4 z0;T{!`I6c6+r9>~yfl+$r~M}llm2G_X1Z1L$4rR!{~`)A2}Q~egXFpVUHd<&Lh=!T zzcZ|8IV}@|7-XKoyoWJ?c<2528$s05DVV8`!Gv*jD?m>iL7<1>hdEC(W+GRUp5LL! zQV-bVhV~yg6agUG0>E-?iS|Yswj}_~I>JK=p`F#<2uei78jxf;%HwB<$Y{DMBoFlj zSs@hkdzd?ZQ^XQK^|+&|p_XwAW1|7{l1xBrB09!{73*5}6~N37OM9Vi+meOwZ0XMk zzRpWO*5`C*8>?@Kw}4RfiY4HPW(4Es&jO9+6w3g4hH23cY0t{AUK0dTfpTN1$u|X7 zL7-3g6Xu_?V*ckjbAho6LwDU&-#&+wbebuH{}CW4Bhcn&aA!AvlJ1<_8GH99Z4c}I z#FuNv@0V%_H19*dmSkf*DllvEbi=0rGj>`$2`>R*{q3F9w!HR0zTjxFETFyz0$oClpFFz1uJ>W%52b@#wkS>5uCi}^X5beU_I=_3eW zJ<0M3X%Pe>P~GWW_pN`3fB&1W&HS%eS4R-g?s=F$Or5{mUSBfQQWngA1up}`?4*9u~zSE;`-7bF_PT#pUL2LP$p6ZFrmWKB6;^Ud|vkB za+mh{eeIR`yA~!ml8%s8Lu3{rTeMcYN{3LxyYkMsyvGcGmZbpRv4AIC5nILxGaCem zNjzG&&7!&O1-#TyU$^o+p7pH(UU8?z@JHPv&BvfpXTLh_lq=MqCNQeWo{2yved^4S z{>v}Mo&os1>0&p9lW}3dE^DQV?b+j#7s@qXZFQiTVdA*PX~Ig?VRI{=Go{vE-l_>_ zTn4X;c!v=@{X&a{q7In*9HSlS5EGw*tA=fb%?@sJxk6vsPuOb3A?A2_Gtq^Y&U z@t_=a5zzdMDhy8T&t3sYFYC~mZ{+imfD5P}aJl-~chU2X*pI0%{TU$yJPpIAaW9Nl zh?eT>Jsq?}a3zgO$3g>RI|d9+A*^*GY-yhaU1U%nRn9p-EIb&GW=y5so=sD>oGN#V ztCBT$@QpVyhyBF7)x4N}9@-JtsYcVwE9O&-qL!9;SMS@T>vMGT3%^o!<}6iWkjC&9 zev?Rl!u2FexhIT%nGcVRAtcYvt@O{LCoBUz_w@-SOwUC?xvIXTkC6Xfq97Cl%P#f2 zgLCwpDfg#s*(v`=eS==}DuRVo6oh(#mrnIYtN>X?W!F9VCr&8cQbj*=Z$90YbSxj- z>2^Hoo6BxcR4}>2K%t+Vks@d~jQIm@19I;|-(ZlFNmn$uFZ_;9=xitbKho}gRgPPX z+k}9TX3)E>=fTHe!6W`CG}wd%{JWBcHyb~8dghiO^vHYEqC6@5Hng$Ez`~XW)~5s% zMn49icl2@RiM!WB+Dm~VueFcBa~ zx`dC=`3v#@d@KH?Zmr{a3iHGoP%D!_?6B?t?JyFKSku-E^eg|4%~hsac3PW z%%2oSrUikWvkedJK?3(AR2wiYXWs`JEz&ztGl zSYvz{jo!uk=(qG^B|CASvdN+w8h@E6mz_pNMjM|93QT=>2R*zS?v9M|I`GQ#p z2iGA(2vcWD$=Hk%U-^|LVjzE;ux9?25UL!N9cF??0BkoFhRHfu8G1{ca72KYP$vEg zFRw&Ux`t0eG!&SAPP7mfA;1Gr`0aTB<)^#=cnWS>5NP#+m_o4vEF1Ls1Fk_qz}X6? zR9X_(bC4oP6Uh7W{E9pKuI5djL$749`8k__NfY{$^u5^*gYm-@y_pcaA8PS#PAVbK z%!^xTkVk3s%nw6v7wx3+aYu^z`@lMV5%d`-^*79vu&Iexf^`p8{~o=QXbiIc5A$Df z*~hpwMk)8QE{^it_WV&>G>_3{yGfs031L()@4)@NmL8*NRv^|=UjZ&5lRRjmFhvAg zo42>@&cO|Q532-_7s&1A`2@rGXL#>#CGZ@sIp=xJuw*VVU$Ti$bpm4U4_@@*$kt|s z)4%mI+DTjYjr3>fXGYzl(ys-Vh2n{`N2>D_R4eV3aZ3WU<`UzM%cju|nG=Ma{r^4W|0G*J0=H71~9dd7#rzOxkDDErB5*xDW#f$Vx=g zQ4k`4=ORic&plj`s}OT3q~Y(mzIE^X`ANCK941sh8d$_Cf(m5=xF#w}zG)CCbaB&` zC77{*@rMCBdXAvpA!1;{D@>lqbq1r2T=Zo@)~al_l0*yIcKN)q^<#Hh~%;y&^ejbbYLAX|c@dJDid<%j75cJiUkkuwhEGL&{U^;Bv?c(Yy6arKbr!1cHdV2q<`n+j{rbIpvtqq<7{w` z`G4GQG;_LhKM?|O+q{}2v4!ojxB1)gj5OZ!daAxn=- zKV=-p35~(@b6UgM+B`}z(*;%4elvb~eJpKu%t&?k1)BRNbj4JjGJ4$!dzu3(ZBC4o zO`;vv`iJq8X4N*COI@Hq2uO1fN{-qfd|RLM=8JU^2CTvE6;(5T-Vu$MG;9haUx$MP zp8nyTbjOwM;eW1;jMwe%{47uAT)p2>W5g%TJ$EypL`Hc7zX>lo)wO@~A+>$QlU~p4 zVd&Fj%;8aE+PP=+J@8mxe1^U-U({t$G~-4Pgf@rqcj;rKr~OWhpgX|VuIAwUxYq61^&3@YbQ zvm=+Z9jq~gc_^Z5A10XG-A4om-X4Ck`U*H042(4()^ z5orIo2qyUwmIZ-m{x0?PpI8A7`trZJBbRugrWDoeoSGU4Vj$V^1X(>^RM zVjvLNXpai_G0qG!3Bl9_x4$HC=E3d;t1;M#%1WWqRxLF0med3TtV`MZCYP7mks8Uc01Q5b&*H2LgVVJ+;Wqs;&_7hbw?NzfT zJTLUMxkGxp$ziBXEmr9bozL&$OJN~=SPNI+qP&E6nz)NS}qe;0f`P4Ie%+fmW6 z9IdI>`6Bi-lMv^p;QfqIcy(*q5+UO{=faXUU6bdvJ%zuCj)jTm4}W;p5wy`)_hMea z)4I!TQNh+tZTFhLtL9EQ(d<1UH5|+{J{B~Ax~lEA3_79ww7V1!mI9BqOtnUkPI+Ly z&=6~nFh8^))%E%)rtbM7zrtNN;j)(^#qf{1HzPC_v}JE10s!aJ4_D};1CA&bx`gNE zi8X!Z0`qaWmBe%H;rj=r(|Ac}pdB=ItiWx8EOXFZz*ym7!t=+Yo`+ArW=*+}!V#2)XlWbqPB=sPUT{V_T$mLj?EO2yAdoRUk^B{1OnjZ-B7?RtwMt z-zI3__B0%vimB3Ig`D?7@ZOfL6|wU!=(mg8J@}(LyO8k!A&t})rXKf9@>6M@imsDv z&A7xL#N>_|CEU+~))6bgHeqb>l!t~kv^2hP4>OhUldYYOnVhU}flxbi{ky*1m_51}tG|yo+Eb*lq-hHBM&0 zFw6N)(n@<7f`H0HK$w7^J_(^&@XP54BVEtui0y|t)QL_A-rpI1cjo(NJi=|Xd6_-A-v{J@9b>mymxn1P%{2Mr#zll?|Vz3kpD zJ+ROs>Nc5uLk$_fpFY#E+X!l5)6J-SdI!rcUde=nXvghQFFKJHf0El`-DZO&bl)RK3539>_1G>n$+?m1Yij`*=6500m0}p>HRJy zKNIf^l4i|&R=UQA`T=25F{q%?J6wbS;JX7B1~ew)v&|0nPnf^cNiaeCXOaVy%UWCD zP~v>*x#BDJL1=l6`O}Wqgc>&eu{)n-h`??v)Sp@MNPJx8lE*3m=UjvV`ingWB{=QQ zmDA?5m8A;W4)GV{n4ll{Q9BGLgGGN2CN&c9oB<^d{hDW7>XPS5o4FKMDXe`g^N!#h zbW4RIy2g*S5%AQX+LMDuICm@jR8V!9`#VEzaKIm;aj zz{Q^ijrigB`qG`~3PQkJaMLC~b1%$y=IMP-V2!_BHMC`S78nhDIOp)OK0!~SSRj(U zcKOa&4$#Ix$%@waK~L2wU}I%{R0ty_0Ikp$9~0QSlC!~|IwapT@gIbyUQbL0=~AS@TqqX^Z#J}pG<2e zyY)xXr(QfCH1p?O{9KjW`(9Gsb?pIwF}jaWG0??MOMu!J3jkLc-|G9^X#T)ceaHyr zk0rpDBZ&${^BqEla73{3J(w>R0QMbN5OOMwdnIHyIG>MZlT?Hm+z1e{1mtt0uMtg( zwGdEhQ71%{Wf~PhmBdiiem8467p@gQ>98CiG{q!|AfWov=Cq$=2GVx(Kf)L=-%B55 zT)Uq{=Y#;#l5X@Zsm{V~>|2Tm>vF^N&4~4U&U%>r4V177HeSb7c=FXs)5N>^@ux;- zLMq&)B@LkYP9dOG^;K`lO!*2OYw?(|WAcv`U^4zH=rNpE&)rY-jW*m7hG6g-gyEVQ zX6|bkCTh^0G*GTTUZWuBmQU=|e9J5P2C=z;Pi7S83EFwq|Dl7N0>H!%qo*FAYS0yw zrA}Q|Lxuytt@*1#C{oW15PmilYEJ-Z!u$!(ehK`6F7(h&&lyl~fob(w!awzxb$#z^ z*qJZ3S<$D*PDnU|<6T2P{%P#XS?l0&sUw-8k)Nu6cn@0st3m+v={&Svd@MX)>mib+ zyW&F-6npdI{lz`IrR4&LAIEwvRsd*$P-=uHkAml#KV!S#t{b&(vRTr&!2Xj)q#=1% zrP-PPsTc5t5`Upj8`Ql6CqjUd^stFPRd(9Nz<7g37J}IL^(Qehv^g@Z=Kb0gKX+?u zQ`ww=)awj_5FCgJEYG?7o%J=~M&EMoz!_Ymbgy5rv4wRc)h%m593}A$aJ5u034;pp z%~fOgRDy_=v=xrzM0@5vH}zh$YC{o>@gO4dhwW-y%<)>nGjKtW>sDj-^l^H}HY$-#$)7~PxtmiIxL2Sn=r_gfv92)7alU?glgg85DBg7Rj) zkMe-x@3YMzK67tJTVkP22pK+dnQ-+l8!>Yl<5?S&5Td{>tSIwiJrYWcWBRd>!OS5Z z8#Tk0&1Fe6sy8YKRV_FOuPs0vv=4!{WlqQ{;9CKq6Pser{QkjV~}Qk@QuqpuuJ zncz!0!SA5|`FjPjpJhgaKvbH)LZ%sqhwuhPXRo&Pb*XA|mRiW-0DS)cTJF>kZrsyTw_ z9IgDIKEUGXE5;dT;g$t4;rH=b<i;0pmNxJsmd}jL7H3h{`Wcw9OvJ2HE?FM(7(x%g6Fru*={(;THC!~9ps zhbtUjWA(izUBH^N9{joBLQu~3S_s%-hz`>I@=jN9j`t;hm_IHX0Ac=t>)RnfUMU}t zXX*+d&1ToF1KLlI3rhlMc-DjXq%`FGec|LTjErge3JfOcoMGfNPcztA{~xUn3- zJAlK@QoisdL~op(-uj!Rl;d&RoJ4+@{w#}lpTQ@lU|}dR#U@%`EH{znnYLN*tG>Iw z(=BP*K;-lLUIKtp4}2NvH@r=Gb|Eq?ox`Ha?Gow%0?tW?-RY9NgYtuY(&jo0clV6CwW!#1(#oxu?IAbcQEjar3Q_1gCC!e$!oW z(_9`XW||BBrthr9SF&h^}{i&JR5hv`lhY*085D;WlUw#Te zu9bknL^_1=XPr3{y6*$%=~+8P2zaVBQVU^9FqxLxRCCwaVDb?F2zY@oB3KAu%+Ix< ziDwH1QU~tdy|-rk%xzum*xkKM{s=I4zuxa73Dc*Hb1)4oI6r$O*obOr&Ib zQ5OQT?645<5Y$Zwpn|F7V0wN}1aa~Q_eEs9DNk)h>*RDwT<6hGOxipTKOHlGdPA3B z)_`}47vUNy^oyx_w~0;TQ|U>g*qM|sw64eIq7>X{VH_bqHJ;k&%qUOR_}PO2;|E~+ zj~Z+H%L4Eilb8b0=!0`kR6jeK)5oBg8}rla^m2toAW6@D;?F)8B4DDRJjI5g!u&J; zJ3|~6fDNB~W?y-;exDbu!hqjH1qBvx^g@JyA8LN)UBq1rFT(sUWo6-%!_fYRiy(ju z6$?NcE|>2ga4O@Ty&vZU0fjvU4=eXv0@AZB0O2t_zum1ap^=X&@r={T^t?WkqzC2h z1&&$ApLq6k85ougbrXHo-PN(R2|W8Emc}J#aL@t(aS;NRbm}D{^~W4k;UQSjM8lA> z1_#5*PV8A0Uk%~wA)kU}@QkbsK1>x?urvR^QXY*r)KhFIs*g1l;}dy_Nxn7JVbe z3(J36&aRKK7=%|h7oS)GDB8?lE<^{QA6O#5jM*Xmn6LSj)sDZDz`F?Yq)KK-YjdQkvcMu>xc% z1*RXy&+1a0+%+R+4A>jM>8NXsHQGOLr~1+NwDYc%2%mycgO19Rxd_vD`f?}pAHnMg{SKeQ^n3cZ{O+qT|2B`O&`jnigjG;a_NlpS-kS;(8Z&-bolexB z<9>OqbLxR7HRf=**ILfkdPz+Kuz<6rbU2e&gWZ{H^2R-7{-7lJD+L_}qff`h-2k#i4?STjma2c31 zsdFt0NXARFUDj}OFFgU7cu90q-?om1JI^JTWq|ckUVZ<=FvCmV)H?nc!$(ar)`i(; zLmIR%8O*KCX6=%%K6>}Mm^gqG>c%s^5EucPd?1oyo-Z#YYzQ?NhAVwrJFVv<8hlA> zwukc6A;GRm?5d!fU-o?f6$rysp1a$x9AM4-5A45yKj{tt-OJDcO+zCtuJCYi)XpR> zQMszUD-1na{!x1}ATUuNBrd34h1;TR2Z&}PCaEW5&0o#C@mhq3KaFn!Z1vdJDLD?h zMGw4uVcd9+x`Q+K*Iy0+i=N?2WjUU7sG9`myioG{$L}w07#{%jRm_GZ{L91kPIt4L z!${}@NOfeAES@h1&E=1(GwsnkWvj9Y)&ezia9S7WF~P1c^n9gpV%fs5y;l(xws+>9 z7OVcss`_rAdo@_H=%6tJvRSV9`v`pF_pt;qqj49?x}W^*rZnHVvoM5<=W0h*dg^Zc zbFXHd|G6&ixz`ak_RxfG1aDYvir;0R5Q%0^<)ifn*elHSJh^50NdR%D%z5=~W{`w{ zYeim4naXw7^)OQlH+3X5r z<7@6R@E#oThbL&7#tGBEzd4{mh3BKlJgG2fTH2?x4Yrv5z%6}J2#&w{?Kogs-Te3M z+cUiL-(3AY&g-y@7xxx)`0h`8I`a5q$I*+6zq;7Z*TZFSxtH>We^Fd_%e`cSZv_c> z)_8Zuo=wF>4XF8CPgCQsXU3`n?X?mYeyMlCQ7+rE^V}CiMj{*h=udWT0jot|*S!b> zI#ea1^FbdusgCW9+Ytv1e0$C-&MgH@vs0LV5_hJbI0#;te$tg2M!y6XBj0!Inx;RS zFe<=ETOBr#xTpF&f6=+YbXA22>z*C+;e1(rH-9$$k#Zi<<3aVqth_?Z;xPZmx=PgR zkws85G+BR+Nqa44A}`~t^=lo7+agJiXv~)qNOH-^EVp}1=|SuGyzD5R2&p95+h1z;eU-E57gLZYKbk)RO@C*{8T(6M zGt*aP>6b7^%E023zT-LYARLPjkTBdZ`yPg$uj2uS!gu`Kuy^DySL*7R-Q(|NEnp7? zOMA7c0JNyh_-6iL{0IWj^t6dRIPAa3Mp@o*Rptp?tRe^ne8V1KndJG8MIYY3cNkjo zfBf5ju%Dm*<=_5x`pvT-hL5BuBihN|%Zz83uJzuK&s3HxVt{i^MKl--#> zIPeK{{%5HUeY_I_enP2VUP&T)e%Ujao6C=~0_-KLl$m2pu>!otl#|}>WbV7r?O`Vf zs6!(Jlpv5v6qk%4IJ_SOo|@__J?{GMdE3e4oE1uasCPl$mraoCx$!V2@4^id!aXDe zMC14Rr|KKVA3^~0pJrr;ecoAGKaZ>{AGupwCVEWbtce3*{(h(*Cipop(G9Y$L24s_!_WPAJXpgKWIg|>X{^2@T=%gXSm)-*U&9aIb1nw3WByei=V5(1 z7CubX!ZUC$%%3!|G(`vij|&xs1&L#}lv(8lXI(z|i{a&2OTpGI^Nh>b0S_gp;(z?Z z(8Si8&tl>y%{gF<`cW}(p+o=LCE@GW_PPLYr%QOk_*2HZhCHoBN?;2>odUWqCVN@) zCHFr()n>^s(a!wyj`U$)e(KCW+CLlU;MtrsnG9cr#7}uJ{Q&zI?!}bR{sS<5P7HLH zIL7&$5RiPhnHypHF#0EHo;ezrwAmj){M9eNp39NM!~Fl_f6?FH{?5t&=l}ej-GBeT z{i}dW2%j`IPm?_*{JLad(a^S;+51cdSVI?GrA zn#S(T?dKfRPc(5yZnA@m6kIKLWfP3)zY~5KV5|TzX&APdb(N9fsK?>dMC3Rg_#6qWLESoILNYF(qmh0+JjzOd;;H-mwuP zW3vLRci;EAob$69k&o**e$nU`8Q)h{_j0-bKsbzX6#{zt-TeuQ2;)zhF#bHpWv)jE zfJULDJT$8gbilNr1c)2q?TzsEpc?`s08kd}0xQ6iEPc2Uh|3_-Z-Dm1G~+>8G^s?DK~`NxB693HwFNe{HxLkarRVbNKU~Kxk zRJ<9Wq{GvFt4=dBE~F=YAV|pbs8M3%3PF2Ve_!`ctHeT;`k=H@ zH!pQt5p8`|5}1Y0!b+QBkAZq%(Qu62y=hy*T8^I4Ohw)!h#Xn@t9>BDHzM-+DpVYVtfczUII`#{~vSj_gvR?<#!(863~UN2m=C5i4mI}#u|C- za^mV#s%APhd7P)Iyv+YMH4pQimwuS4q$V|~?n%eh9xLjotrnX$Et+i55Me-|AY9`L z(0o5@ukX3*99)28+o{YVarZg<*EwhZSikn#YoF)yA?Wxk0C{0+fO0R|!jiYX3#|c2 zjQ8%_j~7S?X>DxerWr7Od#Tp*Vn5Fw(%KoG)E(uG1Io~0bp-EP(xcnzN-P1EF&#Pf9>?d-Qyo~+${ z80Exx`Mdq-4K4AUqtVg(1nAivJ3b)#Y6DCS*oKL8IsiTL;rZ!jA5J1;1zFkU-tUuGw8>Np=(igtxyosRl-b!IbUdd>Yg1myQrDk z4I{+)e52cb`=HzVwc6yv9lif{cmM5S{bwV;E^m~zb)Fm3r@jE!rO#tNCIf}QG@Z8Z zAluG+KkBw`-4pKK>DF(y!_PL~Z2f(f{sz_(?`~|~i*d2>*1hidi-+CuZy!=cclOn@ z2r>Q!tW7qp8@!Ctn?tL}8b5E8_G%H!G_IDdIgIb7YicMxbCE_>!31O;TQs|f2@m%J z;_nO&h4?)|Y8fYwL-II(r0JgNSL2)~!X*5`WRz>l8X<7)^r(j(UP0_#FZluPUk1I@ zbVbHcGZ*X@L?$K8UhSL%VqC@fLgqrb|C_WpAxn$^-@v!UH|e^6&+?qMiC2X*`8|Pc zC12NIsn-LmH%`k5j`m>!@fQ0a-TSc+2&2BriA`Kwtsc;3bRoDpp6# z2zWb8^by~K7+C;`{!GgOY~P!`-PZNS(l*4uy;pmn-#@DHOSn!GHQhr9Z6`r8gs><6 zx~~WxI-%oBlz)gsD0iNc?gbKgu>;uH8ZM>vMx82yXG2t)ChpV|M}m@;(&8j`eJqJ= z9Rp*@pVQwwO0A`e*04D@4;TYl8`x7rik=If^1QWtnzW0xYLV@e7;YW|!7~2!k|LEtBYLc`x(v${cs%^<)%zyBY zx4Tat`&kYjTrHFM`Fm|?`Z zE`!vI8y~cM`ZW{KN0bZW{NGm#pzgjN)};k7zyu(jRh2Sn-U0~mza$cuMhbQ+2tY+M zu6-HyL~I!)RxGi=D-hy3Y3sGCa~#hRdRnr1dbbMIw!nn3rgI&iJVI*3S8Gup%efA* zS9{paCix8EAch+uP@p3Eh#*d4*FuQP#6R*SqvHYLyssNF;bSLQ`YLyM2tP13M1=UW z*Bzqn!H**#Bn&ebQ4XdPu>)>k_?`oW6i`u z3>}^nk+MUwXN|rrJso!$(H{)ecMi4)H$@y<8WBAL0){^vwhi1``k|%b&^wOw#u3Iwrux z|7U-D+I{rtqh&=`Tz&ehqn-)a{5CZWugL_^w*$!UCeHZJ=_dY!VvQXg;dD@E7flO51$7)WoUbmCmS$`Z@Tx|E*D?TT0p?N(jhTS@MV^om zYGMymd}Q<&))2ag zI-YdEOh8kuX~2up4V(ih4;{D09QFQK+ArXHGm>Zl^cRM9PAg$$(kc@W=XGZvEwoLq68}=X5r0Lr z13hX=yI$w$PB8%hS_h2qI70yh>36~wpyC|}I+EmC8eU$Yhfk@l)w=xcwHiq9mf{%$ zsPVn!knAH2;MTtQU9mkNA4>pwM^y6m%K#&AnncVRfEQm45#E6KQx6Ydj^%?w8*~kh zs77B%+wd2b{HYG$-dX^Todx=}c?i9pWeGVFM?WWp3&>FwIXJP;U8J=9|FsKz zHUx=bJ+E&)k+TYH4fx~RA^b1_q$B-9{H+BTRIVGOfA9&gfSM1Rx9>lQxdAPJ!Ta&K z$4GG8-_^j6Jj1Uera_{QHlZs6pz#3Vuf+e){?DJeScGGuA6t(HIl9mUunh3CdiY0$gUy1UUX>;f?W{$7JC0Q-kKlk(L1@biJOL~TICOXK@FPUmCmHTSNUYruP6+g8A}KlW-bl?$w&N@-d>7;0wtaA2*rU&MecTiWtlGC_gy z4Tv$2qu%x8^f(B97z?uYE#ov#Tl{;60iBVMo@dG5VK4%!uh|{wThz2PKZF*0k9wM) zVgeRO*$^SY^zF8u2H~U(j*4PwL!S}OMsl15^U3$t2ZxpdZ*STDQKQNgq-Np~OhBf4 zoa!yr?>YlP9s*C*7Fw>2`HMqJ3_Q%FqyV*LS^pr7B2W^ zpEco1vJJS6^B>SMRLHXwqF%*wcuTk0>Yi>%MeD}TG9b7xLKIUGOA5){ti35)4E1xD z_1S8Fp6A=2hNO=HT^k`y}XP<`s9POZwDGV2Nbx@aI$W zdRi{#?o4ap?E6OQrY>kCdCN4GReQ6iiMljScwL;^1mM=!;fm7y+2koS(?Z6&7f8c{Rz9ZE5N+&e%eFoaZ2iL&vQBJeM$t_G~(S~`oE;2mo?ngd0|9$rPe)sSG{8Rbk zFxF7N;5(y0O>5Ch&gD?dO!Qz!r4*LS+(`JOax@{ytN z5|nQxZT`)2i2-|o^KYJayKirGKi_Lhb7Px>x&#z+Bk^Ug`Ujt-5K#rCo!j539Z~@X4+X+`$RZNSs;l~UJ zGL6YVwG>vQdg{CiDiLRjTGDOPRi#|7D;VAT9cn$!N(k{V;kOL~_d!%3&}Gj|d-`&c ztVz1&gfgE}=IPsW?tE{y9nT6Q4N)!X57($UaY^%5EUtUtTM{l}&0lroGC^$Ts?A-l z$3|U!9jea<2ZaF(*icXhv-38)0^eyesn2N&OZ!g2KxKKPsJ@FqDu6*8NY5(Ez>PmO zp%FX=_{O;~Mip3cs%Hy0Er>s2kEL5BgeAY*vwc<@YkrXOphk`Fa{p$9Ci>h~8-N%C ziu3p&9pb+z&XS0`3OLD-YwSj*lSxYuZj2e;!cz zfc24)Qg&Z3N2`u44x+EJo7-)DmhlUC$zmcEcU@M9#L*ALf3D+e0S=D>y#2Hiew_I* zj^@8>c_X9xVXpBoUvF_(v73VA0F;R=mFjfEdXO0B5Nsop?zxh3&6HQh(88<{GFW0@Q(fW^1Bb==WksE zAJ|NXUvZ-!`|7tbZg2FJ1f)a5#vf}k?sO(&!4Fp5Q)jbn;eFc^f*HtfaeFx*p>axW zuPAv9g*eHB;>ZW_|Fi$=lkO-TlttOs{5d)~69do+Jw9kS1wwd(_rXKD;}$&v9K2y|u2kvD3z3CH@nHq7fh- zn;CEt%ViT2Y>YY*#@-6I-u-^093MPju(n)Fgy~|#5Iiw9cpm16yKB04m>VWQHjcwc z-I@4rqFw@0#mxTk7*s~cWuQhrh(CBjul$lC^LB)@Rr8kStOf0laiYqe%;r zvCCZ`?n2yn4aPL~1E|e$V;lKm*GYLOWmy^k844CMq_Z30h@h=qFV~De`Y$Pkzl#v4 zl0WzT+JC{4Ju^s#M50{wAfga}l$$maPMf8+f_s>NNgDsKAGr6|@63d|l2XI~7(AYQ zZ^;4!LIZtGTL)95eb|O|sU)@V)R_q&9_KFYe1oPr;C(PK1+Xcwfg{rYxwayi_^6#YwXLyFEq7itG{$tj2EY|5+&^C${XKZt z_V<@$F}_;bkVXFVtu{aAI#&cIMX{7oGv@VNnwrOli|*b|%MTN9QFbAb?ZG~~3x<+E z#DBKcXp^@v_tk4E%~>iF5I%VFqWkdf&7KL^x;c|ZpfId`!POU*{%a~yKYzd~;_tk| zp1S1pP_;q!IReJyca0%AFHC^T5Z>JVFm8hZs0q4e>>8Iv5^FU@C>mwIbUPXzm(m9j z8?p&N#Wps)>WP2JZO1X@ESuzCGH^K}{(Okn+ebOCzBR!g=ct6Brme_t!e6t!>>4(p zG6LiLAnv8QU#aD}jqndkSiN0|cEqW@d;0(txkUW?8N95o5rZU38BITgRA6RA@o>2P z1WyDQ12Tyt{Sk(X%c?ba8$v=0(3SvN4MreA^hJySq$O=GYS%(G2<+xJUDC!5wL)p_M7EWyaSa?0!q6645g7ht%C9|27ZUUT8ow zK-w7ahG-_h9xchkbzLuSb4u;VoMTSav6jy%0&o8q&qcIyJ$leQ2rWQH@ZC{GA@)>Y zLf@`0zq=pu=$re#49Oo2Kn3u|Y&Pq5wwL376Ya+lnh||#nJcy2s_VzUSl*@dmKU|Dy=Z_Cm#%- zwG10yJ<&FAX#qCxb|}$fH;aX5<%J2@(%frLmw_`QI zs9=94fQrG5u5&0m4Z_;yTz??ewYJsa^yEM`0mC)PX|8Re3I+VZ{W3uLh^mSsZ*b>o zn-HqB?`JnAy(?+xdDXFXt6Cw5& z(zsNqyc&V2bku{E;0*uzVnQZwh;Ze1vHzE&r+p9-9cxCENf=8KFfMQ+2{A#HuNwQf zZ=&7s+rY?ArUvQooTZo`P(nDY>bboMli<4jkf2o`4FH{z{bmNdH%2r=q@^wD4(BvEo;VKt>_uBMjq~h} z^*l5h(h^wZUv~r0?#=Q?Pfp2wrhRO5J<}a^c3lGwqMgs$)CZgYQq+F%Acs z0mhJQDtOnex7r&{*mJ*-mc@i#@8D$&o{xDCp7X*WFzY>2+p{$ihEuN)^?6BQum;b# z&hcO^o9Ag(rGvNnmWrrzcFpA2p?A);=1ZCU;y6r=j5r*EtomK?xQ7#}U=p$|sCl%a z+dZ1!r+5$l@uNrGPyXif{@(o^lE0YoYD7$?9Su+BP}nvQk>AH9FxT4t(dmwsSsLT; z`C(&H4|9Ay{^Dr4j;{RVf_cYS8{%&pkrU0g4SnO5whhmVLF+uX*B-o>YPn(BefIFF z@YPKjWj4*(^xMV+^DY5_xO}7jN}&}T1s2)9{ehT(AIdJtOKi@o_tIr^bhYfG(|MEj z$@SvzKkIJ)?iYOla-Ht}N!PvegTB8suv)sb1n*6(?jXs zj;LD*;w8J$L5X_B%L|Qc{mqX>^z}E*{f;&YqL!%|*lVCy)e0ANNzHjh=7Cy$Obi=7 zXewV{yPndC6}db4bwb++)G{IICV_we_3QsNQ@Q3HmQ2lZaIhW=_#OKq(V2P2K}$wRq>vo5gJvMyn%sx3fb1L+LovxKQcv|toOoCzWRA;~M<>VC3@Hbiaf zc8NG~fmK_xCrMA!?|Ib#N(k2A9o zl`nsg>eq10!>Os9voC>I=Ik)q&)bi@$>lfYmi-w%$$CCVyUUa7lVI&~_S9zR7 zrH*tBfn#eM4sQmIrSu30zt{ZZU@^s2;_tVxVV#L##EW2u-A1kjz>JNdj!&myc^`~n z5)Q|M0Amc~_=C~6(cf70Ux`1O3GAKf4uqR>GrN`QZR+QY0vIB%=f^YkJReVNCV-PY zF(8G93qo=Y7B=Cht_?A`Uek}d^|P*}h5;mjn#gfhKz=_b{{e0*7+B&4u6D@+en}Xw zMLXW%XTRF-e)jVxzU{-QBz@HWA@TRI%yTui>c6e+j{EX}OCPO*ec2J*fA7v9=~y2B zUVM4d9ep+0oifPPZWhKZy1o5w6HfOJ()>U3KgDU#?vDO%bf5g~i-`Tv{Sh;rd9Mn# zZhf!Yx$~o*_>c3M>2mzuvnSo;>xaJWjvqhJoH^FGX}BX2KKnPp0CeB~U;BJphRmm2L&|m$IR6rJ#VfVdaJUJ;>3;2e>ZH{`PtH|8o4b<_9emKV*=eL z4lkBOQXiR&LNEa!IR>hc-F5Xb=&bJ>R)6gsMM5fsAW=txeIE4pA}UDfz0{qA7A7E| zl;yq>e-Mlba->PxRE8+Vw+909H9g;ugAy%lwd*ZJ+2>)E|IM05Q+~!C1T7acC zfF$jFQJtui>pplFGC}iw5PjXmmODx#MHfJmz@N21KI_6v01S`k9*EgC4Y7qT>uH3) zOt@0NiND7q#As-Dpq&6>05(-OOaQ0H!SGmN^$^{t1hUSHHiHjm#Mu!zRt{7lE z1*A|BaiIyI&zi=BxJzdr46BPO{4+maYIh<2fA()>^yj6h%rqwc%%zw|8V4231e{%A z6R>|I_rTjtDyJO8A10szOg~cm&F?JVs}lch1W*{=$zBGjR@BR8|w{?=zdzN5)4Hy7P|J`ptl~tt}ffY=^&08Nv z$;tp+`EUl2#`<-jVfUIKqAzTBsnGo7xwaTL?+T~6H7GJAfx+p?Rbb+NReBJFI_}5B zpFvyGO*CC$A;Lj3uVDztdMVi|bH7$xv2u?+$fQhE6Zo@S^6@Jnt(ys;TtG_sTtoaL zy&$ZX>GE$#{v{ej0HQb2B?-hi)4@q$Ij#G#jm4_Ar<@TM*9IhiF98sTO5Xs{xAgBg zw;_xG1imd9G-<~Kx%ZPGM9uzx!vWUKju`Ik@~);U(!G)qXMp zmj2IWe_#mdUpHgPzY>4)dTl+N-ss-ae-M97`Ard2GytgT!)Jiz?o{8)-=>)7>K~u_ z02qK1p_vM-8JlmZ=SfUP1l~3u9t(683|<-bQ7wqK&0&vFjTwkPyF~Oi&jObGr&?@3 z(s95WT4S*KpNhuk2+ZDI_9gGI$fXLH0CoewbVB%H0AK_VV$ATs1bF_~b;sDKZKE9Y zQ`@Ir_rzb3V+Lt_U(3Dh`e;#%{vHh1{9U$6{-=`gz5VklCgAW2n}8EB7AIO_zM1X0 ziukkS2l2;{uL3?Hs-}iCGXaOk(j=S?wFsYRSAeDe{nMM>?ad}-*E+}75dW=PA6zN@ zlYc2{X#1jwKTJUP;mN0vL2fp!=GV1$k2Vc}nSc-ewVZYhH4`uaTl#w`6Chl1 zt|i&YHL9FT48Uj`e)nxkIJ_tjd(6}O*vU6K-#gn9W@G;4b4dV8j^h*}fNK0ElCH}u zW05*-6A+T1)mIs|5=>yJ%*RUw)ImPh+G#Yvp)M_1>MD}_^M)qew*?!#F?!Y|;%||eV@R?pq=X>gUrB$*a`3JIEzE5a1K~DPPx`mP$E7!(%@(zT-*enrN zd{YukBvpL;tEF2-k;u;wliIg_pR5a{A-o<2vVkaTNdQElR;Sh;i9j?%YNju;LoKbd z1_vPBBK7+%P3SHW|H!TUwn2$+9IpRomO%g_VLa2GyaSS<4T{2#ff^D&_On^rKO9n) zY5>{BJ4ZiaYk-3%HEkJ-Jc#&Z4=F-@7W?FN3GqIc4FpS8CPI@uf7X5I!t=D!KNI1j z135<>SdX%59oh>uoguXz7qlzirZW@pH_)Zcg|#kGj(U`jbxt%AjCI>R@b*|Ln`sm2 zZBNK!kl9KKoS!AJKRAftbt;ShlfxtV@#myT7#<-oB-B(Pw@QS+WY|`jEzXjF&_T=S z2i8czXFGCq1F!}f>!5nyP1emTR#dt$7;J0+03ZNKL_t*5;*nWDK`4cldQWzv=aVmp ziP|f0QDQJJ)lAZpWxOM5Z`zZ+{>ldvxF*}B#z?58qDzMJgYON)SLI*V^26*qQxP%M zAt2|P#>0HBHGk|)fb~{>9i~CJZbL#U#&2#nHpqC{>|6$*$U)%`AKMTW7yH<%$z4=Ock-Q8WdoVq%Uor+{PO#HUYjjl9|2 zyEE-}rTT9m8z#+7AF{N$A%e=Iw%^l0*Smf3AG+@D|CD*fAmmvCyWjtxC5P{JhtEEW zG}F-@qx85<-!kauWq(jGr%zx1D_`J}766Z7%fufrFJ6tNsV1GL>Sn3~ZC({j@Cm~u zZ=0=+=u-)ZoIe2KQHVcLAZarJE2Vley(;)QsuKufvr-n{=v77QB)bC!85<#!1}y;J zLo~+k?Xvcd@B8aQ8>To<)a#p37>5BRu`v-HW$ACLwBU(bwF!MjUBoGZ8Vs?wU5;nk zIyVN0LcWUcH30M@NSVI`2s4btRZ=%Qr?!Ti z&$DPnK|y#j%p|v4wdr7T8e*A3k}Jf&KfO`k1M?PtBW3~wfWe=o{-~#%lMwgW7k-Ar ziB2&C*b!h@W9daiIgF@sJ}|~%I3b3y?3D5DJMSxZ9W}JXe{$TApwoQPr0)sY{s(h! zgl-kPH57Itg}UFC{I$H*;LUha^(7-xhCya$GB*f`I1xSs-i#jK9ODoMDuz>&+9|c6 zIqGK-hLNfI%s}(NtN_+1v^&L%s9=fDK|K5cCjMOCxyjN@dp{dR&eG~Id0*$+(P>&K;j4X5B6nyaJ##6`?d}ay8Qn8zdi2w>+UrIABC>?xhV%dTf5)8 zBDF;`_YI#t__TZQU$h3X0$_km{3F@j<01P(jMj^L5~B52V7hfjc6a(al?~pPk4s9s ztbz?k)K5&qMmhh%3_z{tTU>a{<)l-tjo0_oZCv^CH1l<+z#!%FYa@~ zT$28&vM>QI%X5(Gy$UeaaIAcfj10rD5%&;Wc`3wt?b%uL>ux4sx&E(q8EH@`x(er; z_*nWM>^Ft5Fwq@S2>{V-SMeKVN0qx?XT#{vp8p1GPtGt3O_brPEAjVrZD)#F6Tnut zH4O?g0@efwvo4=dv7KTEYC>xUO8fDBsMW7y7_dKBs6W z>COxRalnaOBckf}Ha;ZbD&^Ou6dVMNH3G=QUK5WB^QW!<%ML)2qO~1W(?&W>!fac6 z!g-Ic#1M*r80J6j{!b1k z-Qy>F-7lm8s6gK%{R1ZaH9gu?%Z$K8rx~sb2VBJjsPSsip7cJnGG;P+wx zm`ql6SrfpEjkN%$BK*KqonlU~X97%_FX`T+Nc_}Y0zDI8j)q2}vD{#UzbA|*VQ>$8 z;1yt_Ei(XDWNWH)OK#;oO?b?;LHsS%_l$rM!+{amj%>5L2&LugKCz zLHsMCf(Z47a_$G^1~J3WL+nxchvc8_=KJ6jEx|y@3KL*vW0eQ1D*4CSy53+H9u$q7?m+U5?LVm*CTpO{4c}=G|(6+YyHHT z_;Zc)|0=|vyh!~#)(nBIx_jbJCP5{{HvVfVtAAla_=6FsR`0z$>c@U@pUVFIlBcX*=lHdAFYmZH=jUJ~OW zNV#iL>6`cyXa5D(0E~68<28Qfv$Z*t*O#^+=a60bw#duB*D(c`a}Q&VFP10fK>T3_ zR!aY6Cj_eh$^;nSQ!{(ubu?5w1SVh%v$w_kiT)49Pafawygl7;ghKB;Yhg|V#lIK{ zqbH(6Fat0FAAOwr=}SFm03Q6Nz27PZfKyMelm5|Aooajz3AfDuY1+qH0s0T}xQcq2QET43TP>_rZc zbt_|06Ts^aM_)nw@if-BIM7yal`Uj^ss`S9hXJj#?Zs&Wy{cZ5r$w|NeiI>9DYFr0 z5g=znGN!?L2|4Rc$q^J;t=_*)f^`+YF(Cdt|68G0a4z+OZ9&?Jg9pTufqFyS? zB!HCg13-a(5{qaxV$|NVC-ADjwQPxx?;jGmI8ewBAe2fQDI?a!xzFx_uD~l)DT(BW zBpZxZeg_N)wgGM5cH~tOY9H$rt||q8e@x%XYtk<->;RDRho{)ag)}**2KOrtesJ`|J;zti)GqP7oFCH}9k2A!+Cc3-P8uUn#|NVP+yP3kz9yG%{Gyp6G zunchU{_VJ)i)K~W`_<38+i#$OyBpCyQ-hmzsoZDxek`E^iM?q&yaY!2LS9Sfxs{gt zpZ=$xb|3%c|1AdlxOyxbobu*E?G2B^u0xma}GWS2WZUG7uaJ3oPOR- z4|V1L?IwTAbQ;93yy0EGH31mq zVA31Tiz~|$?YEq1zvao7M>43{Rs*Fr;3|87Ah2zcM16i9NI(#3`Mhp1`gIAjc2%<-4ZuX_S>|tuvznjl0KYfH z*3V1k2ZZ)ASjFWB@h`;trFCe+^;;P;GX$Rrz=X4Jat3B-1k`xJycHuD;=?JBjID5G zJdtyaAo}cWGmQJr@vj)t-mGKRHpDC5S=o6qSi|OhvDELkCbsspDzQEmwd7f9t8kAy z;UE;gDTu#1MxDrc<=g_5_@kAGae+wb&L#ty&6X>48JGvad;uyzO98}l(jpMM2$&Ni zU~RiMpv<(3;#4J0Da>yn8A1>EBtNb_7r6#ruwI%Ba<9ful?a5kC$?q(wxwgr`x*m2 z!*wgUr-| zbF@&dAXCmg7za6j|C^KZ;dXA;G$kz9SV?P|dP*pR%;`NVy_#F`;b>Hm# z^FbBc97J^cL3gzOnHaV<_NE~T4YI`z<7Hy4qhel*0k~Y9CVe6N0KTc_U5}=ZZ=1`XVHck%SXK-l`koUzvc)L|kaiXsti$$pxWG3RS&2!G>-9_a#y2nU7V46&L&EGflNzk*m?3Z2l|rtV%Gk59u$N zfN?%+ZfxTa{a7-wwvIz0k(r3~vVadwDp}*QU;np60vF76?Nedpko47dp=D6XG4UVQ zJKmyK2|sFnzd!4?FaXv7ZR9S3P|-7CJZW-#rj1xU&cvUv=MKySP|i$1zFZI)eVUm7 zqD}l4=nwpX1eFv<{Swh+SL(nMy2#&yKpsAHgHFw(3D6v^Mr zH)92oi7_F60i~{{1(02~wv5i-Y)nD$YDufjtoe~sX$LCIv}S*aaA~IlOn~7+!jOqS z>U|Fj(t9T08sZPpUj?g}{#E(@5OEJ5Y29DaKVfU7Rx9nl>D>^DI@Ruxs&Qog`yNdp z{lStPgx^d6EL3enU$4>tz!aDXSVjDIcBO$8%{V-M(QR)xJDS~hcDvnoZgmI0UHYrB zK_E=P!O>5|3bo*eMh*S z>%tpH&FX*51nlS}Lg47&;gAVnUvAL?kf$;Mo)*OagFwC(2223ze=h;JLZts5(&`g? z03g=7nODMP!303`8(vdlnQ%FAjWms@m3s&wMhs)e&U=_|CXAK%hbKNWAobaPf~xhJ zvZEY=)CNc{*SH!HY!XGC{4UoMI2f4tOYAe^?3Y&WLy4oW=T$Fg8Xn;`)(Gg|QAE1} z8h}+34V5~KhcyAU4A+&&_QrpTkNx}l#(G$g%l2!h5PranK)X|+)-IJph6zCOx7vCp zKclGR)4eieG@|3HA==TRL<@cKSI}hP`ZsY428=jv`KoIa8VyMrr1a~-Plj;-Y z@?3MaLmfBO)$UdGn(&ieiNEuk`1{_{KlhdRb8q4w(m(0RK#*qW4g6B=?=eAW3Eu{S zt(P=Ugm?H;4k1cO=USKd93cekL%>5lm;g_3G7v#K7c@Y$3BTX#?1hXznSW|a`Upvr zKL}1w_$eqr`iJmOMTFXYV^I4g0s1FD0*!%TdkaZd^$I^g_yIHkR$)8eNFfl!zpm@| zM87Yf3$O_v_NAW2o&?)8#zE7`N_d>7PfL(cG$OS6w6h$2MqXK>COHhZaE0 zDD!`5L({&^i~x8$80D-OHTQaI0qV2N2sq9RLBDid+f13ZcXs0Ms1W)?d9vJjXWHGm zwL4${Tqog&|Kx7>mmjUR(69NB{sC0~Zbz=`d^yxg9mW?=x##4=_LRRiES z!c|NFS^!{v`14=@uG0jZ=Kx0&aN`Xl+$b)*J4U=2KMpvAg7uy?Nf;Mji;LsooWCu? zcX7TX_-9|pNI`103)UmW9W5reqpA~mcET;_R2?K)M)+M5mc!MVTd56T=x91e{$5J< zy<%hFCQ>F-zgA|9qPUAZeT{VL4nF{zWb6iDIRl#j)B2_vXp_4qka-*BA(|iv1|Jhu zon<=OyAjnsWA<#HYfXf$7jxD$^{jyQLGhmWybtM4NU{erA4G7i@^Qwq%J=P1-$&Ul ztpVm6*|2bcJZY=Z#9_^tbtpJ-Tt}YBGgq5@4MFmb^#CHTiP={`|L(qEA1sZM?-}dX zsm?|h>+NG~+Y37Y^*jCOb^S{Cn}!4_k+#t81&rZx@bb6|dC5~s?BC@+)T8VI(4^u$ z?Qn%OzAX@s`VHU&K^Ou12?)`Qy0wlE7%9dLKX8nEld^VX1KGhO zg^hyNm4l8H(W$OUQ;SAP)D`uW>xiu5LlFxh*iw}yU72e-i-UuFfYYyYYv0%NcVw-EF zFbd5;O8uUWPi}rkOo1jJ`A+4&nWBZ}YOIb1yWSfKA6U;*aE`y$vsGWu=s}=45Q;o1 zj~1dzS+q2UcnGdX$2#9sd3k<#E7Z~wOPR*OtZ!TBpXq~lZ)t89kqKY(u?vtm_Y>F5 zF_;{fsebP3o)5%Vhk_o)pQ!vbd932!7#YRcn00-2H>!+ni5oKB(;jgEUlM1(Yj#Ns zh4W`Wi}?P>?@eAk_;jPyvp9a-_w{^ zpXRgUy5Q``zxbs4_^*B<{J-e-f0IiK1>c_Pz3#uQW&F40RO+bB`J1}-j64-Sg29v; zPtVi9P>0B)L8CXKW5IBz4bdBiAIsUs54ugA_zB?GV_Qp4hqrzxCgAgk6K2=E&=QNZ zF6&+r;B-}Rp!xvJP=<4q`3L_TiwOX{hT31}KHgIu>Hs5fA|r{}&7pc_Q){%RlDOce zvFtS$6d@MBys#${6<+~XOV?zp{vFmdu1);M@h`hKCkg^bA~82C)F>L#)*<^k+{23K zmpYtS22e!hiPC$2uC9^RulKwo@WMwt-B4ZMWIwMvuGzI8POgb zn|u{`Jiy$r&z~{xwbHA~5Pz=yzY%`DWB@?gc!4|3ef@J;Ax~8&#J>WBAFzQgMsN^+ z8^f8%5yG&U_=kk8a?oBm#S373T7?OrWl05T8en~$gQ0-q7wwsGqo3K$7C#XIY6N&g z2uu={+IB8~!bp_B?5)jkPULHkJuK_Jw|-W<;~`;g$v^(Fj^qWbEg#q|c=;?#FT#I1N{HlBl@^~9uYy}*25#=iG0*+?3j+|vF8u@(pjfY;j~TO%KmIEj{QXp8 zwK3YY0(Os}A=^~A3cPb=RT^>Nm=HQg8P>l1q`TPtSAFbc<7T(Bdr!`XKJVkWI7_>L zo(ag*b&ciUn*rE*>q6TtI27Z&Tg3$MthsCfApR{BLMoP$Q!NR=0GJ6tBPBN#6MwAl6=f*q4s5X%a1rNyu<5-jFtK6eNq7ON0{BO0WfHSIx118@oQ zeFpImz$AD*fi}_@WNbGkm@AT2N3E)h_9^dD2~G z$Wq67Xam%6G_*7U_^PkQh9>rYdA`qtpE#__i8Jvx;rD*_iMHl=-MiJ{FHl+3lF47Q z?ilqI167!SI6VyH3}>&<$cy)iw&q*1-KLvn&-RYXUmOJ)Lc@_` z!H5qPKWB_v)sO4nCGkIymH*I*PbL1;Ysuf&D8x+ogAov=3CTZSLQ_%CYBw+dAa@gf zVv+oF$5LcEDeYOee3=Q@k|#aD;n{h+C+Q6x^gBCZAaW_q38Q(~fX zJI{`f`ec<4@dq4QwMtxQDw1%`Q+*M>2$V*M+uE6=df?Ws2*2LlyBQ$i`o zz1~OUMR@JhTru(g_~V~yZirzn#+V;*+^KICW1YZCOx4aV979eKoSolP~8Ai#2NtG6vRHVbSBY7 zW9hqiHiXQK00jlBxH94g8h|A|Y7(*DE8bsq#TGyaG)Mvo{l6yg96zHF|5cB)p$%yw zi6Qx$Nx;|FDu5{nCV;jw14hP*0JC2qnyCM))J#8B!VjW%|3dt^hmcM*R!sb<-V!+1 zz;f-e-NWLV_y-}@c)bLwd+?r_A;u1EwWQI*qNxesJN(?RkD$JURm9(I8CgW&R{_uV zSYGIeRG=C8$*IrR4LM&(3vhNaWB^c4BKgmgF*xJ6T7k6y1LCjvO8loXhQm$+!f(5w zd08@uiu8j9fVpoi0EFLb!j%a?t$+NbT&s$ZZl%QUebW1Tayy(SyWRP2F%XvYk6{`6 z&N9^1yxW&+l<9uPvHa0PSThx@=3 zk_X*!Facr&fa5RsLj&;P_g52X^1uZA@*DF7Tc&yexmsRqi)y`J`?{^ESDL2zNa07KkAt13X?=i)*m1e>KA;lLn>(>k{ zLJugO?Lo%1;FpCC-sy*u3dt7fM@7e&t>%nfsJPyv5_N~3bg~si}S-P zp^Nv_d-qJhxcZdXt@`gd6qNy3a~`x$VT?!*hRJa~_e6@IXaoBCb4`i1Ys6ITn9M?i zDu!B@od>iq96yBKgOSkEe-K(fJ04hm)M#s3i&~sDH6O;Q00v(Bf3%Nl>wGj9mm`}*hObRTr0 zNk0Ets{PaUa<;m*!r@$J*hhP*R}IV;p6w+7`iPdW%>o8>Gqy$wPQ{GH5(mpT`ZL_x zX?=4u_s`*?9e)ta0rFA$M8be<>LkhOjt?$iH^R5yY4scnkL-k1y{x;%ap3#i8i}TL z%K@i%Yql$kU`#wd8RyJVtdydk^i6=je?!K7{V}_$x9?yoz?E*! z#VAxeKO%-dmwLb8&&auK{1>ajJ1w)mb7Ylh zBT)O{nBu#nf(&Va^|#a}Zyj~-9Y5;+>aQO6HVzx*up{#EzC~Ws9`xlhO2n78T4-(# zaF;sfT=S#XplYJ}qG%fc03ZNKL_t(t$UwsLAEph*K^WShu_0u;?D?-B^5|I0zxzjj z+})7`&*4fDw|TSsMKY}?@(%cefBGk}-ETP!m-Fph&*J@`a!3#T9MIDL`d5?g$A9uK zyWPA0Tw_HzFSikgtygK|gU64%N56Wc?S!q|Ip0_S*T(@GchD`(rtT-dls|&w^X^B# zS?~Vzdpq)1ur1rGR_@O3g_h3rEeLB`X6oLMmQ16UrA?L**4}KIvY>scZ|B8-?9Md5 zE~f93OAN4>|H(;r=bby)TuufN%kQr~%g+nt7`<4Jxm*mSUj| zFcVPYqv0(r!+sh2uUZ-y6ukNd#5Z69)Nynme=#O3nP(L}anAc-7F@kK7Vg1)e!ooj zz{uMcxJ)9SYwK5uXfNtj{j_WKWnT~V0m*u4z*4qV^?v?B48|l4F)w7mWR7-Cs@91n zGktWf$;}@?ovtH%zbiVPliYJ}mG1{AwEYF4)z?mji7_#VxKVpKpF?|fpEWYdjaXJl8UU*OYOLgGV?dezX-3f0zP@znOz5n|K0`foPvtii>{MvtYmg zm_z1QK28j!B9;FH#3~@PksrkWrlkK${5Nphi(djGAwtiksA2hIk9^fJ%rf=Wu72_P ziPpoHgXx1m9!hpm3&fxEB+|H&xRrS9sz;{LH+DGuZKP3UZ$p#iX6m=wlCmF->ZwaU zBr!+bpOG~UH{s{`!v!sXHX!DDAiRj`f2=j~Jaz)lf+>aY)A#Owjs^w@kF<<*dv`bf zT+ZP$8TXCBZh>##TG~Q9`SsIrw*G!YzD!K~`^dcb_;3EY`}6C5Y;j)zu66OT zA7LWAAp9aq1|vdqxGi4kJS(61GU6O%N*lx=$OnW3S0-4zOJ&cM&-G&<7!x$hhI$>Q zq`Yq?y)-cKhZztr+H>#}RLfsk{#+Ou!qodYSI$tGrvT5ltta8960`wUD{?kE&`S?- zhpMf)a1G`m<4mZzg^64*$8Xj{GS)FdO6fm~_Cb}3qaL?YVctA0Ed9?@8m~r5#~e6P z;6TJ{>pM65m^4+0`y)BgninHKA~!aV<2((B|JmsaX$l&`u)E-eRQ?cugNeU207&y* zKX)FFA#2RcL^*Umn1Jhu|F+gLQP*#Y2{@KVP(piZ3*xVeF2v~V+-g!LgahJ#=RG+H zQ+OzU1Y1e`{Y;R)w_0tATC?>NKkzo{b3TvT$V+4%84<)E zCcqHHpBs>QB6O$KdlUXX?Ijmaf3sxP$U4`q8{px?lkTAy03Up_B>tz}AOCkL{gd(c zA^wyfLDi0JNc~SWf)&iDYfKuNz@+p`T3 z{6_q-Z0~yGM27m&u0TBO> zfBNx&_^&E%qEFh12InunNaVI6GmL-^n(U!x0>CxF1T1L`bJguifywEUC>PoSU2T82 zX#gVfnx8)i1K|2$1df_O-(lPb6Hqk(+l%|_3@1UhMz|1vYXK++c+I}ut^U18 zDU9>gSpopi0#G0Q6$4xh2~Z6VA^b5eB4zo5REs1*ld;}yq%=(l+wbcV8(6yuSe5|H z#9(AsVU;l_OCHVULG7Rs>8>QK#Gh-{1fPF#&|506a)pc0(pK(_nXI+!)m7Ysu+U%Zm_yfOUKu+;VT} zpX)O*5lH9^Cm4ZX1{6ZSVFc(Oq<#$jtOcOl`*(Dvd=md&^-ltD4e@UoF8@-u|BkwM9q{01w zFsB_%%>WAI4;(YmI8l%EjC;*jubI32U1&@IV@-pZK#2a+(P2cl-_^E90ZhOcRuO;l zaAY&ufQO$x7#F#8AFjbO7Hxou|Hpr$t$0@eXG5%l+glT9Rwl6oKsr+Y7!Fe-K>QAx zNVQ970MOcvDE2w3|M}DSBmc$b9}@(i33z_+G}^xIx^Oz-sJfbT#r23NO|>_Yd57R6 zW5jM7=~o>zKhqW@)$aY7)P@mAY)#tQ>Q3S0MD(70wHFQ?Hnq-j`0QD?b64E13|`KQ zKjWkW@j|TC3+46%YmGH*2wM`y<#dbeJTxu>RSN^ex^|;0jf3KQ5~)G_7xI+0HjtVd z!pquPUCAtP(|hV=;a}eq?qf^lU@X{Mp8KiKPEh-|LEf^da{&|Q5u?!(SNuBvD9Oyu z1cMvaE3;kD22{wW%Fn>E#exYC;s=OrC#Wr@B3eFao0b1Pp1reoj)=)f^sHC5({L!83xW(8orDc>L>P{ zdx<5+dX5PQC9MQm9iSQ}6^=8-YvWze9cboXv7qZgmj<@p9 zn%=7!7it?6$c$wDok}>^eQ!7VIr8c|@7$JVfbk?mN8iA-q2k}vwn8(N(a$Q-7(RRe zFs>mU_+X&#w53=vv7K1EJc1$4!484hP@gWe)eZE#^PP1qSLh6QvkZmlSd;V=}pY1rxSrzJaF~)|?&)yAn`=e=AN}R0pb_HSMCI9eaju@l4}WxQhnkoXJpdL!23Zam_X_F%`D5 zwxkMS@pY76j+0v5;5r&jgK}xyma~EZV@Z5aVtI2R0&m7(uw+2F9B|~Wgx1II5|0Hh ze(^1NF63)|6VfXJ`-ZlC)d%K)hd_50L!T+^E1pdG0?wHCU( z1gQLcRyv7ZujhKWw1EVs$;`W60a(mahQ0Y4vOotc{h#X~7LZ^i{w;k}VGi;roIh~) zmgu9EHF0__I$N|Z3*axHF%4}}*18~s)saj$a>UX*5>laq{YJzg{J>)&CNu#1dyV+R z1c2~?-Q8Q=?z_7KX_ok@7qGbj%Hcm-LShHUjpFQLMJKRIdm&Y_uOa*Zi~vhtJ@IeR z@eA<}El@H8L|V$?n~}7U!r+0zp%IRlKyq2fmZbeHN&RdK+Z577<7cQwdYp)7tw<1Y z)dBIx=y$3;{=i)4!28}R@F4yv4Pp$6MkjWOq{fCm0eIJD(*QH4YsGolBQoR@I3N>H9jjt!X388lG4eK{!yqjE@?2 z9lvjAA;38MDn`JJg7dF>?hC2z`P-5M9{^9BJ@MD|lc(~%pUVU;&nbbMxU3bNO3kHNIXS$ol_7X`XCX<22hrFkUe%oaA=F#ssLF zG-eQnI3ony2w+FE3U11n^-%cT?#@@``GYV3R16a^7xxI^2aZN+ns^E3thklATr^G# z;Xl%zP6LD=FcaW-hi>bBU|&H1o!`XHgO7NwZ4(grXh7cW8YaNRKk{GmV>^JFg)Kas z6xZD13P~A5*Gznvm?Z;qGLTPxU#P?_`MSSLn#-*U-3FBzSe4I=5ot*OV@3czqP${M z0RgW}0FgoXBbByph&pe@Z20Aoax{?3J$b5jfO`fzz`zIC6CXbN-4=?YFL`(B_N0i+ z;~z~bY!m<+jj?7O{m!NGHRBYWQ6es{Qy3u(E+RHq*r*iyH4dxUI899A|{uLW>fhp1*zjl%%&*L$$b z4DpS+hWLYo)}`8G?n3-&XL`fL|E35i+jlF_UX+_j%A(y^itzX_gSaC}-^AZ#w{NFM zvn1?}r!4c;br8=p0P1hg!+RwkGbH{n0uxDrCjKxDt+qvf2 zZusfnHsWt4z;zL_Yoc;rzb<6%UZn;2y%>P=ku)@wN)RTX0*D#q98ftCm;hjv24H=3QegEh4+BZP=N~WuN&G9JN3CMN$%AL=#x?_eJcLeFhcO+N!{jNG%}hX_ z|M$H>5_t*pv+5CM2KslS?N$Ib3xJsb)5My!X#*P3wn_@(U(ac$yFlJ%6v9O=ggObh zCI4El)1q8W$ZHq}fPD1fMm;iEI$29kk%{q9h{`0F0E|dY{A(EH*dL_&#RiGc)X6J? zl2q2Ai9g|E9hhPb0QIaQ{!xGa;Ib6Bt%FRs9{ZM0|1+6eT82VzZ*4CTh^7BNV_sPL zzsN~p;%^%er2g>%Kqlf;VZzTmh8ftB(2nE}@i$cIKbQu!mo*5%DzX0v>hMb^|2|N77QXY|Cf(s@TdL$3atZV(cbhnenVMTtLh;J-kpu4dp{4Nzfds5eCTI)OM zw%2tJ(<0|Uove}Z%rq|u7>T1Fbn;((`dh6t>Ex!lRN{NjbgZkmm0b~tTe)3Dy&5kR z2TbULO&oej(KCQh1QDq@gvw+HP~96s6Ap)K!Wr|z-`7H|5UPATJ{V6=QlPkahArQ6 z8G!c4JUlb2Gs41ng8?4zTb2r3X}lA~FeVT&letqE0Xm+#`?{h~KC9Ffgb)h73jD23 z%X=6p>a9|LWYLHa3f23F$dabo;-09Lam~E&ljdPrBphFS^52K_1~%P4B~& zJ5OkDzoSr-OyvSws=R%T?J%l?@hEVV4sD3SBL2AXK23rbLSLJDu}-ry#;%c64sNQ6#zBl4!Am0eS`?(d~w`6+7Fqkr2QH z7;<_@8`T*0V0gdqK*A^cj8r ztImhd481$@zQ8M97{86{PkXJvA!_$$&t&*29*mO!ab;b{?x9rZ)Ah!nd1>kB#Zl}~ zIhH*JJ5_qn_zI9M%8x(%pu00W?;bt;SvS{qx>{c;6}C6H_(hur z@!yaQ5yJtT7KWxQg8~R_>I2+XKR#^Fy+1n>X9L#0k=(gNwx^n1J(hEhWk( zYk_FY^jP68~TVuE-AZt=`YP z{zPa^07a);!Y(7IYaOB9Wgr*m83BKoX9Rhcv_DGFP-p;XJQLLc_esYUhJivM*pKRo z%JkEA3IK^{L3Rhuk9^f13COO{J1^i&c6u#hD@ zwj+juUmdj!F|t|S^;eVBFsxDkXuLTSe#M`D{xnGA<6l4S9{=L=ND88_D~FZ%yKF^L z#MvD!*F4S|2lClNB_8Y`*jSS9;y~vLsJm{~qz*F^z+9_f$-hd_HGO;y@xLwJ-nJE_ zqiKY0eYwKy)S0f%dwj?8E2m?rDE>?e+#AEkG?#V zG=C_y{?eo5G}rw7{s%fD_~1}mXYo$CitsyQ2|s@DuzT>ygP!=4WV{6Z^>ryS&}Iy1 zi!#a9Q%Cy@fjMKlO3$OS-!T>$nM&JeV;m;n=tu`^1d16a-a>=5}+wPX=9A-eBRNm;;JGVt#8Yke(#VJ&1g6h!v7M>{di6i5)S8BX#?Q;UNfu+V9*{{)Z=d^ z9Do@gGZuqHHEm|k=II$a=>ntyaO1T?ChADk^*Plxz}5Fl1If`^5_S4GG|{)@Z^A#9 zVGwFS6Hk|eNI|sBfNmD1-+2fj`VjoK^P!~#Bar=eBFO>R!)urT;tvxr5mGhrhY_&! zADQyUQa=Q}N~|>xOh9a{vjmojr!3kR7#rMz-;t^Txmmj}qt8SN(gFafx6h42IGGWx@_W*q7hF{^(}{0U{VzdF-v#BvzgOl#0H z9bEIO@S}h6qsYp9AJ6lu5r|A?=9$yRSBztQJ1byz;uImf5R&N6A^7Si0H&ZZ14{-h z5?=QQ#8HU#>lS~V{4fCq*8cIM;bX3!=aTc-=EeD|r1#JM+4nk#|6l+0FS^hFzDfSh zmuM<(X=W+lCHc2MA~95rol8cTii7YQEdBd_9GdX2Cj-E)jLHNY{O0u-01k9(D*54) zQ2zsk+zvCWx{Gz}NhAI}6L4ecQK@MGmJ=*-~!qrJIQrBWUbU%0G1b;)IWIgQu$b|0+DU->AD<&2npig*(NhVSqdHcHJPCty~L>gClGV^1tN_SC0 z9Qqh0lA^qRhk;*x)&>S;J;`wi@I%uWSX)3lgRjP#0G0s^IP$<4aQD&p_F4p-%a z5!lRy`-AirM*f+06GHfHSGtP$lg|t{M1Krp;t%1+*$&|Ga3Vwm6Htl2>p^m{6a&#` zYo(cfh<}Bp^uL_b3#qU9tALMySOQSw*s?wL`$xRKMbEDG4<`PsyT*4&+K2EPApQ`3 zgNZ-V{}`U_op$?2i;(;w{=YA5zICI!dF#EG68?Hv+W48w^T02fuY?z(E>{0XUXCBH zAcij>=XZG2)4I)E?Q2HB*@F?VirtYn+a7!0zIONuctmdE?Lb0WmL?062>L1M`^ z8G}&u>-n6o9b4vv6PQp?9;)FFv{7hV|B1f9&E-V~l_<032cccd&v1E! zhpu)8A58a!XN_wZBw zYW??@408dU+;Q^tlE7j=bD{NofVK;%KM8({m9e~vY0|3)rKd+XmhC}t%=yt8uLVJ{_(sZ{jI|BC3*}AxLu;Zki!(7La@ON*mqAzbZ7?;q_t$JvK>x8yiWZL0ahcbEa#kl&hVB8RDr0M^om;6%$^ z>tev?^0Wx-|MHRiS?qUram;9!$7nc39e>cDnHU0} zKR&3~Z!N?#&-2P*08Vty^DIw#BL9h1H@fbb0A0r*Ru}}$On~lt&X9q^p9g3kD$b2T z{)8a@T!RQ9LJ%lG@9E1Hp=8(Ph;dlBXtoi7(EImQ-Bx=dVO|2B%{$OO$tXDwMA(F5 z8K-;|T+Z#ApHYeaB_^PhAAc)JP4hup>#wZ4l6DrH0apoPsG1>{2A>cJV5yJm`W|u5 zw-P`8u!z-w&-MIX#a|FQj6f&J9x!p!hPAj~A1zA|i6t<^ALaxIMj#nh?iVL7G_hNK z-0$r@B?#jG+0P%w^}bwIKT9nD5yu+45Pw2|uQ3y_(CiAsIK}m9?-4?d0;BP0tqV+k90Majv4B>(;UrM*iKQilQ?3^i^JccD zHc!cLIPTG}hAL;`KltFo_;VibTjx0C#-uw%I8rzijld;unT)Y)67OE26r&yHi$55E z7{yRO`XcAahyUb0Sp)2o!T0|y!tp3E@%Ou!-oOMrdNN{IoM}b4rDZ_uD{W&5lgqPU ztYHG`QN^s?n`keYfn}wx!^EGILwQ<+f&2cgS^O}u(`LNs4cU}cs-`Vbt#Ry#m|5X`)*{-%{XgdoW8E|6h%CmU%R;NOuo3aRwy!H+7 z4d*2;_*FjjH5vt}) zWS@Z{w%!#4OT3$E#0&HsrppdO7b=k^Dt_E`Oh73Xmpylz306^u#85I<2SJWrh=4;R zY{StrWoDAb1knW*f_%|!n+YH(hXI)m4cxj7g!&3c$s$DSrWqkPW{JqJo)(}F#tM8=iTj|5#ZQxb^yEz2 zR`^2D&801XWDxlC<2nbl1$4g7`&vV7J9A=d2z!SOs1R(xECH~x3 z;?KRogej!rB80fB+|5fPtt^>M<9@!1zFQ0MUP=n=Hx3}o_6e9J%6gNoKxl5;OA;8nB2M#azceQL;@r!Kt&GiHXsVP^dP5AVm-dt(x6Sgv8aQfOSnQw!-e}z#|xdV{ygDVn|;`_+d0x0mPr< zByf)n>@}O=c9XyN<`0|BRPn_>u&{u$f`_iKLlaqzTqH*!o-U_P0-c%+uV3g zG7e$Dn9rT$*#_iiz(=&-A#O5bRv1g}O81eWVf!E{sb@;m{^yziF?saOlGTGiG_QqB znq&yFJ}qFx70A7UedQ-XqpF_1;tU<%JAkrt%hMSU*Fn;5!g#Q;&V}*@KAuTn<8jr)m9rEJq?og#l$e z&xI%sbK9B?e4>zk2HFz6!>0BjU!+|^5V7&T@qSpgabvzoadc1dVtWcY;RNt=VS6( z%;T;QWT!7feSrG7j%VBMI1k(Yj}MwZ2;$5O&Smoi6ZGCcx$CS7#jKXQ9TBH{_dn?F z{^NVGm-|FZO+m!;*m)fM zl;K=9womt!t#&TvQ+_|9`0)&69?jVCM)W{Q|q4KL$J z?TN=f{@$0OS~jDyJ&+ww;=YrtjC71>CtCCOvLNrnJ5TkDogBB@oAj6dc&uESdoJlt zTL@3|K8G45S~fpzUwf8*PR?a#cXIHgd;ZJw?(Pr80OWkzp6+ye1yzriOY~Z=36qi0 z$~DEOTUaSRx+cdk351WeH2@R9^{njeB)-=ajJySsb|sj~*9>byO**H(Y5;0-e+{8$ z5`fgqjhguPnXbNonJ^P|b*@ng&*6Ezw}@Kx3t%qS68WGc9SuUN;Q60}plSp9Z0LlM z9QaO+cyRbU!lP8rZWo(@ zNYD@3X`d@k+?o1dqcA_t7vXp;x`78wYL>{pv|*na0S@|u2|$4M_IaOmQlB+otduZQ zdtfi%llN*~pS2DW1ZK%))FrB#AL4IY7UCiP8~XDz*L8F&5R5^NsV3z&f=}9+=DW|1 zsYubppFDuIL}vEKOHI~(Y=jm>^UcH`rpE@hD;8>hA)ozE_Qe1s@rMzB!1lzyJwARt zmi;azNdsQb$$s@gG#eVA*vF86l~#lD;i%>}a!dQ}R(GVZ!mf;m)^geYp=g+#cg>`kBZNUPd?4Td*TMEp zArhF13L`o<6$4>_37D*_jDYa$biI2ahh)e4+tTv;t3Y|ZSIM4vdg=fAGV|kxJZmnD zDKM%SgH_Vnn_7vCj%5UI4TKRuYBjiiTW+&I7DQzRfPAPRH&gF+DvD-8>TP7M z>s7-3TSl4jxoLbOQ_(#6-!vS+?R9|9;mq`D&mFYx8;V=)U zaSjvy(3&{%if}sH)Y3|FlFEYwD~>{*{FW+52tS@7z3hM_)Chm86rv9-67hmoEAfxS z{DBdOog})q-v`E&j}(RxkVgVB9>N-S@vM0kl0U>BFybCDwh;e^vhv^mvS|QXX69;Z zeAL50>590It*iylL^@1r_UA^y4=@4eIqzWt`16?ssN1 zrKtF)BFfC?p7<;8yn4Zm(yhHAco4pGjYR`mp7FL&f4}ow7s3eKzPZF}5O?n$ak;%@ zuzkPt_R^kp2r3c^6EtEMT`_H%I9vmMAbRoWKv7tROjAem` z3)kQx`WNEAmF<=*ZT+%S9Mnfk#|SK#-_@AtL2Q`q4X+Dz(0%u@DpDnv?1Wp$#_aFD}e|? z{;L+isb&Iv@{{9hXbG^YQEU3ku50;AOaO(E{Ij11b&ZJiAT4i<$c4>YOhF<EbyU9uW1`84g$6GJ@XCqb8u5xcv=|^HiG*kkfXfl` zyvK5P06_d1Ye=KB1%t;tW89DWx!*OQlkfWDZq@fE zQYD?|yPFX-1J1Kx241c=@LR18@87>SNI3d}S-FJ!e>9Z%t-5xOF+(BUx051V%EKA$ zrKY^K@WJh~VhumjX_Rgk4o)%yKt9@lxy)2R?GN$4ne$`kZE_3&$sgiR_$pxgAZ%Br zn^)7rOLZaee%TxWIc+jtLY937T7a!Ql#hH{GNL~&%a|@pScXrHF4rbRaMrBQg>)&d zRlfgMf@@^rv1ea@8`^t_OW!T+u{@ceW?OQNA(2{=RX7)?%9=mOd?7o4`J1i7V?V5r z$(f8^VmpSoe$=7Y>gO`EC@useUu7cH?OKihVu(ODQ#HJ8!dl0d z3Z3bB0lAld{X*Yh(0j?EK+=%T0YRF?rhs`MSj52t?b^RE0*nEe47~SEgi~7owm}i9 za#WzIgQ2fxSKhX4(dv+Tx;XVA?k1AIjrtT~hYM_~AA#Z5cHLioblCmuvqpsW*z;Z> za0ugFP^VtWqCV4034-`D1$f^c6p{Gj{EcL!HLsZ~!3d}=&wrN_fHH9|K&#KEDsFG> zsQvNKu|ts1w`l88WU?e3CQ8)z2Y3mte<8E!M-4kM#}dPZF1 za&RK$n4xk3hwDr2PeiQ`Niqby;-}b`uD%73?&tc}I^GvP*bCtW5RMu^A;6565JA+w z7HZD&AU4Y2A@MASE1oOYMF>y77LMgeZp}kf`5W5WddxfK(%zWiVN=?c)cIT5Rl@PQ z!~PaiA*Wo2X@A2Gq0_+n%QxPUV0Z7GjqYE4e-@e=Y&T{z z8D=m-x5LCg#9f?N^s zLNyQ^K6RL2)dAW!B$br8Tvh8N0i(8Vk@^LhW87uwv`^r|8USM;2q0?2D;SYFxm-`Y zyT1XH<;kS)3nZ(IsO^LJ=Lj$(Fj;R?00eDmFkWjs5&f_XPtz6MA_=ywgh}?+qrs7s zYCE^9Pacf0NNm^j`{?m9Jgj{h8NlAbi z1RO;Hl?jN5{K4|K8n${#z><`=1!6tSA7*`Z%+|WN4&zXTf!t_|B&fFCNI_&=?ArV7 zt%e1CCOw&Vb{bN7m6Q3%-yf@*2yB+^ww>E{gZPs%VLh$?nR}tC*Sa!L2~T+Nlho`n zNje%{csnaY!dVju02lRnb-JoEJF}xR98ry8kP_{LRY$0zYR__4GLH-fGed5NX3 zEV;<5pNKyOfk1v&j|;|FI4)9{PupbQe@HeemrzC!eve1j2k{R^01cWo04jGG@rMbh z2eI*LEqETrxKgb9m<(Jq)Xb2yg?v%RgKr(q+atj#TX9h&CX|c1A~6E?`iJy?{mVB( z3ouUx9>EMO<9?N=tt8z_%M-LS0Pcf(zRuBY6fP z1at{_S0)?f2-Caku2lprh6b?f8VbQPbKa5cz?~j9T_tR1F$A@jDb#H#MuH;C)%zmGXWqu z^H5&%vj)K5oDUvqAFJ`nGEM8(piQ7XwY|s`Qt|9I0QH{8+88xu7rIQq!M>z{I^!`0 zJl2u6XaG$7V;P{c?X7DB*?k6tpA!Im3Se)*(Y}QsL|&;{83)z~u`M+u|4v2OVG)QB zgvO_GhJEgPinYX_8xwzr#0fZx6$$P8KYG+a_Znv}KPZ~@BOe)Y4{!8dPjDS_rl!1wlZLZaj&^rl81I!F? z4Kon;bv${T#BtwbSOb~(7g<9CVhMy$LE4oIn^)q$SPCrT+zig9Y)|qTAK3$E9!%@=Uu6f@1P7&L%xm2m0`*|)+;ybr(id|tLzVO zm@xA0`dRJYbE&oJnl|;|9=+KRtNvKhjJytxf38(HwdPZA2pd-U<_o2 zAxh9znm?>B1g(hG)A!CpK6?q(X8oyq&dLSgyEi!K|RzqG7Qf~)lUaT zeg|KcJSc1VD~ZwG>@WbsoqbmmAw*)TvpH<7ZNL5`Zis-ffMiR5`p!&X6xN^e9SYSr zNb|jO87L~Bfi+$BOtW($4E)SRDFY16BQYG;vK@fOSH(M4?!R|u+`OyfdvE_#Yv5v> zTI+Tj#e&09JDN!M(){P}sdFZR+SH>U)?xFQa6_fT$%rP3d2j`}n|>UaM3nQF^r&`y9l zCkitoot_v@JTO`VvHRjx5!J;2f*Hq{j=rCqEi`JeM5p!-hh6m{E#qGAy^Pmq$AVx{ ztD0Z)Z7%$ik4WEu{(x^Q9m2jPK=x4^bM>Y1t-ougc4)^ed9^D<_<>(v#*mLBoeyN{ zzcG>XrO9b?Mdb_QQL1Gdp-^COMNZmj9M53+O?AA(28>-FUln(6vUsn3KzL%rz{m)yo<|;`N(T{ zFeLfA$;S8KO4q728?ixjLoG+9ghaW$4DzmneC;x{3GWfiks^CyY%Fz>=ZsD939cf_ zS7@04-Jezcn60y&2PP7j;HO*AIxe&PuI*+LLd-I} zt5f?R{Di>S6Byv-(&a9nI_Y%gbeFh0EkaP$3PkJv%6-_DYmtGR$XwfRZhWaQTf1_) z1Mvr1!e6gVL5EW3!vLJ69W~_dRRId=*Gr4UXMm9mMvUi!2L)yVxaOqI1xv>A(6(?a zb^;Z zyweOj8W8w%+f>2`*uAw++YIKpx{;37y+(G~J{XF18UQl_OX#Z_%vtr0YQ3D_T%;(jGvWv)puCcZtVRwy20G9s%aFl@001BW zNklrA?OvutRnvBNd>|@ zCVy{GCK!kR-~yO1Y#M|+*|d}4fjq9Ah&cq_`}2Zn{zSz8vjXkBYMF{r4e@u_)=%ew zLn=;a<2x654lgAo4TR%O_o(3K7(8Qnn@R+IR!33BQhzaS;3QhcB z1WsadmHGTHe!Vcnn~A}A|D%ie7^&ZIq-B6NzAPJnO8gz)Wde}?mtdr4jh7uNEv2ux z8Ex;$KgS+Nsay)r!~o1W{?{jKTw3j4O=4&P5`y6=XaEeGE0}>G-c_p*`53>($z}i` z;9ToRk_o>qTeu(zBLQl%hy)Z(g6mQVBMQO{K)xh#@@99!uKhY;BO zZH`|NuF3{;kckpV9F?%aMA!FE3R@@xU09gjNOS^y+}GXc3wFk@*@n0auY z$L@fnGzK}BF{9_Jqk`d3+Xh3R%FF;v^nwt7hdgsEM2WU-DhBOo7=ZkqzCKaA&E}=; zPNfOBA}s*?07gkYA#Z+Y6lOBMH1imSjjF)Q01*DEyu+CRAV2H+Kwkz?!@8}I{QNd+ zTBNTa{t$ftzy0@h{qFr|LyS?_f4Zs}$1C*GkGsoZWMR@oXXVo-O&=bF0K|V&LiaN=0Dgph9r(T* zJ|Al?DfZk>E!sG9FpGwXB%ce==BpQ#r8rkdVjVgZ0-mRiz#s~w2`4rb;hjJMvdWn9 z5D*3@d!lvX+3-aT@M?=Nk?(d6ADK+#zh3&V9T^=p0~%FpIockvNrOSf1wo)ykGb8L zj5V#~sDDB3{9ptGZI(d#?Omj4YDMTwJrTHI0!nPuW3_J7S>uh!_0=WD2t?l-dsx*T zF)5jZLfTA70L_8OiSl&XpF|jt=fq*_J!2l~Rapzd@4lU}=AT6;xYbD3Kg zM>U02yzrRB;ZjfgUYbev0T2vRMQ9kN1&+`=^jL4NuMMvPv~8nny1qSKk+u$QpiB_& z>t#(CMuZS%Aom8u|G0X#^Iqp^9ZNlV&)RxPh+NgiY4tij6Ufhxi24V=458Ifo1!jf z>)PxEjZ?)>HTm0edcBMT`Su{RiiZi{&>7Z2kz@cLK*Bh|-voW^HbfnGE)klY3?U3_ zeb2M4l-A!Eg9@1@Fc$h}ppB+_=14XS5vym!4k5*%wS1tVv8|UQZl@k5qBoN|H@9MG z7uRWtoqN{c*|lSsO^=#m)y2-9jcGaIF?_45KK7hrh2F0W!%WAPF`~L_!g{zqrPPTA zfYbT_AA8zMo(72zp{u^)t$U~PL9caP)&1zCL{5HQzQu&fnl{P?qVn_MOr6Lbc^kkRXD)YDOwhcDsf>u5I!~f@e}RaenVrGb@Ow!v882?iN-RTL>xKA z(xS#S{{WWp&g4rUd{a(gENvRwHmgllZcpZ4J`$I8c0ZrGZOdUT5l*657Rq48gSZ~w zR~ZN_kj6)cI-8?vaOyWqgph{v)Hm$YQyM3-q2j8p=rvb1mNhj-oJ#81c`)Jw_X21+%S8B+eI&Pi3S2blALt+GIpnY!KEDYN9uUyeK zW0tHnndJu{plUE^=QGA1xL-J^FF|a;ITx`-K;JC?60=XVrhh((vqgH+TFmRfi)Dbx zMxhg$-@s_^hO}>5TA41iCB(A}3xG}xWqVaWBjTRz4~HXm zL@qFa&19?;5$pay-1ttlg&plI?YSp?(MP2gPh5w@a!oztzXXEO$dg@pEg4d*t38OS zN>hqE$=)_y~Rp#Fm)xC`KKtB++i&(<-_mDW2DvwULZ~ zSl7zVlKf6fA$=u;XarmFWW1a6IgWcv{*lH9JR?B(y$k^HXIUti05Je@cvP)#R9%mb zs|#R1rd{V%yFo~Um zb3@^|w@3*=;@gAYd7tqmhh0f41L4oWwyX>-^HU=|%m$S~=`>pd(ZBV6LGpigPlj9- z(LSut$?cJ!^R(9(My}G3cpNW{QK$#U;T98YJ2K2S~G8JEr0N$ z4ph1>LRz7EUXHsXPSVnV>w2e!=zs6ldd<>7-PY$i3HM*FO;xj_6!J69dqbRpGo>j8i)GT)5rPKtP?d3T${3 zTPQr^vlf6t!Cfymp6g=30HFz}*4o?;#YKm3L0@#R^b%4AnVQgB!m5+I)db{wDzDHT zypGS|D&h|T?HY(ImC^SyA*@2}66p)XABIEuSGQ2Exm?@Fzw2$+oz+kvKr;bx4tOnY zCLq5%YyP%bh-}7`^j9WaomXfPDFnBU^FW&Je@%mhI2lcu`en{P(INDo4>>g)>}*wrjZ8qCGg)m*edC=VW)q{qx>5tkoPMnv}On~FK2Ve}i zcKX16<7>veJO&fMk{m|7+gEkiTE}HD#(s!|#G3&?s^_1XfDtFNCXm%YFc&S8q4q)p zU@gF0b^(BG5?F#j7_;Q>s=(#O>y9Hl)9xRB``d-FG{Xqb8GNVa$GB>PqMY9UU|-)? z4f*o6**o{p9xRW~XCeMK)n9MjT>gF&{{8EPl^*Ubw%#55%C43tmucYScww-3mi+kV zZ@%mrtr^QUs{kgzs;kjU*CI=M2Fa=dihCvoV5tsE|0a}6iRGpzCSV}0bis=*XNo(P0Cf2PK8d)X@owk*mgWeQsr5II({+vdag|MiRsWsr3+rf!3DyFT z2V*zZcg+Nt*~op62{dK)G2_Jz|4P}oTl$sYx=ikCS1Dm6AUU+!L4pi2sf}G+zH=BL1o`7}rF^$8~FJ_N`#z&$0kN01d!+EL#j&Ou_{4 zLkqC2-A1t;Q^enZ1^^}iZ20CfTI&M0q4!TKfNgVL-=p*ZZ?Fg&H{k=n-Msw z_zmL!)bJUkf2;p_#=I_r`FW$4ijY43@PVV&h8GwB$*Iekt3`8fe%wrZ7+BD71zD7g z8tgCuEmR7l`;brZiJgdiJKt3X`_Sk}q*<%bStElW(2yV(uLa3N+orf<@w(D7!7Yk_ zu^`5_4+x};i5Sei4IMEnWG3ZLyirE%AmlRe>N~1f3w~|JlH>hdD~J{ngb_V;EY|p4 zV_EY(SNpMcOW3v(P3*eK&UdOl_Tcx##nEmXng~G*f(T&n#S(x**2+Eri8Sa(YO-G5H~0bzIhQjs83>23psMyg)>_dSRQtwX5NR4;@!BVG6Jl^3rB zQk#FY5k#J64AgJzojnsXgG3YUS*2^Eg?@**;vkypgd^I@KQkf+h4F(#9CF2Ctnz9UMR(w0-J=3S*Q-n=zj?NuFDl0C#FT?`WIX z!K*hViEH1#mZ=7H9&#v8&srbVhtV0I&3t1H@x3queAcGY&OSL7!^bI`a^fQojNpzl zt)t@?CF<0CWXxF;V8=DA-~!t^ONHN9>&u6ScNMb}^C%Mar!N6(y9!xs)thTgKC6`n z$wq`S2o)>=@PmaL2xkK@9Kfu0*ia10O!FGNbS|yHxSkw4(h>5TY8!sQ*`xQHM<3jY z>yy#V=HQFv8UxV2v`1T4d(992WT7Ey4wvW3P&OrxMA!{qyHP06b{!}8w4eXh2W1T2 zdNf%&{ODkJ*c?bxv!|`6doP!f(oe^QZfR-lx}G0)@%4;?o#)HDjEDPjpaH&v*#!)$U#ZTd(CwY)#G4_hyN zm*z-WwJq~;IvX{+d)MPRbE)sJEhs6x0VS8=0t2v|yttd&{qG{`sjh}Pmzdu~Clqx7 z=VdDo2So4Kr5N49PkG-Z)EA1;ImSPYq4s#h_w#nlTV<4<0IJyzzCd7B)tq}QLj)4?^0mV zm2u05K`VzV zoPNo5VLnw(;6A_=^}2S?#6QX~##6uM9YU@+3qX^0B;TK?$1Zsw!|F_MyEeByA#We^A*SG&?lYr`%s z>}K2&Q~9*;)C|DWR+#g};XFAaUE5HSrJCbBh$?3mT7bj^OtgMmI9s{Gl#0mCe|)|> zRS(5U&#O9=d!K@4f^6xMv?ZWF=uaaTke08>NLmN+x=xbUArsPokp9c%;xF}qE12Px zn3HJ7H(Y1%aj54xuZVIWr;1p}kF+<{_L@}?>uwn#D^pC;6oSOz-VHPjgx`#SmkoGs zMvNYme9{uA9lgFD2s1sO^5kFFewMH@VL>~A6lch35vK}oT;G!en{hA#KG?)=P1)ka z&nn4se5=&prsAq3G#s6ofy$F}!vxfL?$W~&82^52(49=~sC*TfIz%@1_QQx|URl&yMb0J`w{ z{$|4uzy=3^_^*O>#Q%zz07K8tNgSatr2lk}^nWf*0Bts_rw76am;uP`Gi1B z_nYaXcT!E|GNgZ9PV>1sx_=hpPfZ;(N7OG5)~)CI31$NN5Q#(>BAvAX018wgoC4`| zrd9j>oyTEI{L^fK0ca6Hp0N~SEPAYD;_nJqgfSUZuB}tp!PjIDqrY`^@hrX>m9G(8 zgo_U@%z&0P^bI`AOaK}Ho)aqh*eksti1rcA^KrB>l_ns{*Y7RPX-E~+N7*2dC{M|L zQq|6IhgzZcDFjqVqIQqoqD7$26O@gcLIEQhCLr3Y9_LGBNK;~Hx{Mjbki15;40aQk ze%(ejtNzNP^7;pL_L-O;T-(9`04Dr3OB zfRd|xQ{Y7PZ)gLQA->xgR)l7B9769oqrkAV14C)Ky&(Qp@sr=G|I7qH^fMFSdSL`m zIU@ZVwq-R9v`j#nKhD#Jsu#GF=+``L8MP;b|IS_g6yE-ei)*fJ-e1y1%oTT<<{Zpy zcgb!Q@kg=`yp;OFuaxH$`LY(kd2)#Kk53A~#6PDa{R7zF7-CCby)n9ScM!(4T_anJoK>A$za2S3CgfcSSc z0Fj_SnF(;*s?fwAp=+jHN|_1R+g~tyl+B(xSJn0W#eM(F*)}Y3KF3-wh8waJeahv4 zkS;->iMaPF!VRC=O2TmIxbD&B$@8QRk7l0d!KWCOAnU&Was;W4OcXBHc`*SP4GkG& zXW92CGefdqt%uxNE$DUtrF4o*KaA3%x+XspHR@vOZVIpexmnr#)1K-K&oBp_^G~$v(q_aeJG#UhFHJF8A}FK@M`k`J0b+E z0O4c@1joOjI7aLsLNzb;Z@?0OJ=dvkW}nt_B6uLbzC77klM_yP`f?gRO*55Q{ToKG!y^gV?cR~_^Dc~D2p$M8p|GO|uPs@_K-PHaJ@CqD?0z=Tc$!096 zj$oLmhxX^p@OW-L9ENzk6#Y4_>k=k_TB2;WUXa}cN1C$ssQMJu?C(KX|fiF zai9G6%MdV5WR=$ROn88;dN{hmRti-<3~%_O0VDPYabl?}vjd zfYtORsPDJ+`7-V|bZQ>}540r%*`YKjJ#7K9q3c=s?8r0t92%4>Y6F;(vXn4+EE@nh zSDMD5B^pb0T#i33ROalow8I91jcnWW0NDU&*Tsu(>H6#Hj2~-S%BDgCGh8vNzd|rn zoyd;Uw37gVudgK^Ug=0U>aLhTz9N4i^r{7o)B3q>)Y=P-spc4zJOfx={G=jVQYoHP z#6;e?h)b_ZoeU_em*cEwZTs8otn)mn{;*l374!=tQwzA>T;9@Kj>GQ5wooSiIh|`W zG~M`>_wIwtX{^W?lS!S-(W)Le-E6@GP6mWjtglFv&GSVVhU4vv8`6!b{D z)d{P_Y26{l74gmS0 zp`aW;)hJ)~MU_ceFFl$G$jF>@z)Wem6SC5KWeFN2$w_{I8>!|);iR4lB zZ4$&^F zD!*~vrbjhq1T66%AK#DfwEecEkzoUCi^B??&|5{Y}#;?h!@~=;u z+qWmp?f<9C%9W?mk0$=a@Lu_}$(|(1D_1sTm?@ehrkKrc5PpDTgXeYs?_Ac%W&$En zfBG;0LkXn%0dp}=5k6YjHgIp^KRzvUH!?lLpP7h%25WkW+o@V6r!VJp>>_+>24GR- zmwN^A2QmY|Jxl=5lS;{e&w1dia(A)szb1~WbyN5F%t&@CRHRvp1Tz4^;Q#+05Ekp2 zpsk7lf?$Fe6mBsf%=mbpZ}f<%>OQVZyw+x=ktO}WT!JH`( z6?jPgsw0S)(t`L4xkP^|kC_0NgOk&RO@t+-{0uX1Fajq2gaGen;*UCw)(a^`{1r?< zFemCqvUg}~QO#F`2NU3QOVNB!XxK;yaY})%O>_uBkSpPmF>9mFrE>KJ>E~6>6QQs~^npl>D+KVLnvJ z-(id^wULk2Wsr%`Wb$);yR z#;^RaAcv@DhL*9-_{2EROaRM^Ls|K=OK2*5fTqGWR6F>K*S>y!hxZR7oF;|aVv9>?`G*Z=?^07*naRDM{9 zr5-|D*q*`8)sWH(gA&6|&yf4@O|}ppA|T_p?K6W(+U`I%qM7 zKXEVtJ5>|lJl=kX79c~B{xyGb+nZqi(Zgo`(J})-^3xFi=|}HK`oG)ds)>*jSMKRtLfacrS7rD(@<=w#9_oc^u!~s~wgkDkabt zIN3pkzC`>@G==1z7Ba$ISH{Gj5a}Pn&(Dki<-ATBv^$L-*5i#_*3};x0Vnbe^nC&| zM~*`Bj~_ZevNCpR*DcuxxIi~dlsOasF5xm0kc(?51k|Q(lVE(-!KoxCe((OjXF>SC z{lDK0;=eBcXNlj`H}NyjSC;;ZVP{FnW2sB5*$n_>8wz&YnD~>niul{-LogSezN1VF zXafW${%?v2u;lMNOT^!i3X!n+A^DFugF(N6{O6<2=hqj}=I3{Z_?zHD{9yvZO25|0 zZXp-}15Ch?_S#$O_uBD5IEEkKFcW;v72v&K1mY*{!dO52_s37~!MkwUWcSyxQwz^Kki&=%i+#;?92CJLk~p;*#K2ijfH)s#j?ZW@_hn5P2i6ENh4IVhkHocYNvaX|%VcDnN!mKY+Cw4S zZHpxJwMbQ#UPCHHW|Ue8x*gIllUDzuYq&&0r%nQ{J8+>3MWp7HQ}C7`7eN|c+7Y0< z*cOzB=^ZRBigRXdneXK`=0-gTksI~S3*--sh^cY+IM z4ROX;sB3Smks89uQfYjRAH@ez)BERlq>q#o8VJ=->1aFI1hCgSoTSwCU+gwG3qdcZ zs+LCv1e8aY5wARAl!AV_y?F>@6Po~lZwb)LkS7X@z0^BG$ROl%*1wgn9p8~({u>m> zUh;URB-maY@W2b`zifGc%m_pTf7I4A(}~XC7_j3(kKWtsHM?kp>if(){i&(D1h=)t z3b?JUeYdr>?|~f0Aj!4kq+_+bR5)(*k{QzTf{Cq+hjaNXi9Q2M(kPlOv`|IUBVr!y zx%`sW1klg4B}c)!K2T`%p~9e9buRNtET^>FEa_*)AtkvkxB6Q-CS5TX_OI?p6@RsP z^J~9J76JY?bhf>gQ+xW+ci~t`HUotCZ_lu)@876efpg9I)+m*ZQr=U&0p$8zd;j%0 z0^#V?DP|DN_`*m4V;$}k2dN3~f^69D4-+uaM;|>r6pqEGfS@Dc^Swja*<4XIIPtOX z{&}|jQ8Bl8*mQ}I<7^72Q|*$2G!1c*YwBMfm!@;vj_dpwYi*xT-jzf)~RCLfkJYx}!0 zkv*yRaXYaouY=hBwC82i4;f=mCaBq?ZKnFJ`Ez1W@Q(Yr>LIrtm8=s3wDw;PUYZRS z9LPkTE=P29fO&?@!~5+#(x2IUUD5Y zLj7>>0HN$wJU7wI~5aeRaw=E4$IqF1Vz(deNobCVah z)!Aj*FV&T9wqMe~s&M?_!??1=@uTXSfu#huTV#lK7BWh(KqLjh;j18w0zK1}mn9C= z;yx-k6_3l%;MlipO@tqeb!un!hx@*ULHyy0lIEr`0)dAkm)oi({xAVzfV%EDUG*Hp z4il7W2abJjbb?D2&brY9r9Sl+5<1>0pUjG4hZBd{09V2uHB9n+UK z8)JcS(EVm>20T{U0xK>K-ulXl*ws-i37t!$)rOV$V^0;^>U2Mqw2jf-Oc;KY<^wg3 ztFc+PcF$jHL|_Cc57&_Giy-d%UpfdT00Y92jLOF8T!9#~DhBXA`!W;+&Xi{&KLb7a z!pE1t-TKKu-rjK=^?;8n|5P@AAZo=x6*h(mIj3 zJ+U{cvJ#*m{tK?!)#5(VOu+bbF^EQW|EKdo*f-J|6!GjMw-&(pLK|RdtVXU|FLjwn zuiw6o=sRx?pHy$o+g?LB+4NgsYqv~E)7QUE@Ew|Z>@ZGRwT;sTBtZPZCL#SZW0sQh`i*_ zO4rIMKZL+MNFaZuF?`Gf1aVDVtqG2+C^Dr*3|{1S|S`hw+=Fp`w^kY%D^OzWpZ{JVsoq)hy|H~%$PJLLY3 z-6!;=+BbhYWnxY!p1$sM56LUR(*MfD8tI)^4xQIassoP+B}i6va)elcXZN}rbx975 z2w)%m`1*i}z^EApz)Zk+qAi0mB-@cQ85jVx0RW5uFt59W;u#{~tUnLsWN1_A{JN*@ zab`zxH(kb&{K>Wq0F1!4>=5#{?)K~eX>Ni2t5verH4FgE#fjVv184y5N%{v06Y!rm z5B}+Y)BM3d`fkez?7g_4P4B}9)a_#XTN}-O+Rhi1)ITr*XZK}9xg$5?@*}XJ{lMqr z!u5okbOaFrI0>RZy8886vIK)GH{1K^(R=OnWf$N5(}&G>e(y5(d=#EfWCZUIA3SL_|#Kly^&#zX8>MhAk0(eyd;1SmL#0X%%n#oyr4(X1&Z?_M+e=e*)Q7gq5?I_~*EM4R2)r$STsD-o4ID z0Ip55A&~Q$4%5F7e-ni^-WhA?T@|Fe-<&rS2jW2Fg$Ymy14)LK0#zoUTZqLsF$9aH z57nc}LUU#95o4(iGhU1L@H^DkjKJf%jdOX2O0X7y1EF^79_Ti|E+GDBZ`jTU;lCvY z0J#5fF`gpgGyDn3zs|*CysBjkN%$}T8@+`v5R9fY0HgskGz76osj-Kotg)20;b9wK z`wqXBo89+OPo1M&XRS}p<7?VDca`G_850M;`f849RsTzox(W3^q2@U*Tn*UYcnQF9 z4q*gv0qjGr9FI?ZAFea6UgyvNFpvFdW(2TDLH*A%Sug>W&_n$3B6uKez+q(qTt8tv z19!F3SRnZyi#U@X4S=7IKYy6G(e{FX$s0mj4H|&CGyq^Eb|ly+vCYuA*uz(XDAwKg zZwC_qBQU6A){MZb^0N3_zg-H#2n5mZ)bl_~T>O5d<&uM|+U}^=+ZW2*S2&dafQb&< zIXargk8Pkm5r3EfAa-O)0}W1s8JM2kZ<>ccj5MwXY-_E627rT#x(D){ol3>u(E|LZ z|J_fb)I^$V2>&qyxCP(MV>skXqdd2(AEs?z&a^%|;ES$@XWG0s%hb3%gEx>;Ct z^Zx0Z?aU`a;umu>-YntUxcApnFA&d5*V5TXd=LpOADn~KvPc}M0yurQMMwMj(Pw zU3(f-g0EgzHEeNP)EDY+NnjvsAc#?ADal8hh2tI}2_T4(_60x2*+PXu-Zh|)5Wf%z zmAvukn&3rRu3WbwZDcnPRd&Bdbt?1VBejeCk3XvC($iiLTnwX7+w!JvQim`x(H~Tz zS8K1yTl>y&c*-*ojC*t&_)X6z_Yp3>T-d@vgI{bKCOCIDt5Y#t(uUV?Y5 z&o=`OzT-s1$tSbs5KTa3G>yJ_#!qxi@7+6Ng+~oiM}Tb@%AM-=ht-JZllsJYY8aCG zxxSq?uOGo#=jGrYBF>~9UslKBx^}UxOUyuRZ|Vqpl|HL#SpC-4)wtH2H(wO>Tc0m<;7Da==6k(O0x=aPRiJaep)!%4dXjsXWq>*ULAW zy^rrVZ~m&zBB%rXktXz>&L?ooPd)~Ji&J1Os_lj26KRRl@@zuTN+VhiUN8{%1Pld1b zqQj7w{Wf|M?@?h>4B?Ud=0F?Qt-WKNWSF1#b8$!i^25nb-(RW}NiQ=2PJ{^<3Q^W& zm`3!gTnF(lgp<58ai;+4E+CA&;(i%9L}K~_BY+1v5CZ@c;Pu3CF>8rclQW1}EgQtY zUYj6rdqI*?9O*ee=f?w?IabOCQAx;yI5PvRm$&bbq<`{kX>f1tmJw>B6hfr3jjaWO zBQM-|1}t?AqpiIL-tzFFMt=pX0=b3T&C&;i*b=|<6Z$=48Ks>niyS73L5D!@i!m6P z+(u!gUB@oqmkh)HCci!gU9;sSk^gPD}LBS^;ZW^0PTqWe#zu1dTT5$JWlLfjlP3 zkNv}f3Ak885IIHPm(*d{e|a&MApY;&I*|t8WI_C$@hL+HzSrknBz#gZMg-xTA{Zd2 zF2Z(~iki>>gJ;4`9Bs@qy4wStA6q$`hE==dkoMX2u?k>lVFcVRZJzqB?R~nqcCFao z?0sp!691H_OSYZ$s>Qui@b+nl!@uf1*ONN#Mk4ANApQVGsm-|vci2j>e50`;TvoOc zS3yml?AQ)y9GdIl8q0eKExQA_#!zvpYoMp?hwMZEY)r`Uwv*QIP4QKAPoA-Ca1bCi z#ZB^y9ZNDQ#HPUe{RgTOAZ=Ug`ZjutNd4ivgYfHJyj7629XV2JUVXi}_qjXG!@n#9 zcz17KMus}wP)q^8gI_riW3toyt$*Xq=10H(JI(z&h3HfM`oS9ndVq|gKe!v0g!-De ze)CsH%^P1Yw8ePn#nxd+o^h5J2Pk=usKJk3N!5fqsdH2`JFP zUyA(tSGMB!_x`ZFN6pxLL&KJgFTr1kf`$8d)J zp!NBjGW^mj&Dn!Hal4A}JKsQTa7*+RX+|K@t4i8=2^qw2tp?VMu}U3XDcqyua~KEO zU}GSNYfbFT1gvXd6Lw4V4mB-u^>Ji^g<jNejddCNLK$W@0WhTJVzw-uD0dcNOfbX+1Y|%%{{fowmcZN9m zNZDAfaz9Zg&46S@UsqDpitt~%kZgmzfi!=7pS|dX1`lR(1$f)s zT&}JU56hl?GXg{PyO{ur#tD3yGH1AXteS>=oN(9)R3QpSj}U5()uujhRlhO-5Z<2V z(on=D7%mAxtKc37Cve#Uw4ie3m##u|XjkfUqm*ObH*3PHU)&ES01dz}GyvPd0Nnob+j8}L)?B;!X7jbb`FEPHsr(`ry_wKcfz`K8;Lx%K&0r=KGFT=$zsvq?;6EOZr?e(aPLv|${f2d^){Q$}9OZ9he z=Gqa^o0h!ufxHGP!`Hr4=+%GyufNg!JAc10DMk^ySZUz$o4eJQB&LV=WEiFQr3#Cq*R4#%5ED&5LRYxT% zP3=EE)gp@^p97!sLihn6aFf$$Tti4%9S+|F%c1iUvJG*n31kFBTqgc;-^FO;S;5hf zHvmdhrGPe60$Kor37PM^;Y!Ca-AtW(EQDbOx@EIElp@})N4rJaC0x#~05g34ghJI- zu(qq2q^K(~O2H@)Spn%EfWF!Sn|pK;CjNw|!!z+mjopP+?FDhp!26mB@G=$Y?spR? zVa7!ojPQ{`aqm zaCD@96MuWgYs;n!f4@TrF@4B)L8SS?1n|RZe@AYwGZO&ehY8>ZK3WCVp0dr5`d|QH z1OO!Mfwph++;d4`XaGX`mvrBIu4o@%0Aeelkoi#FbB3E+@nad$z6Dl2*T#gQ1rQT5 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

YUHz4u@`ykg}e-#G`~;FHLWj3G_qXiltq|o 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∋^SU6y+~29Ci4_?X(Tcy_$g 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 literal 0 HcmV?d00001 diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures/白天鹅翅膀.png.meta b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures/白天鹅翅膀.png.meta new file mode 100644 index 0000000000..a6262affe4 --- /dev/null +++ b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/天鹅/textures/白天鹅翅膀.png.meta @@ -0,0 +1,143 @@ +fileFormatVersion: 2 +guid: 362caf21a52c09d4d89401c077b5bc1b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰.meta b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰.meta new file mode 100644 index 0000000000..0e0aa789e1 --- /dev/null +++ b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: de7718fe52d644b458596b3ebabf5666 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures.meta b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures.meta new file mode 100644 index 0000000000..f86d735f57 --- /dev/null +++ b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2fd1daa36eb507347829b3c2ae5b60df +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures/妖族飞行兽凤凰a.png b/Assets/ModelRenderer/Art/Textures/models/players/通用装备/飞剑/火凤凰/textures/妖族飞行兽凤凰a.png new file mode 100644 index 0000000000000000000000000000000000000000..e3fe269a09558b80d4d2b1c2f1b79c5bf453a437 GIT binary patch literal 337658 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%0A5<9HRM~iail#)j#Q)aEjaR5iecrtm`4eo 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 z z8F2p&&i(uOZ0lK*0@Uc4wWFq*+s_1&cQB-%_Yuvtz3=d~i7f`b;2w4%m!=W%NA90? zuH^|;w<&LF5qe>9B!5XjkN~9@FW>#|MI5>LIcX_mh+|UBhgj|BdW=|ol6PG6gj|sV zKnzHS^O-)EhR;HJx@gpIb{6u7^G6Ec(8&ZhqI!1>#JD(jNjV(iI1z9t13-sO1@nm# z0M9=&1^E{n(x;>3aRmNqG2Cp30Cx-&2u-AeP6YUUSS^xA30>1xKYq0ofI_S$`CE15 zKNVxLkggqYLcmV)A0q@<@mwm9=eo~fQs-uU8|?6@RC((;dCojkcLRXVB(K^sg?`4W0i& z0s!|Pp|3i%`bZbNFPspl%ktpDWuP-(5$NfYZ?5jm1V|(TK>om*?}N0n#Qk%)@s-r- zQP@^_bfoQnX*ey)9pz3um!98X)q~_qo*)V6J=U+Tzm!(qo3F@rKpzO9e&PIG3b6C_ z^eyeE;yZ74tGho*OtQBF5l|BXK|;Ezz4>eUu2z8)0_FHeMJ+A zkgbBlv79U<&R>12`?KGF>#ARE(*8@52L7>#UHyX$aHt7@$o=ogpYK?d%~(igc1N9* zoy&M7QnvURsIP8@2v;ey_4hOL%^wj->yA2c#6pUW5q*b&`c&r^y4^&OEc^=#4b){* zo}0_Dmeu_gir0sDl!K;#^LK!QI}Q4K?~Bk{5N}Wgl=XAe=9Y-j%bY0%fa}N6jPHO5gn-xgG<~7Xd^I9~#mkXuK%5}|iKGB5 zjjND9Z6X0!oDg03-A<<4-;g1nrvIL70&e_8GCsTZA0)#5HITocME=J0D?dsCtl(LH zR=iJHJn||_M|#}H3+6nKzC)A*kmrPeU-z`HH3K4mbgC83B_T$1gg!RBq3f(b+_zbY zyrm{}A^?@tob8-y+lhdt)XAf@>dXIlEThka>-I$myz{SDuje5D2ZaGP8WQ^hAph~} zw0&sjry+m4nEx!10Oak%3Hi${e@6Z;37AQB0P>%`lI~M}?-!xG&93EwujG9hGNfL8 zTHXK;6`knt{d$^Jool-i(MVD)rh#2;cg;&2VzjiV%ZB_1dOn}hP>l6)e(v;!&6`|q z4o@CMbcJSB)e%=yMDihO#sl>AUGgwRyeYYFu<#;~?K~T=Obf0tn zh0E;S!d1SeCh;PRE{Ph@f^*)@bp7BxJ5ZV&TN=mJ9kVS@*1@`t&45c$ zIG(wVT64%2Y8mZ9w2FY$V>JCPkBkz_YxZg@EpCJ9H|%%Rap@+f=!P3# zN@Gmmt)c1v2i2u5as9s{k-rds@{yr_)fo1(Q6R{&Mwq!zX*3ZrP4jT=lv@QIjgJ$D zUZ$?kxak%Boa=q^Bx)yog#(Y{qIk<=%$+F}4nV4MVymBu;L(v4WT4atP})%j&+7(( z)}HcfVnoN@G}katG@A$V^;|Na(77V-X^0?Nj5*+3bGaw~6{NGm)vfMkw^?U@z1FPh zT|2G+sA;XK`onv1;`5nd<~*>uzh%)oZ#zhWuf$pUkn^a{#UcR3-R=dm>o;=e7&G5j2Pt-p|Ksq=5W zEnP~M8fL`b_gOASSqaH$lo&b$C1CElMdwRZz`$ID5w% z?}6e1d{dmB%Q3ngy6<}%rBn3zfERD;v z6+73TnRb%&B`SR&Fw3llMxH8&5~OolhBXJ|9vBaSOOuj?LC2F{00{6>9S||PsslwLjc`qf|LCWa>a~9*H^&Mz1h}Itx1O)dX9QHApJVp8 z=UuN8hCRI~7x)fBS2+@%g+1$t_&uL0H6aj|Hdh;zL;&Y@O(}?<;j|%DU(Yj@XV>)% z+@tl3+$=!mJuC-%1vqwy005+aUKnWs8a^$eO`d0GZVSbjvvl|hO=ByTpBsOXADZhK zW{MFp7lAnQz&m~+r|e)@yX@FecutZ6DgLVYPt(Ig1dM(q*?eq$Cs7rz{dQvLXyWKy zMGDL$F{;+m&WbW1XZP}myXQAoOL&blL}-o_QXV1HPQ z3*_Hi)KU0=O%m{hh6tb>$REz1)P8t=6A{3czeOejTJ04l!zVJLRX)e#AR@G)#h2Wo z_H$dqELE6@%W7}w(U_>O&H|`@Cl*M%+31HhX%A`?se?-a{5x;j%+Fs;tmgWsdlZ5L z{R2e@{2r~3D6e8%TuStP@vhzvf6%3_kS380>9~L;jJYBYA419u&s~y{`ZB)Z34JownvFJ z0ntq`MNa5|$vg*~K-8+Ujr1)qu!lG0QdaB1MEj@#qyWUlIFvN>*1t`QzFj!apGX8a z@?{!pAQ;xDmXW9179erULZXx(2aUGWHhq9#(P_oLxMft&M4EHSopyNIu@mfZ;3E+L zXYM-=oB#mvJHmz-_g63?LH8}DX8rsYe!7@o5DyRm4l_xpoCx5!B|`8*McR`WyP5#t z8hru*z>oXgXKf(F^jye)6_}Sl34DC}qK6jtvP0Ur~&MokS$Q_)mAM zTYoG9QAjuf#@4sgbL$$fEd@~nh@v}{<01g$KR@UT`L~Hpxc?U9{={1@znj`2a5PyO z^2eS+3SdM2Ti?!eG|s(NLmEeUqO`svKeuZVfb4$1E)L=ca5H)MdeZ?A0VRO=$rJL6 zG+C=yiR9x&xnGT^cHHIwv`s0;7vSPtocdO9$2oXfal5r;ZtJ-$n$?7}aJ%mDYe)Ku z03iOo-GuDPcElfwJgCh={oW8P4+48q1FV1aqa*=93Lu!iIjIKEHynRYE`+ioS*AQUJAgRcA3LfjOX@p&B1r)J3WNY)NXLl)qydFd zs+HloLl9N6;>6o~k<(I}i(!G>eMNHMK|=Ut9hU+m6+m;9v180Uz!F}SL5Qaz#VpZo z8YqtF2B(F%6lp&Q1zS~l$-MOXef+ziPO0m6B7k5v1`KOxBj>gfCkh<-le!l=5V%VL z{Qmb_>W~7I%mQuT*$>2z3gEoZ7apoaf6patoWVfwE`VVkr8IR45diXE5XG>7zGUMg ziTT%aXnMbVyxXfT$?zRO4KQ}1Iv1Gf`uK0;R7gK31g?R6MFapl!Mh{pQ3XI8okd3c zT!RR3*u0#caV@BL{hFsp0V4AE{2KXtMou9x=$F}kbDwe^NCF_EEXc_WIQluf+bl-w z+CBgr$>M9A^^wE`pJy`G(Y_M`xtTgiy1(!M^_6t69W2<%$*P&U)b?|Uo1W%~mbkNnSER?3#rCx?X)5h6H4EU#aTs?n zZTC0?z*yF|0EVFK3y;oKg3{N@OoPsAVuYiAopxD&(m42;OK3PJV9MOB$#MZ-VCwP@ ze!#NuP-AJg(yQY_SN~t`Yi`he;2(a&PvqXUBccnd_Y4HbISb0``0lrb3(iZ6%ixnF zVe1P4TV%aYhP9a4+SQxXdT&)-Wa_BT!X{)klP`YXAz;_=&2M@fje{0iLsXhel4+fI z%!Sl3-3uvyAOd74y3=BLNF7zH0P+@&Rh)N1LiyWOF7;MNZ1gf?V2eta2?Spf$C=Hxu(o<;5G6lU048!*-{StZp7k8WNAQ{G z1vKtlj|epFcF1q&3Uz-Np4^VmP0!Rk{ zE0^CV<>;@*z=Tt(=jG~a9B@B=IyBDS-_HwiKh`_7gW(@z1kL6u2ZHCo(QD>ejXZn2 zw%U!Ir+eh~>Hj%Sf@C8yi@G1~7eO8sTOgH9mr%y~UVs_)A&et7Q5wVJ3+?r9tG7`t zGyXfgt5_}~0ssO;0c*e1ti=RE8vk2)54<|5u6;#2M1CNj02iD2O!?A;W}rF;T2S}$ zcI+M5c=fkJ9dvyyprpRipgcC?U3} z{1@^F=rG>%Mq`iaIu zUPAsBt@)8&2*xll-&|C2>g0RX6<&H&p5utJ415G61X;u{Ks z_^U>a(-5@}BRXA>e*__a1H(}9LURmZ8t0}H7!BfY%HHp&r|5I|CIRq_w)n7_)Ay_E z*F88J+#>rL;`@qJ{LL0@-PI~Aq(g!L^LqS2=G9D_$Tt(#7tqQ!00Kv zTval@i!jeB0BU#eR+x>cz06d^!uVF2@1tu9q<2Tmaz0SrrTNAAMEaX;9B00oc8Hx1x>1TTSOX^5+SK{1x2BCPV%F8ToTLA`i|V1iqgv zvsYB%LnzkBK_)_OKHG5rUUM-Ok+LhRZdvRv-p`2s1-bNu7^n$=RC=Dn{(4;(q0Xew z?8~Uh7O8yE7u;GesC=ieLH@I_2Y0OPhGTgUJk*4ZP=0&eED3V8QM)uXd$bYrcAB-4R;rq3A%5{)`1Qupnpj%&L zETQY_$`-e%%L+Mdh1^+CyT*f^O|aq@(l>Pg;(!cJ1o(LiNyhg;y5Srd$RE22z2-V*jDhRsR)260eJ-ODX{nCfgI)ti5_MmwyvmK$X9^7Qf51Kzli>~_XBbB z*AA;yh@WQ0Lg;&Wn;*!3YePiq6~zMCYNQapYi*i66qd+;C~3iZHbkUNL;AbnTZQXC zClDF1UT#4C4x2mkyxn13z4iyA3MqgC5&&`kw)plmGmU%B3u0dbS&Pn~nPoWH1`?cb2&!)A-UsR9oE zS{CK^ zx%pmB7C2u{r?7}NNr3tf(Y}L=|NZ=2DLVkp@IP^`Hi|-yaEk2aly`A^5+nc+0H;U* z(4YjrMMC2#7VLIm*Ziu(ulUYD`n3+fMTqvN*_0Wg0nAe&Uo z{;op)T-f@iEcO3hgL|y7RJvm!=<(alO6ka-^e`ZQ$~)qR`=8v^Hhigro%7#$PS5_* zt~G0A#qm%7S`kY{6hH`^26N5V*(bukrGcR;Ty!^W^_WR7xc_5G0>(qO@m3qZc~H>} zdq0rT!yQ@1=9z}k7EszO3@$dEhM0a$6!PM>*>G6-jjxLu6s7vYwze)@SJt0Y)uoM5 zweg+w0yFs)z_PKD_3gE9iR;}suEsx1NRIdd2eKZYhkdU-`ObHu;0RIqe)T+int`bd zbL8k>Yq;MWpuEkON#jQxcVtC;=aw&7IMoIVi&pE)z^PzF|KZW@{MX| z{ZDIMeHYiH^8Ujj*^!J-SIKBI$V-ytGaVkV4L37KSY-oYTmi-wXUBJ3>jU} z1Q1teFQ;@Oi~jCo?8H&N03zTdXg+65#;h}`t_Xk`ItrB^3>6+%;guKN&1xpA<YyV_>f^MXs5{d8YYw?8s4v|lbD_Rh$ztA1-?l#oOb1|gJR$xTFnLZPa-5yXrz@@R{Rg*X!#jZ3Bd}4qz&UTrXrN9~Nq-wpq|c-o^I* z>pASbm16QE63SwbOhhn(lxWjc%I>$p+b(SaY+Jh8Xo1=_2>_kQ`{sZ`l!*qG%(2cz zjkw$jW2D$0iU@d&9?^RD-k`ei=L&rHqHxjEA{^A`U2)nAarz7Gep_Y(_#;K=3r=3E zqikfgA@71+>;+gPBFJuTv>~c;x<0sYOd3>s|UP9`I1NDUgQ6!}n z*m_0*yMEdiE)=z<<0{)Y-1@UL;|Mu7&uzxra*V`&KZl=w`igdw>D$417{FIUANcKU zP-^Eay14f$#h5S+LQgp&3VgPEhSHvl1?PbiAAM8ahi+-8Z#RYd|6w{FzoHN3r6!-U zzzjFSX|1U?{>vnR^{p;m8sy(AIvK=&Eb+Jz09nW5M1VL*`}{H|sqQ+#X?oKSo6;um z-EOb9eZM548|s zWGAkEA@6@R)FYU3I+7Oj6jjh+`qMPQ{k%-~f0C~6XO+oYQXM#KX(t5)Lfb`xU;T7b zbde1a@aeYwX|~qY>br0q_aioJ`c_nCc}w7`<`DVU%8pe9LLSC|HhPBq(>E0^8xerf zYkQYXETQi`e{cg=EbH=2=HN~Qv`aT|@Z z)=;<0e^eVBVFf}UeEvLS4UYWDaOCaCf0ZbIB7@Bs@|$`f|2iN~ULR({HQtU93KYzM zjRO|{r0m%ToW^nc2hZo4s{pX-=b0cNfMTdp=6(KROpYY^LEyx;Kq}Kj=tpnQ2}?f* z=|i01;v5&iUHM1B;n4b1BD{?V=vRj#0Cs*Yt+CxFHG}k9hyZ{P*jT~ffcyv9SkUiN zrf}&%A3K5wzReH2*cLt*7*$@DO6N8D zh{&H{K4-xJVtNq)zHNE*lAJ5-HZQg=Zhrg&@$u5rJBiVKT9ZY;@&A`v?#sB}2mvAg zzG5AN{7F3s&TKbP`Uii}=trnI4%|QIyN7KKSBU>jWq(J%x42$F_ymh9kAC|72W_H< z98RKB5PwzuzEubDLjX7!($@)uKz%HGiWU*zg_TC`pX`A=m^lo##WH9y8$79g&hT_F znA*Rktzd7Y3AksTsYFF;Tj8joC&cX)h$UN-dV7^5NDlt(^CMzQ8l|Zg5rCHTxNjkNoOSOU}10bj|~J2$YN4&ITPL2{;c-v!qW^2Fx!2 zL;%2!A-8pLLqYQWdLMIb!2;|M03x6>kv|0?{;k)4RPDX+wL}0o$3xk?8a2pWdHHeO zH-KMbVRvbWOCZAS?t6%w(Ikzbq#+A#;8aGq=0t!S3;HEo+YhqA?V+|8&xBY;THD}} zAOs@f^g6B7r+ZrNT9@L9AzD7Y73BtEh@1!j`Ip=8Xovbv01R~O(AD;1e?~|4ehngm zVeAFMz^{4ggv|YL_yp-h0T3Celpz4JYPl$Jj#K)tSIrsec^0Pw8BephGc92U-^ok7bxAoEDM) z{Ennwx8z(-Y455!PxG|D-Qcj^lbUt!rv-KPo+5AhdZ{qL5CDBiC}v0L`utE*$7dxa z%*Y=}z^(r?G30BMF94(u@(0$0M+i)GBKl=f$3D4L$bajrn!tB7u}&cdAOg0tnH1dr z_?2{HkpEoB+>n318HgY5A87#M{|JWkmElCdJck$VeNkNR+u}U7+M|n59EfTF%V_>Q z-yHr-j-06Yp6>Q?dB>9b_v@$&q7=aMNg)D&*^xR~A0Nn{Uk6S^;{UD)0P_K0rP_a7 z^-$-=1(wY0sAZ}Ul2e6{-1|wQ6urD7en0nM9DY6x+ptnzxgzRwIo?PB`cJIOC;wsV(U-%vG|{90@9(wB#MWTIBgY+&sgw|QtkG)9 zPOztm;F5rq$Uhd$#|ymMWa#4SHb9a9EUMi%wa^Q2v=y9oR&4T_`8w^ZgvvS6tU2c9 z7S@jcG5`4zMfdbu1qh;sTEP!krzHs(1Y}i~kH~+R2>?UN`IR67BG>Q7Ab$s^>Bw^< zL#~1R>vzfLUWXKkLnJ!<8dD1?$HPbg@C{(jfj|!oF@2biLH;;}o6FTjAk4iNyjejX{n2`_{~`W426 zqymsXh#%;!7sx-0{q17@6Oleyj`(AlRmbCOgkuB%IvFPd)brgC-=%6>+j=%l zz#DI-^Nrv*L8`s##s7Z2+WW(CwW$u@`bV1a(s}H?BCauuHHXiMquEi%Xo4NQ01(1uMRp@v(SDG@ zVeQFu*30gbIY&1HU?epEL$cQ!* zL`Q>T<%x*SMaNPSd&J9*#-hqG9}JBFw69RNax%~Fg3!XSGDmKx0qj07PN{8^dTKF{ME zr!M`BfgxRqvsFws$m4sbje+``cOvi<-+Hf5hm|$}#^9*EF}qKA4<3wn91Q^o2_N69x zy+-~A)sFP}y!VZ}NwR>Uz5iehk!`I6zWw~Y^!2?iw4N2+k*cxPjsfC_$ekZV0MH4p zWv~Bc-;h7~Ab$vfDtMk7eMJk|7y8xo#;lsi)#k=;ia^Nw_-4{gAN-45xkePCd$w8V zK>iLKPl-oR02Yn>08KK6HSI>w*06IR0E&N_a9NFk&L`c$ke=uKf#99Nixs~w-u|Bw z%iyaBn?l_)TJ|W>Rd?{4X^a5OyCRr(xjY67?Yv;0eqXLA`2jQel8)dM^87eYa5ZQ9 zi*w4yK5B*p9@47MgI+YY=g0m0ynTtdX1>W;7rPRP41!q17SPbX*C%EEP3FzqFn-WAdrrTig^fO zyb}4V4ncriv_H>c#J(oNEFTlB$N{Tjz=;5kkqmT&K^88fCleyz@jOvE4=~i8wMllF z-4&);*cOOfzzGLVJ+M!0CeKPApvG`HFI#_tufC2&9e~r2~7c-GywO2iD6#8+}vjq>R&ufExL$X|sjVxS1xR{i%AhbqezLKtP84 zweqmd7L;NfeZnPH9z#Nl8=%K)#pcMZS@0f726#q>0;Fv_1oZv;4g(AYArf3=00Q@J za>Vb10L?Q007LK@)3`v%)eUn=SbBwICDl6nFJ5YG>#~D^^aFK{U~p9rDS!yr z{#Kfc6CDqqR1hX& z;P}JzfKC8_{P}_Of#X{#<#mReA|CYv+Q^@KibznKdt&G~-ja?#0?hn_KurKp(WL-1 zz~T$8R&>7>Ofu){nd7(T)y{vnUfuX#4pUa{fYDAz{*v`lnn3G9{B-?PL;#3?{AVIj zGfc((^8@5`RaTH`;PT~UMd~L?9r2Up3qMF-zv9V4rJv0qBY1fr4}j-^rS?pBp<)Hk ziu11lq<_0F4%j=KKX`XO)Gu6$hV}PE zTaTE*lh(xDc_jdkc+a%=Kfg0=ouZ<)+obpa>5h`#8$h*m@j0P3oLdLslo9~yb|6lQ z>6Ai+rnVpgKzb4Jrz>g?j-s3lkD&=a3DbJD)Hf_Sc_;hCu+%wlszLlZF;M!8}m(@?4Lj<&9i{uh;@+Fv5LfpTD+YLlIjBEbAue)SB_pcKHl;Jsz*lfCy z>^k3$g$E2W9of{^`XB;eCZZBz={$Y`K>jU{kB0$cAp! zkcd0OWPeia%a@FU5d-4fk7O*kb}6mZ1K}D4@3bF;008%o10Z1fK}wsyO?#KbJfpI4 zI1;Wr)-D4l0@kkPd*t-+RdN1*-OM?!S0jHh&*uVt*QbF!4s@+hg^)=q2=WJR-%csq z|2QM|Ds$d1{x^f_wcnkZ3ZO>*Dh}cYw!YIm-0trt;=m*Tl#vRchGL(7?_=$md^d?U zDAWB&`_d))kKl-(yuk4nq)M#unI1Fb&^KY}Y3>)hp5r*23&cTT!oDpjz*cojWPHfa2Igcn9Ksu)l8-0671i+;@{A3GnEn)~F+Yzk?%vKPL^+CC^?8 zp(6o^&~?PGTR;RXr3Q!q_iw5Im$=1?`558=L^szwD}C8dC21Qd_WDeiyf5rs5)zJJ zjl)(O5&5sUl@WU6m!EaH0mYEM%Jpi}v}p~0AGTFcS=a#3y$}}emCq#sO${+v)Dc$T z$FXz&tuh%uI5!`!MRh>TFQoviEe;PW1+e<+%UURt7u&(*LA9}yam-+1oc>fhrv|c} zI((ze@ei`qJ;u_*&0%%@TmDqy&Ucs9nq0_3033ZFBH*%!75QelaW|Dg3UK&pA^^OW zBlt^F5f~Kn6QmF4FK_V%CGv;+2SEOleO|5&aQ|CE{BZxLK}&5?Apg!%yUXMN$iWBz zmK}$wM1F^dX>``trHKcL0NREIu%l<^zuvBH{I9!0{@c~fKa@wMr1`5ZeQ{W={l}^9 z-cPg@;ZMia(my;Z|8GaqO*J7zd8W%I;7!ZVEB}fQ<*x$Lr|8cYE)Mwg z?sW%i@<;Hr$jY_EY32R%i+e)0;tFs-^Yu-ElkkuP;^1=k9?~T(5c0Dx)S^+-57D$%*v`cuXVpF1Xs6B9nX*bP zb+y-=c`YAcRp&A3>($Oe$ni-1iiZK*mfJF*wCU;Qh0+p{&fPO0TL4+KO$wm2s}7lH zmF-IBw-ndX)qdrLai{t|LEM>}?FKu8WKA!fxvoJB01f@7Hnf=Z(22vTX>Q@jC_W!5 z07K%cXP)x3U-v+90XEpvESO@?a`9;eSb5vdyYe(y(SLe(;vg)fwC=ixAUd*HmaP2B zKLwG%6Y)$Syq>UiPbv_Hv53#1zL$v>(V0sth`ph~Sh8zE*OPN*uc0&yXtHxq-&)`K zn`4)hZ36U~GJ%%lLeHRkTYoYZYKG5_Y7k(?{pQ)o_#u&r+`m5><=HL5HxiBLqM@Nn z1np^bf7)_?FQ!FO7jthAzpW({#0XH!FiRAY0DyS*3)mPv56m9KBfoimP6!_WV?#6E za|Et&W8T>oUfsKyFR6TFi!gevmw&a(Gcm*q&8v>aV4?@bxQ}2-;3mNAg@%fCDIOUKa9z3iO3!dssj} zC7h=7-Uky!hCGzFMRl40hJ@fg{r*O^{ZunPa$s-QSN++&tNP-u54e3MA|M8?BWh2# zttLl@)m=#wlGofeuB6TD8w>=6(}2wNz4YWSgcN|@=*XYPQfmyU_L5tE{DU?v(Ip+9 zKJjvM3?Xo7n4avCbos#b?`#_K-}?29YVZF!td8GSAcTLkQLTM3b8l|+(oc(dfgn`QreN0XYKndSp{KB@4j%T@Q_m+&!CO*JPm4z1zaHeU z__Gd@fR;N;>hiJcx0IN(lf~qzrQ$C-NU-BMVE>kQP+Q!Z!i?%(b}Y1~t(kJ>SncT} z+1n2*V^jRZ(I77%e!;iCjV|%&=MUB|D#cYaFdnD&9l=?q{*(km`V7=v`Ei0Vs8{jS z=T7lNe)+zsmSNMktl+ioTemKtm=SiIkZqlP<^fWGU^a1PSuTS7PlJxI%d!|_FU#V| zbMbQohBVNLb1w&S$7t)kFx9Sr!DI5`sh>ml{aXr#b=^)E5Gukd{PMb%ik)YQQN|xd zukBJy8c6SvngWrQFx8}?3}WZ=fT=jrw5|Kd>mija*DklI@G>CERa~=Q_jJ|pU`f9L zCQ=thZaUZ~diAQ4X;O^ZaFt%`_tgf3o9_sqg8Q0+NWiF@_8IftUGW3ks@p7OlJx1j zlsy;_-y<>|r%3>;lE!D%jsRB&M5%z4e~>@wTf=6$$9$EfNSCL#^}DE-TLJS!bwI}5 zNHkrld6-@IdX)|NWWn|THN^Tlv1c0K-F$~dliM7vi>W)9HWG;IGMtam|8C0q{zwbl zNKCh{gH3IXN1!bn;q%V*aV`w<2NDsGGeZ)E5|{{uOML8v-)*D-$M2@bAONoa!;v9> zmjFNnZ2fw8Dz&tBtzUihzv?R>LaMjFJC^ZD`jY1|hL~j0;#^cXP+EB_tK}Qsx&6<9 zj^Cd5v-$(_pSdMXK>TOj&y0X<@xozHTA6xKeSlNwSXD>JGj?Bb7T&;RvXP^yz~;44 zwWUak?x)*w73gOxI2LMx5yeJNKRymdp_e31#>yP zeIri9gF89Gw`M+tKcJb*eOdp{E$ZE)w+QmVsB)6`&JVJPdnx zFXQ=~JK~SG%=2ZLza{^qqPW}RR?x(Gkw0Y}{GC%DrL`^EMUd|V6e)-wplck-f%NP+ zEt4l~X($he41ic1K>psv-Y(Z%aN_0qS(G;u(sT8LUrSO&)ls`nK*;&1wL$lq>P^pw z{(mSA6+j)p58%1oX%GZO1m|JuJReUo0?xbF2p{$`Kl897Btb3{o{J-SCU*dnjQ&a#*0RU70dvYcd!NQA%41{cFfhg(I7VhvGXSMLNyXLN9 zdrz!s3l8MDJ`A}5J`GF_aF&iSZfPor0ODGk0}C|{;*S9G@4BkS5x*A*I$F!htH-8- zE&WH|(O9mS@aXu7yG{JE0|q&f-qN3n=j0-)2`L+hJ!P0JVLp1AC^*psl?K#0Z0+qN8}%E03s1^?wf^z zeU1H0Z;u4vG$}wRZbX1jpGh8w(lvA}&#{Fcj*D_Ga3Im<^kYd2#rc=8)WX;z1mY4A zkIRZ&i>rms=Z+n7Sr=V%3avcJ@^!fXM*$}S&T1n{032Btk5^ZRhH}wADd+LoK`w?g z!}{-SvgSLd?!jtkcoCN3NC0sSB7k3}^J+rC&$9-TqBY>)XdzVr$RDK5PZ7&aB2gDQ z$H6Ko0M(Ex;1?hg0aZ`|EDLqdS-0v-&h5L8TI*%8KAqLZs%xtdKjmEQGSXZ=iwL-` zI5;;I$K^;nv>f32PlJg3DN}O$zLKE^fH>%0NEBsPjNrnE0SyrUPg(KQ9nBY}rAI2< zhSKUu60q}662iav$72)!`#$p<|2l~>j*u5!mC;|0@Taii&wBuwu?#3g3%?0P?4nss z?$)C?haWnibv@*NE)IqC595Q_f~fu6=v4++wyT+96}XGgSdQab4WKT^zxYBETH4f5 zY*78xrGHp`qx=7wUX%-qPjE2+N5Pgpu)9R1>Y+uBCv9bfs27KMLTTS?4Fp=!#~MY3 zj_}Eg&OCgxKvx3@@E4tWSH$erGcw)#Nd5r!#`3(_dlQ1d_goxg0?{hzPek~h7gI@m zO7a*4Tf+*8kS4FQdRFXF=f{K9zc9b7VB$hE>Pz(*T>4bwHk5JOgxKM_(&Bm|LaN_t z#R1}W{fK1`%Qc>@Rh^HS3qxDD<}xS)*cRP&%s_@F8W!VlQ*emQ*UQBfkf%i_6P{hM zL$o&o!wA?HY~)g|S~?2CBOo?9wu%(5P z@riZ?DGvJKuHuY5l?i4^Rt$WBzVC~r;t&8Pn$M>o-A<;OmV7fAqk$}^=tJcbz*Zoh zO}geqKrl41aL;VHJ^O%k{M8q$>ebg6i@d-Z#@2;2GfX#RkIWq5{nf7niKj{xmeJ`d zSQB=M>&9C&T^+8frV5?~a2)}wx=)z3(TcB~WbwCpUf^nH8haS`luOPNw)po!?65yYEV@D~e`M`zcB1GE{Q{fR;MlrNZylFZJ`- zr=MQvXY|)yp`Lj=*3H}{Y?GS@%69kOwdxy1Wh4hcU$L&6t}F`qX^5^!mP>FnPYhB^ z`6MLngaostg7M$?|374X22us_pnH%9c-zbP5Zr>5I z-=jSDwo6Z*81?~f{1-G$Mhp-H2h{-i{36}}X*=>yt(^SZB8KDTKmKZt+`Gf4pYnV7>Spr2VJ*9-H}^P?AQZZbBYWBg2* zbDpq@JM!;mDFDySI(il%P&9kyX|4O#J)QfG6%HRy$lp`jdZGeLg)fE>FajV>jbe?D zZI#EJ%+1631GeiSa*VkG!BNgb1nfL7n|?`W;rt&K3QeAIX|y%bt41QAMtoW!z8K!cytdHL5VtukNdi4f4%fILK$f;#MlWkQCscz@OfX zBY*es>FY4pqeREc$8-_&Oh_4P;4#!+{$28|hHkEl*}?VSOri^^?hN_A_)piXqj%@k zTYs!s_wP4+Amq>Lf3L4a%aMOCI{@mri>veWk;Z0T?uuAZuT~ut*M=|YG2jetHj{dh z_m^5x_9kmb0Uwof_(c;n#m(Y!8q5_|nO_M=0-Pe}8qxq0BgO?5_o>1%Okg7fn2>PP z{Nm&+8~^;AC!)36`<@=@hXL;2qT5kW5(yrNAAksOa47(YHjQ+;LO!ZGhyeHs*Y$H1 zt9%u=)X)7ZH8p@#0W-GkIf7In7+&Z8sROR?Z=Yl1{v~#{5X6}#b)vIiP^n%^Bu|L` z?P~bLgPs#uuhu`2>UbN}5dGWz|3q*PbawXO(&w5d6r z^VbnS$Lnh2=w=u^GBY?4;GY@GgE0iTKOh21NdUw|T(2PnF8tnatk)tQn+)liyh7jGT=?{k z9!Uxz9ZUT_gS8F0Y+SGK{)hj6(iz+wimY=03$uFz>|{|FyTPBWZdPBc5}7!`FiZ<~ z`l&ay2+a8M1vRDjoHC`Cug2Qq<<`HNzy@srP0G{X?qzMg(l!*|YS`Jx3tdSF6uz+! z#c?dc&VlhAsea^9(7{y>e$IBH2*iGf5cON+uNePF8n1Y-hdH*-4`PLJ*GF~q_;c0K zrA?)&qvwkaL!d4Jh}_$%`<3e;@88wdhMvM}&J|&+hmj@j7qctBCGiIY9i9Pj13RoC zRj;cU-vEm=3jiV)d`!6N#`0wiyvTFXB>;WaSRIVnI;ARrL{60PbB;aNzhlZ5c+A05kvhVwO!-D)*|XvOs6 z8Ya?_*5~NR2f}f!PVDzC|TeK9Yl;>PMKqm(FOz#QU0$qpOK<;7UJ~ z$Ca>i=rF##gWCf6{EuyO9JEcXOAs9pG#I&o=sCB%JpF1Zw#optjevcS={X|dLK&;0 zXM)-B=On)cLETFJcwf7(Ca64RyER%?BiRK+m}kPf&MVhPA4o6IOh3yRE3nT@&Vy>m z(PwTvCy>~pg&tAl~?Nrdus z;kfsEQLChxZj>j4ZnWwKKad!V)dH<}{U~y6+e=e`eE2^FQ zbOkawcij~QUsm4tJ>QW3MjQG2wfm(Ye&^`SDUdJfx#Bz3^_l?iwvz5foHS&5hM~MN zO*S+(Lj2X5W&%IS_CV%?U&|zDn4n7`>P`;&Gyk#lu53f;rx~@_*I)uo^L9GR`qKVW zTJQ_M(-dGL^K)QNH*lQ2IWE-xIPVx3%kj%Vs)Xr>#ZA2O=QDMJ@4I@u@9XF1_O#AD z-3un+)efz8oezzB~_vy^q_TVFIHpttvqE;XvNvYek|NC%=ZgSv9T^Flc-jTno| z4}A*qfAuxOG_@aKB35kZ7IsDJ1Zd%da?X_?OBn09g}r~8F`RGF#LCmCho`N$%@5>% zKVTSfHA0%d`dYVdB7SkE^5K*su4;Ke8W6#eKY1X2=Kh1se@FJQO-JVBwS3p)?v@{` z1l&(VN)4J9lxLSKOJhK_b&*pKWRR*_^<{_vwN#&f8V9{WT3;ao`m(Sz=R&z*?BjFEw8mb%M*cXF3tk+Z-t3t|o^V#f7%xJG2M@3{-F) z;eaIINRuG~%t?$6C*+UNd0ZfWs{9Z9l;2t~x!{PIG$MT49#y;$%Jj*78*=H#ieP0Rb@1 zVK)a)w~@q1L@!u=@k zfQ>;3PK=cK@f;#xzV(i|Rdt{0T%SI%Eh#}GHgYR^QuZ*%yQT9qcj~s)U+^OxXGxp2 zt}gPR2WwJwf&3o^;Qj%;CITRAJ|QOp$U_PMAhu@>b_Ofuw*Ml&2jTN`QGU(6>ly+J z6qL^WV<&*x!1wXf_FSJR+;lVFsrG;@6sj%qN zX>DL-SpO_*L1}hqa%aS0&v3e@n@u*WSj}W5Gnv``ekaa%GxAnebv4;NL+z=$8TZDG zh#NO<#5pIzC9Qh;S}17`R@{H+Gy+=Sb?*4Di%65`kz4(eN*@DnbRp&;)VS0>4OVmn~*f9xVi zf&_$9kSpqL6#%z3F#^Q9e+Cg#e>2hN9$*^>`e8*^%FUn><&<9-7uz#&PW{cGaKB~{ zU;>U*QS-jqrCJ4Oz*Kfu%=*jBU+*tzO}M(IAOVcP);9{CFEJZ_SLiKn9!Weh*Y@i( zR>UbZzyt(T`=t2ZX`z{Ehie@0X&I|~%>IM;S8+aFV*rTsgFN$R^MQcgk+_S)Rzl1+ zuJ|%gf5`+T*}5Ya&GtGvhcr8EKkIsWHF&2+N9q)7&@ImvHJNBC1CAPw%~%(#>0Sfz z%WJS=U=%GP)TZxigA;WA0oq@D>#03CZ&8QVjQlJ!|N1HI-T;a;;l~buZDFpI;T6dj zj|dS8fuKDMZ-3HZvBj^3XBJlwdS0jl7ori@yvgG$BpPv#tX~fvD zywY5mA2i?Z6&nC*nKbIu2WiNxfxp&Li=wAu0N7hTyd5FlXDn#Vec8=VrNf~cU>3wU zY=O`#LW{v*G+O& z!?KV8Q%qGCE?dh+wtN-k+sF65VEDmdGyZ7V9N^F5(q5Q7+_*i7RnuiWh(S@mZzV!* z+>XwlRVesVY@vESk^r&T!W(eD#KVayB;SUV=M6hl?78l*>(!VUiW;a@M*#`m4<8gIzlv6 z;(yiYqLh|l;EL+OPyz(uXh`o)zR-p!46KzSnzTc{N48bc2EByhMA!p#pKi~A%3@Ke zBVvZ%!48Y;UzuAIHlAK!`nC$zvqn#r{<8C;R-Tm8X82^mgI#)a^o|I+T%<3;w}4Bc zKKY`nsB%_uK`b%E?jwNuYt5ZXT9fdYIckepRkw{=JE4(J1HGR=4blLTv(b^^faU!a zV@=Zsc*a~lontqL><{A)TBj(!uqlv^-g-}lMI`JuB@EG3yii!PbXD^69;Ym$E9uhxyQqih%L)rsu=Ux%Z?2(7*XJA~p z4~~L<`aec7zokciTbT52a6Mwv3}#UfrynDLPIT6g{tA`_6fPuDvGW<6eDvz+PD$0s zcsaI?$jjEg#MchP*T3J!kqUcvt~JZ^m#UccQ;5h(&aKu{u3x!bh#hQc#f*+483984 z4G{fr_(CDuEE|@%T%NDeI{sc^QJ0A=5Hd!pXt2e!uL)}gsg56O>sFS#t`Yw_!F`?w zLy&p4WF%Oa0Qpc++e#x7OaQm-Vz*m7W7MvAeGd=Pb^2I%Sug zA_z4zX^3u0Bb=77UNVR{p2L!fI^Cx8jdY?*J7EFQEMz9NN`d;)u7*^_^@9e6c zrsmmL@F$EMJtccE85#l@8`iGhiHjy*5r3kN!@%NQZWRx7@WFvfx*K4SgiR6vc1+q2 zX9)5pCuc(FROY#T>v=H&+qWcww1h$F4@A(rg#Xgl#!V3ZC{d3;kS}EjzqWTIe(&=# zLQ9=ZBoPOFU4$Qi8DQ71Eg{vTBYku%tknjyx(7wdv;DvX)Wn}$pM?0I?P=?&tV>*v z%_|`g2@VP)@MgwYjseHqVFF08kmW0YyI;V_rT^%PfFl9u!brZX4KM?i7>vjIzB;DW z-s)3r<&43QnE>aTym8PDxb0;4U;wUNn`@iQRr#dH`x#6?ITun-mid@(fk^Ste%@a$ z=HEsF&;`WY5W0JbySw?i*F6#YK7^l{J&;U5f2$y<5?TEsR)%TIbleF>AQ4TK^7yGS zx)yfdi})YUe0oex^y`%KYR%hBuCoKgxQ_pNopW8}J`02Ct&(QFJJdyM!Rr8RjMw}aQ7@Zm;t>5`xk_?L+=pXoqT2>b@g_`W1a_17JI|GGmI~Z@Lp#Zd0f6uWcQpHlkoPMFz?wzYybL zDL~xkCsYJl<~Gn4szR6?X9hgF;NDjom-LUWH}i|X)bu~Ne&+1mgovpvO7*?414tzA zxFJ;TopM!60epW`7*ZA8Fmb8VAl^qcwh3wkyomug%@NSv#nPv7dHtY)jbzx2$Wj2x zubBXtfmYd*+Qz0opzj8+tGD`q>w%7eb zPz`7SP2}Mf?LCn5dgdR(8TEU8KfxHU*48mG|OTwe@qNFU0=`uZX>BDOa28zD|(b)=~h@EzN})fWDl#5(Uz#`lBM^ z81QW+?XcSYzAAEt#9L3RzvS%yq~zy3z`PUPTzhwqSVktpfzhsdnJPJzPyYig8|#D2 zD`OuDwGMx*^uRE!RmKuM0E=`f{Pq8^P^iPdI&3D|A&~EMAySl|kvuhRePP9Hu$~z> z)aDbIg-&iAX{SLE{$DQT-uiCgm9Z?}5l6DEeUf*j>)01kqm}KU@aX91Wy- zMlV7LDb*o~+NgYkQEq9BFZeZ3Sstg6UIb`Fzo;Ywb^4K1HZ_bM*LVB{wW&dc!JO@@ zPXGhGTg`J!H98Pe!k%Gwa3fU%P9whq$xW30GFzhZMeQtU!atnTF(fDgeKgn1Zzpf+G9F|!=Z?iVuP zk+I&=N?$~j_)i5Jg3R==nUHtalVJNco$(q76-=H|fWI&2JpV#g_pKhCDIzb@0p0_j z1=t+Gkj5^0s)DvLD(kQH4nX+|<$Tk-56AMAar=5R%YHH2xzhSN-+clGK_p$BTO%)+ z90*Gg7~U1|I__+vzOT#O_BW8Q>N=3h3%iJ!`cX)Y6gLu+>50Hm$M^rsny~C^mU;CJ zijw*zH&h4>fJYKr(C*6c>02+@Vi^z0*;?7lf71E&F1Phf>Z! z#NIX+Ja#E2e(Txt>A8+sJ7s|j0w3rck+skh9s&bsr^Hn(=R41L(nkWXhOyw&!r4Oe zhMA^AY$9}|HV9C;%;s%T--lqSo+gkT%W_q`f2U3On6+RpZdl%;dtzEYYpl;oH0EAIe9cJTI*(VQ=5&wTYPlz-7I;j zo2M=AVaK_I8^5n9s9=0?+>Af3L*eRkWui_n zdd3k2k5AJH&0b0X_TNNxP)fP_9rfCd&PK270yLPkM!xJ6=QxI6q7p~7;cqJKx49Zz zcq$?Xa`!u|M@yUZ!Jpi|yJ|N|U&vr8teMl(T3^OQ9BU%i4@Btq6BB2Z7IFsO*A7&@ z+F!K@f0Il>B-6Jr(_n@!v&*l^I{mDTDsc!j{n25wUzg>K8E&QLtbx=p!^c!#iCvKl zpdJ85!tNv0@uKVk0`w`TAI{|~V5a3!iD}B6U^FhtQ3o!E55)`s>{np7#hFZu8>>%N z-`(+_GW=uZ|ED_cvf=@IhX)Cs1qi)pfQT9#mGT!7o%bp!+}blmT-ZZkZ70381gBs8 z2lH2&|7qtRoSvw<+Zr@garbi?jO&)Dlbl@j6ElgWYp#jtTuMY0Yt|+b|Fd?jUE8Jp zuaO$FOu7xY)eHgG9U`HaLWtw!_>XoRJszo;uY7IPyz&Y92s?y4obu?pm%|2PZdwNMUrKe>>)`78CD@SWe24hshzRH>L(tbJ z0DW3L$UPH(obCiMOLPPAufYVyaUD9i`erKMeiEFv4%hIT3V~=IE33{>ok!a0+NUSk zvkWEqnf*kK3iu&#pHO>;y46dXw-hde_|MUA7{oA9{!I892(^#zbwb+6%lc@)S~Al~ zdf%60O@_yNE6#56);gtSe$DfP0r2dfr!f0BOy#!o;Ej@TC)bU`(bdos0-C&iB$2(0 zx(F|B$v3scykY>%3^@HoF$4G7PSk0;;pA4S2hxZMwgRaZ*gxo|+PcD@4{3w`6ChWEzQmhN0J1vXZA?@ zPwebz$2i?MNY8 zQLUORB`mkpX49vx>iK(;5P>b#E=qmBPX@Q>ON7vC05$O5qLioUAgu=zu(X?8*6)fcR?08*%sXQw;uA`0qZlMpE3egu;B3_i~JZUFDD`yt)ZN|avuOTb&B z&q>CFA%H=m1J9Q((=@sy&@Yuy`M%%AS0|?ue{4Q@4nPRuuUEwoNBPY1#YDmg)NAg| z2((L@OG)v2DkEU@D8>$TkEJbD_WM2^SGs>@{}ZXg0gp$|+mA^Am|>S$_CY>$)Ij`4 zn*9R|k2~QMCN6{Mb9U>s{pQNwz1VI{(Ix)VwCZ1IyIg?T|7o!QC%2lZmS0TIuQ(ah z0BhTeo>oBKJAv?nCQh39pA;V@4mOSOGt}eMBy?OOvGT@=M*sjI07*naR7`l`ks>W| zzP?0CSpCN=N;ChNiGc@*6L!J{v;7*n*U3oLN%~LA=fgWiZ7_U#)Xd)LU;!oWC!@Gi zasE3+u^@y}1}!4{x$G}ET97!@#NTlcegm`qdgecs3S*RpfrO(pBE6%sVFG58l>`83 zK&xofSbacDz{dUn6Mz(;FT!u)&pR+n^@PFibk=Z6OCWI+nZ8uxrd2r`uhDXtedZzj&UNwiPWZbs2bwc&I zi=!Pg0fld0bNs{XpSelbL!ZlHM?U~5fJM$&?xQz{hC%$hVBb@S|AB>`3j+W#s)^T0 z#L0F7-gmxc1WJkdYhss|^r^aEnYcO>hfq>N?fLjA0VOi}0&Qu?B&Oj+!!(Ybl}bql z2-t_!FlO?jP4AYP#m{W;+2tPSUv(U+2BMM)806%qgu)4W##la14pLH`^Cc~5RUSQ# z8UIObLmS$U!Ab30o__XUi2tqs*R*_rmrG&9ZW(Q)nM#zS+>RBv6MH_yphv(a_kSl9y!4{Y$HOCchQgX&{{iM+kZD)Qavsm z=i}#_!Q=AxFE3?GEKl;}=Q2K3n9ERZ$1<~5)NAxStsiYIn?uK~Ij%Z8aSKK+y3_X) zQ{2fgD{)MRU;9mf8TdFyyeqvUFL590C51Qxw10YEe(IZjnFZE z6r;?|otUl5fDbpt6^!&Q28{d0!C|k;)DwI=L#^IO(PTtWd_d-zPG2SpLnxVeH1l)0 zy+%wA^sHsyQ%&Sy#~9vH)|r3rs#iACL+$A;o0G-ip;bCx zB|W$;@mnwpYO5o?4@3=eK&Pl-*3tRbegR0=&m9Myr_C>nigO<9BxE_DS-t9`bDRf5 zKfF3t{c|N)QC0a~7V}f5k=hc$4j#1$!>_;6VDJ~_94eDf6EsQZ=)~7{1XQ{(z*L%$ zDwNL}QUDgQgaM(X0yz0m(gJ#kg~nKj`e~Geg@!x~M2xgV69n~;Ut?OiS4{|94xy!( zwN$mf-=6b+>gNCC>5tdhJqo^NC|1ADL{4x7qw6~ifV^h~LHWjv2nRi5nFa73A zC0CVsRm}0T{ns>O*P33NWbOS*L5%dLBZ*44&@%(cO^ts+mj1eY_fKv&2Y<9LJ-Zl< zuV~4i;$Hv#{bu_a*&94JXoBd=f-?-ju4>?_!+R%4ic?cz*jG;VD+H+&`fegDI(Xf< zChm;zgwm0ZwrA?fbqhHC`7A&Xe<%jT|9l=BDmLnTziEfy_c1(6=!tnKgI#f!FrbIW z_z@7nlkb~=!IN6ot)p*7p+q-F5+524-Qt-qUNxgK6Tn^e4~W$V@wThxi3V0rfkzj(#8< zU|)r;RH7QeNK}S879VFtQYAIay-g^1kp{y9`HkTZfap(6^dn~T&s4_iea-Is>|Ij1 zO7Cu7hRs=DQfgpvM-$o(zIC@Fj7gjB<4QkP0pz!^^u#r(B`y$j@^<@(({2jurGNWB zE)zGWv+lo@09gM&5Q3|jfNTHv^^zw!j5|Lm1&yjTCu4Cr+j6V`Z0VeXW}b-P#~~5^ zt{4Fm|NTF`)$B@50PO!CH<}@a3L^TG*Yuq=`#<=jS(EmB+JivL1a*v_knUGAMFV}P zmH_C=1V2y}h`NINCH_^`)k?EE@`0c8YHL;A@C2t(Xh{Gb*aEKI+K^!tHP7DF6A@o( z7LWLIsSdkH1inaXe{yinHk@mqUEE^!FXCTA%>ETIH%4f04w~y)&kwM)uS?h`Cm3M0 z**hm#Z`W{4zt-V^N!!U%Xa6MU^s9~iXy@}g&EyYXZN@Kt^%xUyziI%)mOdT-*MF&zyvT=9EyqSG6Gey_H>{rq({=f`e5D2bRdQgqf)!ArR-RGC{Kj<3o$Fy zXS2SsoBz_@PV?FiZ+4^0_110)KNP3Q`O%Hd>1_S)aC54Sv0EAgNCAMMtna!zRBp_q zNNfbU5`dG^9tlZpWCD}{CIBQ4@eY=OU#+!0}%d`Am_WmDDmwuvX13{W&|{Zy}tuxz&!KLes9z^_eK2G9$xwv zj(@UZFaIYmX|IFB=IZ}>eXXh+o8$bYobf5?_T|!B2oK-7BUh6%8T=KZ&sMN(JOSaa z0SkWvL?3_=09wK?3Bcs9q`%Y$8cMVe1F#7WaNk(LI`J5;J`{1ERWrDd1RxQppr;0d@XvpAt;Bx*qMW}>;~=7cSd771M!-EnUfTk; z_5C@T=i+il952Lw_Rb{2{kP;zt6Fw=CtYNQYu{2rtn1&FSG7+9cRGfJ-Bk*R{Z9ky zB&#$h67(ufecJXbi{I;;59M4w_JaYa3qRB>`stlAE4RDmyw55C7=Ty}AUQ8c+}6c) z5%+Vx@;G>Z-_5gs5Is3z0(zAcU^^L4!h1>saxGdctvu^!jAe|Q>pT>fpQUILk%u^|bQ~<_d4r5Tk8u53$@q(^vo}c;ymH@>2$blFVfVp%K zp0JcuN>|Zq#}V4QpxdRs$NBJrzLOZ8kzD=aylj>XKyy=!;z1waGm%wHqT)FaoMBl%4L7uR*gaD(v!ylL4GL(a#p&aZC zgQJuFPd)<1(x=_|q1Hr7#5cxGui&t5a4nab{$wEw(`j?#e=m%{79Cbg5{`aQ#Dddz zXFu2cNV<|_Z8gLH>nKP+MYJCSwe98`5W15;s4#kyJiq;Je=z(OI;B4QpG)Qi@wo@R zx$io(`?e#>RQc2NWxW@^eRrkO(7JtXa1#2&kJJl*((_qo?%}ZYQJCYgo{Xj+7=-V;QHQVP4E!FROd~*Z(PL{_B zAkZNJcw9_@xFE02S<^2%UlrOw&?^Oo!n`vquyr6GU}K^X;}!a-oI26U6WKfKkV>w9 zUPD5?Nc|*wQM9J=(l1G^ibU3&%8vVG#Ps_|5~m73h;amV?`k3;E!z!kGPb+3BNWhY zKCkVj`@^aFwNxv-w`^_(S`sMP*gt?KBFdOey^cVtiQE(K13QDWLy@SLk0b z0ZVa9nuD|+_}q?BkbW+GUQ$ZUhpv8Ch?qCNTYV1_DGDDL5dWJ$mTE*}n07$dPdid0 z5POa)UFke8AP567%;s@vJKu|h`k_2T?92!)YG;Vn*8ZfWEb=Zja}Pq3&%mSvi2ybQ z0EC)ZCF}XIjTp*LLM@tKim)pAaZnuwT5-}>d(}&CsTYrmjjR-g-d>{lz8n&99GgMc z^ns`3HOt^)L#+J1HsI_u?aJ9Ut@F; zj?qX{Jwg3wahD#Yrc5>TF&msZz0!pV7wxVW2u46vw@1KW2C_YD3~2QWeaOs0JTQOi z{t`?7o-X*|@Xb52TN^f)e&x9`^H1UrgKofn$FJ`=5q&M+%OwOb0X=p8xroX{Gd-ZZ zZb=Rk&>xfmj$@v&xL^zp%nXof=ZVstU;+R{V}_|Hm@lo0NW2l%)F8bpaajhH@d^693R(3vf-+f*%%%LGzVMQRGyj)X_8A9Z?6I)8BvL zpt&W6;?-A@;S=LjfAh%XAM7-Iz6#^}CQ+yDANKcNJ^4P*wxs+2iWo2$fEutvpw|XY z_=L4ziV5g-^!xFRlL4ro_esuS1cHc)k?c!~)aw5|z!|Qbi%Hnx(>Fq!`wIkOqiS z332`t#&cP4I0&NC2??9Y9E)H9li;Z1wEemDqxST~lO0WdApV=cUi>_Z@6P^?kAM|^ zq&z!Qaz18)w@&O*OT~bTQvj6csOHSO5N&m_u zk8_pIOh91(R=pIlTMZC>V49TQjbjObZUxE|0f6{N+Uh6nRo4&m z^moyT{;Z%#0K{2KrnPjhs4D~UzbLf|Ul2Js1B@_5td;`wQyPHIAKm}p!g;9#3KF0H z=vK3Qa;5Hx;+gTA+x7Dx{`KIzu%74Om8;F@xzycep1ou$(v36UZJm)i{%!rVI{ayV z@A|o)o%4Eq7-rql#$cRR!$K~0hwt9fijdV!vriI-Ij`?NE1mj|FHBy7xh*wEtUm>4#NYdCL_t-%zzne2 zm5uxmS1)pFT4w*t@LjP^WokPLX2W39`dv<~Y@$yS|2l1#AaV~$h8c;W9Bze&yNU=F z?{-y$@?b;3a!{6q0{vtZ=DExRCZMl0906Ko1hm9n?}X%WEiSH(|AbzA9gD;Srl)$_ z$d6oD?-Lgw%iwj5St0z?FY4%iUQ!okpj5{(g%RjHw{Z8WyCoKxy2}Wx3L&ko)|)S+ z0DM;%JeUBhFlv;)Y35&-%X!!F55)iVZ@=Eo2T=u>5uj{8XCnhZfiMB%J&ClmULOX4 zBj8XXW3O>kc;}rm=UyY0ll&b?K zfcv+_1ab)W^?kQA`v*`1H0O646aQN>0v#1|;TS%_{F(4GaC{!Q|7QNY^u@h~Bh&y2 z9~3NP2M`hf5GRBm5Q8_6b^g2~1vo3=N4m~RvNzfl?=l_U`uKc5U`1|NM{iK9((W#%+GjcACc7$`M4L% zgR(fC33nu=8L}z-9O5A)_Mz{PcxL~h#y|?tr3lr`87aVMXXST;yaxM(SXQo;A+V?b z3IkB^i5UUJ{Q(d?pQ99Fm6BHkNgdJG0oXRcgexM6mw`A3lFXLqD?XO+aeu{giiVL( zE$%g_Ty}xSx&Lzy%*8dIC$N}8gBsu8%TbmBct=W4aD9JMh!LeF0Gp%?oAPwyJo|_6 z0}y{hP5d3_@Lao$iWk(&yF-!SP-3mgPfE`nJS77QiCadxoTQ-_X~YA(ynn6q5|(t$ zKbC*dQ=lU7nQHOI@wih8c=)%+bg=N_Ej)=C77-H?SpXpo*vNO_pLqS42< z%LCFMfNBue3ys);;ucc5%tIljful9{GsMJ96H>G&pH3$U}O0UTcwH5N?$R zE|*6H!XcP3X1V1#@xHvf-`f;)D0P!o6igS=>Fa#K`v~p`gYIgr_V*IKoqY?(H~R-q@)pN*Dn&X9HjIRjtdZ$w?i-?QA*cVVm~%yBq|%S2%m zmdi$;r{L2-3`)qPd1*l3Z@43S7=2UPvU~}(N2*dtV(~xc-R{%1VX{#(5&#bG{a}U; z)Lsj}RxKT+t3L8c^89(NOpxyhIc=NXIA~r=m;0pHeO}`UpVBA5IUZ!9&v&Us4|SgT zyAqk`Z&uCPu4@CA8&es{@WB(TtMauFRYBn8LoqySguY44-)8+;pY&6ty0vrRArb%e zHymi8^RW-CBz++aW=(_uQiz2|B~gq87{A1kI+KHiGC&52Od$SqEn90o(ttphzX7K5 z8r58@I?GEJ)q`>Xp*9dQrha`h1eBp&1sgAw`L|bP2eK0^3mZPgq0!84XM55Rzyuts zO{aIXp^y;B-(*;d;pt1-aW8-#bhKdi%5waE63e*p5#OgsTpBs#X@Q;ga%SDeZ8$Mv zG5&==fS(5;0%iotRsMqI_*}+z^-T;2ApkG|99;rjr=^G|cANS8oBN-W4&`_Yn16UE z36@j`3O7Mb{5RcqT+(D;27-nO2-RAJjYfKxVrWNL8U$ChHFBpA6MNR7pGH5HVt#0E z+*AX_Wi=iY%Q%k6{258=v4Du2qRWn1HiV+ek8_(E*mDEe)y8Q@8fRND0UD8Pwgn^L z6+6?M1;dobuAPx9e~>7$zFyyz&2BKZ!ygl(^rgn_SZ=z9So(h`#tdg*H9)aAn1D#f z-v3Y&9F`u`08?njFlYFy+j>w15KQ#-21M+v+E_6VGXvdw zpNZ?y_I+A)e}Ydj5EMOT*pwm58jIba8Yc-tzHrgz(Sh{^(6&> zMV5WJlbjmPM6slOJ~a(D?Gz}a0JY9u?`CO1TZkle5Pm~_9&ys?cNqq!B^-vnT=nX- z84`eC0My3gJxLuO6W0uAyfV|DBr!7ahZ*3&rl5xL&Q=h9;tKIEcXx%W_i?EpEB@)h ztarvXAHoj32rp-ygycnE3Z$bVT@Hf(CyDkTH(xtz5DWVRw#{cjQ9Wtf`O#JsxFiwp``Z?#>f8Ahq z_Haf<;AIy^XpxwRf8niH5`&7@u5*0$&U;&OQ2W^U9&?!oSMQlvB{Kn(`eOfTTexTa zMD!7b#&n-qNa?7B=x1`60qeIg=F>6PGBI~27=Y%zWB~3({Ike5faw3l)mWy+>Vct{ zfdK45uFDD@DS*@i-8~)->0YLm$6Ai@9 zr_BFRvs2JPB27aN`-S;&-*GYO=3ok6IReB%2wCKbve3F1xd1rJvlQU9xQ| z0$&q3T(-rdebMmus9gh8Uc;uh|?VUA3H>gnVfFttq)7QYC{;=a| ztgpS;xk(!clR=KA&9&7c3t_nS8kr1FqB*D%bz zRjmf-+5kA6L;JZvYz;jbA$bv@Xkfr9-84>tj=={9%}_JNS+zXW{mW^C*{mk)5PuVF z(yV$%$)UA4al$54>_oZs_^!mr+cE}|KLCYWs6jAmPePB)XU$M7t9AMmbd+9dw%)!P z<-QigPIe;6m;Uz8OC&9y3I`TZ-%)=;1z;P1cS^pXWt5Xlf?DWosbW?dsyI9(ClLQdS)MnPp<6bywkavkuh*TMm@O-_@p10NIm^{o3wK2H;aZ6`)p%!OVHm*S zR16UQA=W_YX`_X{D{jEqI^KqT5Ki>{n*c_k&*nS2&62=YEg&Lx8g%JN{l1&>b){J_ z0!(tKa-u8-Plmtb6@r^%luNuMvL+Ko|XX#@{Bt+g@+$M{hvtzV)*Ve^d4PcDDj- zV)9US0PH-74@D>2pN}*PTB!ioM1x%bSza^CHM9$Pelru`Vg_=%%Q3?9k6ZE28MULf&X!5>mRf@p)2&fr>a_2Mk3&{f8Jpu85PR5fQfBLUqZLa*{ zHy%huYr=f2K*}uVB{H{R zr0)%pw26_x-8MwO3lM*1c^sqzhN9>*DQca5raE#?826LNn((93JOPo>>a zC_@Yr2aEtje<)rQCIIpIVyd=FMzv-JSoX((N`ONZ2qs{WD_q)Tfx7c)fhtp7SDo@& z0$vp!gg+-t;3BTKpWP1QMu;QpB?X1)z1Deh*}AT zX0zhz!T!)OtLEBRI81`>`U{6{GPXr3<&07)zbaPl@Z6VNgM8Z;XSbDRDiCno$PgNQ-Qd`@T)?odpW$X49r zXDFh$$jz^urjO`O03*=XnDDN55vd=T37}WCQEjN^x}*R>>V-&t><45&mbkvVgspFV zt#Z^N?N;ZWtBKYMM7K*m9RnGUE=6&ek#qEr9?{R3$-@Mc*IUc(3%46gKz}6WM+`t& z^5>Tjk(bnHA!&mNJoV}iMPJmXVK~sS1B;{5PF-S!-4#thGO5?!IJn)n+%(fmHQ z75_4gGqLDr%V4e{`~bwi27kVIu9_|&y9UIc4Ti$0T21_2KnKZN;)Fp}IO7V5iVH27 zc*m$gXToj5Pb!!~wwN|xXEhh$pXDY=OT1myl!jU=weY^vhb<&Wie=f@(G z+cgs~|9JgHa5-9o9VeV_KfB6N+yU#w!byhe^T-MbkqTFggIq(q%5`67ohDw-`_q{H zCk_d^dgbwh^$O(GP;MPz0{St_E0IV6tO6J&Cw~O7=)gdt{+%C}@5p?Bng3kGSEN|- z0WB>QVMYoNP!oUo323zAUx=UINQMBSZ?kHTsLu1+OECh|gEG@&_CM4*`Qg!lW({II zk`WlEr%1wyT0Kf>)D^5eEClnXaNCH9y zup!YgCIAeY^6{4VZ^&0iAqi+zP-X&1fSwvFbuj@ZtT^=n%$IT=#Ff$AivNi%--FP^ z7bc(!#&Hn+F8E#@4_+%?;YzG$?u*W|od*d3K&|W9KTBud&ex0RD#^|j5tS3IU#W32VwhaIzUUg_r8toZXTNvY)p3^`fhL+q zC5O~n|Navf^byZX-?`PmcZA2Wdzbu)QVhfm1BZ8|b9!Xly!?oC@{b`R69_}&Nex(v z(?fTd6A*3JD#Y=Kh_(?_c7!eIq!wFc)c22i;R(v_GATz6zMAG8dN7?%9bT%Q$x~YY zuU#35jqQams|_R>=xNqIe@lcP^#J96Wse*l|Us3?=<9)d3y)uzF&0}Y_IHm-z`V1V+r*g=a1`|KQg~&42&j{&{mHJ*`aH!Q_4*dpD}K zSR+h(S_%MCt{a@ruNfY81)<9q<9@_^$<;c8WfzW~k9pdPUi?McOE) zqIgp|2O0%`EISM7{v~veRj3pV(gb0~^Ab5nhYlM7rOioA8Ew=@xJB<{CV*#wEZM7q zwx>-U26|C?!agEhw-IrER;-W7GAUchAnXbP+Bp?@1U!p6u$nhqD08WAvi)S4<+Id~ z&0HE0tg%GXV;Pc7!hlwULb$-Y;Ki<>l{CboBlP-u=l~T&P!gUh$mh2b6#A(MU##E9 z_D1g>iLA@d?-N$;>Wek6K+3K&FYD2pb1GN$8j6VvCcsOW!`*YiZzi^UgK5sZEdhav z0Kma(fK7~`&8v6wOrB@Q_T*}|kOHV}G0cP+8Kl^2DWheK>ij)|h6RbzxX@05UPa(% zvbA>m5s73x=11+z$Qr{z+zBs)t6~`F*#OK0-;<;<)}o&%4gH4>YlJq?xj|`gi@>Bl zY=!7&#;1H2WgTl32V(z$Xn|K&IeUc4Ggco0#`3Sx&yCtJDBOQT3|HGYgbi2LWILk8}2^vDr; z_Mf}9Jnm+(iliI=ps&ZvNwarX#J1CZ!~B5B2M7a~4zsU0=r||s7ytrD0ZjZ|KZyUD zpX?4l#(>8*z%W^8=fF#Q#o zwN7=Ung9OP{boxW3{BZ&N5EQT4j6&MH)SUvu^LRkXAGz;4Y#HSc&K$m4R9b1Ob)67 zPyv>}0^70i;@kClHqRkd5HtUjY=?dtrG&EBJw^`EIEMI&)*^E-t> z9X?)k^)L}Nl4)}x0#Rp}T)5oadg<>p<6CdFw|sK`v8MUwZw;IO=<=#R`d&Aj1!h*P z5Gc5`W&)g+c$~!I?T;gv0EP-fs0^7Ef+bp2M1ny5gP9OvY6+&(*ZDaoO#+0>$%qOZ zpZJ{_KM2>e{Vjc(paaRkn<2A^pRk7nL@<%W3?KYssmGA?aL*g~oMsPzl%J)S?FaG4 zfhpiH;{f3|P#^kBhEp+_OcYT07O2t^flGHRKMl@L8Db)4Ve~7)qrO+q^hu7fox$g} z8?YUL`>xZ~J^>u(5Tfg4i9HPS-Diy_0 zv;Kj0xf?xwK?Er*=<1XY^?cG3XR8l>FPPJ@)eB7gC)!GR4IUFhR2wZ=fG@DP5+)!d z0i{2x;~{cVnhwK3p20PFYfIaJDI!e#`ls`sS-)`LeOaZO86XcZQQJ@5M@m#P>Rhu$ zC=h!8x2MhF)tJ%+1F+AzR1S7lLb!KnMf@u!;Im*8Ku6k0{D1M~OU=K2l;7EJ6%jT_G!UsI3HA6y5}*mi8d#j_aP4O2 zf{lUfw5PshI@89v4`c`vz%jo4*2;;L60_^{>xbDv+svC!<`N|htIC6tDBhBQO}Xs$ zx4ox4eoyLb$ZblB1c2)Br8xl7`JA@X{diw}*BaOOmC0g&=ooO$hRxlOy&eRMRGr!- za9=ASJUJ>G@JQ5*&RU!a1PBP?Ula0(-S88XgifM^RYl1VMoQi<%ZnZOD&h|lFcf~o zzQK&ZSi8+JqYm|g`em$6a)VJ|eI5@eKQ;nfRujNMdNefgCuOTTNEJd5z4T;=F|<7p zwnd95)?nt-6Q=$!XGuzgTBK(Ys;&`!%(OXD?QPLzxg1{;j)emkT2&H+UtRz=LG4T^ zm;lw!%mC?Ss$ITAT;OLSMgO^Urmyl%{Ha6O5Yo?J00iD0v0O<)BBFn!i67yPXaPwl z@0E@=d1qE635q+~;9G$15Gnu{Mra3fZ5$;gu%@>|Zp8d~G?YZ%-N<>`ZE7=OBF8l2 zZF*e+w$ZF%=fe7RJJ>SOg|u>Xp6Lf=O1qtsfPF2)s^J(1WNVvDG?&qo0VzP2_&*Ha z|9)N_A^{lR&CZJWEeF6Nm+yo~DLHjB0puUb@)Q`qEmx|t5FKl#Y~nwAN@^K-Y6K8h zMW~L3*bv4bn1GEuuKIyy|7HT3*HZs46~OSSIO${tU;@B~x6*(o9?%((hn<&)-y z$j?v|qINwtF#%3b7%Bo$Aq@Gf2C!(_=^*}*Hpf0p1EOw#Fl;-xVCK!?7a?vFShNp* zVU`-WM)_D)$ic9L;Y?s35&&aI7=f0Z&d&rW90=t^sBS(~KoI>Qk~hIb($ATkm(_qo!gZ+Q>vMlw z;zH6;cRFlGa=@c-cqgcJH9Avm|gu};HAB458yV^s%2K>~lL8tzs>KX~aO!{{k2ID`h z|IgmF*Pe3ri%QKh{^&=V0jvIDu%#!98=qDZn1N>4GyKBqBhPY^CE600Y)Kb;Q=ZZo z*d9enBXS+v{*q=XJ^T#9URk)R`)L-IZKz$j`nk@T^ib!~xg)i=)<-MP;`?vOX^58c zsl!fiQlWv5KcT7Rn#y9tzv}d*exVOjId`;Fv4#Pzge!2>BMQ#;d`VAV8c0Me{QZj8 zGA`9VS|w5qnaIUZd5AD&)_)fsWbx6KTpG)c;Ysz^Tt0Oqec)1tT)YQc?n0EMh?JpK zK_cCXg|4rPtj9djWhCfCNEv2!gj(jqWXQOWO@JO2szg+I(hbHQ-ft_7W^Xgp1!}vY z>M&5frW&V1d1zzihH>cPoDL9@$|ekgTJ<>(0HlB1AF6M9>D!T1HUr7bSr(@f^Y=h+|rU)@~F<)X|{W_=2bZZTAO9C-@8Fht(yIUpNN`#G-$Sal3c0| z3yY!k9=r}m(E60{G0Ow_78R^Mo*Np1?OBbglW!629_Q{&PVWz*vKTrh@(!t24YkCD z*Q8o&pf+G;+w?T{bTejnNsQ3D4{}+r^K?bVGkr%4gpmyo3o}Q=mIq zqrX*+vJ^jI96~V*?HxcKd>jyV(Robc(?C4Z=Y(lhg{uD$nQhzN&uh2afbWerKu^GA zqjbckYf{6|UaXyW{X(+GSRu{@Xa?VJ#Y&PE=%cbhQcp}C8wD{zUWU|0d62eb|8}39 zg_uxjTwwMy*SF7g1@;f)sBZhV{oDzv5N79`OifFax2w{2oWk;LvOr+%l}@@1m?D*> z8myPxr3Vz;iTwyb{D;y6Rk~YiGNA()BD}~=m%=w%jy(4A`}iZ zfajH{Gq(9<%U?F@(XM~Xnq{S`5Cj{FX(OXv#X++(mlU_{3$asR3#K6b#pq1zgO~*?eNyEIJWopn(fc&zy{$2n0-*}1t!xRdv!Yc zF;3@?qxd$};PQ*X{5H2&&Z~M5P{iegW&)gp?%er0EO9;tAnzP<-Fuc8hbWetby}T+ zxJ|?e>+`xS6OB5qKIcBi&YHnoh*)(IY9pz;au$>zyYu;Wev=RXOc$6p-tdW39#ia9zbV^>gkfz1f$M-()n7O zCBqfOHHkj?K!GhS0wwTWNn7D>U1=<+(Sool5ut1*&H~o!$AmcPSRl7hzp0!Az7btD z!mO)NFz-<~Pp8&cuj&`8=2Y)mC7_ao%fM+RbWX2sF?MMgf_!GAQ(0XJqwD5!?iHRp zhCDh5z?&?z1=095h;yx>CjQ}cLX~9p5AjD5zzZ8-0%lVCh7pE3JiG`lGGk_kI7?vh zNSuoa=!b1WAzb~gbV7-&6B(sp+@e`WNb_vKA?D@+INf0-!W>ovGZH++pV$Ui?S1Rf z7xF3pa*g;$r26k54W5D#fH!+vjm8$dSGBcjh~Zb23|i32)eoBGR&m%8>wA@KsJx5w zl5FHQ!NCMr0zfeou&XvpCV-iL4P*JLhVa+0yFGYBOaMcYZ|5!=*NR%Zru%q_6zKtb zDdU`3Ghnx>aZ&v&HWUA!g-yWkx>`qAr^7f`@bzCP3_un2sZaZe{GZVGH1T(d44gyt z2{ZHD=MX^jXJSA&27{ur^{fFMvqz(6_%8Cauq=0T&XN*F064sHtJ(g-=i_|)xyupO zKO2cZ@_N9Sv|Jtg?Xw%FymJOrOu$;gN7t@I@X9rGpGn3*wl+)2h}Reaqa~&7GN^vb z5Xu#lR8W}D^KpUvb#8`$=!o+u$aJR#@%kImv)m8j4_y5DeE%#cMDTgOF`#YTzDm#& zL1YHnO6UqIZPf}BZQ(sXFUfH#wVwBOz*NXIH0vy!U(GRZBBfTRPGx-Mk{0u!LtQ**EIE7CPowlD-O z6X1fttZIXr32z)_uq5b& z+wIJs{*myqPku_F-|L_0dEdI%GiPe^V#{!^l=r?r010E-9cq9=5F(eQ0E8gN3LyN3 zxeRr?Gh*NK4Byw?ko&C>ux@T*0-WdCpZt+en~UFgx!L`>m)dKew2Xi;78sQU+k$`n zZqxkYNjA80(cQegk^s28cJ}W9#SInLV=vlW z-!#>gkx4%g`gT!)u0a|3>7Ary#Jt#p8}V&C`rOY`WWFW|sHBgq&j)%^j{sX$+smLf^aACaaQN|IaG7(7 z`EVUNrUOA7KwNU>khDx6+~w$A&i2D7Wwidhb`=87eh{a?Q8Bvs@PurM%HH7se%H4| z(13F}BNGFFJ5GoWmeAAYqQ*jLJv>>>YY73?BP#!4uKO>QtA6KY=JeM5x#qWa|5p)v z)vtW_GJ7$roLLT!t~C>h+YBRi>=P``Z)y3Sqyl;E`)dRN1CcGY6=FoT`c*j1O@Z*( zhqu14?3cry=FQYIvl1ki=QUcgxA=*Mc`gN;;OAPhK?RT;+pq5@6$? z+O0J99yN5A0=RR zr!@+unRGDAgaG*&=$vaPq;3^cT37F=dXV>C6C}5$(dw$Ca%P0>c+(B8qo3sWcf3QV zcWA~rjIdFKpjK1JlChczYS-;svF{hp@jCs$C1xm`&gvn&-1W3#t6rB6(VuIUw-AwE zTWXwHF_0T*pZbQi-K=21c+oFFXBJMLclulVAzY0_^JH^X-S#AD88&~I%*PxSdSu$< z;;h29he13G-VYQxXO$yybsN*UZoj+Zd0c)|OE6+JmZHN(;E_W7y}Kaz6mO`&Qs?px zk>?R?{Bb+Qv;EwSDMcoa=|~`s%;-IHKrdH|+BN8Bxf9)Za%;VF@enmS#2>ez;XAyZ z?P2Yz`?H$eqvN>~z`1ot90Z>_S(n1wnd?Jb4adGzqYRSZ&sVcmm;n3a_WQF=9YY$J zfZ_p6NDN~IK%q((0ah9hkht-1e&RV<^yPt&S_QmvK;84x*ly>qSMPWLAy0rAi0&b; zd$DW}A`a0<*Kg}k>kyMs7>L;Sm45n{1(Eh~-OIVlcuRWQ^wwua0OKE+fU(l-&PwMr z6Hxm-};Opev zCj3rO6My3Rm41F924^wSHoViKyN~-2{e*?aOaE@U#szVxC~jX9GkQTPrZR;eD$VTh zb~E|W_fZcw{Tu3U&tHxb7C(MV8mH2KTqgbZFTcOvG62NaLm<*=6Q&k!Ylq4t{%u^I zgx>xm5dk%iRg-O+80fkZJ_3$CqeP$h3-Jfcte30uTQdb9;VzM{(|*!(>KkBUQWsR= z+%WRhy)`C)v@1zn$(cBKsO7_a;@VWg#C;~apQ#+TA?62A6TlR3$mLM8WD}z<{)Xst z0I{M$-y5%fSx4J@l?3|L_vn5rzbhfH9c`NL4KuI?c^yJANiSg#HtnVthL_5CY}Fct zS(-_G8L0M}Ncyyis7V-E3>&2Z+@zc9wc`Z{xi*d`+Apd4`W%M9iC_Xknxpoy)Lb{q zgg8$0bDzu%*~9=O@pBQZz$1e4gdFzx^VAOJ~3K~#~Q;PRuI(QE?Vk>dog1c2L9m;sm~&CJ^w z{FP)7u69I+S>9Ysg2!z5?N3IaK?=b6H?JsM<%Q@o^RHp|eEFutO*>ZoNCG~CM7*y4 zCq4h&du4o1DwPY*KGnSYTc&HG^D?&db5n%9ysF)PZn;VVM|^dIO^2+us)haJ!j3^P>3j)qBGTEN=cN zs$wQ!YqI_h2mPJql^-57|F~0O?~6nvR(y*gu)`n9Tgndt%l2A_LP}@pbc9?3s(&ypv{%JYApvlmNY?$nt_$~$ z0rjSSG!-Gt3gzj8S_+_;05bu^V;ca#1eiHmV*=vtC;KU{TQdR7_C5QjOe$%RThaMo z-0Y-(cSk#<(J?Xs*aV{N9;V7$1wi~qNx*d;OhDZkgBd6+k=82}@X_EBJ` z3PU0OuO$F&I-Rr<03spa%;Mj?DN$)Ioq`!)g+Pk^>%5#J1sIXX#J^7PMM+rREakui zm=Rdi282qF_fo);fPV*xzemJB(`$Zmn)s6lqN)Rx6a5pHx&KzE~74<{l|sA zIO+gw0{9ZrnKW#O;&1w~BpUb;IJz3C2QrFTI%w@SQtM8+!eIWSKVrgbZ% zpnmdP5cTgbg&^DB7e#)mpVlgr9>pLSi>L zN|=eI9i2PSOkWA)P$>-Xrt3Q1)~~^v=w9z=?YJZ&-z0;889fXW-{*x(P4mXJrfYH$ ze*Yy_1!k8-1X$w7Qp*cM%sQrj_Iljor~jxVL7Is!MeMfhO-wy<|9#r7z(Gf+_%rwA z?}~le@NV-hkkRyxX0TE?_CC@KS=aqk(?s#-#?1>C7tOzbiPfw+Ap7E3)c|WY0zx)R z_3fF6?pV5W3}25-__5B`PHt@PG%yn;UHSMYuQ$`@ztkK(`$BpC2dZxc_U*6fS{n-k z0UTYt!f%|nnCj#8{ua!=n3@)L)K8X|n$h>Jt8uPNs3)ELGqNvvObq0ByV;s4KlTaN zUKKJClPY7=@j+n%W@1KOdjIui=cej>?pLD7k(adQ1M0B|gWl}E)J%2U`1p^T>3eTA zFDg~8*{UoAXMXa6qt{Hh7 z6M7I^7Ulz6_a1#ix8PBY?;ugLHV%{7p_WcWh;n~ave-ZY1WdV`c(~erGqg72-o&x zT&&ubS-6&u*E8@)l0=vD=zn$NL}Wfw=RqJ92GQ0Kxu>6kn2?tCjiTyjMLGFyaZ}}1 zeV_BVOCBeqD9&A^%d7I0qMSgY10Y{eRd(K0%L_}38iRANj^HOpB8HB=2kpY0`!E@Cr{j6ou? z2I`Dz_EsXWcJD!4crb1#s}ECC0mOeUgQ(`JBA?Omn2sw|f@?Z2_EuG7o?5KWrI~@h zNJ7qTe_G4ieDC;dZ^&NMHuXvP8rhe%cE*-n~X(EuW#A*y^F@1i6LJ~3j_?6!aPlcnKZ)m&I z9~4I5@u!-tcYoAAe)QuXwC7U@zEpHa7e3#{-RorWm^O~mY#-p48TxZ|1KU& z#si!Ig8>sD1~*Z?n3icAQ!P;iZoK|lbMd9Ggn=TGiF*OWAAtBfoZe$57YQHmj~NLU zTVs^_9R-2!RR9Q{IS2?J6gAg)^4oWZo@UXW2jTy|Ck9|327nbat=|k0b++MM z?EqMCDL9*>ui0_OI0+Xmp092T(fjSS9Q{_Z9NZ-qpc(WKzLw z9ry0U2RG6w&5c5M3Rp^j@t^horzAgiE2J5U#o#f(k5ko-5&M#2J)P4N+aX_0Zu;)) z2>o6uc4#lNJeE-+ZQ6hW){5D5L7TJ;fD>3BVI71O#DfVGM&Cs<{~-K6SA*6|@Mii* z;mijI3JL5t4bbsQNUIfCrYAfz0)AfHB{`glr>XPo-iRxFu9pZF-Yo+MXC^@5aC)to zZC`4o0F-Mc00w|17C_4gSO-a2^a-ncQnRm?B{W zfG5f^)H0{V`x@|fPUvMO{N#ZdV21E#a20|V_oUYo!iMm7;XO%!IDjX`2)rnw_T+iB zue=h<+8rh!K+6+U^O&zb5>{_pUdC)XC4ERv)R<2>lN=)1QhFfC1n@!X^8H zO>pC{UJnMKhkD@*48Z6~)mKaaM89SNmXcBdi;qh9)A%(LuxYk@*5}t^{t6Yf*RnsLVbiIb_*myXVQZ-p}(d3xkWEFQ=?0xW`6r*MgR#5s)*1_J50V^s|Y8#&TIECPI07yJw2rRlsKX1SYnSRfEm(36P234CAD zA#4OlH^K`o@1y6<4wDJh?0XHeiV^2?suy%ALuaU}U8i@o+ho+!Wf2(_FA?3n0A?pn zKU~_$Ax$O~zO2Jhn?=LjXFkqN?ibE0PY zrCr$+bo8^4LO&HVFnd&L0__n1EF=ZkMa7c<6VR##6bBP9>*$!J2 zu+Wma&hWWs&1>QiUAHamo>|)j7_|a6Y>f+$ppN0;%3w3%H~fs=eQQJPdelf8^>ENV zVC~EVEF}qC1Bsw(7`=NlE|CDh2+VVQFV631b-+$DeE)ix{U;MJx4((-F^;LSw08qeBn+fPvI%?JZ-W>#P+C^UGCRQPU z+B&p4Bmt?x4IlmSJQ1ulIN=&50O;=JLYz15!L8p?%S*BH$H>o;0GWXWAxBqFfA)+Y z1^^W|n0YY0Z!Yt5jl9G}QI*J6KwgJH1eC(;9 z-TlH3fc>WA^N#KIXL4gSchWnQ=G8;1w;^qPy{g`74y*pKM*OSnn@(%-e|kw1!oCp&uhfbe4!XSk?D^mIgr zmlz*i=2FA~3;dQd*0%%f;b@@2E+17&uY*~<%I%^57LIAxm$Qn1k$?jaQ~~O60UjNX zXx(t`2)Gb;*k7j9;pmo}5lx!?rApH7o`UH&KtLzmwvtw zP~(Bt_NnuBFbB~xW_a^Ho)TH&UDQ=d1jCITix@GES!MD(lR@2XN9W%@reXr7CrAxQ zYw|w2Ey680__%~|!B6!qx!fP+_xDz>X$?2{ut<-#&Nv~$u0(i{g86_e$Rsts8=h2RT@gmci@!Q&$(6H z?2dNmE5y1@LnZ;&0UhdS9k}@d&yX1>*oAwq6!J#X=ljn!`HVP8m|}w=;nSmAdLL+= z@M`RwO26r}S7fSxT(3H=I-ft1_>(xjoP0XA3=&a%T^OeLdJ5a({GL$qySf_*RafX6 zjg;V1V^L@G{cdQ6GBhlDzjpX`iGTm&Nz>B-45gQ6=Fe8J=eyoDs8|KH2fu;zQVY4+ zoxNN1%S#zTogkSCgvKm<4nec}fKVTiHJvR4$B|dj>D2_hHQb-DW=;G#H(x-G*=;ca zLy5U@DSAIp#@7AhxMx}r{|({1gZCEAKmO$kOYkmjZ`Z3?4CWHG_BOgQ#(5G;&5rbr z+Uc(^E*)4({Lj%7@r@-qN&A~0#ci$mFCPpw!6sO~eb`KYzaZ-Y+u2HtAH*L9;04X} z-zeX5Q{JhT3y$bftRl!&2-|Pnj-+?wKt%HuVi7MZ(QrNqARwHG@>C1@WhVkJPr4(%y|k_zk-JlNf;dfuG=f zAtJtbO5-T^)^HKKT?v72WO(h3bqU4pbp5)MT(kCj>;IkSt1rIXy#7a5Xb{^w#V};GZ;V8z<*Ei?COTME*OE7 zA({~wFcV`E_4!h>-uqhL@aC$s+qJhPu(1PgzQkNx+V!?LZXRhX4 z5|cshLqR4J`?>%R=(vB31yCPIKyub&H3_qS00zLfCB8om7Fg>Gyrw@cp4$^XUooS- zJ7NYk!#m1-1tNW!M>UHbVOBvOiBv-W9qsU!27!*diKHswOJDm^bLoX5A$aa9B^*n_ zaq-0$oTRz^=ExBc)dJ1MxsD10ehn01nZik&+QY8{i2O z|JK+ziChL6j4{q4(?^mhnxW28#$6GPimaJ{h5X{z(C>%@7HhK`p)`#5k{AaQp!%ba zMh^{m_Rs1mh4WT6TEZQ7^`rJW7Uz59Kjl8}2G%f1h-_k-fe^?M z{?K*RIUWm>p|b>lw03RGx#8dqL{Ze=1Il+wh&$!j)lZEKeS&~HtW$P#w}d_u`MUic z)W2>J??T1In?wI@6X++nqE22v`=oQ+Aw&G}iW#486Y+Ou&;AJk6MsTLbyx=(_1Wqa z%Tv$(*Ata17yc`rnXCUr7L91R(s?DxxAL-SF%t#r$#0%mC7Wch(uKZdQmsuzh*lT>9I4 z&Hh!1X!i!q)$dG#3CLy-;!lVE8vu!7?!TsAec?iL`-iuhofis`qlB8+->XENs?@GX zvC$EJEQH@-I%J8mWW+a>)%WO!kVQS~vF&E@xeLuQi9d1uQzQgSN$_tyiyO|N_st7vyhZj~1)j%FKw;q2siaL6) z5SZq%LZIgR5d74Oo>(#NAzUZ*|G1w;oq`fuGSH?u={skoYQpb&o)(@Y0caf; zDRbCnt34gMJlYpeg9n$cG&|R>M)a{Z@76aOWz~i*EB3LD3#nWRZxvTDfjEUpa(Ws31@1mW+(K?Yd3=9*JETdwAHS7JOE71n8951Qw7J4SA>DhPTMKct((4(1XM8u$+pnz~tV!V} zq9r5(ceO57_vhM!S*uvffYEJ3KPSI~H@>G0E3P#A`Z#n;i``{LRjym@;A#NJN1(B- zaB`vd5sn^7%%Kn8|5!8PgTIun|Ciem#M7(ZtoxTfR~{@dlmqFGzNx+E|KcbJb|en} z`)VhNwSwSh`_0~0duo2#e@urS#eVNGUnLXs)-7W$eFORFp5AO;<|FR!^VPN2(7Vkm z+bYv={zDmosVu|p3v#dg-5ZkV$UfvL*)iZcSTOy|*QIvYZl>?AqzlCFjq_RtfwSBD z@@Ci9UIx3(3tv<{zu0eH|E^5D#Ee8o)?kswBT+251Jq+alkhvL)o;i4p*{7Pllnxi zW54+PZu1-e{^jPs_;225E=+UAt^x+<(|Xgd2o|ZpBjFDKoNUYZ+O-hK%uazfR| z2Y{htZ!r1zj);-$Zo+jqlZw(0J@cv^>QICwmM*Tl)bFdm`diJb|MMR-fARnQpgDT! zOU<|=0o>AF8#TP^Wxa5)SfR^b+LcdynoE!tFAr>ci{c@m6B-<59!S zdUB#00QX%Og*yn%`$cjNo7#;1^M;5(}FE-D`m%aGoJ zuk)VhM%^+IyN-@FFoNs#H<4V3ZiTc)__v0d_y#dgm4@rPFW(<6s4q-4A^wAZbJ+aa zc6rVy>7CP9+wJQhiYaAV#jVaXy%Vkx-K1VBe*yz43>gfQm|09_YX}=WMFgXzhTf6{ zzugZ*@oU|6CilLw(hlO^69WJsGGj2B6N2auE0JI%%AeSEPnFvQA+B`mRw8~>2z8^@ zs)Hzpfyt3IU2JK`ChL)Cggg(X11UiDy~2Pd#c39CEj~ODLfVOdNFo8bOvL2s9{10wJUW9OT;du=VDiRl1~-%r5W)`(zWAJ^3qqb6 zIMeQiM3G|kvnxIDOo(o-L9zEmF&%HJ+~YP0|DAID535|CxwAi3jsB^QF2l01qV@@} z@#X`J{NDH8S}(2Rwe#W^3ITlK=e`u_cK+@!HlP2wRsX+|B6t_FpH}_8p1fP|LVMkn z0CnzbS%Q-WBQWcTyv=x%C{_VUv|7#+@2D#pZN!Z;{QSm${AXZ?>M*1 zLa#osI!-sgqpgzvT#o1d)2CNBbFG{QaM8L679-G?I%~%2ni^_#vg~yhGKya?ffwNL z>)ay!BrbBt1ZMsw{+!1QG7B_Uo|nyB+^aYCX=fsCkW6I#z9j$=4FkXdW0C!Z2^1n= z&;0$2HiQZ2j6L*VVMJvv4GF+;9cufFkW^NU|zX8<7leHngq82~?H`nqH%67jvHoIwbDn8*}nAiOXq z;wsF5qypNLV3C^+EpD!MhFgl=9j1e$;bb+?_P#i1nE;$mEtbn)m*nG3GkSjXXC#E+ zBTFe<9;ax33fWm_H2FcM6Z4K-}p4b*#5SP8Fgm7NI(v2!_Ygc z@4fx}Q<7d43)?w*qgqOu|&hnajz?BN8j5YfoKXs+t$lo2UkU7W|48CzuMq`FW zWfZ+9hWU=vaW$OJnV;i^S{Aue&GIi^tSUgF(Yi#&u8!jt>P_2JU>wX$y3=2bBqz5D zqlN@v6O1mG_nfl==oA>$8!stc>rg23pmqcnDJhxDPNIf^7?=f{1SKpiLD4maf?D9T z1}CWm+C)f-Dgtbp)QaRg@7vQ-0HkO=#h0+dpyc+@E`KSBLysL(4N2ISX^a|^RWH48 znojsXe)m=z^J`x`y?qC}h3T8`uNdVv^F2;xOn#I0wTwVFPi>@&PYuZk?CF!F!H?33 zmdOaz#GeE-EXPn5{f3#uYDfVHy>9^G|CR}WDnn>EM9^5?XRu8}tsAmYLr76ee+sDs z?klG-3I^3Syc6nLL?R3l+xb_B|M7KRI^aNg=dwZQVK|q76ab=c1|Y)6w+a)GX-49* zr_akJZ_NZi{2vl*k^r1U{9T2mmiJ9x7jeF%r8z$*q;_N8G5`?$O|TRJ;y99_U=2GL zdNKPK@&7Ny1pF%ZnE9I#xPTNuY5;)niln)-Gy*asu>Akod;cIg&hx(W#SUiJ!{H8Q zxZo1&U4mQ^AO!|AP1>?VI?P#;RTeLnbB-^uWLI=jQvSofyK+_T%2jvgs{G@+t8zJi z_$nG_kEw9 zcY1g6ivUHY@@(~X_uFs3-P8T{`+T3D?}c?m9)u1I^G`JZnV4R`qyDv3*X05T2p^k) zfb~uW07L))AOJ~3K~#=R5+X7GU(t&DDa!;L{%+EB-A_;6mTf(Y`#j@+&Ye;kW+?Ni zT9cm>ZRCyH_lg-!xu&Mios1JYHRtxZ|Ej<04nKTgbV6ya^%1O!RRGQjy?pXivL{I~ znXG5*z!i2(6EM6OzU_@yPZNl^~M;p z@W9>9$zrAC6rYX~JaqE}C@%w+k@-7Z(QG*78bO$EAY zD8J7C){!`U`IQsyCm&q&^Yh?{2gd3pDpK-zZ)kpW7h_gYcbG{gy?pkF%mNp}mpC{P z-oxm4_}vD$`q+#j;qbGxrpVNMQ>kSG&{_+Rb62ApvX-m15;#UsrRQDAf;?7L)B!XT z`h9Fs&+}G2BS~5H!!xdXbU9=-AbgNi!9)*Ohvag)b$k78J9_Wl-)7q>SEdxjY)kI371RYLPPy|Rg+3=LTS3g*&u-=QWmmn>ak(5*^G>**`tH#GCIqZ2`c0KR`eHO) z_dk{Y-@ndrY$CGv#|p{bdyhy~viIJ5J4aU8A%yHbLRRJxvSky>$u2UF?Tp*^hx>nc zKd$Tfdd{PzyR_C%Qj|Kk=W1`~Y40f5Bbq}e?uHyVzz;Ws5NS4c#pzbommhsIV~g^? zvJhg!0K?e)QAgnv6P}XjdZTACQD$tRrSdWBf(2>NRPM$=BNK7{?H`?GAK!`d^~~ng zhw zx>mQ=`}qm_nhT|{Yvr2m%{oV&sZS?Z1-ITyw{%SQ=xH7h{@v_no&(RB!>H@LFVdJF z4>f9d_ngt%pLqO0IC47j=tM(dH#KT!;^?@2(7&-G&kys_{}A0m&mkrsve>p>ajVet z;EYZn6R`(+jzZyS?=IztcjPec74*e^MYR$1wIK|l+BHvX&NF1$7Kqchg`p$T@sVP7 zxz?g3_`8ji$v6JOYw9pSp2#SShty{K-Ho|atvsMO3MQa^VctbaEnO@}zR!T{@Fd=9 z^64nmjSHqFD6ThH#g{GaQ_kN=J2115$bs|^kUO##H!~`}0D)0-8;BGVkcGVOPe(+R z7HpH2lz<>JIM&@Wn{nWuxH_CoaAW=544_zCS^(~Cp^3Uet(BRBM1%R-NW4Zc#+Bj?0*&etv;4+gVQ>#F?>kUETLloO`+ruBb zCff27&%S1c=scbj41b2+;2r(f7&c5#mVv4Fx5c0(|9I}-r1!15Xg+q(u2hEECf!_h z{3*~cOY0~q{KTx#o>W{WI^${zKD}R#4N~Z8zw}k^r!1#pJG@Q00YhQSm=M7JT z2-E)~Ez?~$LJLBx{hl%YNg&)tDr(@97PuI8;VmEHKsNn5B`bu?=q;kb)!gdVFdU+w zxHC7gdVM-;Qq$bvPOm~eJ_lJVb9@Pbzw|IA{I^wpmpxe>|#Q~olOY)hho~abQwp2lJow$ z{XBUjriustUigY==M?)|E#({f^EcNH=i3YvTKeVd8%o5!l49$$F9AQ$vPXJYWAOsRDS#9*^f$4c2;?|q7Z>r_;cWXL=PS>iEWQXBvhVks|<2$RGaP^NzhpNDjwpZ-vqWRK=P}gQe{3*NT zgAZfVqvY(9vTTMq1`zVxbZ2PxYhW71{$gIH0VZjm{B*DXnynS^FrkwFa3#@;*RKfk z`|dxhb0BXuBnTA+08r+V|IGscBJ2@hhjIbEl0|ZRkjn@W*JldZpq#4}zx5SWBWjpN zS1)CbKSRS5qPPC`>D64~zAW#fK3{(9NXIdt5jxcc==`$GS} zQt>MI-3mhc;*(Pc^bg3oA?S$<&%c8Gzk6sWwU!%Qj!9?*OZgohhV#XM&MZ)E(zP*{ zXf65E6%R;fD!9snU8*GTT()xYeAd}bnF@RS{=VGz%?%DDjFV7TUw0Vx*LB9l+CHo6 zmrGIE;J}2fdt_?PLC&Q{2KtpHJhQ<3pWZ93nHK}SKLR5O4dAZ8KaM3TF4Ih|V!sJZ zw%z-tOOHpLthpY9e_1};+csV+kh9vH#?DYxL|)c`0Zl9(z?<^$ht$Q~>oc8(Zu|%F z!OZlu*tGLB?bTMmxCV6>#Bba%^rYdNDg9+bB8{r%k^Iu-qGqHWenA|e zhS<{)r=Mp(6MDCgKfuLG1D)vjJ5C0C;Bhng*I7PcZo8U!{ugo}AV>g@dG?D)Po~DA zMj@0FHpI@o{PWq{v3MlncTBrbClKD@0R>0M# zy5IOKE>v0(_NF>Z$4rcTCWn_e+;HJ zR1N@!;0#190I!Uqerty#_#<95QSS)a5vl+0Lk!@7i1e06eK9d9SvZeQS56 zwCh%`Vt#7TR&FU8;4l7k$mzgAH)q!L}5gVd@epje(J9Ge#$nF$Dw9LoPNZ;mb2L| z6ebhUa&;&z5n#y^9yqeFYvC~94x(U-R=&F+L<*EcQ>~+QE~dL?U-^z$oB2U+j|-oE zH=Dl;`%R+=FvMnbvy9mWhTwX^=?Fd zTrzg%6xBJH8vK^}?EiSuG3aKBt*f{-RNc_=5XI=%Yrd(6gGN2AMc`jLfM_(eO=B+B z*A>)vQGrOm#cCvF6XwSY&x2K!zUu(l&M{H~$p$Iv(u*P^36vFkG-3dw3Nbkq?-3$` zGs4+)%z3+pW`_JpXPScSL3IBo1=QG`KuM)W;PlTU|Bmq`R-R@quIMs#HC|-#XR@Gh z5C58}LeHKsVr@K*@g~#rQjISNsQ-d3`aJWUt^It0sC7@2HxV=@7M56i9VJ&Enze477+(ao=d4q|~&S_x#m7Al1vP_)Xhzgas4e z`+$Kn2O#y?A_=KK6PMY=IXN#v)ySUcby{Pjgucbr3Q=m>%-QYEvJDv>QC>g)gQop! zvRb*Gbi^qSjbd3ye`|ZFsTljOjDkH882HfC7>bK`V4$IXyz|~d9^{=IWvD05BzMq? zsUNsQ>&Dq!zW*~|O`rhcim7#d3Lee9AIp?@@{VZ7FSbrj^svjCm}%i?xu_gU5OCn_ zR>;m@&v{OjYP0Ze$e4Nba3R=%-}n=YU7a6&-B_rH-;tM;El*x-O@La2NKV!4U8&V% zfwZ(*@gw0qNx)y5fioZO>KgI!j>X4)>}pxkSNjtU)v|?YP-fz^vn4ZBW(OQOP6|qJ z)spN~gxYic^k$9(Eq$=yE!m#9s+cz{Lnwsk?q%~9WZ=|rB|oY5n2-1eMHiu(QHwcf zXya-U8yi12%T!r*-u=}f!PiI}UN>jJYIofE=jX}T`8j_kBlvj3Q@l0E@wO)NSZiGXFlDd!G6@ z;FcY_ym)zhwfOm)f7C~KfJLbM%M0{)lKnqw4K$nQa(lv<1&y)p_0kuS;CZqn8r`&_ zJ$sClmgRWiRAs?dd^g2#P4m>Alp;*o_(AUCvRS4$thxDkzHq6PWtb{fVXidUaku`t zHo-tSRiDg!(}Oa@FC@#DrDYR|`ES~a!-KgG)%kosV4i^%`EHxEYLbu0! z?suuawtmXTVJcC)nGe6PHU&|p6i?;PNyzvzvP8t(cGL*bH0UsYZ0c?Zy&AEW+fP+H zRF&FyejF8e`GmErOlgV<%g8l z(!4%25QYpF1=-B#3XuxX#14n+J>G&x64=V}j?X_(Es0b4Ax^@q!@3ijZs)t|C}D#l z{ni48ELlga?vUXQg|B3OI{lphWz4!R^V>&go81-?lL9Lt+Z`cb!sP7YqcI3B&o9X-3L#JaL0 zA9*fJn-=<1?5QFv4dD5>nA&Dih2|iba$jyGGs+vwVE3)NR-L1|BpcyjeLvbyiyw#N zGgytAFlc^Lr*ev?+7Qh-%pUvCJ&8t5okT$x!LvjNy+1VQ2%6AFi>WN}lzOqhodu!C z?&M0akC~rrF*E<7S4wHg)8QrFTEvqq^gYzE&BNuQQ?sYbxlqFo5;Ajw3zP{q*H0YY z5mCP<*A@%-a*!>=z*xmECa+2b!crWh1O_r|UWF>aAwL}F)4Q(9R zv5I*#7whncJOP;HAY%(D z4MnhZ6n9R8K*e9w&w$=8tD@?MBzeN4t-!G4V-a%lQW5n%x-D;oIX|>XxzdcH7b^@2 z(B0$6Ej}EAQ3;=a_JIE5%G*I|^8UAFl1A8UT=3J18n+sQl*~uXq>lOwGaav1+T{zb zTwyms*Mima3o>fA38jF_UCuf`YkxU(NfW!Q67PH?|Bnf8{y}Q3(ptM=_aMjjU+C_t z0@-wR<4lmZk>u)l#ZMEzvL;@R(9jvG+FgJ+{May>60) zI)(1=%BR^Av1LN7@Pno<$3U2~*7 z>^at8u(x(x=BwXqErHken{Qpfs7otCK0k4ehDb{%7j{uV5OdkuTF;l*`XcI0r4C+J zmBXY0|HL<9(@QN$6&#z`b3|q6}TO_R|r*Q4V-o-P$rBlp3Q>Msi=Kq7syjt_a2uxr07AtR*MpYj2y$2kq3 z#cO3TV2&kitI~N517xf`$6Ksf`$ZyoHRvw~?*tTq-)ZSp#kj@U&Y0$~W??vh{H%66 z{hq^tSAMPZzd42buT)d{1}9iW5!jxJpt5Y1rHCIqPQ)&Q!9>H2GWavOgb7g-z(@7y zA88ZbnbOQMeM^7nYsdXe^y_6DY@4I@c(H6~6)PNaH13Z^BE@H>`<&3rk~k!IATiKd za>XA8+cDv6NIGqNN+Jt{p!U{|u5-ZVuPk4@I{vtCUX4-vC=mFoFKy{pANM{p#6g(M z;hkPC9`!c5->CgxBzFyDQW8A9$WiM!`Ifg z2LLbwl(%;KCOL(MSt9%RWQ;47BpfkDS$;FiESCeis#Xea?9!-nPR>$wj%5)D&RNFe z+{ondJA3@bFZMW2ouxM*Nm7^iApMF|(_{^ui6W~^HwN5(Kqh2?H~mI%i_$SY%O<1a z(RVKVj9QQCMfRc`y?*Fctu{>b3ldh>SE+QJJ){)-vhgI8EK`;+_R-Tzmh=T|f!{#g zJR4d>p=;CwI_TK>YMhx58)+@i(Ww@_deQU#3DfZ_+D@qW?}pis{Xw0cmhyG7Z6%l} z=pgK!7-(EIPmQgZOb%_k)S;co(&i68YY`$^3kB7xsWpY zb*7~_P+88%nMfh{N`BQ}Btazj3ZLN!wepjn>EO%P?JRSZKC!uSy%z^D#>=6uzqwc_ z(?juEl6dowz+UOS4u!VK1P^tKM?EOFxr~Uc^bQh2K68H#is`^NCX9N4?4B zi|{>_KK{ID>drP>t_=FYdx_P{q>cR z2t_lNnw7|JbMS^M7Ht%V*FM%O*aVSPsIp+>A*9dYou6EjOdYLdpSQbGBPToCe4~7= zlWS@;-LC%Me{y@#!#b#=k@t}>sNg0+qW>eUy(4_wh6fc{*RTzP;Y{YO@fMxNcL;MIMiUscZMac|I?;fhqM@ z@@5hBkDK1sjr~Kmb1wch-)?gBtU;Xj@Y)SsYf$m{M3u$f_UnVhQ-%!-SMgA5>S;Z0 zpVERW(hAGYPlP?ZrSB{?|y?;%~t}xuQi+iHCNdS1Jxv`;hC1C)7 zY$57CFqe!dh#VJU%fuwGS8iS#0?OQ`GW?ak0^WhDRx#vzpI>DfLFj-cGcm`>P(=Mkk?`~VAdmg(SeZt@{5aM9Y8?Y4duJ{xBRK2Ms zQKYyd10mvX=njE&L5#4Yc5C*-v#KVaN}{Oc7qy!^l}&8Ix$mpTJ!)T|qH44M3J7aH zFouu_^YbNvhQzscXxPoWA1W3%M3MpZO|9a)dcIv#@@x^N8N6Yv=f6zim2?2pWHTFv z@kuC~km-x>+xmQsA6alfStLgrG3W*epg`MP$Zw4J2jqJ zj8QHcIBOO>uiwb;Q};^{9kpG%XAr19oKM>tSufP{WVZ<%2US;=t6I%1iIY@UezC}f zV$}Z(*;9PjH;N?(0k{O@BFs1-!#RjWPt-l)4hhBJEtL z+RsN$Zj*?{o3F`-?Hu6O_#oxv^k~?+RG=522mzhlo{W$}W>joYc;HDw&R$OF02PLg zK#gP+% zQc{F^F0u%q@20=vD>C0sCUwbC?RFoMq}yuw-%pGu`|oZHQC>C}7cm{&^k9t zTM+%X6Y$}2{;6^%(HK5%7W}+ROzO8K-y#)PJ{Q#{>e9&EvmqrK7}w%FTK4^Y__zz; zhkb;9Zr!hRu8R1mhei(`;ew=qer@SJZDD-eNo>@wE3aGy2lw{*Nh`U=r4rE>FKMLT z;co?}*kF8}x_!vXK+{J&xS%XLBnvO0nnLrtud#n1G8EGm2_uUA{8w7HIhh6v5C?bS zPs`aw{c8Xy6p5o9!zXh80Dh9KMjKHo(gj7aNWZ21NKOy1=NF8r-|CM$^x?~O4?#A> z0Q~c(WYwswbT(EShW~mSqhSGkXLS(JPV{rzstxJ-_t0uq0N7VmHrMhQ25&i=O4+j( zpFMWd)!KspSBYXjR(xf1gGst`jDc`Co+TrQ=wNR~-{9ysX?O_;$=zw_b&t@bbw;O= z>o4Es8!jcr+*tDm?r0{woMcoF*FQuUChoY2Qa$ONp~0civb-ME!)^Q22EXiK%x7i_ zAy1FAA8znS#_QPC`Qu&>0&(}zgT^$#tgGSHv@WyYfaeDt6O9n^rW5R&6>Khr%6RBW zPdPMKAvJbdj*=q-m*YEK+?!!j%}$zDz_}>&r932Ut)V$e^j9dEmpSyd;0Qf`ynxOp zgmpMiA}aHaKC<*$AK?#sZ!coo2c?OuVL(4j{{?n!U8d#IzcRNL%PX*AvO521rh_(>afkzD+VR-q3dy}=DpEWVYc-*V3u zeCs?Z_gixJeYP8=qbg>%DKj3EMfdr#Q%5Pxvb(9G4n<+8H{td#?P8mq)xXTW8Y)KG z=C4XmQ_aawGUrvX8s7IP&R|Jt1z>m{k&g{*{0U+_%fNS(WEhit^&W?eAPT1a^lSQk za|GP<`R7wpe-F90XTO)iL`1wcuYFDKVya}FWzNUQx{Y_t6;7w_hlY%P`n3?{7-6j8 zh@VUz7f~A6Y>DNpkhg?R%38VtL~vpkGaSQ6I7gW7bylNR%j=?NLQ?@DSeKC02sU|# zk0PDkgJQ=9+an!=-nlpOuEa)te(eV@w+SRKmSlCq-I&uee|MyfF$x|&kFfpLDDiv( zax$1Pvh#=F)&YWpQ(MDUydg&szJ9*HHNrx_vmXV^TnIb<`S02 z-g;j=%v@uyMxQ@e|Gk9pgO_3zO64O}5LbW3C7hG`SpLp)Jog{}m736*X1xrWbl4^J zrb2uVo5WW`rxgekY8E}o513{T`>=Vw&iZdN`9meBUDb`z@H?5*>fb{2m)hoHJ_K%x z7>CVTa?HtjPlU?zl#pR+26@toM{D%W4~?>KXVA}f;jKMdPljITYi&I$syYJ+dKh`X zUEY-v5zaE&l|Qzhq?qXV9QTAx@4T&M2r0seAz9mBF0Bo-6p1I=oI<415sm4*#lvTN zBqo1v6_`B*^+VE8j}Q+~lvSSL0&-Jr8)f~os+vAcjI!vDZlQfnqjU{xY7 zZ{(=5K4UZ$1N-|-ulxO-!oU1>=(3Ep;&Ho*SG8zi%7t@15ByUuj^3od?vFBk>FL*3 zp-nhuccG8|d%>G%tG;`~L}$pNp}0f9s?&6J@ld46{|WVb^lTOX?nUL|mv*sYMVyVN zQSs~Z6*_D#a=kK3GhL!$y3%gS80Qn+YI_x-w%{L~o!G1D(D;nzpV+`SJSBsL5N#o1 z+_;a{IPY9#m8WL0>m@1~XVxc^2yMLxpx5Kip zQYI0p_eOxo3Bs>oC_W>2ySCXCCpoKwC)e1F4MqfiTO|Vq+s>+6oy_}d93=m3`iKUu zu$z1mTdSZI-@1ddNUQK>;GMOGtg0%lp_q!Ad6WREMKAVAGC zoLWia)75~3=Lb9)Mk2O;P}VN)*tVco7AHLp40x?*Nxz{JiZ9%7oTiWa65g}^%i1hM z0;$QFE)3;muxX_{O^)EM<}!Aqn%BGqaTX63aF4JNH>@3VN{U{)oLASpNGE(rQBU^Ze~Y0$SDg3m30pN}h11 z;c#Vo{J53#>Fa|Bp0ATa4%)#4FmYSdW&RDChy2f=QKpBnydD^^VIZI3);TEygRDDA z2xgG%W<#T!7(;#-Q}<8lMUr#T83;M+PG2j1=KaPpG1x`m*5|g8lKiBcC`xH!1Qnfs zGVO0}WrVOR{C}!behXJn!!RhL@hC_ud4}uUpa+ zN&|bZ%nk6K{crom#z2<{Qct?XkQeaQaV)Gol1#e&DLKIEazv>)12z^lqx@`<6M1rb6h8;*AQ{uRgtp zC{Q|PI&#N#IqX`{c>O>gK;ixAKx2b9i-e$`-U~x%A7t`yrrORWX!{U6v@~MjK*yjZ ziCX@;{x*KyPO~J4T}mE^%Vr;CR6w;~*`UPDw_}B(+!uw3)rY0<8tW(bxeh?~z1f6u zpH*!4ZBEn8HF_SB+t~h)*GL*((*3Zgx!*!*s{Zvb)&4+2m|Sr{3;>e2)fluC_>_3I z@r1DHPuy6_pI)xm=@Q!z)|zS#ddd@VsL`X+j{-m}&DzGq)e+<{^xImk#+F{-=r zBmzAgbDyC-hh8Q2_q)K1yfB;Th;$SzC5Hf{0Ma@8YOt%%eN#*dSqPBNP=Mi+leYm& zF4nf@iwTRfIaD-!Rn1w$qM(Nm@-sUK!JGX^zOH>SR={AU*qVXBhe)H~*GC{rm=dpA-=CHaR zlnZ^u#eh41m90#S2YD%K&Qyzizo-?8@BO7k=%;hHc!S5w2VpZAqM#_x->{Es%6AD0 zn`Au4;frnZ<;gw*Zpw6?DtO=}T!Yo%uP9s&blB8kH+M)!LJRIwqdtt=bc2Sj;&Ft@ z<-D&j6t=)aPCjFv9kj7jgRPGM=<{UDeD^MoBTzLKdxb*KCGxjo0O;NL9CRGjklFyk z(L~h?;a{WYLfitqA0h8STC3+Ilz6Ly*gAg9{C%CN$myf3k$YLXi7EfQsC_;+OQp!^ z!a|bQs+dDI){9~KaX7YWZzV_}?_=bEShxve^1Qsc+yvYp%?$QwGV-1`*JMEKpcB(E zhGF~PQf1hfPc-WeA>&b-Uti zPYpS!qO=De3*B|%4-K7a$~H zB0Uftv&tu#BXop9K81A;)6D0zFW*d1H4t+)PAtub^A-30?XIX@X1tWsg}>lj+;Tt5 z?KOP+UmtcaBJyteygj>owLRyzid#a?$8M23cIFJK1`v@CsK8HI5Q+hJW~y?i2EUaJ!_hkbg}crZ_!W zpz8=`VAr~>kdP0O{B^2VNsaKV3_s@r>2ldW6m)eQ7Hl=_Ji=kYw;x#c>22*~>cDkD zMH-7~$aG@s?pVkL7rSXx&K`Nj?MAH3CRpe$IMrz}2Jg(ocp=7ees)fyeSPJ^^IM?Y znv44eUKnSx?#rwAOB2jyy*X+#qfz0Cvc>Dv-!}jCUl#AqacctMNX^M>_l-f8j5p3a zJuOQLFEMEEFbk0}PqtV;npfwr?8i{@6?0)Ahu^hM-GDxhKTN$OR1kPK-#+F~6*a4$M1Y z*aIW_2(9FiXr8bBL8UX}&d5$(g0WoUjv_1f(D>I#AClif(OM*0`_ec^*Fd~*zOTvv z%d3|iH&{OnDjqjha~JCTF=?+=l#Cz~_sN(e?JdqcPZA!454ecfig$;Ezm?s1HeQpx zlX5u07q@F7?;qwZj@6y~@+mgB^I)cNhdnkkqFv(>dP;KfYB`VSxRu))_8k%5r&q?o zxUap{)J35ag;6%SUiM0ffN_cK^{-?)k4!(_Aq>5IUwGH+ocbv6@>>J;W=sRMbd+^N z(-!oDmGF%ahN;%VP>9VkzOvR16WdCM6tMgCSF!lRXfD@Ki7iSnIGe}`Y{knI{ndo| zS(dk(kT4dww8d0j3Zza*mAP4Y(;rQU2%7c=^!ll1z9fJcJ&7>*-_4I2run&v5B*$C zgyhchCV@QC2wsQX;DFC=BlKM%;Kcuac{t3}FER*8EDotfyc~MN!LRcf00I9g04D!i$@FE#H9H`XPPNhVx`LmFJL2dnK3$me7qxHO z#JbUdlgRaxM)b#V3IYOH?b}~d_j2qUOUt|Y<2a~bRJA}2_Gi+Fvh5in7fuyeXwC!l zZ{Oq5^CaDl^KWX<5KPgrVMGKiD>5f+UCA4ng*V%MZl@~OD^Y!_;@5;yk>Yk0u3o}1 zXu&GchGeHD_(xVSVfaJh6~gw6Vs54hX&nZ51f$A4tk|9rmnqdmCWzh>HXK5ssv_k~ zcSuJN;P^0W9H9s#vyk^2P$BM4M$C`?R<-AS%$CNHSR;Zb9keYp$}|QO^vYKJ+A_mv zj3dex7CkZo^5hoRRN!43aP}zdFe*V`dRtl$3z`o+zX*w+PH?hyiiSF$g9{yacx7kpItuX@IBQI^&uf0LCwOvo0ER zU_euY7FIRuQu$?_B^b1o+!Jv|btyy$LBLKE@xX61^*J&s3h`un8V*vd9V4d8v8}BF z2@Im3bRj4X&P(s&{Cb!5yN%|YA(VyzoN4-Uy2~_lkYNg~xTcH#U5~K5(~GtxD}^`* zzLIzVAslT)&@<8X)rQ<&naFNUW3?&G2q6VnepPU3Lg7UO~`9g&3i&^3o^89R@qH`S)bfH9NHsC!4n$jMR{HKy_0m z`hWXTAY^gmH;LeYKGk>cZ~)DOSikh=TK1mC)wMEcb)+0aywOQ_RAv_xlQVX~^T-!N zlJsB80WYLCSHhit-9B`p6t#{+YTxfqY0xa8!emHUmSw(|tAat@A}cF~_lrXJE((N( z7%_vyJ*`NZ-;hd^E9_$0AZ6hKZePUiOJ?**fLMvRY{OLvbKmyEVBRmVJw>pAS8vD# zMPM~pd@x`|T--!9uY4{;U+`YYO{Er!1L|b;D|F~1s>S-m^<}8nJ11C(fIxyEqk%ZC z;_}y@!@Kh?#upMSm!vkGp7x1a$>D-d2?(X*#e^`qe{f&?CT!d99Gw*FKYQ6c@M^(E z_E#f-L+8=PPMZM(=E1Lialm5>>#(eHB2hAVK%1ptz<>jx)ONRu;a5I`l7^p1Z9ijiTn*`a19L+A%+JA1ia!^Gr~>{PT3H> zc`ZB%KP}DvwsD69VftVHh zk$DA>UHF+BqEU}Avxd}%zNRdyTkjn)A(Ku!A}OCHV4j~}4coV&@SiaB%t-|oxh$T{ z@)t2m3qQ=~nYs)%!vR+_%!9ApB5Nr3j);%LZ>XZ|SXCNwa&Otl=h8T%YaNWkC95E8~-&?tY=J}0=NfuWEo@Hgog^U)iw^2BL&u`oF^oEJG zNtLEY$OnuvpN-30CX0}le3UlYNHDDMW@Nx}I%;>OA|g<2WqTmu1Gu)>@_|Ahb*6l| zfUM_rS4XBS&@{g(nh6>Z5&TN>#%&iADU>#lE3=%Ku$;LZ2Oxh~fhiW|AbZZIn?Y20nY>A_^z zvrlce7B2Ul1`7#FxZ9_&FccyLQRL9leRg{ZA-3D=zx^ z>pwXPSD|wA*RX(hJfPS3eHx>jbL>TVz6Z`>_jnV%lGgfj&gA`w`3+~~4xK_ItKdAP zHOcYV_Z95e3GyXITb}z_UJu8rCPPc01X@L!8d0>Up{#JpJ>hkUAH(~Z=Yzk#S#&3h z*Y$;!CHJxza(UoNKeA~vyRUh7$-X@Lm_^Ng(<0**gtyB+qaSQ8_0)5aX}mhLyB~G) zkl=T#nM#e(^d~~mw8Ft2#Tb2)PDIJ2&U6F6^U>_RVSq+H$EEW;ymIG-WBHH+KBsKK z8Csc3cvkF!+kLOQZN10n0`02YjBVr5U6vNvqHk$A6ClJ{eLoz-e`R@#`5;PShdNDG zNIi&Y6YSe-)NI-2^fVsWZCqv^0-&qn*tv&q205L=c+Q=l+0gqna!d{FH*{WOF66fB z&P??mfDmS!=Q8be#=pw?iiTTvSwkej--Z%~i;AICY}mvX*x04~ced}|-Is>MEXR(c zrE&2|+`we(1@*@?XY;7x=Fd;9>}`JsN`(YpJdx4PSkNww$_p=VO?v<>0eui~kiVoP z;(?E6qf#$zA{?8W-k-=#^VpINSqd^V>hoVZDRiXnxo-+golNZ=Fx6lkotEV4tw+(9 zD>;KOS?mlOV(6jNkEqM5qKh^B-OJlIO)6xu_K#j($n~M-c!KvAc&w{rEv}Wj_nNY` z<)70IC>=bwUFm!Jail%+>)N%1D!k}Fa(BLXryoxbl)KWHCf6=53?7c2yyP}bzIv5{ zCgvg~|C1y|wSQ8slnb@j9yP$>TF9-r6KnasVpQY8``PJBaWw4Gk{=W|W2!Z5sC77a zW>y$=8T@N}3p=#af;b?7T*o(Vu{?MJgIPr`1y*KB{vp+!I~$(+&TlKPzspy`oHDff z5>Jhb?DfsEXxz?8X`w_Oh!*OA0iDNjp(QTV=XwftgYas_#$kMg-ECQ>LnxNBhqwt)0;ZhU%J@dcK1o#lc+xA>DL8#kZ|X z<(%y0>3%zG-Yx_GWxsE+Ju$y-p9B#SxU}LI-n2v=)yYY8DEz$IT&}=H<{dR{DB2Hxz7z~)kGPN zzaQCKuoFD^ic+{7LLW7AL%A9@Q+a%sqjB&H?lJ|!$(z z^sYkr@q?9e+2LzGeG!;|IuW=YqzC}N@pg_7RPdx{a*;!9&af2GGIL1NQ1F8*BeIqM z$kKR^d*XD&vhSeXwb{R>Qv*fKw^!+Ieh55y_0F0BiEs~6SP?b6KL(mT*_vMBA+6Ew zHG8n{FLCQj4b(}_)9|L_?#>nNF&@Dsz=-_AhJs|JqUUG}YUKri7X zZ}oI26-Tp3OK;2o)~Js^-hseLP#G|&m6C2Kb5+*y5R(%a0#@-RBGnsRz{LE)0gz;h ziX&5h^@5<^G=HU!8zxr*jNiykc&-H4XG{=PD&`u^0|<0RZEu%@&)zAM}W( zu2>BYtfSUkL+_dYyK^!Xe4zeed~I^fd<#49LKBmr$OQqr-F}}}m6O}qh0Q!ozoltW z)2=z!>zw*9AZ`W}T|ZC0$4O0;Ur{AE{$C?(E>f9T_9QehEg+;ufaZQZT8thldyj@bew?i zzQtq)8(hxXtp{!fDZ_?TJ{fzU_7<&ZMy6-q2i^PGO#1xgDj}$akLnj`+xJZ?c}xF zyQ%UA*?>nKYf0$=ooN{njFu~C={tUL(S(%GtruHn?!w=N&CshIXAWAZzXhwQ6(b8@ zP~=7?GUsy=`&)^YCZdVzfX;4st^F2LUxaoiRB#zET8Z^cP4C4lG_#G zgGZwA?Kj7}%!+AEa%WZt9c7j!&H9p9@ z-0o?#(XexRIxiU>Xs9i0d7%%_HA>&zF1TrN$t+wf?o$u+ilEnB*P?Oub~D2qee2(T zu-xFG-udLwQ||YHm4T#G2u~$`lWyaK4)t9KRJqkR2$^@#aBy{Q(%VgJJCaB2oV8~0 z{(lbRv4I*fCgQ7i->$bexk^QvbT_2ai4^kZ&@TT`x>V1~>rgmC{){-2uZw)LFOn{Zsa=XZ8m9wkWKX=5?cI!1U< z9G?G%o2I`Wgau}MVgjAs0aeFF8NWBJVS{H}%Ik7))jV{BVO;C)hLC~AC-#n z9PWgiu)v{7Up)L6$I>sWCxR2;~h1J}wABW29Cut$OYBPxr@*mldlb<{d-FYTcx1~o0Zxe1HT(C@)$6%y_Hy3?aK1QL2|Jx$-aR_Mlf~(31p$CG5 zGj_F|t<>pqKJzfc4igfZnFt=QKG=HsBhDL1tT?e7_>~L$H2*U*N`?d1jE-i`c+^xv7+qk8>im%WBC9LR%!-Fhw_0E`A> zK)^uKSOEg;gq_yuJ4yQ|eJ=E4CCLD}hX(N4hZ0S|liK|SEgz%&8mW-zy-HO-hg*og z2G+G`fAqtz@dB}W-{Oyv{!>Eohxr@9_$O}*?>S}s9Phs|Lf=-uy!Mj63VYH5xVOTG zi(pR#1`b2e>UYA!T!>+MzEJKCA&fGJop9{AUhoQlOLJ`)MddFW1}xfB?2h4T<#6GXJ0kT@A?j1^I($Ni_kq z1qdKlT6<4m{(yj&UgSui1vx#=D0MK5-!uU6(2aP%cA4+$dLl~xZ|5dp{zfVDrwr-; zMiEke#MxV#wBdNm0Tt}T{9AYDZsQeo^ed3X{!`7EJ+^o6bSF@S8Nfh+*#k)&R8i=l z5g-5}iPvx~3|eRbdJ+cv0tFVE&)gl`<@N^zKz>GAeIwv*KtNwUJ%gyV#!9@tB*2JSaGL=mx68ylTySBN=(&;6y(Rg5A5I6ts?8Ed28;ac* z!*1wZuAPvxT!c+EJ=dPzUkU1>-+J0Ly&+yz9&14|_jLy`_iARL<}dV)kQ%M^zx;a>T2*92(o!^}}E zBRl{=lC4J&#(Bf;1S;I?o--i5w$#7AoiUGJSIiCY>#7UDDEG{?iS4#8Nc~SaFSUl+ zAF?&fe@W86(X2dz001djAD~RStn|>1+n)I+M|o~6=SbL*kZBxRGFPDqD9^}<>wrK!j`I){<1xjRfzrvjE4KK1U0I(+JkLtfAzXY@a?Rl-m{7n-8 z^EVK{c7J`-Oa3i60R~cZz$0PIKohVXtz8fRi6CJAJ)s|>0f3PF8#-nruW;Xgw12(t z*P43A*YZozC>Nd!No63CotgUoT5l*gz=dZ!l=N>v0LdR3Br`)^YulNe)p`oqgHjd$ zcI}W8fI1!o*lSNJq5-H%;%3%Bv|Md5eoO>t3-kpiHAkDM|Bc2q061`menjZs&`)2? zxGpDf?b8~7z%mD-Bt-Hb$W-gK0DA0%5nc^p4roLZ0sz2+0BN4la7Jfi-wcvJ3Fmgo zd(urpVC|VUnliPmuS-zvJ7fMd7M{42tBEFHLyQ{`z`85&0bvF}6VTifG67OXMnFpy zY#@M1#O9T0k_9p_by&VN(5}zR2cXp%*@?@;)uz0ThB35)6Dk_KjneQyD=V*=f7$Fq zg&HYVVkWuN#*7zcQ$G~DW)?jkD^VjcO7a~(B;+Hkdp@Xp`O4&PqzG?;wn8wr-Rnr0U&ggC{rS_kU~kFVNz>tORLgb)tv5f3WJtc)ntE~!h? zj2lhV6}}jSBCqO~mJOOeDAT}6^<@p_v$~gKM~dfmP)(jvREU4y?;#(6f2E)GbG2Kd zrbsye+7BL<$wXsa;s)`+Kh(SH$8l>@K7G`hV|Qp$ML)8ug}0l0BoN8<{0r9o)7 zMq|Lb5_zRzuenSLOjF#@OoX{6g-rf+4e0S8-X^lkfgI9|MD9UEsSqqAZD%*@x7Zl&zlWXzvD0e}gU z)>9x*kwgRlFzSCNJm6|`^l&)_<4-A*CnXC2zypDZC_BoQ1qf)#96<6LK!67V==?Qb zx+ejFz8H2*hHn<9Yc-Sby8;BLa;|v-TJr&Qbpc~y{+asIBmef7+>w9!%K`(31quQP z2#sI=f1B{afIx50erW^t3jpkQ?zL};=`Z-kJrKYv8=nXTRs3XSN)~H%FpZG>5~OTZBwy-JsV}_594RKUP79M30*HW+F^Xm*W>_v zz9lC|Ic94aYWuR}LqL-bsmcIAOY-9-e=&K;OeZPx_Xm=HAy3F?`~e8`#6XStQ`MNh z2LTZPP(B6%C=k`i2crHC7%Ji8d_0nMefB?XNloOuu<2%DLBaqt>*fm-^A2a}jRduutfXZ$gx_t-rja`&>F?mY> z0JH%H0&=NsC#OaO#=7n)(vw<`R54ci?p*T=^~=mVCfsCp=eQtpt+$T!Kir1N!}xPa z|8IxT09dH2X>A$1y{i8z8g5K&Dz}Ox*|klDvnqG~y7I8>bY7D8!FgUW>Zf)}ucN*u z1PlPMIa*lz=m|;wIQAj^55#DDOl~5wBw@Yyj7$qqw5jtuXiFrKx0EM_r6+9wfB@$| ziw1z%4-K!9lgXr~BUi}h=FD^yE~Mh34-O&g~^rJmVb zVE%xB;Y4KIG6P@&sIw zT_ylb0h`fe(w7FICa^MDa{8Iy7=aQ%z`}j+caJVSAMQo}ucQ(zD#ndsh>ZKD1+aQq zqM~Yf5Fl~O0DvlWF7*r+6>3S1N zXSylv7wbw)y=v{JQ3AfKuS|sMk2{h15Nvlm(_9vq0F3YjKnq~Bc1F%tXyK&BF--u+ zYB~?;9{@mJh?bs>IZZi*b@h~eljJIGVyinEY-coJ2?UhMJNxM|6dD160fa6X|Aqi0 zYpMSa#-vc*2jIP80>EKa_o`VmCw;$cN&R1!8KAmXVWu%x3D4t7-#aD%WB#l+HI8kk z`nP9$ttJ5O#WVl_f#GljCISE$^^b6k@%^$1K%;}*ieGOr0i-%%jrH&WOaP5pEn2(Y zxv}#}W1T4uv;JM=~?pbAhP3dQzm~oFQ4e|MyKYiE# z^~pn*+KCT9HF5K-BxZoLk#yT`$fky5dd1DeXCT>Bxxj)?hM^XCM~p366N@>aimVx+ zYI4#bLlSES%99r`1<9e%Wi7Vlw$Cw{4cF&awuqSW<{R=VQ|bZD&PHb1dwkjZ0_J_ z&|6;_xaPDbiHd8$)Ujv6M|tRpmOJ*f(FZy!FZ`twUUa1sOfLU~EJ&9B>sw|!%{ zT3?O`zh?5CO+9z-Ngq|(rUBULT+&`Wm()%+zJ{{9!eA>CJe$>O#-ps z=X!@GJm%Q%%j0Y0Z=4I&TSC~Eqr2wa(UXhr-+%ErUu(IV? z68;dCOu{hy875b0C-DdLg0eCD3B0^*$DgFSrZ?t|n^2LweI(^{T1J?EN|vwL%7Q(` z_QY=_^=r8BDxK`3!AYa~uyQU-^EOzKqtOd8xFnPZI{@RK zP|s$mVcSkg*{k~7sN&KpF#errT?4WaAm9UE`yJ;#G!6pn_>EpOVMcFqzgwGqVhjY> zb-G8EU0?kzyGIFdgd~|ipsxBA| z+kVW;K^ypm!ThoJSERNlrXS|tmpOpN-;4MRbwRU!Dfb<`<196~{`outhN&igvqs$im)R9w#-}Tb}FxvlnUkMIv1rX3+))FZ2 zK;Uo2fq;{m(JxUGJGdw{X2SgOW{2^UP@_!MhVGRI66s1npyEUB!tWa~ys*C>6AHD} zU_~gjyEOoTN(2J6=(&tGjBr~(z?$-> z&)lzTi}}yIPjSpzw;xc>4b27!)nuY$fZd6*DJ5U22&~6AZR)}N`y1s^sA!?|H5BFV z#*N>8yEio!_UEO4sk}}4kL&BX2FxD{ARzXe=zK;wOpb`HGT|()qrMo%4tA@G^9~~C z#jzW|v2Do&!fg+Z3gI<|30YfffB>IIALdWOk*J237T;wo0st(`4TJPw)nZf3001mM z3|BHQeDamRV9mRJbQfELw$Ffve~Ehe4l$j>6>Bx zXbe0Mh~srLCKPK%Z+@-?80hbSplpUf>KPqAIOqPs_x^x;|KB<6zWFyt-M79aQznrN zk&d1@zdZo33ak_URuq>ResQ3*QIU!nwGITR08I^3r;qI#FSWt0XZ%Sy%s&7C*%T$Q z!1#^%C)FH40G`x%xb3O}0W6u)3nTpxUfg*gAI4CM2|4lc@+vXh!rDgNiNpidVu;Bg zI#5|1&1UR2v-al$@zu-Y4=mspG8l2)Nw zP7NDVXimJ*l)X?O0K1er5kMdX0h|vAm_G9b-xMZ*GI=1N>pL7(ltOk#;!qeD#;OeD zMLr>*g?g8n=g zqyb>P{FU4@el!4pfU17GXZ&LN#`swmpx`mp696y`0FpoI|GX1`G?G7B0Eq2wi5OP5>Sx(fBD-og$M)~^RLDn!8R$EX#%p_qUu)Ce~*-rk-Yj}K%oDI zz{>apMD&&S65|i|iV48EPsg8k-K(9X|Eq0~2rF~4wsZLI%#|RKm)nF?S(2ml-9f$E7 zX_k4><(baaGXETtlz2dD(rVsH`{CR4QDN*x0SM*~)x^6@`ez@;4+ST3nZTp=9cJ%A zKyv@ogV94w2V5qm3O;;z)@uM@{-5}X59otFuw_nha`Lb)I*2e1E2YXua%cN zP9}So(fZn|Yi@@28Yi9(#k$rQ-4^#ulUq7GR+k;Cr*4FWrY3uMRq1MLdaiv%MVxp+ zi7@0HZgd0Y3b3ZGb`94-`uD@zW|FEiQ|6}@BZ_EmWN^c`f_BLl>R)3@i8#(EK35sn zn#9+aSkuZ&t8Qw(>Gr;F(jEWOQjxiD=FpTT4w3y<&u`xYEqCsCWPTbj4u4D^@t4KX z6Pka2%S+hg?l)=)&~`LiUgLJzMemULL1wU)p0C$HXn zWV#$9h3)2fRF?XbR>F6>uIQ)U;%E$*Adg2vX7it&o|dGVh^k2)?A_+bOd_?3=(x?h zObr$TwJo?A&V(y#%<~kJiLu?Blz=5oZCPkD4FddOoOHj&Lo^(=0v>ejhvX=_SGC`i z1}phV1EwAoO-PFOWcgwu=%6%Z`knGsLjV9E07*naRH4%7|M-^x;JrMR$M23Db-U3? z&xhUVd(GlRbG{|<4E)yWCWu7er=S+hz&Am#%w)H@CWKyJQC|Ia)$*^yh0 zFEcd|z1!kE{eko!2#d~xX+s{pep|Ax`L!73a{OYMmVW^t0H(k1o-8u{f#0TXPu~LSe3*YG z^A$1vR}BPoK7gVjeh>49(1OAEjhafn#jJube~9&RoQEU*}!^Z^!=icJDi19%ueLwKsXI{7=OES#P{C8YihwNSQJJ z?d;ICIB8g4z}P#4!q8HVoG^bM3dCVFdC{MMYg{#ry26g93?(pC71C;6^n6WR?`G3_ zbo^faPWTRI$b+Gn{f;v284+zzSM(4705S(bJHFl8Z24xxXI>K{AHA>xhvrxT0^$kl z`reM64IuB(!D;u$Up?y9lc=HDyXUOwV!fsLLbGF4qD{hfEk4;GJK5~)xc#4f`?ut|fEut|$1^QoRl$Na%en`UpfI(0Gt@6~FwSbH&MUtOJvfr=-&N4e8%;4cJe~*4m5H&RY4Qn18ozVO1pwfO=>EAb`Mg zzxJDc`vbr5a~=o`PM(tOIWVIp)6cDr7*-$CgET@D8$#hExq$d-RN>JB1fmK{TLBF0 z1Ozxv6A?TNV)#uH&+$lr0CM^ZGd-!IU(j+=%S|8fqx!$^qX6Q)ApJwDuXf$kT|vra z-x&YGvkUCHwUdF_&3$m%Eq-G~AAJB!)Avrv%rPbPxE%k)%%Rl0{|iU!~9tzku;|2Ui#rzO>--r^_nVSw0n)PVwwvm6WyWvy%mED` zutoY;r8Eiz5Ku6GK!9lgXe=@9PRI;kOqucA2xX^bg|)Im`Y#H`H@F0T0102zkR%>s zf`_UDHtc$-vmY&)17i|wf)#W}A_Bl@T_($_jQAT`Lz4o`JCSGp66R6~pY6Id*h~;- zwC~_P+w|+Uy!umh{&tL=ihX-q*^{Ls3hw+>12|4B*yUl8;66gm9d z%&gx<@`vo2TL6GRs()J;cj3%2`Y~45uS?#NDG1vYp0{}q)#YlDl7xJi0X(-PU7PJ5Z z{m#Vcw5SFU00bygfCnmo0L%b2eOOnV5zo-F0Rgp&7T^TqZo+)f0Bo9SDPGyaSc)6D z%mzSU>D5JF!+^jepZrPp;QJqQi>FTb^1-@)E2{s9{nkSEm2QQ9qHd_ZL#B8 z`|KgBG^!Lka?)$hXg+|urEZU*U-@^G+(Z)o2n2-t-m-r{Ay3f^K;(h>B-k}sPpB^v zew#JJfM_6~9Ce5K~4!#PbMWK|1dv=?pKd#E!Ad}d}$Jo z|CpFWrGa0L<6`KswJo%>P=bx2zm{G66tbDg^*&0bKOc8mjvl^WT(ntAbp; z;~(c?3V@%Zu{QufTgX^A>z5uWr|9=7-$a!5*{`Wyx=&e|yrix|(rR;~1_CexwC+$? zqX2--eAzCAnG-f^c71Et+OvI_KfVIF!WYY0g~6Ml7R=uR0p$@e5WtZy{Ko(U%mh$X z$Z0d00p^qych_fs_P@S#=*9owHk$id5;>xzNw zUeenJ^e`Uj6C}Hzr`z;9ly}+YTQ&^>+M9vu4LJwBgMAg;HSXL zk?h&#=K=zt5O@%_`LB94-JATTaF)1c^>_vT84=H<{7%+1;X%44ioh!w0u0%Dgi5_GcTqeWmtV)|DhrMIZ z#6Cy+Q3K-Je}ZH{nVU{Po;p8=+{!{OAi#^Xhv|!@O&YaDiJ!tb9Pc~ZY154 z$jSf&*)9EktUUjbX}9oIX)q$dpm=Ilj!y8fEx%TRbIp;5%P_hWJ`F_>h;2-mp5|Hm{5n?Xg&HGTQ`)7JAXU3?;m zYKn(0d%tSGxSr%xIZw*8^ZrLPD`WW1s#42emXh&g5dCqwOUthFZ1@g`xx$=B!^v1v zlbWQ;+wIk-I*IqURch1~^FPqMC^66cKtfCk3M$G0QDx#V5tHAfX3tQl|Cf3K3KKHz zhH*@G7jetMpmBgHk@^4U8k}P55>`wJHtsBa*E3-vr5#}i~?9>y>|I+ z)~I@nOK^CM`EOGnCpRA+qGNiwl@bWBGkipV)C@MO5;?^oOKDi%_6O~s4MO5>rcz`Q zpo#|TntxFP*A)_C@gaVkw^s{;*+BOv>BmLYZAIDx%mk(>$mE?~mGe^LKp41s8bF6p zT}?9{c}538zn_8uxNZC$F#mPUj@A?aXeKHkyr_h z4cB7Z;!ZgSOGEm>S~w3VUEg&91ac)WGW#AD)$mE{c!J&5PM>mX|K};!m_O`3@X1fO z*+bG62m}oG9p@qZ?5hi7Wxm0SvFP^X5I81b=F}r>m)R8!XLdEfHIyXCDDuBC z5Mak{#yXKO$C`)vugkY$`VM8GTd#QLPX(BNdv1H?&v9e^Y%?XUE2(W~1rC}52kQa{ z0D}V`%#=Hz>sDTtS_)1yexxF>R!uc!SLfr1(W{&xqJU0xvuNJ^Ku&9>|t{nJshwxqZxv15(GS0 z&=e3cG+AO2F;Q8RqODj~Dx3AjWkux-M8QLfZ#8Q*)#R# zzIX3^_q~4azI%S3qvP_y8SX7eaPq_>u}q?Bdk2y!Jqmpd`!&wnfjr_D5dnt$HHKN= zj~lNH^Rxl-8i)MH^;ha<`(U;HOhoMkx`%P^mgV@ddI* zfa%SpagEb@?dJ&~GXNo5xZUo)Kw%czqm-q%e@OzmdVoUwdgcaj{!R<02m$N@4Eaxx z4z=~{nyWlO1Uw`Fd3>VtEU1`1xgJ*D142ODzBVC$W3g@QSeEBN{A^~Yuo=?>t69T(XC@c{5L&{2 zd8TCNw~+qhzwq;(01zS2;A6?HT^yX&UVPM*mY=gOW&Y({)*u4{XZP4@#XOF>cq zOS5eCA_Szf{(gZi=EnUSF<{8QJk@urmkMtFPPkQwfR#&mH@AQkfZrquKx+jGJF%uO z5ij33e~6>#!}^(y+al7L>fEv6FKwV+&}JOES|kBzyqtM(7dHn8-E;8q3!cIw zK(LjF({((17imKwB$UQiP?-&7?U5jomw-W>zd%GlIZ56#Gd~H(@0$kyinD`VzheZv z5dy`7VUe?5+mS<3oPajZY6}s+5WfM4-w?d59@eDN+S0mrV}Ee1l8MV0wJoX{n3_K@ zAOH$PBrUlsg{D)AN?(blIx=wEUE+5!Q|r@rx}K0~fAyOEDLQ zTuM_M6V^{S{e+lM|J25y1jjEafMAmpzC!+z07w#0D5Glb3|CR5EtZB*>Hk^3l3yYpDem zVL=komlU9L2A4p&6Y@mb7ty;y1c(^uHMd<3w>1$06R-2JKnM&#M8NJR=$p$2>;V=C z7J;>M6w^#c7FS7uj0g~iF61vD!LTp&Pm+KlRJjm*4-u7u=HSKa+oPSKr;tSrL&o^_ zl7bTfMHX)F^396gP+ZSI&!0uWzR39-A@J}oeZjX}mk7`+5c1E0zD_-NxPD*8 zM`#TfEexf#Q-+If_=g1lGAKDiXj7*fZ))`SQ``XU0VrK%?YHrov^0oaOC03m$? z5dvmBC1ch8IF{8q4@;52BBShg4qI+;Psl%yxW0V_tN+#Yk+URu*U}s%@P2=uyvjoU z3)OkA{~tMl10ny~!W<>iJlQP~`q#ja{#fpR(21SlXKJ-0r9HNeeswy9ZtR)4&gGy2 z(4bz_9}%=MLFvT|`Ikxr(}MdK@)vXokkKRXh>*X;{~lyS4u}XC2l6nOAcNn40N{HO zDC}@*(-3M!C?JJ~0Fdg|qyQoU&YcNJe?2muGgYK95CRrsE=U11%A}h~>;g8C2nfp2 z{WwMbz9ISN^Vhr$q@N7oZu;lM0jRxn#t7My@75)_BjZXXf#6H)M5|@r zCv!RDZS)xPXb~h5-NZO#1ximaeKnlWG=J`RKfUd+DD@ML#E+lRLJkN3j6WL8m8_e7 z2_r{&BB)fLie7XN^cUw}GZPzn#L0^GQi90qAnpnT&cna(EB^G2^Ut{o3z0$T{FAPD zWyuahnIVXFVuZQA><^@riXgR}SNm9hJr_RWgWL3+g)oew7FP zkb-gls>zeuu8P#BO3K1u0atXq4*_a)06V*fht?+$Jg3DSV`M+7*Hdt6h|@;rAD z`cHu%7Y>uho}fOp`>+W(kaKm^LZ!-tTfI1b@tLPzxf0q|FumA<*eD?|Ha&bB&dBt= zq9Y;x{p?T>G_@I2r0xRR%#YO2iS-deg?h$S<~@TM=J^cj2YEY8@;)|&sH0>2`Cn>X&Pup!)_2#hsn+TRi_l zqJ!7<=iH(zVr1FDAX89mh520jTMxSCpRc&}|FY^n{@I^#r@!_!w_g8_EBz1;4QR_4 zb8*%!)t~Uk`CBIOh9LI-O$im~TSlc8sSN;Gu`s@@xzdrEE8G^w9U!J~F6-~`8}U`c z&&@sY3%}|XN#r8vb?_)1Jga{3Iv&o z26bLXJ`vU_F=J-ztb8bngen6$Cz~qqHUp#{?^o+OAl#E|}zj)vI7`BThS<`*rO8zw+&8+J5sCYTOPPkOD(T+VGgegS^WG)=v`b0^T?Lp;TS^v z0vlH^+FrJv&G7fDSJ3yT!EHkA4gKHcX)xxjo|NK%hyd+pzmHS|pMwbK!bzv$Muqqb z5D6anYal5_lT}g3Ur?G0Tu{D(I4lOH@ulgfh5V5~bh&}z9B3FKK*1=wAle+0#Y-Ff zNPGue!f(tgOB7W$T@LGoIQ|rNxX1itsFO%l-?BbFmEG6EgjD}N2;D%48luu&3g3%W zd!#SKUuABJ2uLGUsgn$TB<}0(A<8t#f;=wC>x z(4B|?74k3Ly5ma)J{chYgF)mk0>D7={?}g0yaXDzkYub}bne7QAR@5^IrELsNBb!( z(k_s_$SMTFYWyOnZbKB!rui;agMo|)h4=-sr)xzHLqtO17Um7#uco(sBJ-2#hm8JAOmEtcAEw~*8%HV66g6s~`z0rKBk1Nn1(L;f3=Hu*fm z?={yxh&jK)M50d1ldU+q#Pn?vAUPA|o9dcRE>-z_1fB#Fax_E?_8`g<#G!)hy2>Dxtzs18R zv085u_+|Htt{}2rUtjY#U5OEQ+A&195h6nT`ZfpO<&FNts0;VHde$9*cM~OpW3htT ztc4V##M;_cSZc)PnXI$^gqVlLkiY6u7eC+UE&LM^P=o+5H;`VJ(4i8giwLkyh`${_77J=IxJF!@3b;jx`xgl5i}K9DMSGA{ zbwvK5f=S6Wh5U07`S-mfB20Qi{L*iG5jQ6Z`In=pW-l?kBmkWxHLzW)K>PxWzixF_ ziU_DhZqMqhZ16io2&7i$)+QoA+x5T*0qY|oK+wDGkX8Azb>vak!F6y1q-uy(-JU2T zjIExR2m!kvBLD{H>D5QNs60J^<$ZXbgZ6iSCs3BjxFP}?YvBWHzdoGwww5+8^Rp7< zuT$lAHx3pbfHRg#0K_lOKMV6n2Npj>(jVHj3Hcic@e3pYFwR~GUaAMr^$YQXf3&H- z#M&d|4|nYe0z>{}9!2LL#%it8#%3VNLY3Dh?mq=_|L4BZ^xMkwaEA~kUIHK~fFuBb z5P#{;c{XkcSpBm)Zk$abBDO}5zuG|jQ*6VBsmdW}h55ci=i8fJ3ZM%M`HKj+Q7B+! z)v5<1Dk*>fDbiyUU-Jj=;y+VAG?p$nZ3g204F;S)oNtBP$%gp1AOf;rTx?n|<4X%# zCO>n1mswS;B(XOHMg$~`ijaPv*RQpGM`H4b{8i@jFkeFYws8@yz1j>?0>Fq-iQ;YF z`uP%dj*xx|X{y|`KHV4RZ&v=QR}6o-ai^}4Y5(lLA%E2$J9@}1)<)OJXU?q-PB}w} z>?|~qz^q}Xp;9qpY%@;^asO}EuyW*DtjV3rbvOMN9vxKgmH?iv&n$~+6N zzO3GFQ3@b?fJ7DN#s7@73*@(WBVgQR7t7TymXd{=?00 zH<_%T;#(8&xmzFt>X8#nnw*G$DvP#|uDS4FQQ*6H;~xxwIXsgeG`|!rDv0um>Jmjxw5lM6)=UET>({u_)`#q7owLmsbzOh2dM#a5P?Gc zCTY@nLi~~rihD?rzHbBZmmn}i07wn6A;Uu;B?OH7mn6UlHs6VVLjDExlld|(W*9`- zIGRdJpZ0@#X^70S?bkaN@-M-Zv_N(P?mwO&?ms00R4viJU;%NJ5dpp;{uB2f zI9Vb@Mk#>#lq=Yce9cqH5&?s@WGNcd*^ZdJh*2c|SI&=|RDY~*6J{k(7Ca&T5eYza zHS~mlw;Z+sd4^ga*~GaU;#Zw?@*@xpIA!=J6@Y<$^Q7#p5`!X*r7^t=IQMJEI%ize zRy$W7YTn+8km)6Yrd1Cgb<;7_^~!%9x=a7~#~$&Q|AVhRIZy+L2zc<=yxo>B>m z1k|HOskn^^*0=kvAbnj)%$RI%An+;)@>kP7cQrn&Yw<%6GLL!>br{$H=*3H5C-5cx zd^t)T1{4;$h5wm}#i0oUOa0^;!DGLp|LKNOQ6<=9y-$UtIpt}75zRaB% zGdwnPV&G`ZU9x{|bp6TsYlPkfr2fGe70E%12?e6;qT|X<@+-D6oV&sc7xE-XO@3bx zo#$@FwU0zEEd{Otf%YX<5``QeUo%n4dza4dg%7jCc>YPr_(TtY{0fSD?`#Oze{-~AO=`@28ydetN9KJW%;AOASv>>fvj7r3ML6pJlT zp16brgMR1)b6l&haIw-a^SktWar;evH2dN}n6Io!-o;VEgm)8Il=n}>Ik3Z=m*2lx zFZY@ElOW&;7T+C{y>Wfx1jHG5j~41=%QWI08}Cz@`bJ!{_?@X>Yi1sfIb#EWcFV^{ z*n-FRk3G zhBndCWWdRseL=A%%s>uNKTqoW2fSZf{k2dODpwD=(xFPYflJIsS{L2l9NbXjj#YQ| zzkF?QtesYcaG;aEGw>&z+F^ zkURiI-1(HDPOxiw$Ms8Zp+%I))Bn#CZk`Hh`d@>Ln!H@S~6 zuhi7NX~(scEfgrRw#k2L1~;@efuIZ~l_U#Q(r^ufs@3n&8p=66k`c8pz$6?*WkBZ8 z2~@UvMqXlw!6H^P-~zsrc-{8v!}Wc7VTw6R*2`$m)_#LuC5Zsvw8eXI*sS!88)DoL z_hQ#uu-irD3-t|bz&Xz#Hm@E(>82Ccm_F-$iC6@O|6*j%lRKQaj|qBL;fPW=N|!Vm1kC_lAoWf!9vRmT^8< z_1uADu6_83>q4*;AY6(N?R`C$2yq(PA*GPN1)tFVP1G6Uw{EI?hakjvBd{w_21wt7 z5Puf=#{nfW&!L;0h#^czt`jkAufc?6OR-OJmXCsGW5_=}PlSkp^1T~~Vza;zsuQv0 zOSm!*h`kItZxG#z$*YjFf&vs!AKkdz^acAvK(EGd(g=#M0eyPlWT}9kVCv4o8p1B=8H3Ao@Pl!pAbNH;90K@m&m;&k}ElPR&EoHl>w@Yzhj?HkPE ziLm|>iy5$XfyFu^ej_?2uJ!!tuoE6k*00}&c`r+38y>bNa{1SoU;emsFPRBnXu5^F zA9YJ-zTg&5e8zXG?mry64~ugzJux^C;ujn{{0U#4BM?@(H1GH0zZX;Fs} zvipVd$a&f3vB%TjUUS{4Ky>&H`bO-V(dx~9akAvrR_eH@*2a#}XtZ1jbwwMA#W-k% z*SV`nc>cP;JMQj*3zRL7uL>yu>P98G!3bJ}z&1>X((kHlu`Z2+G%rg5{HyT3O6zOc z{8G2)UN$skX22E+;|z)fze$n5)$di7_RsUKs~+*EeUzL^_Gpq$>w9l+H$4$hyW^x= z`|fGn^w!+knJ{neA!4Wq0D;O93;EHxp?jhs{~k73iYA-GXnh){a{v%M+pN8Nc`Xe3 zWp<|Tf0WF(HP+D$n6$8|i{j?&z?4qh9M)t_p;0j8Z?!`HLTXtez}nwJDML|XZ=?da zQ6j*L=`CWGBo(qKj)Z^~#T$WM)ZJR-sT>bk+r&gb<~to0el{MFmjLAMfNFd>QVYoi z0LMT$zqW~oo`Ni7M}Q$Z5%~uRz!14_BLxuiFNoo1K`8j}%UCY5y1C+TJnbVy_x(+; ztAhgS25lk)+MvbMa(^0b+a0_P5r9!+9O5i>Iwuka^UlDRL_C&SWeG5umSFcdaic5rT8{7C^+r z1dM-U^ct00xz)*Vl3DWyU9&x{!Z4`YQ?f=cdDg)rWgnZ)|$Rul{Qg z0zDQKL;k9Zh+n(cc~WYA&!Jn8Ww^c%kiVn=A^@iLV~UgCa{wQ+i;>Y5vkUEIGAe+kR< zcH;eGS>uAJCA_61@AoM{* z{DBZKiI&Fl9!-SOEzK|x(8jH?o#F(N>mfAhsa1gQNm2BYp|&HeG|`k?#ywXFdWAjB^sz%~>ngMQjcgBFc6 zWDW|7P6m`daAeTZ!QwX`-5v*(amR>&-2{Nx8w=7PVjvoJj12HDf7-G*-BafjFWe)b zh?fQk;b)NkPP#C%3imIP(1!ppE6|;o*4NthvYNMc zD@TxjtQ6wUf=L0aerOvoIsvR*rKADrNFo9pBHOn@1WfZAE4PPHJt4rF?_CE$B<*by zUuZmAWYUYXzaxYwd36L&1pGa00umyiJ#!c$00Xmx2q=Jb`nSOG<1SYqPJuZ80U?0F z=76KIfk#Wp_=Hx6Ea_zzL;bdfY)>ytz({XWmaj11s*oBmm+^22y}1X{p?i_o@Ji{ZrVH zo*(Epx19FZUhaFuZ+%kaZ*{TUgE!3ddiM{FK%6ATLZSLsPrAl`th?GzpYT`OdX2dF zNC7sH0tm)Q0DQw9|5D_?vi1zzdHdej^*1O##y0rffp`tA6EV3|>^rvbE`S)K3f73< zpM}DfkR=F3t9G0R6%fBb$iK5a$OprT>{{@l&2#O@b8M+yUI^Pig`Q$#VN0#KLB$X^;b8QAaMA{+( zRC=*L4OK**M)VYk<6_XiX$s^YBr1B+1w`sX{2~AZdn|pv?als)2uyEZhgqXNf$i=mQGMeU(Z~ny(eErlr%5`v_=~xw#&A_ivXxsl^A1{ zOlIl&2W}@ihFi=d1{OynolXG?w`4KKyBOg}?`b0TMCVQ|Ivs2X;BfMAF`egIE=Q^0 z4hAL((D(xLtJZ#AL%M?KRz|u87fEd3)^#+@W8!mn~`#wTzPzh*% zcs(6SC)SE?irX0le1SkH?VHlciw2_8bh8iv29xb&zgs!|C0|Z=!a~+ObR3`S2HC54 zf1>{50g`J-9B;l-z+(J`` zHVjsk#>V$`nfGZ6@t*yyVXrb7PeFYq$sJHil3VGtHqS^wbObVRm8gFlD0jG|5CyMR zit{@fp|&GIFgqLGcUcC9Kn@QTG0KLY%F6efz}oBXq#bVJWwWu~KCJ~?30Zb1d8Tjm zeb{jCNtyNg|IlCg8*cMkZMSuy?dCsCu%Ca`aJ3J8if6j&8W*489*VB+*8IKHh!U`I zQ_Gci!ZX@LI=Gn|{l3c>mCYBGXZ?wA{|7qvw)@SCy=y+?4YPCbJU&l{&zhxk{VNn(Up-Ci0D+8zl^djRRmOa*Z83OH5e|R4 zOlC+BeW$xky{!=bG!Wq&;(valw*d%svxIDxM}W7G*NT!X0Yz*Bv?fXVsJJYe-|ZGE zJ1-p#=X)wLUPpFJK7(g$azrvU*H6XSpPnzc+Q~3?o0oHLt7DyYYEwU$B$t#IH0V^rCxXp?ruqEQeUTVL0M7WcchOy(BvK zzTCEeoD9<5A@ubu2;E&kEsWYnFThu10H#=GAMzjyPs@JuQh{4!Sw zb8~t6<9?j>>}Ong^Xb8uGdrX6(`;`B9kLSrK||O9-DY4fxxDb2kpDXYNfSf_81lb? zv4s2uO1jX)XMZAf9T;?E#Dkbc`{2iTrq0_)xIOpOTeo%vU0Qp-(ntcL)PMLM+u7&UtT z*Jx=g!^R2(lYCOM1c1i%8Md@2ux@BypU?U~`}q+fK>gMp`$ul>tG}vU57WzM-F7)} zE50HU0djNfqMP0ew75jE@~_e7x;oZ9#@MfV5Y;wBfVe|{yhq=$)wKtP_q|DI-iW@=L`j-$V|nC6mTfDVx-+eD;nzZw?J)cCK2F{do6dGdoxrE@}+ibtWu zI@**$%tWS&5LrU~vT!_bLz`>Eg~$erFUXEvnzs*t<8r0 zfs{(h(#9BT_5W_T#ea-tJZ1R^1neGnQ(`8AemwG@>W2?*C6CQOFCbt$ZL`=OB7Z7D z{x8I~?EHKRTdL3TuCmW)fc$MtD;2*)Z>4qiqE!tLzg48jzf!3ZRy^mCzqMOg!ycf4 zR6t-{v9-OML-m7kc zu(z^VlI@YCk6j3X_SNAVl$V5%ehNbTr8^(-Ro%@?tZ^`a2?5Z}5?o?T-zD%w1ozvG zTwZCq0>OTWpjv?`%3h}ZDr@ge0l$^^hu>AYWt4z>>fmp>OA-0s+5C#DCCEQJ-rG6e zO#r;vDE7RpRR00@|7IuCK1%TV6U--kAO(oSbm6Aaa(fAYkpEavpq_={g4nx6?0O8G zx|9MTeLxop8KXkfZY&2e`M41`R)%fqzQp=14E+4uN#pm&FH%wf5dt3R$Dllt0<=~}7l?7! z%+?w5S80fU;lA*`H6@}4l`lKd*tHdre$)UE*eK5bt9v4UUG^=%o9w;5lViPSz8pV< zkbms~M6q9WZt0imZVKeDQmaAzn~(3h41Bd~kl%X2jUs#_29}CzZm~1xR<4dBoKg-# zquupTFp0Bh@$J~#JD zSSwYRL*mjQ1ab~nzTyEw{gV2+9rH`5{lIihg@>6LQkf&A6yi@ood5S5Lyi70M+R z#YG+}rIK~@5n-DoAe8{T-AiT9n`CjWkU_9TA|WCD6ioClLO}aH+;Kg|Y zbM4}%=+(>a4BY6gU(^0lr%9?Sx7L&p@I(L|6}f7YkFShwKoS6fhyZQ+R92)>2ZYEa z0YGRKD#rXTB1-NeV(UZ6=OBc%={Ak~_XI$4o+kqS;jcI&0@Sp2{82Y|_K9JyDEjvm z5C9fWL8XV-&e~)5r0$xXao^t$7B5ail>l<Qdhqy1;p*t2R8#^X|7p}yS8z9z=)WAZ{ISlBfW-fei^BzRq%k>= znyZ&Yn9Pf~0tz=LoswN;t5mY8F7Blg|92yuvK3VZCIQ&mjU0sFZi-tn;tzgT?^#kx zasL7l0XddOfm8q@0vvV_S&-;oY5++AvIt*&4f(6g0?7Z~ShvdtV8op|cFJe{*JHi7 z{}yS;Q|@0)68j7JTZYgMVsZne-feEK+u@)T;%`Gimyn){`#0UcI#^V@LFepzrC}ic zA9Tv>$WBc9|AY|8>Df!NOOv?&Rw9~`=-;FOLi~c}7I`Sx-?}y=xFiACxwYwb5dVw& z7fkR$$OT#4zdns>m9*8-K0^C*a}W7`_HQ$|cG=+%v=k8_lMWF9A^^6oTynJ!BbmWf zScHI}h!jV#$|fRU_C8_^+`+qJ6I^)eQ@%U|_pi;p!Ukx?*(^Wo{=@!%#LR8DbqIkI z?yQ^61!ACtq%jXM)=T2(bRiBb)O0^GV!H_dA%72)yv(fFKPPUV7cF03mENje%Rz*` z*$h~PVfz@f->T)-uCeo4Aa#Dc>?D-<1a-KpL-kS5zWJ+i13Wreu{^nWHp2U?U5d~NGf6> z_4W(AAWBQeYgYNw__?y|vH?gUIi2y8S zd+5|G{M3y`~-T z5F+MV@#>_Tz|i2-Z`;B-B;W|7Mi^qmz{K(Q!Fup(-+Cov?o;9(f!@EMbQ>=TDBh|k z2|~Y2B(GHn(0K2v+v0tfVnoC0q1gZSaDK$k?!X7s6J+%o;>}kHo^o5C1tQdC{}*rJ zUA-|{D*={lXhbNapgMv4NQ$Vmq$%3wL2mOsO-B2d4Srt{Z;PIYLcWhS#-gw-A zchY2uwCbjHY^keiNG##PaerGI07&7kew*vXFHi8c!d9{8kN`lBzo*>Bd}rPr&2OO+0wqm9sP zPrJ=$Hk^AVtf|HMzFT}OGhdhRv|0@(OuAFppq_f}wRK*@ z@z@fIQf_!{)$E%jW6}uNFA(zQJ=#>w*n@#YdAJD$I5I}|K%8hIRTu~nGyQyQ2|hH% zr%))}6qJpx^8(qco(~@$?5%TmA{L4$Rib}!{#m0ejbX^&?oaK24+#04;PHyUc`x0qF}aCMf$6Y@7#Jh@a&h#26xsthiR z_Ch$9532pf=$)3}9EAK;3e25mo9A6*!<5Etys_bCZkh4zGZE2mY<1ifT!RiE{ulBu zMMNe9F~X%p0;v}xX<3jFS=}l_SqFC=fsntVXz8_`{^dvn_!cJY!$0Y&r+zmc@qSUU zC{BYsHRRl_K17(`r&AZXysMwp+>P^>y(vPT zZV|1~pjw0Ysb`n0&^mh;wiYj0&rphaz^)Qq|7g7(mB>h`D1nw@SxJjL)o2}JDa5ag zi~=ElA%5G}lAaJQkpY?Jalt8xaH@5H`3JBKv z$OX^{yvl(|w*}!T$fltc@;4|zh>sWn($J0BO|4H_nuWfymv&xHTSoWG1YBFEO31$o z@)rp4&#?a4);d7&9k#}mx-Z)k!~60l#D9kLtB;Bh+s|1Z*}_7&n##{!9y$y*KBLdp<_q)>SbIwXTU#^-W0u1D@E(w4j4FsfP9>Zfyxr^F=E0F4hD@YmA z#7IK^DJ(t^jtu!*C|{+%9S1`G?N_>3I9FW#^e7P^X6kA&(&d=4Lx?`ISKM7BCc)6aXS!;;m031^8`^k-)!9RRBf=yjfiR5`kX? zLjDFq{^IVnDNu|I0R`S5@T!o!;?@uQw~3}#1v`iU$Oe#+3t*c4ZvqZ}C)y=x|3;yQ zq$`h)!^bk=uUv3VN|Hyb8q{v_U*r<3ZfFuD~X@H$;!BmXUvU(8$MZ^i(D(J=L z$Rk}PV2ikalLQFq7vonWDZm8`@+1Msf;j&yG)U+oWN+NQ{CDN9B)27PDk#J z2G7RP77-v2@^9bCMrj}^fW>R*Z$k_q1(+~906Iwu5aC`*A%E#uGt)oz*rUiGFK_cu zxox;mwq6a3ts(zSXab4<2gqNlfMcZeeR7oJt36b4jq`1|7Id(P{ZlaHFY&+j+bt0L z@^G$->z^maz9D}Z1f@E`bgbG3!%>R-B?*ukAdCDfvtU3rCG7E8`{4csp6mB}!+%5M z59bddCJ^!$fczyARHa_(6x;h9wAxg%aW(9wYli~&W5+4-S6$H~ebggx|AOrWxTi75 zUu|pa;hV|hCRoBdKtw>UKXH<#7u6mitez7Szr(TT{tMBC**auP3k_>$A&`JK6+Tdl8*%skY$S^_5UXdm(1|Qbnmc>zd1T>yA!7 zEck6QpLy`c41;C}r|VDd{)A^#1}EfpCNb&@T!l~Qfjn2neyvjt2o0=}W)k`bH5g3lA3l_;W@$p{_lKZu#Gw#^8zv%D7{^c=5%S8i7 z)vc+i0-pc?AOJ~3K~y1PFJcL+KsGIM1~eM^lh^@hf%Oj@q`t=twGjt4%|c*>oohoJ zRw2dj;^J^oI|E`@);@v6{o?+Yo(@l3oOB5SpdOFaM|Cr|Lm*HWMEpE^BsK;bYvnsV zulu)lYg4KAWo!w|07%Hc{^$0FhdnJ*U;WRAb=s@o!`~vk@;In5wqo&bu3(pfG)3I~ zq}*8(sf^Am5{B8J1M+V+C+_v(r90i}bs_Z8se)Vqy+I#520l|MDo0fYc-XHt3Q^YK}eG{>N_&w{>h_^m)l#lC3xNgQ~X>fDzU`PJ>20QraPoxa2 zHM~n@?&jh5r6HgE@>A|G%;rVJ+229^obPV9Lu5j{6ZQ@ zTjuoZ9?GSpa$i7-LjHyQWxq||Mc@oY$%(K{fQ=#_i?$B?`7$nZYy*%yKb7eZ8uU2# zdMKe&>0qD`Cowp(Y+geC0}p`VS~IXCu;F**<)&kb&LXLki!3}TY~m}n)!cN8F=0&Fru{R&{{>$) zw|K&>Jn)kv&3%&2^yT*$LC9ZVCA+5~2zB$n#U^g+&4ACz`}*sFXfgI6VOe?sn?G8&AWzY!8?yT%vtFA?lVV*hc- zUtGVk^`*#Ph+ojkcqFJ!_hrbx0TEL{&p$x^>X3jq{}i^-`$yz|k@7rk_onUtmF)|I z?jjE5@+ZWf!sg}SqL|kEeIfr0ocu`BBY#zw2*jhUy>Ey(Gu<`+#0H6W7|cH*|16Xc zp{K|{+dhHxEk*vN$+Ac6vVIqW7sxIkg<$!QL22SGkha@?KI;xmgR+qd2FO23g?!~+ z|72Nhi@$MoNnb<$R@HtL+k{uxC_OYTSkrr2N>Z&YMgH&U1sVMOcY7ZB>pCI=ezY6j z)iOlVrT!?RxPjbFo8ZB}QWTj8 zNdoNHBmv_5ZS!0|h~LE2eRO5oCidZ`CjFVH1SN=wTb@v==_aHvy135dBQ%j{`Y*|GzYYQ5;QrOATZ|!R#r=@27}8 z-B-U7=QSF^FvJK1J71+GywZM8i^z4Ll=KEpwgD7uRp#i2%$P^N7_v@>fHas-UVw(3W13FJL-y z{_5U-c~!*_%$<&!o{U(;`9lOuAF8>vvuDO5e>1Nh{*nU7Na@JY1wZoBPoGP!5F`P!fAceL^N#yndHuOT zn}~oE62vcc&`C?illHmJzI{qw1)zT7{)PN2L_HMppFTL@k-t;`0&(sFFQWf8BKmkN z#NW{I2GWB_1o)20Kb>R9-R~zV14#-*ENsQ`L=24M`i1ycK;TQ?+`TA^`=7pp08i1* z0?RK{BW+j5!refGiIBhUa|+vu?Ie&D{$oD>g`@%oLjL0Z1t9->WBqSXiV)bvMaTB{ zYq9HoCHhZ6A%7(WkTl@%4_5|Fi;v7=i!mhTm!4+INc5jXW2@cQcFk`L5wV?I?Npsq z0AoP&uY&mBucYHRf1M-lUj)E5;{Ozc^bPU%{RfXIcVUsJeh@K}Q*P}_5Yg+LG$4)_ z|DytEyfVC}v|arz=~V^8-8O65^*|xhB?+*#C)-!Ze0?3Zx zr2x2HI!OVvp#~_(4LReQojvdUdaQd7Ulp#5%Ypy+O;QE_3^@V}g!msR1j69SZi&>? z&WQ*(08=g^U>8m8Wg^23(fQMdgd{ z!8s5l+c7`pByqVFy0}@dquC3TTh?pRT^%kceu!uz5QjrISVjUt2-vMHJO}38+6zlq z>@sXzk9QKCxw2EGI^{5i=O%18yaYy%v;BL-&Rkg^Qq-G>hPJTORVjEB;z#O}M$G4K zaSw_-;|kA9$Mq|L6RP1RRF+RKFcY)G6+t$w4fLTzsq>KN1pP7R3l1Cz6zh{u4H5l^ zK6Jt@OmE=NJLAr-Z}@(PUmq@j-P?{}|1eyT)#3aS9tK2&>_iWNH`7t03-&Wu5+T7f zldJ@%Um~7C{Y=NzjuLBt7~E$JQOEn8o0X9lC-8d|F|UfQyneCc4eMGfeyEXubBDuw zSo<~v-3)V;?=|f=2Mx5wdD-`4Zh|&g^)QR}OG8d!_AWBJ)d-Sekp|;@+IV@}ZF~n+ z&05FJ9>*)-Y#3qY&QL0(wQ^bX?E9r!(FCjaFo#Qw-{WKJA}PAoJ}ImJ_G`iQZ=#<& zWB2kdmEl8)gYiE0UvJzud!N@kH*GT;fbv!qBe>%P!BN1NCtR%)zJ2wbp5`St*WHPa zY`Zhxm~^%Kx~~3wK<~Js0YAsn_6_6i6kLvnui0t&-M(J3~po4S=f{?#l0X+!$E2ZLIU#(~0&fLM=+pa! zd4GxsfF{UaMDhUnXRe)&T_WdrJ0>cqRv$#P_l$2o_Cr7JR#uZ8{E z4Ea~@F1RLPM(Y_7zQ*&&pRxvG7vis9L{|?X&{{E?et1zT^kpx@h9B2?JaO36SwPrua8W3rwV#FJ9nuLHpk%Or6js{7E zS|A4z0R@(;?~UFSh|{NBj-W>J#Lzx*070H*&<#7>xz+B26!_{T$nAHi4*Uv4LX=pp6$Vsm}=VFCyX>C?vZ1 z&zr@+{QlS0327{gaUdXnzsp*{B7Y|-j-S`1hr~)~-TgmLl+yl7fkRDOMFa?DAF8?a zr}th<(sOjLJGKU^0Z*j?hvhT&K}-{TrqLftChYueToPRVIC$SCKj=HfTmhIDrVB?~_gZgk6aAtwx(y^!N z6L-1}`2Y%JdlKSr$AB?w--0y*y7=Y_Ohe(NWxfV_q%@5?A>2d)LjG0qjyKi<2Q4C? zbPM+bEX+SR=vh>P06=lD1s7lVQ(u}CK!{%;DS$x8zj_$%=-Kdri}O#BzmUENfJg6} zc28hQZLoo{o}>Wc{-@zA2Sh-UD8~9)dFmTaxaXcd=N|Y=Cw-NO0OR~sAtGS&RlF`h z{02h)St#BzaT5}NI3u&IyN}HtBP0X70g@;9F#Uiwr{L5dFVB zyec%K=gL$wK>pSY_wNY+j*a_Q6CAkpP^qu~oq|Vr5EecJb2?Za-Cr-^?$Wk*u&;UX z8e8}f*l9GPcqAFLe(?<9e$Nad{kN{<29kiO{Yc4P!v-Tt0d(4lk8a~?Ir41$XhQxO z5Z3)P+iz#;b@Kip=RewdWog;X+|3J&nm{3cNdokhjv!QyTljo-qW6F#0IM&KA{dRl zDIeDN5WE^NW|X|{Wr$Vci2#)mg#1g1H-M@;7Po+DS&T$Lae2dS9)SyHo}^L$8z);z znrs&Ssbo3Z@B4A=k^e@{{Q<~-v09GY|L!ZFe&v)qdHcg|8bYAHIh52AztDF^KJA`? z2vGR32M@0fR01~AmX|8n5$isPUzM>V4agQB( zC;fT<^<>e_EVC){_h<0W#Q$;y3~0q#LiuJ(wOsHOe_UL?asLwkOP3LDYjiwM1k~5j z&5faM3-Nq1OEA%207zv4{`>5KFC+&}fj7%M*I{yQ;xmOn8*x()$C zDo3Y@Io@z>;=B(5omNEt!@961B0xryLjDr}=P({BF)>Qz1rR?099Yq7cMU1J^!&}O zun4qCCn@e zW5dNqgur=%svIR|y+A~Og7nnk{zU+2oBIGRhgh7hTqiEWv;XO|CjvwWeElo`YJ>=w zx$kef9t1$?{FnSS>|X(Qh@RpO2guAytA6vcO$0x4yL+?VhHS6b&kPi=*JoVYkw>ad z34|sI2RjZV2{`-p#vrt`2mk{^{uksP6iIfE{E-9*>3h*XD~C^K9Z&L!gdo(s=wEf> z{viSy5E$<<2pJCu3nBdiVsu%nOHVD4bLVx!K}QvhJa{rh$XmU=8zx#L1!zGCNc3Mh z(D#x6A$@@)04w#dI8<0rh5WP90J||S`nQAKo+(C*>^WzR`?nzs`FC*jD?kKD^e;7l z#Oez7J2#8{5!}DR{|d%&|Erh68en6ND`j6L?!QN}vJ{N-x4IkQ{uKmBTPG|1@?5`- zG%QUDz}Gme%dnpZ>t4bh=3v^dF&=fc8zi9ks{X+-!4H(id<#9dtiC^UC zE+Z28{UbK=dN1xn!F~Pkd7YP#7ZMFzBk%@=8758$c_QW&r$=6gl`GmBiz0s7+;aEYoWFek8lf9`p359R z2oX@b>*Jm~JQuOjcMz!yCZbBhAMo!xr`FsNWe5UxUi*qWfx(cVQat1~2wgl!fE~w2 zI;Wrgx^t%vth=>(#~nT}<3Gg`5{r5IJp*D`B_=@WK$!qTct6nnVKOQHL2KKcN1CxP z6GWt?LKKzaZ!S1-7r7gl1C{@#=*|-Gra%z6MoeX^_Vx8875Fi4xswk+=zi+&{qOEe z|Nj3X7Qu7wPhV)bk5~U4`bvzO?mkQm09*;#3?>LNB#n(tF{|IB{2l6lDnuUR`3u3Y z81*sg6j|AaBgrw(;>;aHS2WkBJ;wAl5hHE87{HO%0fJWTk&n*114%ky)md!z)(R>X z!U*g2p70&5Tf`b=gHAdX!jDyMa$tUbazc@pG1*^F5OLSvJ6 zqNiWFR`})S)!tv5<`}q^zm2s9k<#SE2DUYD`Vl%WpK=o{>Wa$TA%8^YW+JxHul+qj zh*S2vycyvGmcHuD0k_e*;(8?ZQ4*!Fx)54hp~8r1)}riu=lClS$3V2%hZ^X+IYWp`+67~V{EN*6Z^VI zEVQSM^-g0=pu&@wS2H7ChuEUw;>m33T`06b7A>af5dO8G~C~hYw>Rl$kGdISK&!hmlkcnZm|7I}A`nFd`)9FNG zL&Ockp0YGdTnMyq3{)4xUPI)c)afJZ6ZpawM>Q2@7La~~2j7jM)r9nAI4BpucI1dX z;wL4g2e|YiR`^yk49z>yE4!iCc z{;1?DxTxSA5rq6#iEOA%@ZS-oE(JsUE5!V_{j^<3|9DJvbDVYVf@bv?SYKUnU-`Ey zF84o_+$aC~-+>6AFGRrUb1UxTu?06LA|OHjZa(BP^@elVIkbfAg3htDID2)lAmi3FFUH^->hId)S-L;Ks64I|_~4hYUnzPfqW%;UCZ`KObP8(S6p;47|t;iB8xL+Y7ye_!ktW3;vl zAbxFvrRMGh@BqkPaP;nz?gHwNBP*J!0qU2}yV^md0c?U6j9^pgRwLBPLquF}Vtjom z=bo`f%Jr*(fU>G0*%VV)gqbrqJdY7*hG5v&!CJNm=R1Jm^*j}tB6{^nkG%@O()|tw zxc*KbYwnZ?(1NTaH@iT(cSHVS`vsJq-+(3%l}rLGb^;M#hKw#|*Yf?<4C2qj`S0*$ zhyW1hpF`i)C%V>l@|EXct+e?c9Z#0Oen<8PKpquAPkE^suZIgwASl9%60y)F`ku;M zKGaDHpsf%MYcz(40CE2Y%3N5i2K~6zS@{h9ydnS!`vOA#+Vf|9QxRgrpf*=^JJD^? zh=4zVFwyo`AW}pK_yyL)bd(n>1gDq|&-1VrU?{znXwmJc!@42i61;0aZkZ z_4*Z8s~s5hG$No%^r-^jai4g4{34(ezVz>Z7XsiXQCHmW&);k&M8H81sa7x{{@b`m zZ6sI9<^~vCIPCZZf0s46M3IV?6k%d8FT(RLSQfUF(zVWG$}+JHrf#2tQxXS0MEH~O z@eEG!BsE5mF9n3ZL1}R0ug()fcmq9uc!wwc_MBV#D$(R3@)t3%^!3mt2N+z)5;V$024 z=4OQaB>@2P2a#AH0T2=30RkYknF*C|>A&9pYi!v!F&N|k##u85`|dne&j)TpAogk? z0xp0{`|KNt80hi5l4Zd+8TYU9%(K>eP@ZP*(`>&zsM%wuLxPs=7&=T(ti#(!hUO7iu+GtW9m+KVS)Gg8a5zX%f3lOK;@PhH$8O# z4<)>@6vHOMTm^&VB+YlJlp<&(yZc7pW)5TSvzJESl@NaxuDnok2kvbnOoIEbYy{-u zJEe0#ICzX-yZU+L4}$Iw^|aY*43BMI=-zFA*y{HNoLMSu5CJei{=*+JLIh;S(V_B3 zPoM_qi8Cf0pSX32|3wJ&@yYDRu$o>CAZ|QaRmJ^_qc@3_14(z2HTeCEd< zRkNFXX>A|@Fd{(pMhN`uAtux4x}jzd_dp0dg?pKC|Bo*Msd0UV$e+0}AOwOmKml?}aI2+g>rs1z%wsPEsgTBM zua8bx>1hS6=!d)ftjuM7`1BC}xguv(}Yt_i`!gsMvoC^^FhWvXrJtF~-Oz|za zf1R%ukt;%;?-Xvr`{r7QA0w_`h=1+OS{O4y{&tZrhNRsmyFmg#WuBN5{9%$d{v$Q?@2;%=IQO!i+N@Yuw5zxU9P_S|?yzgU=ICqY|RitL)ygcR}JLcBD>N(|; z{>0>8ZmOId4R@O_o^g}&gcpVgC>{(irXARgEb>E}=RQfK6E+l2rCAOJ~3 zK~x*}FG+x)O8DGHvjOsdg834zwVe>Vz7zkvBp}WMi?7nYWD~=B3Gt(by(Rqq?Nt0f z?6T)xj_|>Ppa$5p+n`|*-|oH8r6d4HUwYd2eLqV94Ee7U)8+i~5LXO-WZap*wd#!f zSJf2=K!Jz=5da%ghulJxytl~LqOG!nB)Bw61k@nF3>sI$d$QwkKrqD_4ETanroX=IKKr@< z$=!3}0r$tB|1DQrdd@upmOU9&2mkiUsy|mYW8D{*+|11tx6E%}#$MqNH}ET)Gj0x6 zaSqB`PzC`m;|KotF-nu(|2&(qPBQvC48ir>QrjIqVYS@OaMv|1Z@3dk3d$G|E*z`6 zFaB;oc85LyWzTzl4l8=a6q>nxl6>DRo-tJEAb``l7M!BHc>cUwUS38I#lyii+pk~K z>+Ylyr+g5d7{P8@7%LTTCl>=BMjiyX{rZOH-+ofA`ri`%5saOuInX2faHg@H`#5k% z_}z9wW&Z(hX>Z5(JaUga`-iKpn8z)TWF@r|MYsC&P`a`BDO~=(&OiqIrn!gF@;x6! zZw2zLPc7iX`G+6% z+gGPf`Zx+miWIa7!P-tVx_jFg*I$@_BD^XSbNo=g@LQNCZ&3LSxa$XghMPwmO4hyR z(;(gtea23Ks_D2>E04Q}KlmwMms|XzYZC;iwm9p{D_56zpCj<52tM}yJmqJ#s3-(C zVXXW&mX37lN#^%Qn5PR<$Czw!H}cO)Uyf+cb>{(kLgUC3RNnv(!%yd{m;hhfwjpJQ%FD$wmCIgKb`8}&f5gP|+y zQRixye!Xjf(4Sz9)mU}e1e_(H)t#qY?rwr!DpsDK0?k1EixWH!4$FoQ^>hx ze>mN)xytta;gzNx2K)YPa-?UUNC9lJtDmw*^?7M~LZTjs87FrM0D3G+0+pqTX4xL# z#apx?T69Vh6hYSF0t-u->U^d5?Pk>ryikw)IcG=FtX@wjV)Stn=+SyytM4%q#y5#H zK-W>8fOaFiEFJHHV&q&2;NiiX{$rVo$%6W0^k8SbbuQ84BJy8ZZ@8b1$Ul3Xm6e8D zG@bV&mH+?7kK^Fj$KK;0TS!Ir9+8!d$V>{^dmVdki82e>D{mv@*fWIeJ<8tm?C<&f z@ck$5`+7aE>v~+Z(#ji~F>jV*&>A4f-9Rl}RFD`gAWNMq7}BQ!#W{IMH?`if&{lx4 z99xT`g3--C+}!LTf;(^)2U2u@x${X<+WhJR@+4&)G1E+~0|iP6W>yH`YTwId36Ez~ zDAOO&oRB9K@^B|C5sKV|oS521nZyJL0f>#>gcEC5mZ?ZJ@AQGn=c7@i9Qd5Q;=Q+=n72Eh3rLTTc4Nrqxq z#)H2^S83*f3EqgI=#HGg?_pXcxWq&L-y!YI8i`42&^KMQ2ADy!kV+Usv{0?IWVtyCx$X8{miilKSL*~G3ghPO(nkkumP-r2Gin_8-U*96 zJqEZX+F{M?yNljj%DO;qOQT<9Wn?t6iE(tVZ7{@~ajZo(SBlbosKPmO$G1zqa9;}J zMX6$q)vgg#HrEYb7Y9#-+bI1aUeArP z(Fmxvk#C8st9`lOb+8p#N6w;juGr2zP&Of;9x;(-uOH@XMZo)|m^aCxc6!@U!@+pv zDIbZPgZjID3?9?>y|^)2xr*d+<*ipsDFI!`Ye^yX`#g@wAQ1iA1BQID%Glu8gD7dzatZyv22aLkt<4u;5+w-&{a@OtST-UC0tt4KVSRly=| zOss>NE(=?!M1Gq^+P4u0$uTw$_lSI}O&W2dIWr!@ZCJD4>}sRly)@U7*CA!ts0j)m zZCK@`Y%n%{`Pzh4b#GR#SQU^xFj^`AF#h=y3e#AoyA_|X8MgV2bTemz&E6;dCZ^iKF$5Tqx>!4h3itn@f6v` zNt*pgmFL^0t{BvjpM&<;;kiX0$*tA^!r>XqQ&$Vna*O^4;)3b%_hbgOK4t905h=YZH zjoBPliI>`RpjAHJN?%6FVw-n(9y8mnduYvy%0v8nKm|9T4KNAxn+cwvJH&>H#h~F= zMI9&Lst%=BPnr&wRI&U>>762{^ACL8#gSU0e6)Zcl_qk}GIfdi{bLP+{eC64-mV9W zg&bLW;5d7YrMUrBTBldDs@O<+gbQv0-mvG)75t}Fs8_81EydeVmRAmgKJ5`z>cHZ) zwQks5Du*$Rxa`ve!1ZC%-ie$|Rs72^0f z68|7!gP(|qWO74=z#`)Z_dyt^P)zj+wOhh@5T=bo@hnEpmR z`1y<(9l=KsP3YrNZMHy6&NC6QF!DRLsUlhd1dW2ZG<2F5J0E< z(|X@AIP~D0OYJ4zP%%VwgLM4JtZ9oeKe+ajD*(~xXTW0Y7C!nj<{u|ug!|@|{a-DfX2()~R*YitAloBIr$m$Di4( zp-praQGOwc|5Kwv$o7T%e_IJ99GaTjfWp91VHB7aee!}Nbl;B$YFkE}4lO#fBdz97 zi~qzf7e9^)93)xXO?Y9$-RfIZ3Vu>a3i*3mQrf*9?l>68E9w`@E2ZV0R!5OPM@nro zqi3?_TuLn+bBW1q7e{-bKqo?+N}JVw*6kbZwnCUX?Bn*m4#w5T#1TK68IFjR@A3=9 z=?;tZ0wU$-^2_9^*8q(vV}<*u&b61f5rHk4UOTUo{hIgZWbGPd*2yMeguKOrgRDk? z-IYl!7yKXSw zchM1<|3rq@l|;V;2O0zBzqzTI1Ob5WI}T)-dWW;K+VsNS&2gC+&=zexR55Jmk-0Em zesxD1&CWH{s|BW{D4*23!cgJ(8rNY=>V8_>{0Feo$6nwNcHeF@WvorcWXl~D*jCX^c@;q0CXlgjVmvxD{D`Lh^AUB6lPf=8-<7Y851mya3sOKT_7yDx_nUyE5y zpm4ixj5H7=*}l8l`|(wB)ptA!YCG$ja{H3-5TF=Mf%{ca-o|#g!@834Qir&2-y^yC zi=Z2Z78m0*Q+O~K=hJcl^>;(uTG2>j>A27={``rUY)ku$CtZBcDK`wof5id{I>&94+J6wK9=w14L-4I{Xt? zqgavE`Y!VC?8}q+JJ?~}&3=~l=YU<k-C|c`p01EJ>fN&5GG&vuiic0t zEk$XZEgWOw%Tl74tWYPsT{iSG6ca4gHGn{0Jo@R0wp?gH*Jj`6e)AVaOo4`mLxo1N z3n1Z7Rua)=%mg1n)Z@(W8hxs&a4 zU;p|`tQq*<$ijUtfqHQjEN}e!#Ly@n8f+@wt85;~ex@R;!0d@y;=3`hRSkPFwb#&U zCGbqF9#o}g82*d_`um4WVOGTo6DNj|y`hs@{-U*UU|%4JI}Kec_M8kMeZRh=X?No8 zV-wSa?0bv5vt;x8ZNJ9GzC?qERj+@Oer1b|F?*ksNHG+hr?t|_N;z(-lT!7pAu?mz zfSq^l$zik#tzS=7C!cbxFrMe1-SGQiL!Mv;y5uxeisaSmAF-0jHZbte*5gAjspyb_ zI%(aB`hEYu%MyQhJfD|DxN)|25X+*4p^uZ8CCI*KeiTb4HY>uPDsJaOP%91rOd*es z*e=YXw6Hdmw>6kD7+qM$l5;#J2ED5k$@h<~iUlA2Qn9uZjc_wCE}GJgq9osQC~#OD z3^KDcr;SUQi6*+ASy7?p#hFb!p0rQ|ss9oXTw!#^RD+R>o^9}d{*#t{?a*X6>DaggVtYOXNZ|d*p^Exm0=vMa| zW{p1&N9BbW-cswNw9rC_4=2SD-$4#jLt)=M9j}(HHCTlNy;F|+omT1;>S_vi7PXkv z*He|S!KC-%&mZ4tZWrtRnE}QEw=JQH!>zW(KWT$JcmXw75~KUGmM00w%;5k0rVH*N zowq3)+#^-eHg=U*%4!P)-;J+1HHHo_c#6=333==h@o@T?4oT%_b#El6+O;+ zV85~q(dma1v@w2|keLFvRAZ3$RPoHjzXkxDxqLem!J5!<>TCxJujtvSda#xy z6UH83AI>1A0WFCBI*{N;pWx8Vbim^&;bypxYGxTGgd(*o=_Maf;ZycMXt~Nnf6zj1 z*SAU-uE?bfPa=@>o(7T&Qo~9}`|8EM%D*2`v$)}>1Sal-g6g#4ET$pF=SzF!*V*V` zXI@cYU!|Q`h=d1w8JX#9t#4b>Z?$3E(A2Rwo%wJ&E{bmm@nG;V`GXoz7`k6{7#6=r zj}{-l@1&ZunSE!@+xTK@u{C3bUZEPWOB40loXl9Ryjwmu8oZFIuKbbN5I%19<^Dw6 zg=k}Q8eRU*9mbBp#**w*1@m1Up9{ik(;TYr;e}M!%|kB>FU^WRaUHZj$5a2`@$i0x zT$A&W3etHiC80wd&;q66d%kLwzk-5Qt`+<5Jg~fH$UQa}4F^SD;Af_EMZ2+$A25BB z6&%3@^}6UVXFnXG`78tOtfv8a`6;cxAROhc23V00dB5AG^Xc$ESrijh=$~3q@>|+j z3Z7!@c)6DTa->LpFPHp1(4Q|)O$>S_Lb#{VJ!k9Xi=mzY0jmmPUqK-EUE(|lzajVp|l>wIpBa-k0#qQH0yLFhulFbm{OjJ0W>M;S(6Bk*Fn}W5v37{)M zUjsl!HLdQ$Hsetdldk(&R;2qmch(3$aFf_uB~Nx>ahyVuz=KzgSLFoWJEwwGD^5+R z>a_-EUu50lQUMZ-FJ*&0G2#C@i*KnK^;YJ3uzwsqk^+jE{yaZ7y0-0Koz$?7;d7~K_=WLKI#H+>uR zO>`|I9whTzfWZ)_iV|$wKyWMjwRF0MBE1(=;{ik++EM0jrX74wCTIy`(OL_@HW?7( z5O*@qj<^94#+f$ml7a$Jt&5s+82L0~joG-FTJ1MPuH8VCrM)I7%-FghRIYh@2rgEFO zL$VMURV?AM{TjiPkS4y}3Ha&n>Js*jg?08N^segx1=$DB-zuduj6>oH;k)R4LdoCO z+nDafFgwER zCD8Li6P*8oYXiP}D}AR?om6$(-Fwr#%Y5Ky!e{fSr-BK!3^pcs_;PrWkojWrcA4c? z9H=bOcU>KsOEsdY|FC+r4R(uB+Is?y-!2SChEB)DyZF`@xv3GNNXNPF!Z$iO-zMt6%a*RBR%aTj!YBE@#xh@H8)2jE>JH`8CT4 z`zG@mp&rkYJoz@RJ*zF?6v5}|Yp2@r9+Ls)nzAGwxKW1W(gRo(DwRLYnV};e24Ea_ zOGHLmILE?dE&ZuzMVdL4@ZV^1Hi!mx=4AK>$;ZrNBZk9C9WOg@UW!=w#wqq-v9#+m zFKl*Jpo!1tG^fZQ`XcTwkeoA(Gwx=--am7?uP`Z)a{@c>qNLs41`(n>kzDe$dfr;v z)9Z6WoBvA)R&-yG=K6Xg*3N={yH&_H934r?8lUf|Wv8umjlV}KOVK^z*@te737R8E zkDu%5$NAIg5|G6Sq+}I&n#pfT3bwC8Knv@4VScHySs{qCnMLe%t49`j&u0@0_DP>I z%q?W|70S;GQ(&LwT2bn0<)2pcnBWnGX@j@K-m9O5u8=`9iQSo-)m)pPH^&C7(759s z-mZ73XS7;R<_+NW@F=#wrKl#)uOIqG`%;@3hu4c7{?gAUX1MGYNYVmSakTx~MYHKn zd+2e`Y9THjb#?9!1?#vkdI?w+8hD3x-3IvMv)1gKkY~>Ir}oN7WNT*ABzAWs#_SxW zl@{{m=+rl_Sii3?VB8}^-I?2&MUo*PZ#&K}Gbo+CfHiZF@k!w6sNb~iW-ga-Q6Dik zjN8BQ-mOX&mXI#M{U?&NHMUch+RMxWw)6IZGYwo7I^=)uzy4L} zhM0JHIYhZe$(Ii_p&3O{HscV{ki6uFL|uE)ed+^IzPm?ZO|o$c9>pW*byR z7N`-iMREY&iaGfIQ8=1USM+HlO|jq z_{rFMW!-x0e_5T;K06kjYDgaDlK&3N=kADsRQplrq_41=&*)F?XwX4gAg!y-Q?CTV zZ(V1hZCAhLf}IUSAB~g_x09WI-LOqmmmResXq1)@t9URufgKvks>Z$2ugK@|Z5ThA zmUCCFL_hK`q^U|WlDP89QM3b=>9MOMqhAfgoed?A*8E9lL`*_q;BdJfu>LSXzBdKg zh)C`)y{~OUJuM=XoLAc}BjEFnVs8Zd%7O)x$Xhr~mH8go%N}heIX6 zf*AF)bu31_!%G43d{+QF`%H`^!sV~x`lJBv@N_GRQ!)MbQ6i4jK{f&$UYi#N-LtiX z;$hiW%B+!xd=F)xCQdP{%e+LFId85uiKFW0?y0{MI!Rq5)D~{Ikd`NSAE%#_w)jm1rB3vy;rRO>#|jdPb_jW-nRrMZ zJa@znEy^70Zn|6>r_I&jn;|ysq~@4Iig5nj?PiE|qcX02&~n9kSJA~GzCfnqAhOZq zRT%l!KNS{ETJHNVNp7F)5I&lX>bdxF$vNWOkhDP*m9-IPItD+bk%eIxdkt{-Ed)H? zNODL7(*Dx^>utL4%LXH$15*OPcNSH9f3j}-l}Tk9?4(|tdBlul>E3CHb^zC78t!X2 z6en{6@BN;c_RF$=Hz)mlN`k#{)Kvzk_$xRVfcSMsoVzf+tfn&NzP5$wpqk=%#_&(- zD@2zpnWniKCVQP!uZr@sX4>L>y#kL9cmDB_hTtSBqW48)+MJM2EYn+odSxcepSf!B zj+sNkS71iU1giI{?rw1dJ?ZdNl%=D=sU@P`yt|8f`YtRtY8KM&v-YI0{Pgk{0W^#d ziuGL~CK8iL`e&4kt+S}6y>R8%Dk>AZ0`_BV?#hGvly*5s+WYa7JqVHGR^>I>B<{b270trj zII*}p4w^H*5oc~N-ax~1R#cuwBD1uzkk7}|S8t}1u09JKy~^wI^~4rd3sY z%6gL!5`0P*zmbp--YjfHb&eHMjq&M;n(-K?-e9>gf&g}8@2~@@S%6_RAz~=5gyw=v ztFfhaJ#jO#2rE+URhAATo{R3cC9xggdB;G47ye>_becz-nu@1>ZM5oWcwm;1FCpPix@c{BH_S;qWU=-5-)}?THPG(R+ zVKB|hov(_0q&=#HWUkMmHNqNqmBT~Z1sQSnnBm2~m#5bgcV?OjV~xIL`ok**xyS)2 z^OMnH$Pv<&^^fom2?&(?T{pz2+JrzYnfm&9I8;Rd;_HFK%lZj#rO|(M)jB!0yiD!5 z2-DXCD#^0?h1l+sj=0HQ(ia0nE z@H!e!c|$NJ_e2PcpiaaCsIk{R_(l#bp!2gPqSjvhNpH*p9QNxtb--VUiwaP}y_n}h z+zW>vP408EnrIp8f25NE&=b{J5mowd-7yoZHZulIUO>4LTIG z03UWHAZYUPowxU6Jen(2uUVq6gMca$dE9Stavqx;eU0A%{+jmkY(z&reFKPWVL$0d zH9z& z%kOb5EsaY_ji+%b=7jJg0i&Nj#<@|nViemsZC#;S)pGZ{0)vT+6h1p|){|NVBr1Av z^Zla8?Xfu06?6DTF7n!_dTypv^DCE1vohf6JX7BpbP}4)NpCcQ8fepz=*bWLv+A>q zoPi%JoqgGY0;VqXmvuEmlw4ZCa|B!h$4&|V={#t27(U;dS z(-P%=z9qf>9xqOE=jlJRwnw9VL(DYs!`2pIy-bQN=39 zr5c>kfxj1z?&a0L(g}h_3{5f8A;i|3u0h%~FTy(nPO7oyi~IN86|w z0UsBs(krVcG5*T&)!YVvfdsRP1J3AfdR~U?EKdZx=VH=pROeVnx$L*JC?U|$s9Jej zOOwuR3i+aWIsIh8+02WsYPvRVsG0W-O;GAi@0jab`o|07*(X)+4=!Q5gNeJx_B}utMb>>in~hoTs%M2@DBfu1FicN zEP9%I?EkWr7YRDaGlwDMp-~BR${RKRJ~@ocjUDQ2)5IV6D@+ymJ-7c+ua>e&jP5d{ zoI7L9Y_pjXi#{vg3pZYTyx$R3;Udko%U(mSz3=l^46MjRN|;@9^n$ns_9En%B%nwT z7Tlb&O6f8ke=An<{n6F*=gfPMr)HdL3s$At8kP{5(ET{nLgH{Yk{OAjTv7jY0ECXx zuIn}@8a=3MA-${+je{k}7r?=JU?qz~HCV1G5pX8+h4fc!uc`69z>lu96r<1K&!4*n z*O>)UsK(RHI}Wo$OiBrNy_&=R`=~?B;T7Aai8UEiP-J!`5tzazg zqwsVX#b^LC9f9*qM_!jf;P84ht-VZq2E6_gVp(>J>l-*cs=ERyOCGzM${*Ldc(coP z?n(Ol<~$?tei_#V>+9j7o5xnAD)6BnyT!5Zf1NLXA5O9*-7eLPBC_Yo42s+lW&Ln9{nJj7M8NERQGCsVI|IT72cq#32Z-V#4JqAeBd;_pG0b$ZE9 zxpy|dTRkziC!I9Ylvc`5nuTL|P};empDtNDX!4Mc8qpgsop9`w2;xEbfv%rVbKuK_@lT+b zSMkJz@$6%%6~bcc-fL~wUAJDr;B!KP-|H*6EU!bS4JJ4TSwCGwDKo_OQy@wd zo9`J$sLj{I^I%L>W?-9vbEf~aZxw7q>+FuC!Q?*Kr5#XKr!)f^kR<4an^i zPPKC8Zngbv`{{kIHF7axz);6; z>+PgiQ@=m@u|1c@;0x-PTVft*YKacnBdeo=Aijpsu0Sj;*0%+gkel?MoJ3q7JZ64q^_?p`jRxs%8g|+m>Bj zHMFTEzhH7PPn`mUKh)v_7l4)BVR*fLo)sHZyX5gk4&XFqhh!nDIR zA@vd-_~m;LvX@`vg$mbN)N-1|L3{ z!4?(;b&DNzEijiK3Q{j{jh5J9gT)4K!2*K*JwWy!K|Xl?WOMKkfNV(%Df==OISsG( zV@e`dN}xI?Q;wJ#jhG znOx^Cbbb~PZyaNZ#`QK4bZ6ES`zgot?XownX+2Q}tFv=Z5#|rvoEkx0R>sm8-D3|H90<7?0HE*- z8XYp*z=Uu7Lu4dWeP68xA!=KXR2aAddYE0G^z02`cqC^)O2`q*2f9mK(dZ#*Pb=5I z*-?3g60i_KeU1efyg!4~Lp zNp&x!!aF6O$20^DDXWnxm^K@$l`fn5nvraMK4#~3X;Mn74Xl%FlhodqJ+ONClIEB} z$NiZlFU{_ck%cbmqt;MtVEP4wUmD|mbft5hAkz`Wma9CBv$l)=4CMvxbX4bXs{(kq zRb$-(9QS4niUTmsLqCaN{7y;g!*$PhjN4QgdoJgHw#_$>Bbux2^Dr6iwXGdZinGZfmN0$0QVeWUmB`tVo_MX^{R4+E$ZWzb<}}$wUm4(jI<0oa6C~j9MR*~Ga2kSx z*YQeh+-u$A??Yz2nmigEst8b8Cq8A@ z1Ewe7s6C*Rz`0?1)swy?K7yp!j5{UbEMUci4nbi+@1s0WH*$0#U{v<7f7>*Wy37-I zogRAb7KbNp7OC2iBg~Lt_XoF2>A*mbANU+UAqkNV9)=)e-_5V>|_pJHx>q~)jm!?k9!H7PQIAdYJzM|I|wbwA&eudi~ z@{-{f_fteyV)s7IT4qL)ZVGXz^K6hAM~zVWNc|a6v>SE!tS1Sve>`TWZ8&xPmAE4M zkVQlHlpX_X=2U!%=iWaPNt?DoKAWPDS9%U@*yYZCQ9zTJ{HhuBS6}068vW~ekez)r zpJAbw!eq82T{4PAm{F0jpD-EM$(Df+i+NT${#0t)UysHcD`HEkML)zwCC!sRHc-A* zAMTpA+Cl_G_9hHD<~tlv6`~#nwd@(8b-m2~;gTu7^p1n;tZjH-d5G+PaiJG%X_MO0 z!C>AFGV7K4{PCVO*y$`JfkW+`DnWzEwJxj|sW~d&cD(wj3mvYMDZbtcy`JWQ80>N= z*|gw*c?s~ddAn6Jnzs*4kBGW|MqW7{3CLg=MCXm@`aO`kRhQmF?_o2oEq3hlxDWx0 zCl-TZ9|8w`<$gD*9slO(bczGpETYSe+%jIoFV5jVKY!(R@@gLIG9zC+u*WaKhvsYu z`z4ilB7}5QO506F6s)P7+6@LEUVJ~qW>U#qG#FlOoq6fg+p+F;y(sAXkx112A`M*x zyRTy%L`0oEsnS_Y(z5G$LRkn`VB?@)GxH`Bh-#j{Ad5#a1Od7NF~_4N^Fje2Z^as*+@Bz*~^@|;F z2@?@`+9(lWw=4?d!r>p{64xAcxYEv0NU&Q!Oj2ZK$)yTjZGUPF=*PTp^`K{MOZ0@U z7bg9f1ebWF1*LNg%{B_0>AY%S>NXZ9k`&D1FM2ddj**!0+W1F(xkki0)7keXB82~Y zz1QRiPjzm6dIx1=Vpkx0g{_*W0w!S0s50Rc(#(NI3jNKA0pww9EEQcBeQW8X8Gku{Eamd?K8j_N$jo zu9SM~^!=F!`Go-+--mh|{+KhyN>h9@(ATxcaxeAufYN&4>DLA6HTR-Az8hW}>YnVo z;*aRbbQn3#5d+dnV8UI&{yPX;I(<)>c?mmW^1<)&DdC=F0u^$^zKmFCLGBR$1+`?- z03SpxDAw}^oM>IRzxlfuepTr|yncNKtKv?WE4gMzJYTgMXdoff(*eGO5JbKLJ`;|y~iOwur6yw6S;>=WZ*Xwf#R+kAIY|uWOle(CRM=TIsLn7Y+d2a zdiF8XD6ALzJf=P1_EbY%^}9NNq32%`Q&yRP4t-2sVM`i}r9ds59FBV5dT&RG?@x6Y zFa|VdU^~19>AE3W=1#yAQ}i;A*s?%wmA2%jCy%!?cn$Lj;?RqA(zy?-niP9941He~ z@^lf2(Tbr)&o!qJ(*N)$UR!98 z9C=w;{D+{mVtN@p&(D$*e#V?BA>V? ztX^yEl6dVIi@rW$VrCfNB|UfdKax5Zqx?iiNXH*4X%l`biJAwJ=^(uX78HwkGm(w# zh%~<+PGK%Zx8zCS@aJ}JT~}~xkG{v8BU=9I;W`o()Klb9Ob5HA19ugvy$Kl?8gE?>f^5G28Tv-6gP0K*VKM5?5{ z@_#=!^I45`XaIf6peu=W`*&DXk!3ulI z`zFFai+EEpRLJi4FIzPzK!Q&JHC@TMOJP+~q~U7V4cBe-tSPjvEd7SrC^^iFiOqq_ zR!Iji*cktkgoydqX721mqMl#q0Qm=RKi=6Wg$^S>(RU~G6@UQ!=2OoYl|hjQ9MA^; z2&v#i7M<=+>Tk-;Ip7INLLN{ubMCt{xxQDp!k8-}hu(KLU%s|x2aq%vFHcJk+8P5y znjY&AP*lIk#(z`chh|wj%k}@g!6zHwP}sFR9@<6m)8lr>!kz>DbQZ%$P?2@r0Pg|9 zdT@i%cm~*s&2)Iu-X0~wWn*^oYvIC0Jo3uSi78@GGC}w@vJFO)T)v z{qUP=X~KEx-P3d>@>ZS(QiQ)WI#(5&NWPJ-WDL*&1a%7lZ(Q&HcYI1gAKM|P4dw}}eK+%3}j9h`WQ1Utv5$gc>D2LM(^K0S(gy$kHuPF&7jbfN3()o(P-joF7hw&V|=QtZ8^UkQi z-L+&e-&m17CZ9gs9~zt>WB;{zT{kdaMp!BQQu+k8#;kDyvo30@TNC&;B7dTE;zPa6 z1JonK&joN<*}(Tc`wKek)Q|RMFQa{fO!Hiuw4D?0cRl1q7AY)>R{c&7b}@0;xH8eK z45ueO%Kg*0_3>E*_69Zx*4pLOuA%5=)2dZK_x{gb_R?B8&*B^)%Mo6b?fJq4kNU6mH_vqM*1siw8h6Z1^(~E7jUdUON%4^>xqYJM zG1;UY=Qtrpc*Rz-OGB8ll}3JB`|kBUaUNS{&!c-^x!TX^b9$1YRDqyE&x^aULCC3H zW;_a_J%IRwEdLGPJPp3(w{!77*N|QhQEh0?-}dNyYGN-jP%-@%pmn_Iyh>?a{V=`I zTW3!o9HiTR`Y3Z^{GOSxPnGfn4VCKs@CGf(OTUYQ-j9s_G~|Ti8nv-VokgKh$ik1u zPwT9D-w-7(&YHn&IH9Hvyo|}1EzK!F@1Q1h}zGhpW{IN7+ zqcM*gijYX(Q^I#frch48JMd7N*D$iJT}REo1uivn4jwoNwB1@tze?$-==?*-DND~l zC#$uS;x=99jRg(BCGpfh-wq~R%Did)sGQ{ZoQ#46^2y@#^iF%(oH}@`m_+4u9d65Bc zLJ?a!+l`cg8Kr#xqmrk`(Go4gUzn2)2N|_FoV6MGFZ{X-EA?!8l&POZ?a`UAe^ik+ z^FKLI@On?3N6`*j3qZ?NZN+T(#IhIQeJEqX!Q7;d89s9&Y2 z6?N5VUIiOuJTYffcXL;nCqT`qkbw6tA_!@Bfe||O@FT8s(EHOlQM+qUY}xm9=Iu-? zCq<;(m4N7%@9fqvF(HS^5BAZ{8}_`>M1~oL3vph@1L;PCP-OCQbL7)D+5lU!ndU^E5|R4pUn+*M11Xt6v_2#|WiIyR09~v<=K+ zwT%|ukbG}Q`~Lc`!jx7d2)R-P#kGn3bufZdQiEP9v=ttVIzM>bXa&+La>d7IGF_B#Qo6ti6O zVH^%pj4urGapDg#g&cC_Xz4$p1x1A_#?W7<;n7x;*tvDDVR#r?P?EgZq&H|vQ*@c+ z$*m;oF&EE!DR4_Fr>T0l)a%#Rn+Yxzul0Hhun0<^p=1%6u+lsfZQ+#+{^z6}NHN;E z5jH$!t+i|PSNb&!^7p;FJZ)}%PUMvubDN?~6?F|A1bE0P_thq`9?AbN zeif?1E<^ljS67f+Eh1n~>j$;E0zM^>1OXIGYM|%byD_HZ|GV5(JO_zB@y2i2;nv;? zW%wB5N#f(7P*_BE*eMnriskBw)#9Fj?WWYJl~$$tUKq7fAd0X&(cMXby2)s>&CwKX z!?YAz>h#++n678CruV-$sCVg;eVUd39Ig_c848FuLEvG;sh3Ve@y6Sum9iUNw!Ev) zD_aAjikyrV_Z&v2`>;VT4N!Hv#PhmnN|*emH}(@E*Vz`7%>VCobCc ze~s_{11>rE)p`&M8T)_Rv}fkJ)~04)iRh`fN6yDjh5{a)WA4p<_@nw)zTySODjQ$f zYfcG#l@1U*lEOo^9)S06uB85y5K9?rRz%hk^|Ksi+lmr{JX^z-J`OSPAJ;uIvj6cE zE|yUcK_SR{o$!L|zZy|)!2@l(Ybr{0iugl+$Q0k)$>@_|xO()eIhn)^4j>nc=8)_@ zlI9&-nEQ(HybAFmAyI(|J-`^&k3q?*$RA|Fc0 z5`MUaJq_>(8>l8y77Hsyom`s^otwUkv|-Jg;E)+04T?zAED*zY_69>JdTwE*`}U{cEk2=XsT>9 zyR;;wrFN)keuqw8k77gUwQU6CQsdE5@Wzh?{<~snANsF{xJi}uKmm<#oZ;5{T7gVZ z?gCup7bfL&9Qt^>=hWVkz0vk*cn&ijzMpd($?{+>gS1Z0L0IWdad_Ro4F_YQWoZO$ z90|lGc%PHc;~l&#VCS@Vyp4KzF@_=ubF+~B#lr`{3g7%d-~!?K4Sq6b_^!|0@Xwhbe(tQ0RPJzDzX``q85nTnA6_~ayG_Z>CXx%)CuzYSbkL{bqQ~VS3KD!S^0*_;&~vp`LxVS zb>aCB5q)}k?(W>}{{ss_^uA+|@3_S06LH%rL+H)a+-iazD?cV5%h%0LVB@eSaQ71# zUlD+zbjZIXy$7M0G~()Hfn$ z8hYroe9{aHgo{GyI!Oe&z&_V2aerSQZCEer1e@tc&#xJBDU7h%yYjOJl=xaQ#TUJ= z_XEdTS70KpwORE#tx3VF;ws6B#CMLQ+jr6uqAnt$N*9U5?8XjQN~P&;k@>0k@U<{c zcBM;|pXE(t^*{xc&HAe>-9Oub!%PXiJ0elf?7Nk*o+1C$=g_kq6BqBFWsLmSJ}*f@ zE(uUfi$1Xc;+Pj>?om)ed@QhUa`ucq&VlQ|pE9X|L!@Mohp%m|`Y(KN%`b%Ym1A7f zrbZ+|Q3K?^fe74>I`le!iTycmd^L84kG_=6O_`9U!^3C||Dc?f5<`uK_D?f2HtRYQnt-5v1< zGRcGXfw%cJnS);wGr02*l7=C|_;)qWnZOFR5}<{2Z9uGlL62+g9fl)zT)*!iLO|e= zKI#jz1MtnnA@M}zmZULKpW$NLA2a9hO>esIocBUsA=oiCMr9&rDz|`ee+}1V5dmFX z#76pl10z#^i0k1QP6oubnC`F+__d|VcQ$gl zVa@4Xjts_ko)Zi?=6dS5cK0#xmh(`Zdr&TsI@Z}OJTUszlgUWu4j}0`hdUys_&pZ= z{><1fn>oc@WP4{H)n(A~0-vQ(VY_ts&c z%Skh=lUlPzfuXLjEsgFdN_Abn&3GK=m@HxgDBi#Jwd^awU_isX3(X~%W!a(#^az zkH_4$|KkyWRit4u+P)>F(SEwbQwOmLKZ|fvzKcpg;MPBr>|2E`BEn)INxf(-5N5a` zw>EM7MyM#gaSTPbw|?<{9VO+Ds1%Nk$GMm7`X@>BaTUw01<<|8g36>GzNcl6=P^K3 z7Xnl)IOM)ncMxytR}IpnBJ!Vi;@(vd0f;?D{_RhC@(+ZRL;f1?uTJM5u77VK1G&na zNM^6T!DkFQU3<;jcbvU8qW<;E`5YTF zzsiq-_yd6%pUQjSAoazjK=uSCU5NX{+s+s;tk;zgmm<=-5CR&d zxFP(CAd@I*uM4)(Gu?#vW2g|6Cnf^ows_lkzdf$y_Bd2B^9`58$FBSm(y9xyb{TQI zZAa+WS1ASW{eYRc%o6=C3R)oU)O_hX%9{_6Y|3?k=$B6G93|n+=B}QomLnm?n0!ac4;)s2XW4?Cd74O?0 z>-D#PY)33E%VvP1E*{Uj&W2kI`KvNV{H{wf{25%#BmN7%`f?{Zb_T<+fc&? zasER70z>?6oB0*#`-Sv=ZeT>zx^l#A#}_8VZ?KDKcL~HVLO|Oww20a_5O)PQ0)Xh0 zjT>GUP|7cZPg^gN0cvc;(x^%kHqDw--G;BDUdsD5QnQ= zQbHGCKLWszzd{nn;0S5`v=@Mr4a$H@(zELk+jMhZ{f+6 zV5lCYYOW)>)laGb5duA=3L*m9RZk$~cjZrXH^{&IfPc2Hp8Lriu5z|{96Tme8=J1} zM+CUOFo31o7`-cU;~XMDhSqcFL?lTVVPpT{z+QJi)0L39*WQ`$wD<1>$+si`ML5g~ zGbeT49xA_7eG9|o8* zf$j$wArPcJ^G_iuKp?p?B0$#*k}m}nKvvHPrmGX;muJ8{7-0hubN)r-KP==;&=~bF znM4STAMhO6@=0GRpiAG0XZ_i_hfnP}tvLS-=3iFU{84X+^WXS!1wHe?m0H+iV%Y0h6w}J#An9x7&^YP=yEqTfl|OvKcb2#&seDH1jg`U;e3Q-O791p0g%L1eklH zYR%KZIDhMzA^)sGo&639Y4FG16H5&cCk2{9sLg}JF8{R#L)W3n<-!6-MtM08HSh2_ zbwOlmfo)u5Jq@BIOJJpJ4sf54WJ~B>FHT`2OBhxtAH2j{()Cv)V~HWs$>@_;Z1fo* zc6x$gl@bRykBxqyoB|@;ODPrZu<$UY<1v8V<-z9_VD90hUZ6f?~PtEeSo^d-Un74&C1n`Y5d*!G2Guh6;a!V zw5j{H=c9QlC_yzUoO35|jCB?I#s5x(oo9~TqBb||a3I~i1+FuE`wXBGhB6a;_p)su*|-^Gu4rAY#y-DLfT z9dgwZKjD>)v&wBC7%~^pd7qQMe~#$ePJ6fIog@eLg&t_!j3dXtc|yL4&O@HFwu8^T zNbd2ko=p@)=gl8=llJpZXGp)^Myz@ySUCmbvKlI_&h|E*UBt!Tz3Or!jClw(Lfuwb z_%}vxPh_EPh|hgJ+>!GDpuUa$O7fRRf^iilmSMB~*|lW*hg=_tz}B95I_ZKy+bhfN zQg`3+9C+ugtz_+QeQ$-o<4#@t zcYokiHWE^6NRp_eFA)0gf?>fWcDj}JTC{Vke%>=cU zB~X)!bpTUV4dJZ`?wWyC+8RNo1R{d97TX;TvE69meX>GLXXiq){);DEKP8gt@1usC zL^_KaMu*?};g#gn^$SV&S8*48>=a41cwg98q_*JjEZP|E)KMun^q^#9uELFYyI^`5?pC>^}dArlsiIDt8v%hoDl?<%kGNQqEbiA zEh7woPq`#9BOWW8>Aa6|Ge*H@F#HU&30d9|Z8P+WK+zk2aX855s z!}?LZ?hJ16Ea*GjQM#8vvFLh>+cw#ZdK-~_P9PDP9*P4~3p^0^t$5!yC|9{z`MFAB zK!A+-kU#wS?c8?!QVN~Md<=?TFC?ztgl7b~GD`%6W1PVW;$n*g?4$!sa2II9hyW&s z8^_AQh6B~AhhX3 zM$WoToqN%9ROg>B=p({>?l&hH@?Sj*vVXxZAiC1VaoS$I^EEp{m}l(12ls{C`4}Pp zsx#o3eO@7#iW{KZB+*hxzb)k7z*VZV3G)B*4Uhacdo1D#?BXZAwhPE#$osAk^qsH# z!|5?8O~1}azmI{Gt}z2e(NpBSwJ(vil2TAX>QQf#P-mNB^q)}iPx)QS8nm$!K8&cczT$}tm1~a&f`j(8-#826@$;h>2!Q79 z<4N~No9<{40>l1pvh~O3qtW>Eu>P;iiJ!kr=EyQuYGok_U<7wlma*zxfJqDDLy8gw zwT+OXR)Q3@K_DE#g;%{nZ2dvp8XrPrPAM|MV8WaW#^aJ0(<1aK6h*E{%@*P|>uTS*EvPzQ zL|7ORAcRvUqfu(4py@trpm=%FyU=(-{0eS!fdwW|uGal-%l(kQwM|7FEdb;E)vRs3 zzK|{05dtC@W+0+?okW4<-FY$u&RpFMCl?RZIDw9ErJcvd7ZET`B?`)+-Z+)*h!B`y zHJm~OWH85XHEa7h+NeDWhdAeYjPoxxt)3kx8|Oqh6`sF38j;C*ISKPKBLbrNR%5{| zhefx7XG(dAtY|P#O4pk~@KRW~&-~oD*hwS-5X8t|`!Vv@z98eWKSbpJAxaedMGE;x zu=d=uSoOc^;^qta3zSHw^<*wx5)t4atTkS|<*RB!{(|5w(R=s0ioc!qxq@h?ug+QT;^9#?;!#T!!6u( zk^e%gw#Olce-)9ke&fi)LEX$=zy>trZzB2_L1jEM&)~cyI`|H~UTkkdFPcmtCW58Z*w{4hW@? zf9qH)S^sxe3M~iQZEajkI;+ZhXCL$a$2D5SEa_or`jZRE5YAsegDFg#Bmhnd5Y~fs z{iti6?n3~?>JuC5Zc0V`Gbk$(BTxYs#vsIR@&8>tgkYISx*`JhgZ4>X|HVCB4lAFF zxvsmsIz1u(fR*N0H3-?8_)X26dm)Gj$ncxqi`HL*=)Q#f#rUm-(Uv$TjkGbX_AhETwbmQ7&y_tNB(n; z)Vz$JDZ7SC$XREOOw(=^F z^1txCt&H=xV^o?7Ag=qcw?$MayfR(|PcgQTX+-MW)!A$YeuJaFrX%aErbGTB0#bsJ zi1W8BdLyE}RfzhQK}_9-^+w#k5darneknQix#zR)Z0LFgzsv8}2mr)=RCEn{um3Wl z{;z&oeeVidCs&is#SJG3sQ$t%0lnWq%UFp|Yo08X6hIPydjT^RED{46OI*LW{~~Pu z)UScF+<)F{_(Rf$2T4JO{2>ICl*ovHytij8^u0|?@)|dW?H>0hF}R2T{UimLgt+%6 z35X995l}{gI>l9L5{bdpr%PTA1Iu+_`yJdGhmq~XT7A=+K2W*w_Wt8Y0o9`S5M1QaCztu@xJzsMye z?UT#N_{!{JhlYx`5?pL1WINIV=Oh5aCVW=9R3RlnDt$GdnZJBWt%JqSE-VM0_tjD1 zgl;ymD-Ov?rot#@49NMUZ!JH9SV|&%nn%Rot~|=ayT);%j*f6bQDjCbt+P#R>{-Y~ zzO(gyZ&HXQu6r~f z1BGeh34vtDUX>6>;R(7fd~#V=ZFI+L*?ylC!Grhn#Wf|Kc&nI`7#-3~WG>4Wo{ciQ z5vNU7i*%GT5Z?Dp-AA<(M6EiVI3eY{2304gzt}l)6P0 zs7$d8oS(GclNZS_7@(%Odup55U$~cMy&(*UH;>C+27#lhg;@WicUfd15(K@CezN*0 zqP1P!P2R-Hf0>{sTW|NCl540%TIAgm+kc)+&5v=nf8q3_*@xblxD6E))gye_RrYpg z0~e1DjbnL+PIu!V=j1$J=h1wvi=T0K&`D06dOrEdPhLy@+H+sTLt`6^!n1>`Px)y+ zJG&G&a6popR!rRishH`E`f89|_-B9W!t!>%bHSAfITD(;T9wJt0ZF->l` z>;LSWyV5pM0IzT@g8BpaY{S8KZe2}wHnb2i|7sY8r5%`=no|P|cS+fuw#Wm3R#=&Q zbdTYCuRRSfN$`Lalws>ELOh8|vZYkNLHFK-PePCo+y|$68Jito)vFDSt zm*a#YGp2bcXpr+|cjrgM?Osp%pZy9i!c}uMY=rA;VCzxmgKS}yr}whk?<8gBodZPX z^1-+DSPX0hVyZmky#ggkuz8FP2%QNwS%y z2E=I)9NrWDSC}cnK!*HX?+^M%)~hUb8A!*^v@>68m1EMLmIzjpS^i(63v-aY^P&KPC=}z_xEF^ zoy(=oWk-7dI1rRXHKNw;7Enbx=obufTp*Hb{$tZ;sNeW%253RajOAkwLgN8s2|BCFqX7O z?b@!Qi>r$$4UkrjCW8qLK$baW*55gr!{@Ml( zMIwJ8Z(DN08SlL)D@q#oR}Rs}LAjDf9jR;8HRHFxlN^5(LpzXv6P><+#ptm8 zxV(O8Bf0X;*OJv=ITKeW$%!zhK?XwpcY>v53@jmr8KIO<8+FKEJu1@6gY*sgC(iys+!%8L z$)O8SBz<%dhOEm2 z)&m`O001BWNklw&V6yMUkaC~!)EJfK1Yaybex}_M5>NgHv40fnfhs=Ayp+mjR+`%YN zcdSz2kiXk1{1GE9W7A+9XsySeJeq7OB{r~%1fcg`IXU*JTn%?P(TjS3M<#!Hh0rvS zoQ)7l$Nd-T?zCGna#0s%NY5etJ00oUD=REmyjKT8{_FfAgzf5`-okB#KZPf%xnxzM zj6vQLeC_oUl$l&Y{00_OK~}zshJ|p&nm9KvGA3YX5l0^*|Dp;&$Uk-s^k?-$N@U}F zdGj+M{?!G07-Gm+W)g+~WUg{IO5oGOoh+?;N*6sN}9|iK)nWFVMI{V(u-gb_>-Ek6i2PE&gf13=nVrNky zf?W(k{`KYjo!8)yVj=(sG}pa<4bEf-E9-}_tUa*`Qt=#DXVW8s;dPAp-kp+^sOk{E z4%+y4+sT!;cO2(0LLP)pw!!n?C7}vVq>%~X^49+k_gTL#X=F3xmQWLim*)-z!>Ue@bkzY zCNyyWDo5z$_0E$BXWGX721Femcpc079vZ)5G zj%!wA#QKpA0lP?u6o`N!3uK1;{V0yp7q>6Suf{jFs{UPeNA;vx@!PKD%2nUt9{!G3 zPA)vEQDCTMI!am*Jg`)sUY~sru1?Hk2rML*^a>IaF-=l|q~gx~ZMtDwkNUO6?eM4m zF)xX+{eza}LV&IPj`Qf$K1h|pU2fio;q=pcro?{3(-tFtbtMP71L^iPu>&zE@xMs| zg!m^n!=w^{E5v^%kkOn(y2Tk=I8KOvOg~$&B%{frR;mM}vlN(f%^ERrzd!Mp(C zQxru`LjIDViMUlcrc|iT%xW`Obt<)}V2B$_44r)KbJe}r$cY+>{bR6nnpQVKq-`*~ zfd>F?IR=sh>;Yzk)k{h+fyy7DlQrZ&MFbW6t|Kw-o>A^gg=o{F+N>hZ1#bua%JQ?c z2^C#ICiYidHcw_3+cLUN=eG|Yk0k(8PN+mS{h#?SRT6;q={m9c$(=x1f7EkeL%2mr z0=n<`3AplE{~jg&zwoVm0!!>~$Uj`7QvpPmdtWw%{JR8pYQvQZ`Pbp9RaTE3gTUO# z&S~F8R&nQzj7Smjz}J)=At^u$PEttNK*-L-|3Z45w>FZCfBb!Gb~@#3XTgS$zYzgK z`V#%C)Q=E;*nBiI?%$BV4dulC>H85DZEc1i~45uG8|+L z9OH>mnUhg5>lbYto?J%^g?Kq-;Y-oeWC&E(Ch{x1--D_GoZr8lK;(t=99kl@4b-3@ zW$b4Lf6lX0JcORL5HS?waDx(c!I-ja7FjgQLOYNJSp+8e%V*%?C3~9DVrFaLIAM^2 z?g(VmR|0vAiT`auczm)6C^p)iMLuO|%6QRxnxZ3=hSm#8B)+v5tx=`+i9Ze=A-f)R z__7z2lspC3ztf#1F5=wTV={m#KGVd71f_HoxxX0Y{}$v^)a^2AVF3v~o@OO2vEvMc z_hNN+tx8HV>|90U9S8>ewS~-T$H)~B?osc;+^Fn$^V7HeB0*&J2QAGobBcOs&l=5Q z>;0O-JH-Y-97PqwnG9mzXew)DqZ_=J&zZE^NS2P~??Cfu7#3qU2G76y4sJ*2`PV*w zocZag@>5?~NqV^L_1-3?JRyj8F@jpc2x{$Dytun}wV!Mf^kxt}-!cBZ{kM9Uobd76 z%^+mD2c(Z;);{WAU5DQ)sO^{shPaTfBE~@=tx0hV_gO`%k zUwt~+_|w;BNH+PY!zbZ=R0o%9t}4g7w*9=W1;(2Ixk>Zm$CK_7Vp=bJakEmnE?nLZ zd+yQaxJ7^~CGrvU@L^ZPQRmBDkOD|eQ4I-bSc%ZX5?=Q^o`^g4+)C29BaN{#@zVMd|m zDzZ&r=&5p>XiZZV&@oaKNhS@+bB(lf5BKplvD#uY6nrL zQ1hV_3i=>}3G?~SFu9PwMDZd9c+pAMKfn|M!d$a-0g<#mAYpv~`2x<1?iKfP4URjc^@%}=I_aP{HW2jE=F3Y8$iUrU{vgE?A zh8Pi5vaHR_ox*YThe<&4my_h#e{ibMLX0hZ_eB7RU=!j$^~E*U#}I#ffDr!(X_xFj z^pP6!mnTU9`4`_`Jj_A2kA#i`LcZPr`5$Q!i@!rS-uej)@Q|*b{lsr3>zm)78BfSx zkU~UFqGTmAo$g|%_g*h)u$oCiRgZM>n}2#SY5c;n8)@TDJ)*+I3iQt0288$xw2j7? z);u+@wOQFl#np!xR`3^ZK<2+MWyP!?$;Yz(DmPwuJ!yP`OoQv&$#r!6g4O4qcBTDk z9P`&W#K?I2$6mC%_W8Bs?f?5Hh-N{if9W}F>u=>Gqz^ACixsf;iBrk?8yBoOD=o2* zD(b}V@1q}A*?r3sI+hW1%AB##zuCcIqxw)Ix%$?XthxqrAChcHkOtM?fH^8?ojsmx zy@0AGQXy6do+X%sg)GIrPe^uzgtFQsBoo^aDed}Z*6jKoSu6D2iP& z2P+M`xKc$!tRRh2A|sW8)#IaNV>1v{9AgIm?h)#X0JOqu1<-GI?9pnYjEd!2e*ZLi zkp09RBq`^A=;z+fL%Ds59Uhk@#yW^pCf&}Z5K5Pay~kPqY9$^ zuvrhml}shQx5wU^iij#yd@-EB{qrYpZY7uT0{OMS^DK^lTglG)^<;VNsOxsvasD9v zQGWgT@uG%ue3jSV%~nQHagd0Lct0LTm{Lf&a6U;%i~yL5aEOj^&n|Gn6N`d_7}6{* zqplg3Z!=or7(p5c0qeV;q(gLu&L1QGp`s237~aHy1!A@rA^aeTvo4Ohww*rFoupwH z&b%~__^r>l-!&BNJ_V5e%zgoZSeqU0BFJ%!?Z*fvd|Da7;P-<%#17B`I0J<e%d1f+c(5- z`x)X#0y&r#INeXiHp$hxPBCOR8iC?7b7%c&gj*_uKIIDg}z7W<-D_0S1x+ zY(;r9T%w@RC}S-H#k7w>+;8jbD#-7=D~0@p_ywz9I^!Y~#{DH3(Dm6hYRwS{`AZ5Q zoK}B4uxYMk?;jBXMhNsFkn2kjLc37+0m|Yk0TBV3iIOk~RPJ2DT0d|(J`tFope1am z#z+`q7~af@kk-*Q5(tnh2yJxJ-=7Q#hXn*VB3M=ibSokCt*x$PM1Zvk`R@zDYAnFH zq;+p^F;GgOJP1Oi(GJ87xO>D}ZOFfPl$naDUW9-$>>22a{FiGrA5OW<^C}Vo%~~_j zPcT_POr%Kh<~^l28ee!!ZX6K-^ZL8S=#P-Uh(Uvx2-p)xCUlDXl%?8Q0LyF3$<7|L^Zj?uN&74dBRI{fIM`qe;tWI#;RlI=asE;PI5mlJ{zAl>`08&Y zAe%15qKy$Ik^%%Y(OEcu_+E^@&;l<>n0^kR z(1l10Iy<)I%b5FjH3cKWS>!)^Y}m6W9(@X~rMN%$;6i15OuVgb#eLP;x#9dhA>c&1 z@A?Hs9pr*DVsWdm$c>?PQalYNyhnS!6G>QND@b?Hhxf;G|9)YVs%MDgWH2D9Mj!(E zxbDf-Nyy)zd(FSp=A($3kNOwc2x@@I?W5@XM@jqX*^g-bJDW}wU@DK}zr5;(+W_fH z{J#kLSTYx2H^h*DRCKdFA{Pri?`_w{t04ivKq4Qck6--C(iuek8(HPKH~vMoZ5v1d zZrgWab@y6spI_(DbyOo~v6)y)dN0j#8sh$q2+%eHad#@LIza#8{3}lUF9INj>hhAy z7Fc7=DTaRSgJ>iHSbG+o{k0rPN(?^161%b1cE~>-&$c&T@tmRdmyiO8GdJX~y7p&} zC)?lK)aF7k!(MUj(#0F{7a_2-?t97}>Wao4+?e+qRH(SVglEnjqyRAiVB&uv{}|FOKd+7ZpK0^7 zQdX5lOjA+9nso{rW{ht27C**Ht5+#0OesSC6(v==7WYV!lV5t;NdT;tKtN2yooyyS z_`qbyBYY-=EtH^aL)5wD)1iYL*=Z0Nw;6cX6ng47A#HwX8W!hh!iWgS?EvIiEnn1V z;s)`VjcXz%l^P~S`0;BfvEE5vV^9$}sr!gPB2EWkKIi&gUq2`W&gn)5Gdix*?VR-k z_`k#5;W^uvweBRc;&*BYfBUYBiGD->L*rmkUfwVIUeWK~PIkbuAR##5QCYV`u=Lpu z8@ESY&%Fup4zU;>vjCMJWI^hB0-*vIQb#qAy_aJczGOR$P2fgcU zmyy69g&wn4{u>xVzVMRk178*Om6J~(EJ1`?S$15S zS9>)5(eN^o!%L1OPsYY^@+c>_=yM47UX~}MfgHnga!iEQIqrAVNRA#q<5Y1q za?p<^R}ruCPKik{LBE?apZgndC9>%WT#JH{$wN!!@H#qsvMx>uHd8*jl$7uUbFR*u z!)e|0y=vXJHC^ADKy~y<0|L+*?!N8te)KMt##S~-%1~-h!uUINqJPE2XU)IKb^WYN zya7Mo?E7}iCI=zUwL@o0@!kY6*5k-P>rsdI*plkj@IbVF$wO<0`{}Tz_jwOP-d6(~ zpiSK)z*FEJ{DA3{cOrYANcXQkGAK@AG<1Is%*IITG-FoLw_8xRvKSv-K0iHE2NDSY zh!P>zZS<5E?!fty^CNJPqBXCz7wr;6XqIH=qSW5 z$Rq%4dvO!T1c=2-rpvd|#QP4}+X11}#9E{;D|B_c63<)2VO3m5CqKTGKZ6dO#GZ7n zLF8`%Vlvf3I6-{vu4?K&oy1#6Ct6Ii1r)?@pH?{f=e{^Jy#+#Gl6u`A7Oh}+lK|-I zZDQMf^M4X==D2An+ho%=I6yf z+eof&^c2g(LGvkvZ5<_7UoEIaLc5T^B6~@4D#R~vgurdI{yd}LUT4dI?{I(r4!Rqi z(Xpg?#7-k3Kr5z@e-Ro}0;8n8WNG9PU$5-%vw-}IhwZojbpn|De*N}}yXOf~^E8)& z?{{3*_Vm|3dWbA@BlBZth^zm#d0|`~?!}x7KhyT#v3p zl#vj4#3=MJGQC?Uqhs!F5o_R4+&ED)2(&#R;fr80l)Ve;6hyv`0C2VbkBN~jD(UFm zaQw;R$w02)fGMbQ)a{SW{$lVaLPqO&8W=WbGY~N>a;F{f&P%vIjmLg{*Y<}2{V{}k z@U>h3vdBBkjCzW|sLl%b#3LTBoig zO$?b7ghxcc`k!1(*1mkwhRsTG|N5l?uaD*+|EzOiL&#sy!&oXI&VX_Mk_7Bt_3wQ> zL;x%ty6>(;`n8}s%Q`ylojqIQLNX$2FFyf8hG$6(Ww`foQ_b+b3;pQkmlK|KOcUg8ehK~D} z&-;fRFsvRz4(pP74-sCA|aQ4maxfs5@Cc69Dx6lrizkUu+!(lc>m0ue^kgropuNbqZH zevas{*-h!^h4=+~kiP;%01}6ozCvPt`K8C)zv~lOei)~(deh^(K8^rjOeiNIdb8e+ zeTr2liH!x$a0EaQW%h$r{jh61okm40h`x6QOr#SkGhP2orvvR2k$Z9fK!f}ocFOJ} z5CV>{$p`_&Y61}ff&qbqW`Ot6>w<7V{sM{kTGCYkA_R)Qv1UKuk-zJJSkQ~^uLg~MLV-5h%rhuVS^;3@9mGP^IR?f~HKb9`&~ zjWXOaLWPBJ>hC|FtpCAF$=W~sLehT=qVY+oj{3>bPajW&`~}AOw|?i#ZeJ1rasSPa zd)0+1h4`I;nd|Yv|MW3h6A|E~0JF=58@!2H0qF{fdsvJE!C_}L?qB=b9=z*`ENh=v zZhvQEPxWN4?Z}=!R$<>>bM168e8;OcrUR}mg8sUf3|N&hWeR625b}2rf`A1E)z`&; z#rYc%6V)#=8WhLxg5E@SK$4m|SIy}7c(ci?4VuQdde62I0fzkdbXZXF<{NLjmXm9b zCojWL6uJKehq>yB3kJvaLue>!tU+nVKi`ZKw}u0j?I&}|i2VOEh?g_HD@hl{;|(VP=qHa8`uYie0(rd2R*JRT?H^X~9T%BPMpHM@pD7>@euqND6Obm$TTHwp z!Fb*s?CeFtbypsARhb)`_GApBgbErf6I|&gJ^20ZP22b7*3TlAkt%flxZ37a-Prt80|!Uy1@>ZneI(Kk z2fBqf8swu|_@h(azs(4t*-5hdb83$M?(N*?MOw})uHOXF`y@rp)brx!Z3wMxB4;g= zY-c#k)dI~R;Ja#si`wmE36pNe95nJpRMcueUBU5JIQm75jSA-Ute?w z9RHgqldJCxlP$T{LD&u8#1rPRyJ84IbeZhWp1;Nz19HrJAkW94Sv`oYS6XvR{3=pS za4!cZPE@b+xFq8F#>+|C}xH4BNI2v0>9QY$=WDy3k;0rci6(t&aPtSwv zjPtJufho9{lDZKl85SWa@lElx+4fLZJda?#x|jU+&$0v;T$KTP^te0MF*bebbTZ;v zDuJ=hM-78>z1`cDWQ%9nrW|1l;f8?I8{uxf98^4Y!vE?_sf)c5j-@CEe4(|@sXJjh z%gl2HSQOYZRos%4`<7X&vsK_ioa0Ynaj>{}b*DzrAh^BqjCx3qmQf*@-G;`-#4o8x z#o(9i)o1|ELx3E-j!DZ}01U2jmR!^e#+=ajQpiC9FKMH+mHVBz+Cnj}ycud(0p)q`>vk!)PT3F+D zT|yC_qT(_?_5Jq>wD`N}5n27Ew{vl3%3?m*^_+isx0{TKN;r<}PAbcY<%z>?VNCV# z6l=Ur{`h&2l2tCnz{;ce*&ZvW{eGzs3fX#fHzsiXEH88Bul2D~h+p8i{X%~WGUY9{ z?TD;A$b88OiHwK=gSF#*AB4p!LfO29aou5pA5nHG zX9<8p=f%6fP17IpoBJJXzqX#7`A@&#kbe!I^LbExjQ7s}&dbCS2t+`iaJGUv;ZBVR zmeLiF`ZWDj`Xqq83-_m}Y%Vk>Q#Jc+)XH)=U0=Y#bqe zL;hAL{r?C%fWwY*lSoJYAV7&E6H_A42^>|e^pnyGJm9MGKkCjeFiXFD001BWNklh`#b@N6b2{-0cN)1&>iH1CcLqjq z1ARj3)|FTXm@=vQa6)y(WM4oC%nZQJ)=%@AQ@@rYJk@51Kku@4%cMd?fgA;5CKvVR zAJ`C%2gL90SH_VV=nnH|@44<%&G=R??cVGm4S*d4LEEZ~8gZ zKI`vg{RKb9>`}9OI+qZtpug2gdf&S`+hL!*$qkSUT&76?_UXE(sY?6>5dcM)$of7a zkQFbW+`xJ}5CH10>lF7N!*q8qnJXe-{9b{j34(4&Jlv?D67YnGv(_2`sIKtNBpEPJP_qINU`;BQk@D;y z?b#2OYO~K~zrJx>l?;x1K$#B@py$_d#PiBD^hM+EJ>ybQ5y1gIaw_mZ82NGh^B9|V z-MoXNIw607BLHj~L_~mV3%YnmxCIZ0l(Np;>i6s*H%#`&8v(+FJ5VWv%mPuWMU#r< zt@?=XG8J;wwF_a300`g^fAr2I0Wix@buol*{cYb_^aqYgYpw`^0a3_?AzIZCKh@z) zoh*kyY-JV7(H=t_N>}ycS>&&(MGILGajEaUfFuC_Kjcrqp6j0HULg(jfY6yE+)xch zfn!%DHYH=3Iz5)PGW7xiOYcAoNCI%|<4kGhmkZS!LiP>^$MV7EZD}GZ{Ih`VG2-x| zj$ep>==D%Y5Io|ix80{Z^sn%bA>ZtIi~G-10EG+t|JZxmAh)jbOz<>7K!Cso0d))P zcDG1D=7*c6ER&8Ro3X~098D~{;)xSwvKg-@cGYBSlgjMwOx5H^e&k1fWUHL5*`3Lh z{lmNCd~7n6Pp6!hT(EB{^Iq$s(w*hoF zMM}!Y+jaU}oO|xM=YE~{`+bi++BV0ZvkT+FLmhMGto^Xd!Mv$tmZUd=1Ibuhlmu+J z54AkaJ=(`8f(UPUBKcphZtEP-kmhIR;K zDFMh2UwGr)dtP){|X26`(lAPV3&tuY2A z0C6Dl&&=^U&kpPwCIwIl0P7?O5Ye1^He4Ja3Yc4<;8l$V4Vd*e&PI*c?o44OltUZuM?5~R)9#qa|1Vjn^3%O`~jiLocB}L9`6vU z+eQJ2fHWBciRQGmqzq7Fi&(kbW12SZf@^j+0!EEOyx`jW~1!>O=`i&j_^DgY+Sh+0SGx zUFZ~<6e-#5oTFbqY(wnzMAv5rc#HpcCc0t+z`WoYXt)r^Bzn_rLtfqhixUl0S*}g7!^ZzDhq*Hfyl>Pu`6)&43_)sCxSGvblPC z#RMyk_;Zs8zCHN9WZ?IYMbHE#`<^oUa{#?@0_R{Z79~*IH6SrY-NU`_GSe!6e(H=A z+C{|B5MY$mhtx}qT$wk8*MegZ&dRRI$X#Ke4(LE1PmQtbM97$J%uvc8 zUs;sruyMVnpFo`+XL1et+R&kw~#)?Vc9w))+)7wYJlmGT#57O-=tOaBWW|5-0a~DR# zcio_O5pHt^F7X9$(mAM=d8b>**`Q=Sl-70-8~~3%aK9^nRN?{bAojrSpowEs_ZCc< zHVL$$z;D_&2u^nPHc38X#<6kh1(S@)b;0XwYOh$v$*=)aMdKX#0@f?kuw0UMornD3 z_%s5ft%j~YP6EL5NQOe!o=`>!0s1l%uoJ*HK;T!~$Gf+qzjIC+r1ABQlo8{X6GAZp z4opM*KzBGvQh|M4=yy^o3Xbwq@V7(s zvgjb98W$tkcB0qy5b?9~odZxU5_P#Vi2UV*G9P#9aDI1gDu3rj_U{iTzn*g8ocR$# zZYmd)baii?w>pBg35&=lr|be8?TNNd{kbPmKp>S-AT|knLJlaUQ*wgHU!mnB6eI%h z0ZVvgec#Y0em#2FTUsZ2$R|O8upcYt*C*|Jy`{KOZVzK4JF#*u&D4+ZVkr`S;EU0kH7PA2TO@>5t99|Ird5 zQ%B)$`1@z2fAi8H;`hh(w|#?Rzdc~s+aW+>XfG_4^hkklK@bv?0Cmu3oB%-2JtO&X zhyQh8C(y0h?@ms|kATbm;Lz7<8<^LYL`)U$=OyMKUo>* zqR8KGY_&l6wu0@Z+!uhz~>e00{vXCO2&D#G>srZ{(5g75V1jd#gl1 z3OdfN({Y9ej@cmMSK~y!ovNNAIjM-h#VBO}8p;sy`{2EEZ|CRxp;JZK2^le z?G7XW6rcNc26CYLN951QfB9dw1jw;p{g_!jT{UO^-;*IB;P)T8eXrxnhVI0Y2!do3 z0ia=mM;v-vno~$d(}D3e3o{mWu0+T(18)IZmLp8GJr~}2BL9xNuR?@xaTY=ha8-^; z;dpo!_h1}i?R8ovm9x)TPj~oW*&P4djYq*h0`$lr9@1m9p7JDj+P2j?nIX>NG^kE-v!EWS*gVHBcOpzeoY_^-S+mwga61R2otb#7c=10z}7Ax9G(2 zEl6d2P~=bUe;7chV}X(Y5&lUc*D=1HME*($m^QH9-!0Jl`6W)f2LwO@ zz?TA$2q5=Q0zeV}<4?5BGf!s`GBn~qjy{1t&wCe7LSiDdzlZzdC7AL$jNYX9pHhJ0 zJ03FSe{$5+5r4jjBs8_ZJa49cV2>Pl6>0#AqKWw9K<E6wglBbJw15D_d$dpe6A0nR}mVE;C`zN89W5~ zF@67#F4B~Qq-G=EHmWz?TNe$`@4-;Kgs#g7$n62-&jvt<{OwQspZGSmRHtBwOWOj1 z+8Kn%-{bzdzpWCGF&EKC8e>(>@t8QQGO&}QNVJak(ce@7j01B2t?MnbQXPD^+HheE zpwc4|Kxsf6Hsk(>+1C;2(`bGxQUIQBYVXGL#^(X;$4JoiOQiq|B|Hw8B18!ocmZId zd4!MzBJU+jNVN!ECl@_;!rtq+VVs}4zkz3++G|4JvBT`wlQDu{>Sphp{f(CedJ5Im zYpsNw>g*8@UluGC-EX)Ro9Gzz+;^%5!jB;(+z8=##x;JNdlZ3%rQ!U=nJe6LS;kq|OO9})wDDrOfi$VaUkPKxF2BQ$^p6G#_ zNWglU!7@PXz1^OtcYDTeex`>U6RZ72ldR)jW#KZ3G^z#0HwT=6=>OPbxF?9aQ8@wK zzH4uG(`NcThzf^3QwQeF!4(=&f-6r!OpRCO)b$hRvS}=)?Twt83_RjroBq^Tm@20# zruM?J=}=(~$lXYpr5Db~_I$5sme%on0Sh~zr-utEQ_B*VG0=zLZv#_@jyZcDIC+=H zB$b87kh2j9pnEP%7s5l*GcYKG*Ff<{XH5tC|MWpz4*`gy=d$eO@-Px~Yi9+}Bx? zo1KzDg`gMKG~luW{}@J}uFF06tjAfvteaOZZxeCZV;aznA2C6q0t7?}0Q}ppMDM)V z0{AO}cWru3zvkN#z@8wK!)kxb$=)kVWY7k}_Zn=~aBo0>q#>s6NSpvWYL8lcAV&tv zYST92=9DQxT5uSVIiGnB@2blc0W({m97<{Icgv&U5QqP`*MuHwM*UMAJ8(@lsLMA? zJB+~HbM^5`6+x6OUor_q44lLM#@$Z(fNx#i6593PmCR?X|35fj8w(-kHqpZR#8?2T z`QZJT#CY`GS0JxVGYWdhbr5-$c?(p60e>3Y56g`cVHc+vDIkI*f}*8(Fg^1Kuv-v> zF3$`fASE5##aqF5!`^=O6h=k^r^#>V_*3{slI`do^1gC5{Fak9ybws#O{qaux=4B7 zAar4L#X?~IXw4x_q|eeqmMy9cS_}p23e^D}JQx(lL!Tf)fY7KDEEpz4{EGZ#@VEKD z1m60-rU>L*iTo|n{{?QmO(8_;MEoK0$7GX<#5q*wKp1cp-v2h6e>iWd2gFu@EJzE; zfQ8!>&l3S4h5(^Qk$oeg@`?Br`KLTLpw3+gdkeysh@XYtA{}Hy6On&_&pc8+z0GdP z)~18!8Gd7CDGteB-9f|p=oRh;b{Vb zN9r>$LIm>fy=K=kJ+2>f*(=P#s0&^SMJEx^egpLs?uAB1qv|uJ{v7D*{h(OhhwMF* z{?Bc1lh|lABQd`}K<2(dF+2Aa5n9=Y;<2*-({7U!^N`EN4p9rF*&CpH6{OB|^nCpe zE!=uWAoL?<`ula8$cji`i?-ity?XJI9Gbju-_RjS$`t8d5CJ|U)mF(h=4y7G@x}i! za{-ek5(eSRIt~oDRG5jk;=cGdlo9(#=n!1=J_+Q&69J!wk@2XS_tf+D0IY{<#jg$i zJg|+&un{`QY1?(74SS&6JI>d>iv=M33D{XX+v@zdijaPptd6 z{dWQs`IGy1a1Px6li1#}L6jc&X4RBp=zXUSm%soL;yPkqYQ}m$|7OkS7S5yZiM~^K z+1;Dxf0QHwV6aCbz<>xy6*ew@MEae(?1G!V0pll!_#=1Gkk^UMbqf=I3lHJEAxVi= zrOBV+bYfcw4OkVD2xL@O9O?Chr>H`U*M zW@w+x9ErM$-RD0Z5&>HTpZnKC7(_0Gz-=ARppp291b`1E1P!XG%D~$}+js`*rM>*^ zfYs%TroVFD3?l$?-uEKsVphF30g8Jzo=ac5Q{l9R|s_yY;eCA~YT5-t# z;Da4=6r`&b_9N#{(LW1;+`rbkEe%`$cMV-9kbFcaPZj<9htKt_sD23&fF{KLd3bs( zgZn2Tpvb>uiUY{sKc3qi&j_?W#DAVd0M!75E~Ef)34rYI{xzx%WZP?)?EWc80S}-swB&46(l>mn)JS%&; zMQ#9~$KqUQ?Up zgK&%M8An+qcg~6mriXjQFvE#ni%2tEbp0dWr0s$E#uxoUCenk-d_cS)Q49QvL%q;> z9s`b%QjE7Da3zWWHUiKQa64Uv zr7iTz*FezSXuSk06rN<4J&P~nvMsmy|G@JSWt@F~q`ki$EzUeIo=fZjZpr&Zrc5b7 z;KrlQGMCIk*B@b@7Z!0p7VTnl;1fr&?*x_uBFT)&zlV!t#>~AJeE0q`jPqKEr_eGp zbC9aQt*BaC0wG)g2i{s|#zO_1GkiX5)3^kk8x502{P!gE((>mP&8yJuUv&oydWLRY zvyV_a8c^p6h}!_TLm(E#IbZ~un#`CqyZ|!Lsb(2N9cL*{Ps3LoY8}{&u;egQ{-IgZ zczGETPUIMP2W~Bnr#qD-q2f1=^RCJE-oYomUFc zcDh(pb0j>)0vdDvK78;e^U&Qx|EoU#Ge9g947lrN9DByBkl)v{V43i&)}m*Vgz`T# zl|>v2L`oF{JBon^Mbd3&VI6+S=pnWVv`=7hQ2sX`Gp$!5$%&>qP9sb)x&PLS6+BDZ z8Bql62GyJh4##}+>LnvPa2d2okgt;0f?LKnh(v(zM$5ho`3}c=x%cu~p{lsFj<@4mVJAe1U<$YmJ zkq$B?&LG#w3Wo~8o-vDkX&Aj{CZOWQF%sGvZ?fpiU0-36J=eQpy=tZrV*yV)98C!) zYuSeTg!`pmgoF*py!c%b$eb5wv%)z8l1OAGXvV|;NyZK!5ui2!H)x&XfNgm11e{c$ z%Qlx1vp0e9f`&XtJw)OZxD}{}=Nsbhpoyq#4Ri)Dzce#UNpU)Rr?;2=)Y&_|eQYt4 z-G49t6$<41K_;c}VH5dx@$y*^zi_wxR^5+*MVE6);iX~mftIieX&5Jw5Fk;fFC_N8 zRrA+rZL9X?Z7E|AGF>d9ES+n}HGn#R6sz4-6k~@Epxz3u*|t`| zjn&3M^W3T+|8afB?aR4LY}$v$VS@Z!L)%0A+K0$L3*>UE5X2%Bw!S-v_Bd{CkG(e? zm-2Wk=h9p%e)don@!0{EXtr@eK%iG2%)&H2SsQnqlK zEp;g^Rl$@eeruTMzqtRnH(=*f{q^4-vg3_XC`8h`1H; zr^WCj`eaH7e38QfuHZ=kw2AdwGJk&px3JAQ+hUDNWe6n#0;G#nB7lSdx&IMB?d*_G zazyVp*z8McU{r5dC>~DPIO(_jIdqf3Z*-t*_hI?viXrD8hbjyKXPpWlzAyee4V#iw zGW8VNzZl==|4#N3AHwhOJ=J|#r()pmBIEWSz>pau|gvBo&51SKCmd)>s&{0Dz z*CPRDp^wG4o)Pl(`@I?4ibOmD1lFdsIK_+PBmm_4%i!X~4;CWa zIJ}kfkI&@||Be~*kO&|s5io50oCZW0w(}0Q=`$nZr<9JsnyzSo4TzGBw+NOvGUhY> z@e7X)BL1m&&YG(b6BF@|LjIHj5PT^BkUt0Fdht1wP+f>^g`ww9ffy~kt8CiP*OLgC zMcCd9>fC!k0H9QU^%>--xBBa~vzB`mA^?bg;pZMVOMiAs#~)i$^sht!YwF_LSDQiv zj6E>6bLr``($ZrrUk`}*`K|Grqbgt+_{d*5Xzf>=AB~XMM-!`Qf4`>he+DY9&A=D` zYv1DGS<|{ShE6&Qp}WsI?u-rXSyjHqgW(}JiRR00s5&uyIP zo-k9%K~IHvAO7yN;r-xqzQa1Xw)5ZK+WR8nf2T+9siCos3vs*;Eo3uIs~3pdL2MA0 zg!sqkb{52691>6gi~~vmBzd1&`)f@CKxsAF1CR)ig6)_Dz#pH%h;}gYUYpkZ)Qzs< zL+d~%O2P0=i75`=N=Nn&y{+3^{(c7KvnU@%DWJTGFsSoS+c#Mj;KD3oT|E*STVIKtheDG zAMB{?@4a% z?hVG%?#mOW&VBGB$Dq8|w*$U}K|Yi2+69{lQ@V(RxiI^YaDMP4~4X60UsJlpi}}UijT-%p*VZxC}M_ z?jgv?=_mDEnL@#w{KD5v`J=%5ZRpA~O(1>fuU)oBI0f(0zN~TXi>ROpMixBGfqp~e zzNv>_``)TK^64i`<5bNwkZ!kd7|4I8_1q`}$qTd?W*mBTrj{i@*H3+J!x{9=xERG; zbQAH9!5$%BO6xn21Uw4A{zb$9C{3Bfy*4I1ea8E3enjp=qFx=`Rv!86o8YWl?)oM9 z(@v<(TynAm*w>7>E!yMM-<$|OgI9=#VPZ#c4aZdBH$I1ytOuq|aOSFP(VzAz$_w61}x}l^ZDV>{} zAU;2Uk)*vml-w zvj7lM&R(Joq)o+FkH(s?-I#swC=z*fO+6(1?X@R%(h1b{2oFfiW>p9rvK}3&LqUZekd49PU7)SFeB=9_GXJ<0* zM&Nh)UUbBJqEIY@_-|mgK?5#K<0GjyUK!g>Az<-;g%8_4WLkdd8; zo9>W*5ot*q*TUEFJSO@JZ{cL!Cl}2i2N6>#XE`)Q{@h!dwJ&lGMoYP!_I2oWI_LY{ z?przkXySKnOJYxOcvT0eMBvVya`ebRgnx;>6PhWF$iJ`v%XS!G5o+garbJyabG$dg z_e_H4NQYbhM;B1OFP}o0Ao4FAoR`sRXO_kz|1sw*lxM=d0o^V~1J@FspX>0o3^;Hi ze-Z&Kl`n7P%!=^aXUXle?=wUGDwO6+=G1e8$E4v$pBfULmqvhu&MFY_ZY2GA4$%ic zP}ZSF)_Jg~ME=7dk+Ljj9|4mDXrRY3g!l;7B5au64PqT-tI)a#!X3~Dq98-c`c{C* zKeNZGF#O|Ns|}>wF8ECwwi6QTcSG~W23)?LleCSpOx!uPVXQPj`{6Nc8 zF4)Bg=Q(F4dLKpopKkX#M~uhClVt-)#4#X#BL5uRSERnra{laGddwcu0@u=7LqQF$ z;T&4u%=z0%yv6@RA|U3*(}UIT9R_)RK*GPl^C;ryc4M(FNM8^?ev=3gAQ3<|lC^~i z-MGd28VHczr9@=A@XW9Lj;WowB*j0rQCTsKN)_CA_+9wBhi&s>c4cNK&CFv9CV;Oz zOVP#sFMslIcuXBGdo116F0%g3NxKpOwIvWrWh*5hF_1erw*mPVr!B&x5uieP3cBb+ zMWp?$;FwaFWm5P1b+f(^`SbXZK;%z13n!AzOoq=bJfw34i?ah}t4lNLAX3LJ|5Zhs z!#V}){4S!bDr|=QGw?X@p}{ZQ0g-=jDYA*s_S$KC-e8E!r1p73HKYX!ImEYDNac_( zMkFq_rCE*oX`f*=@94(63YFO=2Aspj8rRm1i~YxS9<`4X<)?<)dT?y)nA?rHqh#h{ z-wzS_2xwg$fs$z)=-Z(1-m7}Rjpf^I^f5P$AUJGAAlFZNlac@{uXKal!Rlu)_HW+7 z@i!Y<7FZ3EGYhdCp^lf6$p7TYh&n{`ew6d-X2O1V7&y1F2!NbFkw1ZAe?s|RV*5Ob zhy3jxvme|)_WZ*GAp)EoL>fBi)ZICV`yxV*cLa!%&v)$o-sYX7mk7uE5)kk@B>+VH z3L(-*gAxL=Z^gcY%-Ibf5pk=)a~DJf0MTv^G3;B2Wlt$U&T-8{MgKUcey)msdra-y z7tN{Pdrk_)|Afk)LGll%dr=pqVdKARXyP2?1troas04swf0p{WT1X5?2luc3(z5?^ zV4H+M8rP$RJBj=Yvz7o*34kDeaQ{LC0QtAhI6`Y+H2Xt2|GWg(8SIeS1+jYCF3>6o zkRF-d!+=CU&xNc`0QrxCbkPdBeIj5~-#GGTzZ@jlKD5t8gpl8!+l{cd z7p;U)+m-82ZioBVgNI+X?j5Mp2-{3pg9Ko*6cGpmoi_WC87p~`qstGz2S$e9L3wHH zXr-*!-bkNeL_o*ccToIafQQ^zP^{{>>`_F(&@ssQD>pxk81T9Np#!)^l?06IgMB*$ z)stFak`?4qMr3OseQa;_M4Oyo3%e;I{1dO=?Oc4lVRds*=il!N1-4!)TG`0t;Pc1@nxg+wS#Z9^ZZD!w0i0haRdK>F#etiiuJh)I4u0y|AMi#V#5L2FM znkg@xGbfSWjmT~P6mh}+9LOKju0oL0hptdj8fJb0&z2X<`~LSH5;2>AUi&KI%OlAM z^vcxJWf%q+oOZ{VB&R33=R)}y?v4|m`}b*k@8@~~8M<*Ipm4hC&d>aSsl!DpxJHS% zF^?bl1#|NG{|8}ipesJLW)7|&Ftrpy;Pw!2AGyNKPJD|X$8(rx3${AVY%NXFPaOXk4GACXx6!K-!2C*OPp(G@*D4Cu_{ zujItEqLp%s@s31;nqp`gWyr)t;u_p6C39&TdEDy(Jo;Y*7k}R#Q+nqf=w;n1iQe^- zRg<6hxLHK{%T7TJ2TS@2q$5T6`L_{|fKZ43^mB`^m?CuCN6KYs3t)Mlf&MeN3LWi- zkxSqeq}YXywRINy|0kgThZ|t-y;CN)7rEdOs3%QpGyLA8vY}y*Wt?#BDjz2bhG7*X(FR+4w)xwHGKyM*E{~o zPm~ZKY9rB>TPd5?+$ns+_8G8m3twA-?#&(n)5X1RK>vT>y+_R2T{*LwBoU|Q1L4i^ z)^2|MMrF>Z2(W3f8}9$?Yc;ci@3D+n6SFuki3R2=B#_ANGogS7`YR-H+~rM9!AC!b zR@g~UlAA8!=F-+9umrLU;Sp2;lk25<&%H)=Vx9%W_mC;b%3#+O`7K@5YJ$=O%m#C` z7=|@$gE+6T(L4ycTAo7pF7x4RNtZnR1 zCy9_gt+j~rs{z?R^B@06+K>I~pAh8FA7{V%f+6zX400XJ)e_RumB=4NfXo@a4f@M4S~w$cNfe8><|?B$NLfaPrfta>IC`2 z4UkB`b$&TQ{;>lY{f{{Sm<*^`ijI$UdqY24ntFG{D6Q8Jr05tQ)N(e?o&VTNs5plwvME=WPZJ4=_7liX?TmF7qlI}%i8^Hzs`3LoU z?UhIWl?Y%95r4{a<>`odEbfz2k_lCR8;F2TAo5`%LxK7QaHWn2(6)HpN)Env-u|bs zy&ol7*}R>jHhC>RFs8pk30yx30RkleTLDS~e8kUV;O)%nDG&i)q$GgcKLOq~9p_S>cVe)QdZv-K5vQp8efttvlM1UU%h;D%O7Z+h% zI0yfHOF)zBPax&Ff+By`eog@HCsNF$u@IB{M?DI1vx8jhsD9%JfgHRPZWUU~7O~{^ zj$Wd2GZAqUNB*~ZUOCPu4u<8*^#*Uh-ZiB?w|sN=o%X$};d`J2Im*H7{PD1ha} z&|RJs;3$XynID~)I=$XC#9H7zpe#}dAQAoJ2c-cDBm!E{M;9N95EJ()(x>=84o#>C z3b5mdL;k*kAb+X>i1gFb5V4{t_!595zAY97a{d(mOFCfJNYVZ{=sERK0`E|6){0zP zRVRuabD-u67}kXn073^UfN@d)#scsmHy2?Kf7|cF?HumWFz7hHajF1xdsx3s+u{Lf zMjX(JWnt8A8Vlgij>olWpx*e@?e6C2KwksL-^!01o^u0IREqx9BsGV)hAkXLg zbsW~6TJ-Gvc5WAuFiF$^@g4lFuPqV{nF7CxJ0HrcA%@l8=RLN4G4yF;XPYVBoTw%W^W4bYZ<=B zKJ0lfbd#%g5iWnWXd0JWX6~P5;G69(^EKPM)l4Hu1~UF78~c&t9)6?&d~u<#vig5^ zx-Ikf=k|ADJ8l!uMT~k0!H3CH51a-<>EPb=lv7xTpSwp2CnhA>m4B&Y-*@o9e4p2m z3`cZ*L4bUAmn!DSyFO)3p8p-_){%0ymo^0k4F@D9*39Hw!^~XabMKp@5JCml%d(IE zF70TaAW~51ZF4@FzcVv|82M0Qb&9j5da@$J%^oS6=C^8QDv>iy=eS*T@rjw2tqLhV zIec>V$hsiMaJ|Vx{NI5;cM{iucD|OWjk}L|(Vw3|-ZKcbO=!Tbijcjk(~9?!ToD2Et{EzeAtw@oAbeUjyMLH*%^$3`Fjb0 z)CQo7=hA@B`PBY7Q$<8bN&$Lek74gU;}CE;PVn0F!9M?NX z74xP|OB%XQPHuGEziUVP$QT))=Jz9Tyql7 zGwJ#E=daZyLxFu8WO#{fA=hkw;&_PFy%hl~F#hbVVa@QrG=NO*;P=xLI}08v0is&y z!DH>K!Dg7JbkIL-_{!#sArB$@!hamtJH~HU`vkRXpxur*1)~!K0m-#=>jO9W9QF|b z{Rfo&DC5Ap)N$R0?*sCa9qOK>_3+-e+{y)*g(nM<9+7_$FQGzu7j%!;(q?KV675ah zhed)fPK5lm`|Yj;`Rkyihc`$a%)-AsBD-tfu=6AGClty_SY*Seylh`fBL3P%=nv~$ zIB?NK{+$4R|G_Uv!$1DhJ7D7kFpvfp1Q+5gnMS~jJa|`^ww51eJbIfBu$>yNwVw*E zH^T3Q$p6T`PstF9{7DGJ;h7gL!qE2AO}LOD*o%UGL;8EGbU%Wkm10IGh_|v^_DRa|36bKC?|^69Zb&Yy5u_0=_yxkbkUyaLp1mwJMk)z~T2F zq+PVhc`R#%&i2M~iWYpe74X_3yxM8r`tD57%SBLG|a@*|m%$EA*$@n^8pdt<4 zqqXj1od+^z@qq!ZwgSF4z~r9jn1l;zC1dbDdK3ncKY?}1*>Z&hhcA8LZS-#?hadh4 zaX3N#eGoa`siYm$lpu~L@oPJN?%~4bM%i{1yNP`J9WA`=p++5Gzi#YRE_9*bpePudXqD|Azq@+mwXB5F$VcfEW=#9sGaY#tkCj`9YNR zLT+z(7>R(gXFR7nYFDDgLEBiXii+D^a6$y?^>2{~_)sRDSV`KZpP&1lUE9KWjo07X9-dIc!J>RG+ON6fi8R z@op13%^qw41{YYiixhwxLx9{rOC0D=PaqLMRRDp+P65{%Kmx!*2%K(Jb*v@05fb^I z`qmkUU8T#m{spgYP5}5SiD83R{+n9^5||^)CJ?}jfUs7HR{bWnGxrTA0D7;jAtmyf zsbAc<){Ht;*QGvALAo#&Ha?0C-SddDx)qp8&X4R?6Kj6FGYAI6!qmfY2riwGrtF@B zQg?depAC_IUt9qON6I072+O1*;lbTj65zE_`o*#pNK)FPp!d!vsN6m!2DGcx?9aY> zDm`B7fzHtnB7ee00zm!Tx0fG&0HH;v+1{2T0&c608b)}IizRav+ko4ubH#X^OGq#g`6nTYVo9fpru?IJA>@e_l>48A-mdf!=!YQ%$n8&= z%9re-#(pXR;C8NP7l9l&SpfY0gY(?@M;LksCV=?u^U$!G=%$hYN_2f9pu2q?JjX8Z z%v1w3S{Dt803`$(aM>cTuBa;=en0-?Mjf&msZt7%3uH*VH;Mfq0>bx61{?p6eOW#O zDF9N=T28-y!6Jf5aQ{t51W*zHUx|UyYE+Ajuzyv_1c?9wi2xD%=jNsM2O{@RLO>CJ z9qw@4rUamM5hCKEu4wkCBE|JFP)Wcr?w`n?Y5+yF%n6{<0Dl-o{yz6lyucLE@1yhrPrqa;xvRtRSypwwK#nq3)j!3nF0-vg3hgLjU{^IXvo<(7eq1>cFIte zw4UhwIy&;6-12-lQN;2mAtI1L@ScJT-^+&L-kd2u2SccW6-muJjNIj?s;2SfMKk|k z!35I{Q~P?`w3gt@iYJtt?;+7o)l|M!GL0o%6K-W{*Q$YQE&O018Mq2R=wA2SHW7rK z+*|iQe12{U;r-(8&A46fz0oTe`@F*b{XYAx8+d#qU4}P`ew#a>r@m>2V%+o8&H4%I zpf&l)W;Oxg_{RJ^WQ#u^>7b@>NweQ2!7A{-o0@ z@37~m{-2Nm0|hO)-IfMB4{5+Zq+1u5E6qvWL%7r~zU>aI!_zPf%Yq1^ezpVyz1m+? z5Sh=$*eE_(HXXP+P42blCCA=_&OUiBq#c-RZWnA?5Cb58w%+%9Dbnc^@uygvN`A1#mD2!UuLeuR+!0Tx~N2#QtyB%mF7mcu!a|us;w_8|sp|exZLGs)Q_piB(Tx(RTW23YVx( z=%(!2qk@!f9Xr?uuEw+*2-t~BqFeqt>qzd!@WaSu(P3a1#BVU`dUfar$hvdnkQk`d zY|9$Z?^%Mb{cT7`Y&Vl5_v&midhjdn;erC%pUmY%)LRwBNiAH$QgQ2z27ripyw1?K3A~mF+AU?cRsRP2{NY z8z5!kn<(U20g)(ggm?n2xPMDida4wtq;dVphkMAEdG zz&9s`rr6HR;r8W`V6=DA#M1_df*Po`zRkan)#74o=6TjiKT;YiPFIy39Rsz4jjL&AC<=O5b;-G zhj1h}`20r=cKC@$!d>~vsc?IX8w0rkcuX3qB0?Yb5A#?M*VbER$srKg;r%P_pGU+# zuOJ#<(JQ5g4jPu+?6edfngU`Z@+T3XK;%y%Aa~SWbN%ZT(*+VD$Ihbq`co&+4?h2d z+7%ezIsLRG=Rq40e^l^b90Xn{T{b0PRnJ1`e7`HmUw*iMwJPE-AZ7N+r;mrtjheLu z2phbO3=noZ<{s?r9=S6l`MdWkN#+b#lZD%6Ok9AR1~v*u#X`*%%l0v=^DyxkW0 zvw=i_)V2~L0E8Bak@$S#p`;VECH zM6ta6s$GW^V`&4rxM9%3JO!k6A&$UZ*Uc(&jCzi+FOh#~7B>jUzjFqH8V~~MgLoMn zcjqI2x(Ju|;^P4U4;|n+4Duw(t?JMR=A(!|gV_CXIPsq=<`A=UImoy?+6izI!51wt zP!37kUxn41@AtF1efl6yVoA^GIXk%kDC_bw*z3T zC!%^10V)XygNl(kwYOP_0G>~*kS!s5OT-lsKYJ{@5;t;u&hT+^B4_gO1RxQh zIm~nOKehubERW__}=p1>D;dj5E_Yr<_IG)c5Aort>oc#0H6Ba_w9X7-LsMKW?v%zQ{Ose z3dj^l?w`PIb2kVKFlV;|T1!^!9*@m2Zfv@wrc>ZHVf8MOfF!A33dx3Tmd(o0s>HVz?t(Zi2OS-dz$Jw z@@;Pb9L-b0n!pkVt`EQ_5;#u%00b7!2iGO@A@V07z@l8g)*PIOzp$?WF=fUO`S;I3SNpTGA_ZtwG9mJ3Uvm9^ zi6eh>xh2HJvF|iMpDyBPB6%(GbCP&rLEd>OMEEEZ^v;kFnh>QWA(m4@0LSzF^Gkfl z&3;dS2nZzs9>XBVNt#b=sU(2c0NBnw=KC;`5F_$G`UHo>yZ8_YI%f?}>~A`H_$894?1M2oCv= z>}+??eNlm`z^#Ic|Kt5{i4cenGUT_q{^_nJf=AyDNIH8Of2{P%qUp>mNYQptrRa}s z)(NK`)WbBZp8g(N$D{xx2KZifhIN<30000W07*naROF_J(-6gyBfLpiX&HO6Xs2UR z!iKJ6I@ln&0I0i2QwItEL}-pdVc=w4Lj(*C-Wf=RhYxNrF0^R?U09ygv zKmigU=}abEYo&1^W_?(Ep=pXlX0Jj2k2=6n^kWU+N>qSBVC`>eru^ti03gd zcE)p^l3d~<@ASIFzNk3AnYJ99oTCFhCVas6lj;_fM_khvBJGy1Ieg!G)+Qh`QJ0|4 zNmv7B?uL#r4OI*X@PKPAzQr7aLc(??i9*=iCZHR>5VU^@rje7qlShpFuE};LWegGl z#~y8)v!~Ohvf43^K>hOq{NqKzezO4GR?$53g=f&WV5&$bT>kJ8lWqZ#Uap$eoz(#% zbxfRq&trg}qYph)q9(nbg{U6trr7;2|Kx{+(8|(>U8Gad6X{&5nm&GJW)Vx^%U?6a z_a8A=&o0X~Og}JXYTw1Zf!LiQNQTa$jy{9;KLacBUbSVKD5b}dl;}`iQufxLMy5Wv z$0euWUk^X?W%(xaz2=}8gns4R^nr6Ew3^5#P*{=e%_8}Gn1OZs9J0??Kf&CL~ z7YYUBmiVSAV4h9L)mPnhCtydxXOe^sNhXCf($taTdU_p1c*KpzU56b5u7z<100)|@ zrUovcFm0bTzI@D;)(uwN0gD>xr~eWlPzT&6F}46=7i5q~N({8^(9)a)p`2W{*Uknz zDz7Di`bygrcDpx;b|zGN@P(s&P7h*9s(8h?g3k$e*P9Y7NbEqI2TF>#)q46#dw8Bs zE218;=K{((l%vvX3;$qS!gv1~IV4}Yt%%$kf{QoxkbjAKBDqs9+4i7iZ+b_1+voSj z4>xl=aWjDUiTnw@HTxNM9&#T)+NOZ`4<2oq>D^s(^$G|Ahy3M$jsFIa+s55tO99u- zN2J6~xI;IJ9{}ltq7WeSnnG#@vDLj;07U-fpNhDb)$<)e{_H;w;)XDJcUKCxA!#@d zhsbehHXNHV2w&|M)yyf4kfzEljk1c%qad5;% zDHiz;bdeuK{z0`WM1a5d>V;Jps$LD760yAPrK9t*uZ}EzEX>qbd~{Zjf6}SG!h?rw zXw=5Ezt{}v*GEDfLIOclI_L4Nyb44#0*a8N%p(Lakw0M$+k`wk5}I&NBm~!iT#zg% zv$Kz4+hoTU|0O|4_13sl-Wnu#46M^52g$wzQbxE8Zv|)&m@2vNN(@{a1|b(m>qUCU zIAiTmcjTMn_CwGcS((I6Ou#HSu66_p-Q0+5Vu0@9dzfI zdVml@zwEt`J3?rK~b(UjVNC4PWmJxa- z#4$rrAmS$w`JX)zAs5}x+Pj943#Qkf_kaY>AZ3Hbj2G3f{(Qr9UW?|T$1Cz@-9kKo z;(K$#`B#3gW*TQ&!u@~X-&$&vk^sU&xnc5?9gze88J@$!{!ujFs?CCoc`N^Xq|bZC zqKH53>#R69EpAyvvMRz zbFk+3!W%hoescdl%zYSK8DJFR=f2j3lY;!Yo!vWQ>fbuaO+)UVF!jKIYQiMj5o=OA zu_S$n^a)A`^j5)z)uRP(31WGcN8WGe({gTWDG%{$pe|ozor9%1B>{vaGOrB)i2x5_ z`TLeU$=k{2GfsKO_`EQT_bRjzOfLuR0@T~$DGcI@#cSna%65xn{H6RA| zQD9#d$&ap$UcKG(>v-M}5Ca1F=XP59hN6E0RSaFn{Zss}Fb?@+?p!dp1H4w2tm^z{ z_se;up^gic5y_IQ$N0Q4j0-}qC@fpk||rv7c)=g2RY4GZDG$^o8J?F8cle(oeAWa-`q-SnwTnjw+jIDUIuJbxbc?`JD1D3IZKM02X`8u& zMYHgMSu=?bh1;}+AQ4dchP@~3S+5{8jYa-+jk?pkQObD>1-*ME*($5c&Ji1?QjM7bEVe z0*E2)`ZX)Dm@E~bp0MATKaOr^Chc`l8X!PJT&OjCP!)i-W&AY9+UV5@Apcap6osJn z_Jwj`5CfC|Bz8paiFS)e0&M@Sr5uR#wMgHEvK}(L7Oo%Hr-;SxwTTqK?>cTf<8l6l ziIS=Jq2^3l0?$9La`UwOT-Y&M5S?~zducB`HV;}oZHZBTyzOjvpo*X>fZV??0f35o z!!ShrN5x7fHE5=RVUlE7h)j+mO3lVBKu;CPj%Ou%`IWPHJ?see z%d7jl(5K0Q50@px-F~Cj>*g}N^6uq?x!GOM?7&NX0}HXU3203eOb`C~qDRCK$r~`f zfa#xyF*QQ%e&R>WrSsp>!%gE#-Bf#(b4hQ}3VM#9MO^z9 zY(?@nfn4!4d(gM{?!vn_4P#TJ!3}O$1mb(Aao~)LK*;Ut*-QA&V7IVq#w`B+2~)U? zMtu9UVIk0drR@b>f#4i3Hr`YO3n)DS`xfZ@nV-D74Bz$LS*XPDtx|%qf`j>n#h?Mv zd15P((^bst`7@bH1fLLZXzmR z7BL^PV&`CYw_1pok5{#F23ZB6LZA%*B8He?CszyH3(UrGA|^qXp>es7*N1(yp%VX6_qt~%3#M~@P4wi<7tkf4%YAr00yklW&~F3b*!QB_ z$MeHIF3e1um9-ky68k-_{8xN?pM*^VaxZkj-KHq&hSfZ;PX#PFK4aW7+JPjmHnEK^ z^7_H(5C{;7oJ5VswIxk`JAv<#CuLGw00Wm@gHwU?75edM+ejZu#%Gg@(*8D#)U}c3Yf-y$gWgP=N)Aey!@hUXR*F6 z&*Hbv0kydP@i$7wwezds6{-ya$!{kADUyfOXNgS&_6@oMfwdO zk}sfeJR%fMs}1XIqGsrI-R$_|)<7@QBL68Oe;9}%vY)x)2Aq!uCi2hh?h7GMdC?-4 z^23UhqJG@+5WwJ$!C&yThf#_PD#BeE=bp!HS~%0%S%HY3MWOJCvTm9NI3k7e|8~Tj z{Vy%^{4Y1m>S9+4_mzrgL8z@t(Y`K-lK#{>yf51DM(Y$}#G|acdhBrJhiZcSwNr5# zqO1`40}s3#>J1?NBfl~Wmn7BGBtX9RSf>FHWV$28#deAvs8INAw*K`M0h#4G}-##Gjmy?XUg&-;v+d z)0d>?zh&gNC(Q4IRsIwtCMbl$ZgAEv{=PKeUmNc!$^`4;ka+*)qY)=o+#PY=dOT|) zewLGe_#6n7ljh_Xzb3mIuU6rE9lgJeTHSQPN%s+)hNb5rULt=I0ff#f!p)q9R0p-N z2{Y0>@?U;u^eu&*khEtQ^ww-UiGa=$?k@r_;lqiFJ1CDxg9``~JT+w{5mym&K%wMI z4}kpRP*||X#M||E_X@Aij+X?J6o+0cqhEagX1_B#H>w5n7$X0zfM&()5}^PXDC$l_ zZWr7>~^{{CJ!*=*9~&I86dpx4o+pb}57WAXms z_f(O;*LA~Y=|1lnE0f?16_w!KaFE{sTFmhpeydO0gzZGwPoaD**|fH14MLnR4tLLxvRQ?l0H{GIvmv-$EpY50owT-ewQq#c3E$8jW)|H-EjcipXbME*XMe+E|9AOOHt3F7znal5H_ z1SD_7U64@%8{3lA^gTWgx;D!4cYBmz!6chcnd zxbZr6pF{dX38nI0i;y|QIOI>nKXYJ@oQX((6a=qB?+H%ENBn-@7Pw+^$20&W@@H*m zA+NZ1Bd!b&Uqf7W0Y-u&@@K}rfv9l6@yJ@&2DjNmtN?QV$w~C#*d8IG11=&T!W?o0 zQz_6YY|%4pbVd;)v}EfA&EHBqkxnLF7bA00`aJ z`OJpjgr2%?g2xH2H=$zm5QH2J3Cy=5grkH&3+bPIP{hwRZWHmR$Wh*A$RG+~0Iv)} z>lz56Yq%#M07`Q`bLw~sk{$bvkmIkogpxXiGE@MyUIh}X2%*Tnl$C;TyBAuv+j9he z{nyeZj{K!@i~r^kmm?ojCyhI_M~??5IUConbph}F1EYyX4cw!V`!Y_mCuX-dOxm6o~u@KIb3qduU!Z zGqcf08%O@ym$h>LtSi-HVX4&*fFp)3v^7Yj`p0f}Td#?d4=H$&n9`NVpXr*3^jUJL z5+wn+=TO@?7a6UE^M45lz69THAbytegZASk(hre8CP%J64k7Z#4j=iue)~}mL;mq$ z?$mF->yaeDA$uhPm_tB`07?Qn@DAvTSa9TYWIWwV#7_|M|JN7I(H}b+a{rV9_=sPR ziPuE@3c2(o7+$!##v}n55UebOVjfZhSM<30m6~pb^)sLQ9pU=fumTCdc0maNB7Q>a zTthg2*@gsw_5i+wS32Qe<#I%1%$G{0iIBjANu+Kb2Q3gF1R{TO|GhOJ8F)1egGopL zCoxmq*hb_p zL;#3^lQ-c`nt+%Ur z3CbNRgk356-wbM(5vCqx%P>qrI^=cPkwpT8P7jMPDRtzr4(Og>sfR7u0670q;V7o= z!eRow2HWyL?W?F;z3vGb1X>OiUaS*Vr<_Bcad=^x>@;sEsB`GY^1ER$gf*#-RJPr= zU7Vnw+7%PSlYk(63FR}~AY_mUDho^9xdcQHAfSux-S6B-y^RINNzTG0uzi8i%aG;l zrLHOefHBW}nb&U-QKHv*$#o}zf-8uF==`~8gX>Qqt~oBiiJl9yn6ne-m3P4}8REyO z0@MwRR^}`ugPnELSY1MdLBte4f;iNFRWpSjn>UR=S&|b~fAh2i0+Jv2SGYU&&|f<) z3``j5_hu)Vpzkm)4aR>vs8ihp2Dm@^>HGIL6H?N4loIl>ch=xd3NHiJ$Y&=z^3(9+ zMzW-R$Lg>Kho9^{Y(^}FcVmIQ38Tlmp^qzr1N%OZ*};NoL2xmHL#ID6WhUXdzjm%? zn%@Po^rl;1g%qZH7$R!K^M;Q(p|{?Y9zB<+Co!SQNZI|S|MTvZ*aW0@Kso_krq~2z zvq+=^q7G}F#0kLcGV~B|vm`~ISZ`q&kDx!{T=CX>6L@y(D?4%Bt*R-{m*HdIGbjG+ zYv%D!{|nPb?)IL6Px9quQ!39z12_)x{PTZpR?c5EANb@kSj^|l*{4szXC3-v#FNM& z>t3cmY4VpaG0kR%c;vDT-7Ps~0s3}(7Tk5jRloH7qA5L$NPR1HITPc=w;&zLdGDG3 zJLBRZcoQ7htejghB^V0kRAi5P!h8Ut|3}aIvxo)ou)V(YH0~uN0_Ad9#+bdAc^LxH zOXsjwky!16`0XGoTpA+R1c)tu#cimFXn0CU--|X78pTI(4W~iWFpqr}`)Kh_{kqdZ z_nrMf0#V|gi;W$m7{uXS^yz_%&p`r^nZz}|##h8W6RfGC3wAgn ziDTr0a9?q-18$g=zcwxCkrOC=K0^nYJeIJIMW&6*M7Zc1U>@*BT6}uZSN5CSC0)btkvqBw{ z>0_~Hi~}wUFknE&6tnW&Gx7|$4UtaNpIdx}1U?rOzE4~;dpB{s?Bjj1umHv;>)lUA z-{b1v<4tp3O?=DL1Bo^hLaBuxJm+u6%S=P{2B}f&67Cz$o5G{XVE&L#VLUy+;VPPVSy(WWZptHlpHX2t|*91_e#HIjZ zqX@jun$Tadb?OIkL%q4Mwe6_lOetw*pU7C`Z@cS%%I7B$;gGisZ`V*5K%&~CQMK1r z#798nPiTF4S$9jFIRK=8wq|C2>2cHe!&3wMf^*U7iY`X_KnMJw^iouqBu^s1Y~?MA z28i~J-5PU$#gl?azqkPXERny1d8A4v9QskjZ;zz&(w2Fb{Xl1be#W#bKt6)}EzT?d z@)1G)>`3HKAkt^4oJK+txMJ3qP6+Z3)>hzeji4St{EGbLfWd!5pTl66JNhe<1h_Z> z5QqrSMNq-dCa7&2Y9dq;0f1aKXDUlTgs2aH_=Dz|-~L_c&h0_uAB{rfuQ27MfTdM^ zfSeLt=R#>HhGlUaTZsH|uyV{a9%La9@mK!zgsCCmkb;l=ORx+tftY`zP{$luia)ww z(lg%8a|2gb@XgHFkGTcQ<&x9Y4?C|Sf9~t7LJ9@sUw_Wce;&w7LEYZ)d(V8tbrShs z1*d$**;Z)xadqKg5WXIyNMLON(m?uzE(idYp}=JYI6-I%ZnF@u+-5+C^nmz>K>)i8 z9|{N_Mx?*^N5)JAf$>=ZTdjuUqqzE0NxcDjVa(dG!Vs7 zi2$ks6xw_b9T54S`3tV$_P%MY`-%LALOvRA=>9Q{9nZqGKLigB97=@mkp4hBeo#F+ z;2jV{V>w7RhC%Zj5?+B*?+@eFLBx)P&E(soDI=})QocKk5P7YACm z`9p~SjqyL^@Z?&zyNigQkb_Qs6oAsFd`W3HF8VCLfieIMkQ0jh6Eh%qPzW91tNNeg z`}wy0U3>`o>KbeSp2k8l>)j-~oBw$}esTk#;&E*p5cz}qKk`Y4Qi1#na6u%LcMo3# z6!{mPIxO7(%C9XNBLBjV&6!z*LuFAYy3B>F8wg`e4XVN1axl> ze&o%ICtuS;mDeUcZL}Q zaus43h7X1=T^tG0wg)4ECNl*oBua3lXXf5-?*j<|b#+wapP5FKNg%n<=C}lo02hxS zzIOomb7$;ww7*QT3+^SQD;2nYybxP>k%$sSY|{6w*e&m) z5&@naq!0lV`$wM^?$J%Cw|pYNy<5X3UYaUFApQ1x;*pwKQ>1`@u(pYKnZ|K z0Z0U#{fj~A(uRZC;BjE`6FPGuewOl4_sk#x@PXXFkNo|8{`SHr9|yNtLT13SDL-Ka zi8;6z`cOl(z#>v!vk+S6;Wco1O^V;o->v{rlTfL_NRN^Lg+$B%P}?a17ywEDDEeo+ zizUJRlmPtB?|#i3gF$;E_R0VNAOJ~3K~yDSJKVnsUh0rD=)!n1=?0MKB_F}#1M+BkY zeyiIWxQ2v#f-?D0K;%!$e-vgAOo6&*JrWez;xKamC3rdzTFV`u$8*S>mq84Z)KtUuXaPiRHWp?62ti#&!brBtX4*e(z-~u-kk`uTvF9d1; z{XhLoGklMzpSgq^Fb@$fViz;Z9|8J|U7d9ZI~@lxrQtMhU>}bKabLrtseYTCi5B7r zBrf1kc{}?~XD4I9;A)m(L-AfUAiA1qLibGOU^fcJAapDE*kPPl{O68q_w@4#OY zSCs?TUVQ}yfLBRkTfk7F?#n{wWnWjYpI-d>e$sxJS@>)d_T-^cyC1r(SDU8sY~9R4 zCr1c?s2ThtNL`fQx%ZSrCvK|HVZs=x|2Hc_0o9(d;&gT@JcbW{ZPFC(1EPNxF$zv~ zO&$7l#B(<_m%ssc_$cy;;+oy!HxWjD)|JJ6#d213TTg+9F%yX$jM9zZJU6_B1v_%< zQ?942%5y;8_k-&{3B>CUw+Xpd%N+PYSU|tNjF%PxNlI8$o!Ih)-+K<~lDawmTThD!z9w(2y&dpNkPTW5 z;4QR`?!V@a=g)F^!Cdu_DBanUF6l_+zgbRLzat$a1re^21Xv0UbFNQ?tKa1#|RfHWr^4_wkURj0lYt#I|d-j?aUIw=Ze{TX}YT*_|p8(HC zA|MH(d+G-vqQ2OGdnAZd82SmJb7a9>x_HU#*}KO)`a_4!`LpK{TnpO$>vb~+NyzC- z_&)K86xV>1ZbF)ngRebe5A@*r*{OpQcIyn!-8cz52_UX~2@*!!dNP(88ILtg6(mP| z=A9|T`GCig5Pys-4}Wspw-j{qlA9hBBZSHr8}~}|@f_U(W2g9FpESmGY5>lsfWTRe zi%{b%B1H4Ows!#aWcFSB){#>L_pgQTvkUtMSWASQ7&P)QkFXT7msYr=IEUqA@7zwJ@S4&Ay!3Zncp0xA(0VX<}Z5114T5t?df z=bl#wy8pQZz7#wpUU64d0Pg!r<31Gc!uu!v8D+rUmk#bnm-a|($F(Qj^>;hOnZzr6 zp0+Qy`!{NMx_0ebdu3Hdk@y1(L7vGfOxdD`f%mBZnU2X}3Xqp{) z1!OfbY1r)a@O-+Eilql zMa}XLEyki|<@O;?cVqCy_WDyL(EwNe1(Xf*3A_kq;W6)XTUTIgaX%iUL;js*nBdgx zHL|X~)Dq-Bd*9$98IFSuANl+3+|JQL!vTqaQ9$HRsQurkOzn@L+dWW_n%nIwFb+Y< zK;&Ni8WtrW{*%9j1?aMUz&x(y4B)sufc(86E3$9H=jd8pJCikygM*JQo8l3R{8@M5 zMoHwKnai2ke-1q=3>FDQ{<-(3rOxb!8{@gFCiCuykjTHQWDfm2I6!2IYn;uPlfODE zHMc9zm8H~9m+UqWzaoE*?T|lT23Zk21k2rTcVH$#nInCBd%EbLMQs8YdX$C9M+ijz zi9vBAu@^tppG7IuY86x)Vd)I0Yk=zC%g$Jd$e)PcBL9uY`7QN}2#$kASfRT!;%ahZ zGUsW3)N(R9CvldYh z>8BACi>1f703J-n{QpS=5SFegNfLFQeQY86;kFt`IqZW-X6DcJ!nM8yABxY5`q z(kJrIfl4pC80%HBkhKTZVWe0bBHl?R=n5CTWkmitNCA}lFCN%P0AwD33l@-n>pOPg zDgCR%rgaub{(nEIGn6`uMWg;V_QfCAfgkXqkizzym70(sdVtZthQI{ccDWMn2KO(S z8p8%`uH62pEOGawxOx1TcHCf9%P zUp+2uBmySkaX`escHSO8wZ|fS*19d7-M`k$5apv3ADczcpf-#ZAt8amBFi{fS-xs! zcTWlT&wgv!$LUr(~F?Co91c-1PjFe6#u6YNl}4_pFjyf`W^NKFaEeaw(w&I zWnX6h6ml6%nWe9vGR^NHfCe}Xmhw~3>G|bR=$BDShibO$qo4Hv9ZHgy5&)iHjP;A0 z_U-tO?@mD_0h}O-0NMtS2v7-t5(0Vwo*IBJ$6mN%{U4|YRydUg_(Xt804j860ze5S zwf^H}MTSvC{FDMHA;9C($Wfj`8ebodBL)D8fI5&Qk-tKS{2>XLa?$|q zBO#zf0J;BRKox+3N&qsj2O#%94DvBf@W|2V_+kA?1Q2LTql5r|Q~dA4qaS%x)BxH> z2>^+JMHt*vcGpaOGD2k9r{jYE=yFeaT_m%^n&L?U;@RutWM-_on6Ho;Zhqx3VzJIH~!D%5@eYcAKNX6M^ z9m40Z^}{G!&_=?*a&r?REN~&&`+<0mBOZSSy7zrqbNo-C+jb+g8P7Na-EZBtFzG@r z#Td$XIVsMEE+dUuY5!n-`b4m9MPu~4En**FJqK(1G!ZwfJcFwURx=Mx+5^BFo*#1X z6{t>uOJ@HCL@8fERI+{0fxiy!_aRWPPa}r2Ah~GZlMR$kT^OI9ZB(Mp=i=nCs%iQcpp9ngh{~sST-5(Lj>%S0}{fnfE z#n*r1WruvuevR1kn~vif-GhuFJj~vMILv3AQ-n5A{X{V<4AJdndjFB1|Mpckbo9~6 z(YKx4%@{F46VW0!4yY``eEBL5_0^(Tx4&2DGiJ7kxd10rAllrNPmHq_r7+bmA&_i$ zksMh6U?g%CV!Lmmk5<&)Rm9|rM-Q9!-{LOk$Jr*5pku_aKXavJ)*u2j`m&{M!hO&3 z-f?l0ZoIl5KX4wmixePXUTJJ}(8n8mwUsa3CaCgVG#*7?Pe2|K0nO8>vCxkn{_@Y* zMM^O|hRt;w%cH&k_w1zy-CNLCV&y!XM(2&rKfynK1Baf(`z>2TGQ#f)T1Wv>Yyb++ zoHSEdqYDaHss|7*QV3w(_sUyMbNJ8!^UBNU>pO5qp7^P|NA9F=twg&yADJdwwe)G^do8 z`nvVptw-!DHvbe-Pp$QH^Q=#|A2!c=Nkc=abiHe%Ub$8st+xey-lwL}ptJT@cQNJ? zyN28QSp~lhWhRx1uMm21H=be_P$u}5@>Y;f#DWZYYmB8sQZ@PeD&pcN9lO5s7OD~Z z-Z_SnN2*Gt!guQjf}Bi}SS%0HXXk*`@E&x38 z*8}NAjt>eo_)6stau_o##Dil>-!)>B5*_msO%y37wFkU1Qc=I zia`snm{Pf^TV(4`ZV>wTesUkku4S31g&og1hij{ztJVU##oQF~FDd-0k3gpklY;O4 z)%VOJpL)dZFRv`Kkh<@(^u~%gCIi7YnDa`KbRE!?)ctMK9*UmS==MM!AFI8?{>fxG4!2WQ^oQ%{*qjR~P0m4lY0_{^!BObakXxsthrYa(!55lh~ zvCKz+`cF9`;96aDBfY=cRVMiJudavyFy`p}HFF9Nq8R!$C%uj9^7}(FW9|fXqAd!7 z3t;f#*{Qvde}LE?Kw*1J5S{~PI3JpPsIm|e_;|Yv<74QoM4`}cwBxb31lPD|^i;!^ zTUffC*7a-vv@qGPvD2d1`eP>C3RLp^lvxMy-|yq?$M-Qe>lU1J!wv9?N2+m~uwRy! z0uags>(GSnr!s)${{6vljXB3w{vt?CoWDo@A_j!~i{NOLauKY1i_y?e(MN6y$lv*)3WIu&l65`hupbAwlVVi;Lw;Mr7Bmu|+oWEwG2+_Y2yX8@Oa8-uO>Mz;HdFYkn7N?&gbU(O+(urKg^^WkC9p0CYFT7iINV zjZ_EI>?=&Qhya1o(gyBd$R8rdazf&Ug!}~sxc>oG{X>!n1@JLy!l5k{s7FM=^pPE~SyN*a-m|w8n3HdMHGjCd#uiw8ekRVQ5jQmT8ezkoRu!Mkh zKjZy*LLf%|TSx+uJ&xO5eCToeQ$qU5!R%Lyxkz|Lkcu`zC_{{j?5b<;)gK^*@2iuE z3331Z_GE%7$pr`szakHS;02(%wF~ZyBmmF8u(l2P577N<3ozt)wiFF8f`I({-g_!K zwQcu$$UlEUum{N3=Z}+lPgLhm>~K8%knuF~-Nlgw^XKx%T6jm`iGX9Hipe`xV4?*y zUKo>^?TcjbK*7B7Y+`1=Ky2-t6d>+eM8J(m0CY`^{F~4$`>7M>A9Md|C*&Wb0OI_G z{9E65I3`E{RJJFrRv1}FQ34kfVVOCkmLGQFPQom2z`-6u+MBC z09_U?LE;0A1n%Ef>d&A^I8G!BUIH+x*D1{_|C$m1|3NrcK>W28agw2aUyZ;jktKC$ zhOnxi2YEkNx5!`Z#PtX6zkWmn0Ph5YL=gZY1{S~KxFaF|&daNaGvWSF0R-51*)60q zpKwH4^VF0%^;AYYSbxaScyj4vbJ9gQLg4b`W;b7}I2G1al}p1|4dtZXY_g+Bz2n*_ z5@E!`O}g;fb#A^~8GKEW0D*{r0OeaVai!{tK55VBJlub}-s3g8cP?M~7!G^!|Gabr zIjAmRhXLa6pmMqvBrL!|0CM`_J13 zbl~^}K?)!uKmOTm9zy5!m1VG&X%A4DX^JNgtLT8+ll;}SX8X`_3$GU^Q zx47;Jval@XhESf#E@I3jSF$0Z=|IX&K_HSr$NiKD0fCnb3Hb}Um)DJu|I*3l?Q#4^ zQh)){p=*JV|II>=F_K1vVz|EkFu7-THS$V~BmjCIuQm$Tedsbw zo*g>aT}I^H$D+QpXU6oGnTYrqTG-Y9H zO(yP{J1mC2kOqXQUqa7RK|ilN*%r8O`Bm0==KkAVvxOlak)w_IY|5ld&F0^5BbuWt zd`yY#|aB<D#BMI@Cw^`Dm*0n;XwG_)jNx(^LB?6zHYH`Pv{!0vLFN)62E{)2x5O!IZ5gf8c7>pjzy?C;onneqqyt=L|hJK#}YyM9+VZIJR$-#kawCB(UopD zA~>u~fVtAXs!W0fK5aoc91!;@{<{T;>iQz@Tnmbn$3S`L4EAb=6Jne%VbhYmPmQW2 zwLwR?!Q8UB*-^1P@jJg^PW}65&D?!+=HideV6aM<+4uQYl$&_6^bpevD&p1|2bQqK zm9Bwwq4_rVBx4vXn5A!B_}L@aw_vpCBgpmNSkUK!lFi_yPt7s53YaDFta)>|t zj@G?^{F6H0m^9&q_xN4jcVQOw%QD|rk{JKZW!qqN{}MOTrY~C*y<==s`u=wm0cFTo z6wqV@TFrI5^}hBd0H40p)_2_wCFMu(-##_~EMOUHQ>Xj)W_mT#;@dsM_j>jP?5Z@v zxvsH`JO;1|OVb38LVwchO<^B{eqT8W_|&ppD6^F8sNi-J z10piuQ-DJMM(s6=%>U%7gpzzDKstB6peYEE3ap-;=Y*K=W2<22+>~b$qP4Dim*ykw zwVdjGc|uuZ(u}P!*|$~q_8p;8u!J9yN6oL!ItiSJonRqac|;WVNzA4}rL{mY1qxT) z`cUB7AwkE?ZoY;`S^kk+KmKnxl~rP>1iZoaI@=^^fQC7Va0-7-8Ql((o&X2^x2cWb z=;P6hi|SYTt~U#da~jP&P>+Y!29)pgA12pX^ZQtzf6;N~!zMad><&~~%nae zhDg|?Rw`rt9U#RBOp`o9{yG)kx8}l4gG7#sJ~kxyNP4-=!p1lOEFmBSHUaYCSG5G^ z7uwo>zRh98_GgyN(O-SS_A;#Qvt{w(3A06r&Q|2!Cqkf!yPdWX2>DBdt5V5ifPnn9 zKlg=kX_posyRgKVf~pPF1~CZv3qq<>?Fa6&?Njg8W*i})bK5{7UbZHSVPkgMBLC*P z6COSENvG=Ac1^Bg$m66@e)m{qP%4m_Kmm-b~jull5xz1uEfl$-AoIgdCArwEi3!_flB94Oz4VI9aneLs87(5@J9%@+A{ zLdbt)f8!h0Bw5)3>YURy35HQ@eXR>4j(t+&sIE&sjsS5~&`@`+vaVoQJ3ydG!s)_o z?tAOlBL8sW8l|Vn##)@<=$F}kf2=k-@Z$eJa3WK8qUM7e3@&=^e?JSm4-8g$RD z5<-~-EzvqI0zh1U9z+Ca6SO>Km%d9p@3UE3asNX_FWho2mLPG6$ZYcG`;3oe_uxGq z5ap;jjWPfLAOJ~3K~#@l6C@#Vd+pc!#3@(Y_zUM7i`hF-U0XCIoPU5INl9@9^8i^u zET*eNACWLr+cG8w#!g)4;4(zOAJOKwBrOUsk_0H*n!Gk735e*b*snTVqw=9&f5M#n z`m?qwApZFLVE;p=aB9^|wG|o8eG_s2){pzWvgQ1{=)}8H7rirjZc7Ao-^Nd$ZSl*F z7g&87V?<8`q|7gC0Ug$ArufD>0e@!k`A2QAzK&#R9;w0#27?&o1tK8an-_F_PZPIrEPg`R0O~j8#e4#4UlWT zz$eNjp6}7r~ zNRXZ_?%RHCjQEE^B1QMo+2=n0=tryfZeN%aMXkL_SUgf^4UXny?)t6w8E1Im2!>L_ z!N3>fnJ@`N{2}RyVKn{vmp7~$z_cz-;`-xj!lL(eD!&q+(7q%9$)j1V@;pyM{%Wzx z;+uz!x5jTUoUcz$SP(c_*+0I(i}P>%G!q}t{!Cx5mha?)%WY7|KS1hs zw$SkpH<_d#pfX@E_fz-W3eFj4;)((jsgrE=;-FlaLbMmHZs9j57d}21BLF1+7Xcv7 zUr>42NdjaLDX_@@<4z2+^gDm%D*20Jh=my>02^d$!^dWHPCF|<$S<7k-G@da#81VR zLw1&H29bwx6q@c>2IRkE15QZPUn2!np$rZZ0CiD8J#eECMwO7ih=4pu z5>Q@y9uYI)q}d7`zTXsXvm|Y?;(vcZ)7uq@2pECft@bmfc@@c>An_NS8bHXuMdF*v zU8wu^ajz0_#(*gI+^gp-@}HfZMW4HF5x)q40M_L!9OOzN{{Bnuo7EpajJTBfBdcf; z8^F;A7OVpWx?7YBgfE`795+w%TpmOO4Ey72Q#e;BZcV&i=O6pRFPRsf`9^3;JPnd_ zd6k4Jhiw*oUb|EPlVBL4|AmtveC|9P*;4mD>CR-(*MBpNKz`#8i0VbZSd8_+qGi(~ zvvgn(8bgQ)pgM8?+5{5)3;9bLaA4PdTi3k0X3O}Gl>%hLAU^e>_7lQ%w|dh%N&s%O zQ;Gkl?;6KT;o6&+-XN3l_oY6ROg9*tW{Gt}?~<@71o@;9N1HtHN7e3hH?hjSTq40> zLjP1j zAn|n0EP?b0J8t3r8rNeR(C}jS=JOX#a*PQ^U6l?N$bg=3x9WMUGAxCEEEaYE}3 z_-eyWAabz1K)fi_1g$})H6BI!LI+=M4F`Wz-%Vx(>Zh(c)}{1;!`M~4DCX|MZ~wK$ z(B77Fcb_(mUu>A=9}=m(xojuz!Y?n{JPS*IdfLo9>Inwc_nFV{vsnmrVf7Ht3=kw{{6@B>3@db^0;v0Iomz@xed4D|HcSaRV}`)K*mS?E%cjN7~@?-JQawKeO0l= zFYo%>NuxVIV3GPd@*_tjm(llHZtS?Lm6 zfxP6?jcK$0VPnp`?8e6cU1GnBb#adu!+jcm-`ri`{IeB1>;9(q#%uzN`RZ1hTAP3& zZbY&x>Y(H)V%K4TPgO>QsTlHt+5$1&&%5Wz>O_U z-S{~B)N^L$=yCMNr)Gn-$otNR%%V405R5Tw~064q!k+a3HA*N)i7mC2zBOp70FBie{-#9K>`(`KXm>0 ztm97Ddzba8x@A&r9=Vm#TNn3WAbgoMf>O|Bu1sBa&)6fDM_J=f!0#XsXT5ZYV2U*k zS)iFFNz~>>6XgHr%nvu8%eP493l+6cQ|bI|Nr0X$)>-MMRVPPN zl_jw0+;GvAiz+Q_jc+mYbo_j+=>N_sd*Mth-GHs07?tC$=W>)iP12C5h`N4 zrthUV0=7@zujSE$=w5h(`UD?->t9dP3NbbUs!pc&W5Xt|pHM@CXqTgrK7Azq=i3of z!BKzq6EZgVtQD5A)_Hry=ow|?uX%ed=p*TE@UEI(olyoii~gO0v)A`2>fZc4DSpA0 zzK`shu1tHkQle?%8XFqPpj`yFH9FNh$$g*PAvcIS(O}qrgQl+l>p&F0v;8*PHVBCk z!imPG#<{*wuh6@Vw=u@s@JJ_|pj1+XNe~eK$UD!kYic`lD}&(*20kAka=v9?H%qa4 zc@8HA0WX+ zur%gOvL}0+I6*-4`wLAGL+ER=|qja;JJNs71J*5sbf^QFY_sfJlPG z6(Fh5OfC!C=J~$qT(Gkdu1L%DICKyrYZG+WNs7{Qi;S(n#sK8+(NVCuwr74~e_}VJ zzL!Ldh=A+-s*wMUz{cwrApi~_vdP9t{<^|Gj6~6~2jp)^7Sk*vQ42fcI~$ubx7REI5ZaXBVC3E=m%{+P=P)LVi2#3MW2tLqd@O?v;u@@P zVDS&U< zpD~c}EfNI<{?R7gf2{wH-Tvb1o_!&ki$__jMF<=%9*vv8Sh)2elw&9J2VTWut78!j z6*3eJEAzcRA4jr7dfj}tI=+?)U{ZTqw|zOJ#k!GTZNuY9{Q6$_|7;^SkH>|9Lhk)m-6sCC=Vd^rjr_yAO%p z>x^Zj0CS&)7+B9W;4lyZvqJjUf`I&YXcHrUD+M_37QhrLGY=vH1Zj&*Tp)iz%ZuiO z{Oj^+fVvvKlTGS?{KfqXy04B?#`p@@`uI-)jvz<@g#3M$%+RC_@(=ss{73tx;W(kS ziDBb(g!sFcN!sHL5xYL^Xcgoy=s=xI5-^37Ke-?K2i$cx>#I>wjcpedS!uJ8U-@G>>?J)i;Dx|R~zjY>eFV!e^b?kWvP0= zeTN~qMcjXYPEJcXKnvF{i!K+2ef?UoSytUuobW#A$3*iMK!1k#Amb05) zoZkoMzh+NK0w9s<#=9Ap5PaKhgXoWlfYOm7#-9l><})Jb9Cil+A^%y30U`fQpOj}F z8-cCd@QAwHwi}EZb)x4ve(jg*NIarr)rtF0h>OvND;HSgZ}+bKCvgAEr;+4D(0BkT z<$AVmM5ji(Wo!gwbSfxA*tF2O3yNMuZx8$**$Rvd20alFpO5z|#FE(N7U&6pVEh-7 z0EO$~z(32&L-ReJ+L1Uv{E+(m?B}-7=*}zF%vb`VEkZ202HtR7*2y7 zRy)VWn@l_shXm>xhc3wt$^`!rCGLgEg&Hi>*5hr!a=JZRh z?#RQGv#S_Z!m)YeA9MfON9?b0qVb|lNIx4lh`U0fQAIQqNG6~pMeTO>9cLPFYI9vP zOW7}C=?>y=o-dkbf3Id9{O^Y55TgH`AdMtAYEyfi_wmXK1ZIYma@U6YbN8D&`4cz{ zzcaE47`*SWPH8$DOMwW8e}CyepBh8{bN7*k^|htAiQQKm|7$_{3y00%r4>`yhf$px z?(t-lFPnHNhzMxD*Eain;+#=`D}GNZ0582zO$m)vAB%fQ00M0I7#QJLrI3FNLjKx} z4|sGPBY1P}Z1%j82H41hk*-;szmUIRcxlU=d!uO%9dB47U>!mrAbuhL0L$0_ND>er zi2sL?G$5SYsTB8bk-n8A;_61k&pZ*Z)3u>~fFyu0TH$b1&L25yRw4o*A$ns#{u2KS zx=0D?3ybWzXCE1mj#hlz?1uhGZ4h(+*S$!{U)~l-P(tY6nETiDJ4pZn(huB!{%~jb7NdGP_USRt{(y!n@ zg6`iC4C5X+ybBm)dAcUKbsGO!mV6fS_FD--X@uLdiDs`u>^OV3d)O{|yR^mCa!vI3 zKrU}}^l&_x3jiVgl5`sa895~A@O|JPA%E+Od0)%)en|9m26D>sp8q6rEtwA7KmPs- zO4PnIPiD2MIgF~JvY)=U+@e?x>5UiteWN$GsfAx<;=#Qn`v<0Ud-Sowz1bT?qQH+2 zgh z`}y77v#4<#C0RLGMU=N>3ivG7jwgf#Jqv5%7Kjq-^74r~x>S-IJ?e)2xfh3~^$w2# zJ{5t6(Kus)U`KbLTG2D@!oYE%XO1kmhgm*Bz?U;f6FhyRb$3ffTONA&%*w7=fFYkn ztR-*1;hUIRu#xa%WbWX8^xULy=6lx;^1F2sntV*}09DJPz9H#_f6p!YkN+lyjkv5e zU&~11?mLM0TN&|y>AR^$Yv`&{$L^uKUCKwnz54e-Aa^^?Z+PP znyCW7uEB zX5N(dGqx^@h;sAYo@7jwFrKx**Dl?HC|M%N0^B#!9{W}F{R0<=1%C@~i{qa?W-gpt zHHSY%z5yF^f*zQMt{)yc07h#U@G@8?i{ZuPWpn861@p?O^WiL>28s0{k8ddv^8W&A zt*24f(N#kdls9$PiFx77^X3Syeyu1C@6zi?GYLer%6$y+Y^qsbY9d22k2grV^WZJS zj+eaw>z<7T<8QAH!P1eDtbe}>HY6BG{fEW8^ul)iQGAD6Frbu|iab4lf^^b;{YCyp zTn~(jF>jaoUs?7BLD+*n%LF>cF2GPH5j8v}Y-7ga)u|w`j zbJfNHPy;`2ZQJNiftytfeBbr-B>@!bMb7 z@be!MX1X^T=YAZyj%bUW&-<(<=+?W8zbZB~f)%!OW*@JT^_w6H!Obt`wr#`M@*e^q z{ea=jy$DNUgA7h27efON1sIRv2BEGs4*b0oZ{;%u`wrU~>!nvc*qjMWjg&F2_gdY{ z{Ce+4NRJ5pOk41{gI(h!ir0p?_z_t7V@ZTLoLs}*ycC0_J-s~*)%+(Py`}<&C4=)L zvCBswV=O@LkpYxXt1wDguOO~O93PXOBp=nNcXRE>HA)+$$kZdz71GV z@}TU3f&z#o4}ByCg6>&Ff%%gh4?zBX0=3)>bXOR_IZ^$gUmt)xvGivX)V{bt?0EN5 z(q%jwmRL~sAvu6}=y3g}uCJ5*Z?#~SUUU;ogSCaUP1~_2`7BWK-EjYuOD|;a#{LNH z6Gm1b0&E@VwKeEotrM+G;Y9$8{QWsw)TC#WSSuP+i;vaK+6!3ogZS%5+=wskA(#t@ zU$FGG6HJad&bxQD^sOe}Z~R-Va()c1tlG&P>e4HYcnHUoyKEL0SE2i~gg|uu?|gU6 zCcv)l?iKNIn%8k{zxdk(KVBTEt7WT_X0T#R}p!d4t+C>C}L_ATK#%RdtXC@5k z6t9;u!Fg1s5IF)N{}}2d2x<|0sDuQfR1@*%0bS^Ug$47Szxkf65D{=AAmrbF7&P`) zSVb927cSUK$B;jSlaRkahK4b0-c~XlHm#srAn&Ot!e-oVr~N66=7#V2Z*dvpV(+Fp zseLb1vL+`viESAswN+h0w8)(x#r?BH?uSB+pgAC;1a-ttAXR|U+!iZx@yph|IQG5t z`qzUL>vbF4$2aU=aAR(O8YGz^RCwe{+}x0w2sIN-mrB`uN3pqV56$8D_z=RK8ey*M z-OcsS?~h_{h!YR4evZ?3^I=jiTal_ZK40=`GFu9hegqicE?S(~`J0Wp_5|YS_y%_@ z!&89e)8^p><xH-DQVtnm=HL2s(U~ zA_5{1F_7R!r!9sghxp@jmHh=9|6g_WpXS8{b!tOvEPLFwM~M6{8h$KB4XPlNcK7sqJfou3^Nb7 zcbA@a$Y0#Qpu9*{GB%6+DTVx3PLN^F6A!fm!wmVy9kPGo+bonXpu*vKLYZq~5r30c zpe+yq0r|&m#rX&Be~utC7WqdF8W{Wt7QcwP#Upb_Ycq#vL~RJ#}?0eJj> z{62Yv@3z#gGs+PtaW*zlZLU<8Fr-^i6q!rhkK?8(NV`FHn^TPBoG2Z`U!sT z0s71CLnc296$v4bhwde!@qMxj_evi41t?-02KO3+E#m&WAjvB4R^0z2kim|ELkNWY zTi=J{)f2+`Tfq0ej1s;E6}*<4EUrP0`@dDlG<&w%XAm2&@#E2AlFYe#@2+C>*o5*W zTyB8U?Qk3n*uM7~2=&)01L804g2O{;Q$N~<8_Kw#fcTfZm3~0{Ge5OuHeS`hbI&jC zKlPFT{ho+`)^lC6_D+T%rXeOqod30M>Kf-H_78~P{tn`^dc^t#q#wEv@?S-4FL#>& zLjDP^nE{0O0|@yG7QcGTmNxXJ-E)8166t&Byt!p+@4)e&ub~FWzFRoILm9aKzjw~x z-(R?o%qAeR3YX|P5CJNyo^V`#=^U4zV|-@sBRsD-e}M>q=YRJPM?}EcKY7li#D@^# z7rgMD=dA=_^}>ohwk6;55i;}z`BP!#D+1kWd6#~E#0S+gVg_AiD5p%ijU`{r1eV!+cvewX@ z*GFB~Z6eyAu%7jiGzi4~2NbntYwt{}uW13Ib{`qHjs|XR|y##bCc3DZu~f zT7)wtAyW+ZB*HBqUMk#*-e`@%$#g)6oB-xmr$2rs1pOx6Gn$A;^Myl z-d*%&f`N~Pt^E!;?z@V?;9;@aG#mYf>0Nd2r@9+Aud-j!Y14QZ_r#ahsmp$|CL0cH zJxX=bEFVcs@osmmx*WXDdqG7ZP|~69xeA^E&-32+MnJhDku~?xtD4QO;{=l)8S@NL z?}k`dV>UnB)jMV*5ZWsk23wYu*yV%!_}YIs#dezjatH9fG-3z%us5$T=76I2zps(- zsU!by5>ln)3P>ZrZM74@B%{*NKIc1c5a8y>qIvMYebTIMTm%80H)|M;>C*=(oxOlR zJq$V57?WM{LJN<)^4)XhkaX%pAiM%y3~@^iBk%N&E}DDq-EU4Wt(t|s3HBBk zmUfUn?Q6g!Agz4Ik8Apry_1473ap>G{TiCzs4)hiM-G`w!M|K>^*(#V6A=s*SyG`| zEkfs5WG4hZ*?p}$q;15XpjR(3@5>lJPZ7LKCI?e;A_umJBfrt)-S~L&Ep*yOo&lq%(69fb9kX7EekdTsh(Sg4;Y49@cs1Zw~s`ki9u$w$u&MVM-2&2 z8zQ0YmO6J0f1gjE^D6{uy*l zj8APl!4i|QaR4a*2sepDKRdN21Ih?S$bVFm?R4=`E`ap4jgqP@GE$d#_3yhEr>Ji+ z$U3)N&pxtpV+a}@%RJ_Yu`!C(ZuOD}P z>0H{xMDP{AdU1UCb3JqB88;Ml{#sBb#zAqK#T}|Vz}j2x-a8=vDq)RP3hJ7a9)$P> zq16837f62cG>cUPN)tTyGjQvt$srH&pXS|a0qj2Io?isO>J^9B!)2{q_m2nw)ul=X z5`hqZfHE0(TeRxnH0h|3ysI`H{A;x=JEgG z=dXF`;g20QXI?wAW1D5U2R`F$g+vIHhz6*w52s#~Ezbwhr5|JeO?O-+xm2eUP2{Lq zo3y(k00f&phrl$UgarZl+k@zjkiVcozcS%+CEpt9+%QtnsZ9@$q{@HD-l6IQPyfYt z@KVSK&UFy!vCr){t+i+Yq+NPPycpO^Z|G0+1VLsX@&!XAodpG~0r?ExN43LtE$Cpp zSA}TE;%H^9hqADbAl)D+(G18o2Zh}b5qM#=2*gyus7zo}?;@U0BOQP4vTcXgN`HIe zRiY*m=f75W^RC-+_m=qB|LUxDnH1xDvUwSPpn1t9hYQHxmEo*0;{Ly#K5Z+Ak2)d( zLW|OE*_spTb}aQ7a=255fQ^D*@co5C{(>7~5WEdQ&)Z1(E^MJ#GdBYTpDFZat{H19 zDGoUr3ZAm_FLYeq*mlp9qs)^)2 zNdGVSvHjyj!0B1Ja55ge`yzk@S2a0}l-EOxC2IQ}LA%778-PJnL>Ckt-;J#Gj{w_$fjzy>&q)I_7 z?mz#FwaAV5m!TS0Ff$`d!g^c^f)iO$vw z#$uP|LQ`8x0wB&`$bY%(7Ed96asNvlxVLB>as)tSN92F#7ZbDcyn7lU|4sb)`zPy` z^B?=s=pb%Kkw!7xp~BB_^P02dvk z0IufRf1A&rg}a_LP5j=){Rf!C_&31Z-iA5({gEMXsNPnJ2v{Ii!1o{o4&62n0RYzt z@)scxIIH|c)oRsfOEGZU3EG!8&4KEyJzZ^h0s#N~geY_E*YNpQqNXwSgRrqLjT0+E z{&^xGkNlthi|58}L5N@Q_;IZN^T9gd^Kxn-X^h3?=ofA+>0``>ql9KPC5oKuAB7L&CzgPOsSGkNQU*02Xqo zcjJEBLjIn63S&FKtKGg3{{+gcekeoway3`P**wUaf5;jcN}ZoVV({aJ82MkT z?}-F}BsanRfhg5>k%SlA)=z_hXWoKB_ELbkFC&ip6WkDfo$L9au@qqVK6VA7IwNjU z9SZpe=#v_$ND2RKpVH0l~E1TZTEP8t(?Ve)YR?< zZQ6Uk5h=jpr;qW?PuuoF{*A{EjUoT=5&{vh z8YR_|_;J0!a>H!nX#BLYC&zm*0c6|~kp+j&d9?p76f+PVO5CTg-ESN>cYz*my zg*-kV_AA$EH^gVXAbmm(5@f|)ugc4vvWJ7tILW_-1fU?Fv+IC}fmDRYM}#2$kGqi? zAV3S%Nss`juFG+NHueuf{2~NY2IMd9Um)av^3=E#Pxa#dgW;c!B>@n`sIqu#_Fl^G z+tWAwr-}9a(MSq(LmgljGl>8w<0@S~kd2)<-b^*})EK$+`5*hp+<&;~9XtUm_y2Bl6*c!Rlq`<+M%f}UwX)NtXE0>(9Lef8vEcnI`WF!F z6iIG+7eVHqnlkn8MZfzl@v*T3DC65KB5L(~86R|hZwX!PB@pi-dO|<2+aLoQ=lV7f zny5Gbfu)NKMk^=~@OLC?0U`}S0r#RpAwkmMj;&4*eQ+{|u3C7of;B7@Y~ivSe1*Hv z)$~As8p|*o;*~2oO0n=sZj^BrTrpCd1_8(b)u!(V{zc@f>3wR^~j0sEu;2@-&CoM}m24R;$( z*)l<7HpHeu<gT(`+x8a^Hy<>$TG+A@NRk&0RKiX5H-bV?;HTd+<2HASyl0 zf&d|)r*HlV-~Qw1UJ)4&(4lo#kPyA;-erqSa`n62J+$7`-9_9ILnHONQ1@$$J)aL- z$5LZX?HZia{xvCjHTVY#;l2?`?kWtVDMYLc+1|&9QvS|oG(Ug@n-Oaa?&pH)mcD($ z9RAfOv^#>;r6n`Bm`MQ2-X3Fdo;c{YRLSOtyB{uqCtkC!4SiX80_A z*uTWd@7g9vCvY`eSu#&Q!@VCnWL8#CIP<>5txlu!YhkBQDI=xOE45@7Yt-I(lYBsc ztr>D3U~nmIj23VOjnh&w#C|D23xidDH5}TK$o$!{mNMco7}m&vl(JotmEGGg!&k)j zy7!D#LDpVXk(=z6O-kTS2kxJz9!tfo2%1xok(af5l6pm~9@}uhI>LL9!CCkv#TF5y zJWz`2!G&fOYm_^|KNr`P5uLU#G7srMc~pA5!}cYu*RCJiSIFTq<9?-%>SGCG zMI~8N#Jh@D?e(GvciGiQb|S;SxL&;l++=gO`0-vs+EKnD;;Lqq1>xCZiKKP-A$P(M z4-_rGGuWDym5Td{R(=nD{kK7W)ZI4lJ!?#Yd(3WqUw_dwNwSneTVsk0vCE2<8RidT zUY|G~9lC1ES_b&*bHC*bo;3*c8__t5+DV$w$GubDon3ps>|nRx3?zw1z`ZE&rf{Uo z`9Oj@zO9$)XRl}KpreYDJ#cLc(J!!@l-(4h93lVU1yE{$hCh)}J;{SC-mf5veo{BS z9R^+}7Ti(#m+=Mw@dr=@t%<;U)w>GFUv2t3P(1PV4*A~z6+F%e+b)WqLhytSW*-2|sk5ssRRy0p?|8lY^yiF?oP)>X5(o z9rAbYd+`g|y(J)fZDkhc@;&Gb*am+?8IipZe-d$;{_=@M`^^#BnRs567V-PDeFC>s zqim%+UbNGRMfZDM4C?YA9dHb?1DGQx!}XvX>F#aYU0@Y&fEZuf^P>HL^rh;I)t&t) zv*gkxN3^#gF7mL3?MMI_UkV=E{kWOgb>ou2aQ(H)%-eUo)y!=f?ixRHjiZQY={2|G zxen^#oj}rcK`6C92v&bO_&bCG)I&tGWxp&pyG6zd$>dCN`?{YsWUt@MkZbENT4wI^ zbEfnpai+hGehXq??l@WHp34w{{95BzF7Chd2{%AQ43x@lFl+J&(vY7#T$KHsJwNsb z9r%bE(+M*7m5}ETBANb>IQ#=70JVqU6v)VBU;-w=6c)n;wipzYp$}&*#NU5={9I^f z5x?jDZJnQpMZ6ER;S3*|j>@@*p`uySLrxkYeh~nDvh%(x8;MH+K@^dz*G9j(t`(AZ-NV2P?}u&*QRA&>H9e~_ zM`2qsKE7BtA^?`wj`$kxtxSZ%wd?~eJ>4?*{)_P8Tr(m6^bL|R{VC#ph=9%yx$cl7 z0@T8C|40A=D6-WUVDY~GyKAGWHVe-fTnW6}L}c&zy0I(%(HvN=#H-@AHr<@5PGNly z;t$AwKS;lgzJKml9yhCh{QQ^%psq}TEaoZUV$0ax1P~EWhH}y-alb_Uosb_nG@@)1 zN51EM*BACESF_HrKLlp~qXGs6bm_>ITi>-s$TrvEW z&Rd+nz{VrlVQn8E-k$^u$L5K+>E>5B-}Qd8MY%Wrm>^-T>UzEU7HduszqnusmQD!4 zoLEukbr$z)+*^uhKL&A{ff!JI_dJr?hbtzJ^vhKkq>C^Dl!DkKMC#F*U32DzE6>|= zJN@Zmdo(FH+)nK$)e~aI!VJ+P$3UNP`w~6YWON`Yj)w|1RslLb@KHFf?nSlC76Y{3 zr0l$LlfRSwi3C9SWk~~yh`3{@L^{_{FCsva0F`|r_?3Jh1eL9G4v~kpD#iWBzNkS8 zpi*G7Xle2Z-eD6Xx*d<{?9Kr4HwV$FpBev}O2Q%J-vtSkGz!E_9o*hc3GP1+U98o6 zuWx^zxLpwahdPV&IVj;Dqy4V;Mv&Xvpo2Kg8&XRAzxtA-L~c=thh+g`AcpP_xcAQ^ zhW{k02Ol&gNCL$5Tk$^^Xg__&-EZpxv4y?+WAMRcn$l`qEf5fY{Ci=)!@?qh>Df07niwF0o2TZK(oIzI@W2k|ZGP zt3t^Cmwx?mv;0?N%>(fZst^G&OVMB20b9~GEWDs8d#(QLKY$A0V~bXGAvJ&`07*ih zK3I=!2%-t%|IvkhN74Wx{y+rS>J|P5B7psGApRHPk3qVQlQdUZ{_oJv+AMrwcnwf$~vDD1Z&Hi`~y;!;L{ z!44qQix4PBabiOKq*BVWpgM@p&)%p6K)7C?B4AAK!4>){&t(KasN1Pj##5#8jlqTj zjw?Roz6?Lzx_)CF>>i?f6ZFYFQ!c`_>ySyNfDJN|>#p0=qd&?UAh1bWuE+SCD} z#-rQa_%BVwa&uM%u*%{vceIXfn{czQI7CpvY_k9bTtIiG*vKgyXJr~6RdP1>(DRqp z7!Z3kAovk1&dVtGtT%w4Qw2n!0k*Iw7!J|<`wCst6XFL7%I4Q3z346`By&)1fhsFx zWLo_TB7LDS9YWmj3#8Jea~@0C3(N9j79-+6wA^e3tKalHIi2%%ziZdNe5<>w&L(nwrA>4Dw*r)7KLt@t#>I5j_hehj{8QxX5^rb+#L|LKSR1@JY`4EU&G+2%Hp!h;!>l@ z6TjLv&;Cwo_U}iZiX>!icFA5?|19qwKmEmf^qslCuCslp?AdS6Poon&^SclYK__Nw z;VLmoOfdXxe2QEMD|j+^S4MxD;iX@7P#{%jm+#UKABE~E)GZ!%DeGV?S_>!sDV6dw zpYkq4C6v|ecg~rq`V8?f98z1lt!3tC8)j}-!)Aa?$=_Tf2vlVc<8c#v80K^pg0k}t z38Lily_><#kog|TWmbp<@Wk*(TNg)$T|ce+eAG$5TYi51gnDGbb;)G1X|ZpzRiHOcPO11 zQ0Luj)3_oHs*uP@DrcF8q~7I_pSE^eLq+}LXI5Y5`||vXi(uC*&d2wz{uNK4%%c`i zBXqg1Rdm%Ywkp3{@r3_@pItWV7ZAkyPrO0GDZ%tUhU=Q1*Y$e9JY<#(#Hg1{3i(f0 zkR%e9MKBMps4=eA7|$ILtn5U_0WS*KUvSUTyjDB{9{O1PsMl=sl0BxK@C^Nozo-E*tH|2j*FLD&vY!|-?So}lT ze5*~~ifrw(Cnx<0HX<@2Wj_#nG5~eN02hVl&^_QK7hsBKcI;-T@nsQROqW!VDr*NZ zFpEU!ank`vEkH`rjiI;fOxNAZuRl23MB=5ivQ;Yno z=`v@84zD$n!7#0YM zb1i6i-}0r?tl$v@&BKZKc zO@cuWl5t_qBL5N`=K}kJ6@nj$2nZnLFDM}b?xK=VDHy!FeGCfumnNve)LuwGhJ2XZ z?mOH2vsQ%O|6FnMOL@J!@32am-2jSXQ6O+ov69v4oRGgQFNpAlK?p>OJ<9&H&o@nr z?eLQiWtBg{y>b*TxZ%?cC*A{M!Dn7Py}V{-=G{$%GTc)2uCRwB6XZ|&xU9nOr9M^r zwi7p4vFMi2?X82sKtQf4wfXuXDXl*W$QX8F_CNog)OYi|W9YO$#J~SWAt3!w?sT0W zeu2-;nhEI#XhTug?uJ8#%9IuTAVkUW4f?kr)|Tn0hXRPSI$I^9R|_hLFt!i?#1=Fa zpBy1YJ#bxEq{SsRA^-P5Dul}%iw6*QaGO3%T*1o%=~o_r6S?3PJ|X??MUd3dj1bTj zG4dblLF^oKr#KAU&hR zjKdc35#auNFZmx-Lm__Y`j4=9=-caEX!Fo|xnwGLil}1qzO^z0TKpXEDyOnBK8stp zHZHpm5gi|Ku)CTqES)QEU#@(^nHho+x$k!RkKJA;(&yiE{ zakMY@C!p7*lZmTUam4A9@I7uT3z8MXx~u zAkH7ijRaNwlZDGX*&hwbtQK5|hMf%v-%PZ<$?p7V#yJFN`F1>Z-gSg>{6<6!45pf9 zK8gjP^A_4}nr89t!}gM;H_ybE;?C7EPkinOp0!wapTB6H{nm5#{Gt5^iSOZ5 z0!JTRB&u5WEyp_GK!iYN*uy={5de|`DA=Z8?tmjc25|pV69OMCEiYRl;LL01ZTn-& z;73-&?uJ`9MFa?h^hE^B-{X#7cawaWY8WFO_Bf{ z{j`wb^&y!jnOx2$V@v|zyO6!F?nHrUMF1c)+fD$eZJc{pNM8~F5drP%0*0)plWynyHfck?3qd@#0h=3Z;q)emzO>QPeYAjauBcraI+aKr4CAh_WP@v%3 ze=CD28fQh~67dLHp!NfXT2RgEQq8-Avt=@2L_18)P=J_r@_Jiu=!O(eY zikJXfmJkr~7YO+a0{1T>KoWr7mBCf=4ea8SQvr;`Yqojb6D{@#a1H+P{nfMb?1QhN z3ivJUOA0Uo0`mlr1fUA%AE1sjAn_^{iT?%V-44-)Hs5&qS-bm7UwFcn?Mp3u_gBK{ zQ7P{K)QM%>>YC;^{`IffdJzH*MDII6h|^KU+n|&4ZPzs|85rK>u3o*+v^(?r2p#UZ z{~>{bVh|A!K*)b?wq|N&VqJjrwFM#|w237Ep)Mf*WFdPG#oLK`!j^|VI(5|!x&JAp zlAZvQ;^Z$rhKk_@7Cix?fAlrdUAbdcV@UvRln}^E0Mv;Pe+LP`v>3JXZvB079U-AJCX*p@%@j{UYBzvNQt7)bDXZZn@^D*Xn*c;F#aC&B6nk; zgD7J|+@0b=OBb#T4$5b30bTzkki8OQ2%mkx=GK1ubBX~jC?AH)7@oW@kd#Bfb99%m3wX@EFLH%Ig||$4Lid~9vuzvy*+Bv@ zMc#!1?@+N8`tPG>#dxGdAPa+C#{da{q9N`twanl`+v@n%|1+=W4iNN~`~3pzW$8ig zk?4U_jDgMbJv03P1j&6^p_8U|?RD#fep#C=N+}l|Jf@b zRe?n!i0@b792epKYjC=P0piv!Qh*Y+N(uH1E$kjz?GF7^%@RR;LY#v7-3>c~QluKy zBeSND!ETCof;qr?p{d1ZtMlo*g(|TK9P;ks4WUJU$_8!s?*(aG0S2S&)Jy1!kq%r{ zP7uNgvmbQ1TUG3KkhU4g@%jUlSu+NFpW>9_+dCCN8M}mDE-Pb?=!Zr8%$q0qZS1%N1J*PHF|4${C9gVL zMI|%$Q;TNi5MCbZn-Dpy$wc3?LK=QorPXQga%)_$Zwhf%Y{$B7+Ljeg*h??MTB!3e zA&}zn5krEsq{9Pu_|6NcHgh2OQX5N>X{{uxSt+_rPYyXBl9}@t> zDFPk6=e}EEST&WaW!8PZhhFL!YsPEw1Fq~-P;1m5hPagdg@WE`6!y6*5+uvhTn6cvO2fe5I78Xeqv zkDFpRT|x?Qgoz7MsF1$2)W$_^j!C^5u)FVsLLq>yzWY87^o2z5kFVEMY=F+M z0t_L3TPNHWf(0GqVhDla1Gpi*3i6$063=0~u+Lqu_N5xnC6~ZG=x<*Z=a1o^|8T3g zSqjQz9Ms^e2zf`)B86`{Aq!zZ{AyZIauU}KlQ6sfXm!b)>MRj~ z87#el9=w*G1lXHGGKH)i(Hl~uwej0LlRD0{0Wvsx|2(#v=)*CzE0)~0AA6eP zkGpp*0zlA%5UxN}$Zvb@PRBVv^eAFB59w-$u+$Femmu7W#G{X)iWfo$P~qa?e9b?C>7j_A{BCw+KQ~914&Xmh}#^Zc2MvgL5IXiLjEeN z`Rs}QnoyK)Weu_6c|*<3mkIVx-JHEs=tV?;5dS`m-PR(mw~9wu9?m7tnnT?u^3^wW ztRy`Rui|dnXix5P84gRps8`e{LS4xd3qy#y*mGb~M8xaeK*`Zk*K5W=ci-pw4R>zQ z_mbsFE&S)-c8W*e4o#4C0^Gogtjihb>=^j=Y#Xs=*@IEye}h`L<+XFG&Dkkr`!3I~mGk z-k#?7T)FLUko>6(`|OJQZ@vOz(twfgzJfpa01!g_+6Y=_RT*)g;{3Z&V26PG`{=gp zK0$*fL4Tch0uhjh0f{C8^6y{9Q=*AAtw;W9DoFR$dL6AgfwLt zLPS=>0Rqu9fXnXVo~SKA1MXk2{345nNB&iixww99f+4SG{?l$@5+QKr{}R)uE-*^L#O0}b=vhN973h@WzFDZaPi2uaNB^#+t#}!$OdMJ?1G2TRUjcrq; zgN?Ru-StYFj@c6jk^*E~_KvJLPa-|PU9Zod^m(Nu9d5QqM1cLh{r-D{{7uc>yCS{K zJ%BML+Y^r+2JtUgf4TZlfhnq){E|gR}NIi zkbfWqrjd$?2oUVE$$Zedi9MeH-45d+Li}nXTrZWJ^p)P=HCV9f;itGpHn`HKih z7TuhQ+YVs?B_Y)&q`!a!ARzzP9Xr^6r8%Rsyyt;9|B6rk6aUVn{Ss=hRTA8Os!_cKCE$K6%A zVrJv62-6s=xkF!8)G|8oJ0yyl1lH~;m;5QT3&Hfl@r{;&`&avkzbYw!BmfOKcR`*A zD5A5{mIo^d$X9YK?qA4XIk1KNMFhkk9lxOU#$+luv=vt`q@RZZ;_Tsjh;78t0)1Rv z^zus>+$oN@kbe)wkve<6Pn18wXnZU)-?=GsXfV*>(!^;_@B zii>5&R=B}iJ7?n0NU@63RcKpAYx$g7Z)Km+_+JlkpI&2 z#+>+Lx1Ii@aTZj_U!1?B0R6T@BK7-@8Epc~_4`-{k_3qJm*_uiHuST?KT9M7beSw+ zlQc#WfUwyHh)`ol3M{U;Snar}Zvts&8{Cxif`B9e@us>!41`j3KVjHK|GOjwh!L0w z0SoeZl98&U03rea&F5A`&^K-$N4`nbedOBg;)wefA#mUT_8rVCasL5=1VG1s{>^7? zb^XzKQ-5^9?sv~K0CEtJf3A9Txa9T!s*nUgAVQ#vm|R@{(z%PaF8@bTfGvV`1tLJ_ zXF>V_HkvRd0r^9Kh!`m5A|tA8+4@3%|m3}v2Wv;y@k0GoiVa0tBQ#s@!2GPXz4H?8j2wLCrS_ zW(JEE@t1I=)b>%J;X@Ux4{^s*f7lITUYx(c5(1Lej5g*_0Ixzz=At^z1!Fvk|Fvxc z{Yai2_u_xGU3oLI=h=4gc!fOmu0>$Qt@X2l82RgXcTqZQpoqUKtQGP-duYY~`yR#^ z{o_O$Llt0fX%lpb^({m!!-MV=AHhepa#!)v6!X}F^y^#i^HQ)hZ~n+FNVOwSNq7S^ zK8A7NoBS9`2;~MZ-5OEKx`!GYOWP2`k)Y=*;a}OprLayQpO*ApK#7mlUuFk=nWSaX zl@<4b{GmKsC#jIkP79W}c=VU`3jViPx`ofCSo`J<9s_r!+HL$OB6damE4}N)P*Xu9 z&zKw#Y`IThi~+f>`#z-c7FMnDB^`JJmzi?5n98V8zVS9D0T$a+m(jQ5$1fP3hf_Vm zGZYA${6My#1|8ngpOYuy^XT~bEOxBjLQ~eVIgh`(?{d%Yu)WJOdMMtCkrH8q1>F|9 zd^|LYxA~L2UR_g?odQjaA>RZ1YGH#D{SQ#x+{Zftk)$~F_Q^M1 zUC1ujILA3`D!LatruhusA9v|lrp&%4i4(s#!+p5tRfiidZ z(fI%bz6&32^myr87;*6pdW?e#-<1Frj0cxDV9~$d9zNa{-i5LO+APr0r_Jwnh{sm) zN4~iM6f9*1=|%I^P{X@j)wA&3J@|PY4w(-8j!>)zt0UDuk1fdOBEai{C(0nGY@(WM zcf#Hcs28HUaYRVyrocN;u8Jc5ACS! zX1>%B*FKLw{1cBk;!FLO%Wl9u`8eWrh^yWmsI2@oI**O6g(lYbdNhmwv{aKXuWz>%YMQ`Udy?B|H#_#op_;%*E9e(}n9+DJXH% zBSHX!K0(U-9U%HG6U(H69=4~!2asummxfIMi#FL9)za3p8u*f-fYeD$ht>{j`!qV^ znoE+}^R_q|&wW%%edo$)Dz`YDaj+2>jV~^hNYZAkOGWML_+&l<{MId80b!xGv`>hI zzr_E7urg`AP+B-WYmsl*JnQVN#jZx}LRN*o*F8T(bY>b9Zy>RRkSG*oq4y zurUbOFGi}kGqpc7i(7nGkNk_ozUWT5?_L=49a%dn+-HF_;Ftv4exlE0zwLY(T!fmb zG1tJJq)qGqKY(d1b%_nogR)%tT7;-^wRQdIJY!*Mis#`sjB-G5e}f|UP>3FBwLFyq z6tQ=xLEM#OPvKJx+jBC%mjUR2_s(TnABx;}vb*Lkh2c2y;yH8p6Z_E$u;!`D`1(g zZVe3KP|f>2JbM)9dg!_Teq`BPnC7#<9mgQ#AM{Qotl9cR_fSrN09#IK84hh(jHoq5 z{1Ye#07Jp<$A5}Q9JCFvJs2V(=ytOYAKHoA?p<<6A(Ed60mbw$fTY7#X3|Z9#wYQO zhX|N^i~$S6$_HecbdAE1w)@$DE|&S7h`KB=7WJtHG)WjVJ3#{B(mn0YCJJH!l&0N% z3i)@Ian*anEgY47vnIK7+HS}IFyI;IuxAc?YQlBLLgg0R4jCjnB#aXB7bsu2GKQr- zu#xI2x_8B;4#0xgf`dx~@>e~CRZZD0a!}vrzDcszEhx!+hjWV~#ZNQd)=5i^ z;Y`7c61#6P8~*`-7U~-y0=C^L*GV3s`Y{4T6&rl_b+%bPnUKH6x=PJo%?r7trYyc8 zHpR09bqynz1WtN z8nf89xN$I3pS1*l+RhNbXeAfJK=o(eTrr0ZEoj#we!Ih;loZG_xTVgrojZLlRGa_z zsqdJW2+)c2sU-+zH`Xp*a72XalPcfd8{E}r_o-?GJ=U^p_Kd3SPM^hHo9i)mF2@Av zY#r%g3pHYgBsqeGV+}$AZ(n$lyNLGZjmB)lkND^CmmflHw>0WSsnN9+U?5^hy#Bw7 zEr9Z?D6dMKXGLwTwLj{BzK|4{Lgge7f93g~NvE$_C!~L)&@Et8o?@R?J!wk)Io7c? zZVIO8>bTV9di`~M@F2CbNFPM6(t@>=bG!M!eXy}*9Thz7iu1lYh}wg8ba#Lzc}VJ;TL5ViD9kp{OB z0C7j!@5&wkRY3c>Otd8NxCj72Nui#AKm-UW3WOj9$ssSoJ4ZyVN68ZampWhz2vltX z@>k#vQBspYR{sO^{|T|=6~;Hfa1$CmSc+2_L?Xc;LdZXW@&ZV29iaFLwI)$5fAu*S=X;qz7m!FCz}nUaCMq4t z2!`%D#K~+nh=lZ$z0@rzzz_BWFf;-AC$qfIaeN9Vl`UD_OAu#tEyOPQ*C0+jEB(tO(u=z#o-d)?W9_;q9h_F&%;!{(dW;;MRa7vm89kWTDgG~)b400>e~ z-3CGc>oZ$lXMmP9J zszxgTn9yEGzY5n|MPfP$l6|@P5jCnKS3N=%~-?epaixMo=k3MKt)`=nuMiKY1s$Yi4hQW`Js3FB|k3Q)W7L| zLp=ZuV$1*e}a8&_AQxO9N&tzIVhHSaA&H1F`5V-$PE6#s_JwOdf zKuiP#DL@g?x)S`T3`Bsg6>4XZ8=zB^xK$u}BG?p++ORW56vQXC?~kbj!s!taP`}sAK=_FWI13T* zAdfHZU&cx*+pGW*|0_O)Bmo5o;iLCEBA{_c&FsH3)1j;HU;Cm{4?G9=FG)aSk0T_) z?>_O*A15}zx<&q>E?-IoFbV4T`>%Rme@OtO0_dT}s^Ids`nnfMap4A8`~)H-x*P6$ z{#Rc*ZvN9#&zWNnKm-6n{y_p@EBF(u03-=$t*?bswk)%TX?z9ozbZ?fARYKP6k`|o zgPo9nXe%i|kOYLf5`rC@0F$HuQUe6!KS>Ip-wxb=xQ`(E5689*V`L}p zKW;Z^ze_~B5?rc6L{EY$W3R)w`~TT{+Zf5N^S<*=6{~oQr7l*nhsAF7Xvn6991WKY zHDk+^xMC8^E5p(z3)oIJFa%`d4X}WX^|$?;5B|JZU^iZUNMP7VAQ_9SX&{Vc$BrrQ zQl`X}Gh>Nkwq`hF&kVcSJ zo~oN&b1e%0W+##nOcL*75Rb?|I^V%o1KpmZm+mff!(rJ9IGz*;%NhQQv_{@#2^28SPm-Ji-bVhv>PP6;$$Z+gE?Y*1X*Vd*Pz-_meg z)=be(fTd5U{lqdsfZv+BD+g8w>{{C}+oczo`RQhAj8CFiRCZX?a z5OAe|DrsY9$HgERu+S<72;R;%%EKv1>iwEH8S{17^ zu7O<=%p0Z{4#w{j?U5+4W9+E(ek3teTLHrp&>ItIiwpVv5bZbh9z0~}1>!MGiO#GA zZbAy$#K@J*819)8N#%&W;2^|B(7wBEo=bK+brIltMhLu;?mf)IO!H7;4*l3qWxM5j za&{XdOCQUQi8BxQ6jkq$Jy>5`f5`_?WhwITCCu?Q53 zg4k6_Z+n}4?4Wor4n)C;05AwP3&L~DNZDNQ0ex2oT-%KwJ7#VxGp(eK%C zOtcl!Qa)}W{;DJhA^;*7V69wdaVqf}f}phRUvqCUsf2a5|C*)@KJ>K8E%)>uD?tS4DuehF%SaX` zmn+vuj*dIuCP0&rzbwSV^A;~Aq~E_(EWN#BA^vXW5r30~QOH2h4Z2eye#;c5U>sry zU`RbM5f<(XtA|R4#F9XtFQ`1k_C1@PuE_nXKj|mskX#QFDBN^q`rYd%Y=PmqHqxa1 z6Q0HfyL+rIQ`e;QXgaK9Y9nhg0LSn-G_I>E?J)!R-Du{qN+Gb6Q` z(&@o2X^xLCFH8%fy+)frK0CAh+35yt_Go+N%V&~}A8aPOSd}|27f#6`IV4cAVXn0s z5dyeMa32Fg9w6DYqdVV9YDh#0$CPRRc3}mZq29NrbI`TFmof5=L+7{K-M;$6fcUko z%J9$TVITx7pqsW{ayRW_l0hJ2!ypM-3=QmR9P(G8J+du9Vs0X+2iqzuy8dcVZCHV} z(&I!RFkYT*k;>l7JS{hXLvUfrx+!2&aF;x9U^BexKjB|FYya(7Td^QUrj&5mjA} zzxKL#p$w1ohK?tN-xT`GI20cP~S06m(E|1$MUI z^^{r@%iWX=Rmq2b&}MKnvVe?SPmo96{T`|EUY;WF-zhkAdyjC?_=0uv?X7}YW*AKIgvTuWA-TyX?IS;*h0&9LH&2w45x zYO+R%;yN}8S{oHLP!awgb373-2D+J8)l;6oGC1k^6uB>Q-{{q4`93RLx1cgHj{`xb&Jkm+OpXiH^Ko4FiyFv`9?QBMP*YBtR}^4g$3&@xKuO+6qb4PVmwh zx7s&QPHss93?%*+_y?Po+xgBavK z9Cuq4#)$t*|LCb1dyTE<)@CDbQeRxZA%779kW%U<`CotaSuX(q`Jeg9IajuEo{h)t z?)Y~83Hb{Q`9F5%j5`+cp9d2ESBtvaITe)%NXY-Ngg`qRJ*NiPS@#G%=Kf_+JrACS zgTDj^FUZCu*edx2!6AMKfFd~Yf1$7eAs`zDc`p=Uhs=OZ4NyE0j%80P2|yVYuBiYH zs5(|MW2OEiu}6wuxKnv?pQ0k9n~+~@2DKx@nndEP2+0gFaH+52TC6O#PJr05a?@-TjH589xQ8May&#uF+%37 z*a5DLIa9wAd2Bc5msmr{pBF-LOvt5Yi6FUGGN7Q`rK? z==Vmfu&qbJ1mw8G8Yqt4h#zr?a^I8jU-MHu7rM~iRg3^%(OvI{rgV&e+#lWcecqpm z!MV0u#)E!G=QF50Ll2ev@Gig*(QGDM2NB0CqO0{2%Sq=?6o0_=#P@Qw@_*s0CJ7d= znSM^hFrAbg`|h+zK{Bno{9rAC?90T6SPoIn9}g0UO) z+L=C!5)S#%LouQ|uaggyk!zLzJ7$PGFNt<$k@?6FbW|hXb=Lg((b0Bh`irjh%QXKb z#bdABgH9jaYq`hVMmjeJ>Hgq8o{c;RkAJXAehwmbqSNj&m(M&!5TBsV=xieSxQBpH z1j}(DbXh#JjPVqpjTrv9S9X$5KX3v+c|`K>;CIj0`kAjho?Q9SPV#HN`iNi8Dd>P724}# z^xlP_L}#s>^&P&cR0fOaQL7||5$uHVru{{{Zu;mzdvLa8atmz8B`=K6qPI%fCCXu( zK~6c6OkAMmlX69{9E?BYo;5T=DDcq$kuXDRqH#@eO~$GM*-V5n=Z7jetph)g5?tOo^1Pwn-kZ#ssBOJ1PG1SVm{kzUk^;0p zdotO*byg^31 z$(fO|Zk;~0>Q@yp1yU@xFro=uw+6J;lg_`4^l|jMkhb5(aSF8GfkHG_HQU;qPT=^{;0vrW zW!)+o+1#{+lg`=RLHbdh8W3S4v2vl+WH&>M@PsX>+y#PVniPT zarJ2zl-UF9mT8_$TBq=;L)D(6>7Z$o)}Jv4O|_MA;ERx=D@S zfcJjW6Edz|!y|v~9|S4iLC9Z_BHeIMWkB(bCOnt6w*n!3K`js{6&9oz%BdHpk28>x z_K_Gk0QrjuFfWAif`1?54(}ht?~s4!NQhsM5yh~_MDAUizO}5twe>&n*9%QCb_)wB z1qw#9&%!qfJfb$l26xjhAb7WYTVHHH1mU{#0r3{kM^*pwcNH6e5%S^aJ^v0W_h`|Y z!WiT`AU8)X1bvYO`1%j}N$bo0{fZE%)I9=H;2g!!Z^UsK=<4Tw@|^2%#l?RhF2HKr zA^$7uJIVk2%U@zaTg@-Hi+EG1e-~G#9L{dYUC@#-)Es!}56&k~{q(tHgSG-8eZe5i zEA1bL5HZ*#QIOyZKmJ&9`3i^<=po(~5zs)qJ%%B$WI*mD|H{PvFEz9@-T@fmzeUsb zgIetNLlKb{Yh;Yy^e!U;{Mq(n7(2f3VzKJXajL*sysP>r7u~NfVxa(A7cgjj)Dy&o zQ|>UEBRQB?Pi2m9I_Tsf<=r`JiX|C}n+f>~8iauF1%vD!64O3z#6tW>h28i4x)Rqn z{r?C;pc2$2lOX<=N?731k;8Pxb`h0^#v+EnkrzV)oU{*2{i4PNbwXTs{m=J*qxk$$ z_a(*Omuyf>qVPfiVtOqR5il_kJ{3!|XY-~hNZts5A&DpK^=rQjWnL*5HslT2sV%Xn zLi7o=t#OU9to?=T10hg;!hdYlkw{!boNa5tI!s%+EXu;PPkaC&e-k&UT?|UKX(=}= zL;@@?LMbEC*S0Jv0U-5(BmsRq3j}?PqXddI5yK4f$92qd3<&uPg#3jl-S$21oA=&% z_29)t(fgz)GeF+qc3rkV+8+gk_{R%StwO#=5cGYY6%c>5g_tXd&g1^vHIRTbPeE~i z-y_i(3SO11KXxV6D6x)}BRs-Lh`UVEU}%{I9dj89cL>)uVWCWw^u)hj*G5Eun=Z#M zIppsO=LGc-_b(d_ZL_=UN&0~AL|eT4XRcof6MXNj=t5BqA$>tk2t?24t7Q(Mvu}Kf z3(Nz8&yRgQ_uuMTQSsQy|4OzZO2nK9LNbW`pJ^w*|9cl*(XV~|`CI~Eb(%kh#9`AT^Th|3 zlHDKrYbk4HHww^V^|cidAPKGXL9A>R&rw z+=c{t#bSRvh>%E7X~h*=BtPoxN;Y+CXt0*XoV2yrjO;R6>53~BF>n+}iEb$5ukHG? z-%VD3?h9@^uWbtF-+Gu#iinj{ydbgxo**Fp^w1ZuzbBIb>_0<^mcPJ1%{@P-uyYM7 zcM{L7E1GM7hEkLQLi~a~#%dG%aUId{gK~j70_@_ows`jxNt^!Pnu_x`({FV262zqx^Q8{>DTA4}zfKy8Wp7xb^f zfd}LtBT{!V`e#IdL;7(4jsTDv00dyj-)smB`A5y&uG9cS{J=-3G(-qEaP4Pn3Q-Cq z1(?8bD5Y-&1TFCY-LC&9H@yh#NO`U^2!LudQ0f@#Sx8Z9lFgx@lbZ}KiT;m6AmLUy z4}|=?8=S$#XB)%HgTPc7IxoV;Ndq7NN)Tp(JuK;CkP1Lj0FwY@QKA#=8#hyJZD2&h zf)wp25wwzq4MJHS*YZ%KAk-Mx<^pGP5(Wz@b0ZqEK+u5b4R?@c3VUA z4w(neUMK!qA@`X(KH|Y}ua_(s#Y!6y07CpC0Q8Gt^+^yzBms!e+5XqQdX_i`et~}W z+vlA$VDkenBDFfFfBLNLlC5qFH`nb%h+m-n^`M*Av7$Vl{8T%+{>D!7wSWAjLW=3L z9WooPK6WDMys&o5E>vM*PEegmjHHiJv zj1ngaJj%ASvs+IHG?D>~s6itzsCMk!e69ajd_aYm2v~n@`Yo>$?)sz=sV0%sHX;C; zB-#>4;(REWdbm(Y27rRQlCVIJuH!C(p2Wq*7n;If6itECF%9sWOiWkIZms5R0@Ohn zeS9BXVF};b>itk*aA~z>EtwF+#u@)1esi(>ooE&b0h4V=Aek~qdyF2fgm~8__+iqC z04UuLa#k=H@Ja>lesmQrGrFEJarhJYSt@ou)O?2tt!?>k&yq~!La6IIgori0d{?FK zBr4v7dlFQLKqq~cGinK21w(PZ?^@pBZk0p3f>b~Tgbo6S*!l?#4RSue-%l3)7P+eV zUXpku3SUfL2IUGw!aE)rDYdcEe+m?s!9g*fIvhV~rJd?o#8K}5>1*>0(;+yJ>cVu2 z((~7)Rtfh>{UP{N67EWaU`D4x2L%pS1cN*=MmK2AWG|iIm4eU@1nx=1wNnAm&hf{3 z$L>9|Wh@K^QzD>+60eS%PQT;J(%?{E!E(2H?|^%oP8MAgQc9Z~Iv1yXsW2n-XAE1? z$wtuYp^FjZ&oC>KRK^MRLWl*-I(2FR{5aVo=HmG_Rl z#Chi9ndp_C`|9lb9>qS$yo_>K2X^p?P!ge0BbUrJ6tOdfjF1U-n5en8+o)L%mStHiZ87zMHOH~!W0$?{S&dGsgFB+4{cZ{l(V z@us*0a+x%niz+X`*se$gpnK@?j2pp)@Re7$F>KVe{1}s6NLjf6>J&Tn+x&eFn*nON6AD48i?Xy6GX$J4Sb|y0V4I-i44S(kq#xor}3h zW8paG$YSKPy8(Pk&`~$#l1v@tQ*eXMk^@`+ma*#*_b-WL4Vw{x^yBLoU1tNn zSy%^ME(y*JQB?{*xMhcX4#7~7Px|+Z+?VB@`ytz?5-<&d1%63J$a1s8o~(@Q+^weK z+Vvbf)QE_BE*TK*JrJxX>^cKk-bwgM?(~?`|h78ALWiN-KJa81fOn41ccD1m0(CW?b+`+p3a)a@)1Xxu;Q+i9s|oTC%aV})@o679;^$J$hw|!&?kLo683I7YbpEamt)8E> zS1S6-eZqkJYZicrz)ptz)u?^~BQ&|~Pp^ctr~>}r`Q(eAecT-j=|1)3YVuNkHc6iQch4u6ApjnIY&CiE+!=Rf z2QFW~dg}Y^7mP!#xsdZ6L9KvR!2Y(mVL6hJl|^%hb9#h(RAIR$GyuzhFF`?PT%O%f3T zwMU|M>}Egm#}-$i{BE)U!QP*I=(W=`PIdc{{ogd?Z!eG71B5v>*2PN0wg(~D;I|Nc z=Ry^C*xMmE5}_Jn#zblVNDX#KIZSe$<**7P<&Zs9R3fKPg?<->Q8fE0*; zPe*ZN;x@OlKMs;E?l;Vr9QhxyLvjBW7C*nW@LtA65lHCs`s@CED~VQ-2sjA& zAL(`qh`-n-T5gM{{ISIHlPIB%)e`cLvlx|80f-2w1a4aO91$SnhrQWpR0eZsaA<2- zNF2Xq`x8>uakjR9q6zU!2v9+pE!Z>U&Q$v(wE4!j`)8P#R;)~4&5UD zz7_Q5NC4)w>7oiv&dxgnku80E1OxPhHM!s&5kv@VU%Wu=X`A&I*OS#}&Lpq=Tb0j( zqyU1}XIQ|5{AC~-!ZXX|aVX0F5D>0(I5VnqJMjaeW^Ol*38R7rF=jSh9*=;aiw(l@ zT5%CQpx(Sw;Tni*Ekw{{|B#=78xo2_3F;?DXD6}z@wYd?3hOqi3sSXyJ{jkbc z6=e^KqzdvLVANny&@joS6J3LU7{!&F)Dr=)h4|%u%D9%S+)D&A7ZWT^f|(Q%S{+N%{(tN{>(cuD5F6-B zB}Fi(601OSw{SHy^z**T{VL{>Ewb=Hf zL=$2^MwC?`!URH@dhaPnJbhRtP{SBS3YnX&&H$vJvA)VkPpz`IA*`HQ+#}rL2r0V3 z&4|EgFLh8q*h91-h?-?D$}HQ;J7KYiVDKjS2Oi@7R{T9@omqk@Mj&dY#};(n@GmFr z2azzYK7G_NV{!uQjr|N-z{fSy7>R%+EqQ^DrWc+w)R{!t`czbk3~8cn^4&m8f-j=WInX;pKp@#v=stBS#AI|5c0S0x!c=I>Ud}vtgf_^Z4BZ%#34BM*p%a6{>(Dj zFYCD4dLp17{P#7MwM=AL(D_KWkJz<}!PbBH-R~ri(??f9nzV@O6F~IUkrX)lJ6ugg zENcPZ!jqs4r~f#JpOq?k={0o5w5bcB@!ZwBz427}ed3Zx{4c9Po8AoBS_N-uvb^aM zjC}qFP=T%ujAdJdU%c!CG6DuUm;Mmq)yA{0$$yMoo8+pWka}9W-F_6OU>7y#uGh*!&m1LiF!W4bxrId2M1`#8hgc!y_WvzK$lKvhW7Dvfw77Hhi zi31}$0iaUi*3|DAp)l}h~V`bBU;Y-79gJ8Vh_eTE40Uf>g1BGp%ML&=BXBVyo<|=9h6?Gwb0N1= zaNqlNRAoL^kb<~Q_0O^ZYJW(wiaLgOA^`L=kS?i)ONpS0_4;}|g*#OLfA$KsG1-XAqSDCL^?wLBa+{gHGvO- zB7#4psyns6zJFJ4vA9*^zozFcLZF2SR-{1X3DB>LSB-%Pf#iK6I}-3|J&cho!FL?O zezg#Xe6g{RJWX<)^{usJ3&g+tz=9(HmKWQ}`ByF`+MWf8EApKoe<7l;J@TdG8^86u zUDD~@rGFPl1b+}%I%Q4!VGw`0Ep2y#i2mY6mndt~1>X??2X*)tTt2u(?Eix)8R6~F zrVa5BgCP?~1RPUzM`GEB_zqT2$lnM7A^y5~D^NjsKAgvqa$rQ`S8YpVzZ1lM->%@0 ze=ccYbiRr7q09ASsKK2Ti2wx~>}*F;hPc6;{hW9@wefZB-r?{0d8lrqP&U__~N20c6)=EW|s^V&*4 zAp~SdNZ-m*V8``rUu%<-;yMlqZ;JD??GE#~} zK-~YWpe7uJT?z?q7{ok0)Txla5dibr3;AF9;p|wMS1&G8P$>}sjsS>H+`;~#1b|%Y zBn1!zqjUo5z>!PW4-p_~!01Ev+qh5^kpBQGQz`&~qyPp3kc2pYfd*LrO}PZ}l8_8Y z5+HEa{}2GO0}$fZ6p^M=V&oZf|1zOZy8q!dA-bNh188o>C zj0qfr^>0Q)@j2~}CjMhr(8v8X1(Bd+7*#S_=2{30H0gLLfFXaKyYL+%_Z4yhNCIGR z4$JXN*EW;mt;Q7j!~LIoY{gZ%Kmwp;!UzjQ02oLGpt)yp@Sl0+@#KXUF1ph~`X&Le z`U*lMLO>w3fN}pi7LpT~6hQk@0mR5(WqrnGECI+POB$^@U7{E-s52QW2Z6-@^S}kQ z z*7`QDIMqtdZz%3xpzU?PYyVr!rF{^M&3)(M0%o+vR$)n;GMt6AOik~~V=d#plfV; zVrHlJrw`c~2#F7ELVp4;hI`QU2lu@GTU`ta5mB)~bk;lA7t~NkfCz)NS(#Z~3x2}t zcVgsz7^k>C1JM^Mh_L<5P5&zwbq?Hfx{NVpAe2--j&x!=9-+4~1Dtx3g^9QU%EFi8 zW~o>N++s3(X(FnE*y=!*Qd>^4k zYg3+G$_uxL4ae+zm>lznbyE0_c7LT?i-H}3w)!9U)@%Y4Cb&Evf9P@rFm0+WzFl`a zS^LBi2xODk8;xWFGGAn_oF)Tk4wYF6Kut!u*b~%4K&vyKeKOg^7*HS`X(|=oRYC~E zd1?Rp4g`cwzk=%_SPEkSa$}+6LGNtP}hG(bKCg_4$k~8e@4J z(k`dW{b6l?D)A%HnA zk?F94Xr1RQJAHLD-gNKLdQv^cT8q@S8O2o?jQo38J&Stg!WxFx5MFZk12UMgPC+N0 zGW=JO7;GRV5R91b71pOZo?o4{E!YIsR?Uy_!nre^iM3t280qB~0OnE)J<$AM2@S=R@hGAGYq2))S&&Q< z8-`Tj%Kfp({ap+1r6#)xV2!dfTkAHa+I{-u_=Dl$Lwtgso2(by05KdTihQx!ZVnbn4f!;MFRc|prSTo!A z@{HJ07z{PooC;L$gy+z`;kP|P&!6!cwAGu|Fmb>*i8*DKkO|}mCM@D>g(u!6Q2@cT>_HT5MPLRhyx|9ee zVUR{exX$_4JduuBBTmxJdmvmM^aCufThLJr!*eSRfFQd;5RE8WR5j?t^Y-k-_7t%% za-X>EW!XLih&_Xxuj(9Xy%$8I4LGF}jW%&W{Ij+mWI;xnvkOr+yyoxCZSS2V-PflJ zSeWN_$$bl^ofsi$>AvdUKm3*zW0aNex*eBXBow6>D3ymE@e29RgR{TjOBJ>7!f!DR zLV%KD-4mbp{fsL;#vjBHzZhC%e{4R8VdZE%PdHe zrZx8O$yK#~Kv-J~U}K1Qf9t=T5?vpAkYlV2AC7v{@m~rAn51l-z)iBHI6$T$vAvU|#vRPr7xItcQM^oI zD1jq}3bq7D$|vdGt)MI;?*O|5qFRIiI0zOFh%;fxKW=BSaGareI8nxWT?D|9AP@v@ zJc$^%1?&)AwjD7|Li|-n{e^~ycz?`E@Hb<(w@(^SxR?0^fGR0zLE)ptZH4?N!LZCH zv|%8K2ngaaZJ`_ECi%V@p{T%O^xMg*eAO=?>SB@#g!mQlZv>|yVxS5ECsM+3|9$}W zKncGMclF|b;?xDB8~BX|@stetoE-rlr+)+M()YY1U>Ldeh!`-AKvICJqy&ZeIl>Cn zfrx+`h~o*Fv`<$1)#yn|cs2>HvnQDEG^_#ORK zhyv9JMnNJ5g!mO_Tfda3e3IzIkiqpAA;k+J4MvEh1Itg3aHSk#lquwYyCCF$7@Yap z)nxN~I}Yg^_b*~#`~NL-@6+oE@h>dX8DE$pc@Y7EMZ(s$mlu-9pIF&4y0V4kMzZqBS)F}cc|&;s{$yJ6 zcOV8%;p6{*;_Gi9B0$`~^s@U{6k~Brj&6;j?GAeDc8Jp<s0)cMp+=i9yI;Qh*kzX@_wB z2Z3CmyI7_lg$T$BhJcqzbFbbzJ3*?S#y(NG=}04mz89)J*{ehv(6tR*Fk z1KB-UC}1_MR7o19EQ@?YgIWkhKa{>dKt(Ze4Ecw$a!?6cop>9^1ZW5R5TAGZ5^*0w z0PL%OivpJxIEqGlFaa>9BWDQ6i!$-QswkO_2mt-GZ+bnQ)BZvTwjn71sl+JV|B*xl z6v1Nl*9p;B4E$59s|YddHvF?lL@r4{4dgBrK&%Q-Q{(;( z`I}m1DOt9j-8POl-Gd4qUz@(`EFgawL`g-XgiNuKmO4-v=&VN|A;kX~##6-sZWr?^ z07PVnw+u2U+tP>jWC%`hg(?*mfifAY#x6Mp&lJL{TKkpHx097G`Xh1wf|T|xIQi9| z@(bsHP}ZB@^OLXvmtR?&Qfy^Z0o|*F9}NV9h=JuosN3x7y6>3(k_PlP{aET<^V>0@ zY9#@1KPJ7BSs8T5TVY6FWlE{K+@5{^ojt#>Iv1%ZgPrRCbwd6o1*npsNg(dO2qFaJ zX|V%`n@a(LTanf6;od6(K-|AUdl`Klu(LCj2H3ePs0*&(`g9oFe7l=GdPs$S5Ob@_ z;}18Jq69$V{}{>`wEl$vT>5bcpv%dW07#F@HAXkog=m=vk^-O&xFr}7po(==IYt0T z3b1?z7r@~2uk%jA3S%XesE7drQvukqZ7YFz(Qy?ON)~i7LsXAN5EFG&5PmQTz;=j= zcht7GQ%@>R!62~4HA!zgs&M7T{kwzk&vXCt3AIsyfr=ce;x6{>3;7RGql){V2gbOv zD1IyiKuj+?A|Oay?>dmHytZmCSU;RVql1 zEbprdOw4mgTaltu%vebJn;_Ve7yz0G9Lh=d0SP)|p=GItl#;j#wc>^)+|sBA*WPHL zeIrjWIv*o<=$eJy}b{he33Gadeebeqwc_2^1~UP7IN~7gFkiUb3FqAZj^ob>)|H|Yfq=*&<0ZdT#2x<> zaOTX+VICJFlnxZbJ%;HcCreMDFa6>yqO>3|BZyyl#x(E6BK)e)d#~plLOk+*(34a@% zcej&easq6T8$gMA7KquugZOsk_{rqr%a>hMjms{%&YR={SSSDcm%jXT^85?u-MIw} z{3h>D^4RztY$yC8Og;}{;L8_%5n@DyvH8f4(W#=HWnw{;j-wAkj}nPGzicE3JtBlE zPJ!NF{uLLfkFMP2nGyWDnX2L#@bJz6P!R^PKgr!v9o~Serk?uK&rL1oWfQP6h3gl^ zElMv9F^sM{4=T0x5KL;^!A&F=ig6<7FETbZWGBXbXx$Z{ZWzfP0It$< zT8!V<^Ad^k9cC`u&fZp1f3HQ7A)b+ku8YCAyy@HXUt<3l6xSgmowkw(;ZK`%LsBKx zSzbjw5ZM^0Y>Z?$mFIJXv?o3tn8cA z-Q_kr1ZYaRkD6=>fGQR-eR2uZ7l{8tUuN^+PIBE2Wr_pP<9mBksO+@Y~>|EBSADqilvf%>uM zV^_TuVV8AUOHz->vm2}}%9^Tov`FN}<@-_5(7rq*l5Q}*7e35a1WB7!_Z|r9x9A!4 zrnvtO{OfY}9ZKAW77lb;GZ(ubU%?W=wz zh(>fy^#*Tw@l$%AUnpy&zZ8fFmMZh#IGoPol8Q7e1vc>smsho8wC{#P(l||Rtn)*C&RgE=0J~7W!Ws`FUVaM zbzsJa>?(|MzVPTAFoXPkkuSICiv_N+Z>&GHL;xhY@n+PR-RcU&+e3u;2%jmt9^N-< zoh;nvY>UH>#LerMeBik_xo|Fh4sJJ$AicxxB^K8LG?aiTf>_$qK8L=tAhM6DCXLVH zn;ujWBF7#BAv|!7%PGpOE4jafxJcz^8z@m?bZQ0{l#0UAr9-* z&WRWf1pNdIBqHF_c~UNa<)0=m{@$-!t$o`%>52OxJ+aotRlGN1DS#TtW2*)cu(h_H zw;w2mLQ!JL*$z=mTSSS}*1+(s9c#NqARmD;w<>k}t)Tbzt?R^n43$(VF8GN1Lzqm> z1rd!h#+39^1W2%JciV%m7vq`3ZlkeG@+OdfZ_BR(8#_}~+hOf=?&jNv)YY^IVT2+13VuX5>r>{x_=at9a@VC69pkdiCFz$L2S1rLas?_vUQ z!Vtd*0Wu3%Rku}^J_8vBIw?RX&<7BL9|ao(BLYTHl&Y)qT97kdqDTC`VT}A+r=hkA zFvf;JNO}}>^rgs;R8jb3p<8948M5G1h$^Q112Yg&gcU6IF}reLDvB~LZt8!`y&psj z%=8xy9P%%mkZ2QnGA|unC23JuAycAF32KV-9Yf)Eoq=O?-Z)kv|1QYTKwc8t-=EbD zHue4jz8|4B&^PS8iJr4S1PJlR(BF?Ky4%iXx)1}St9;<49dsu^{|M%#qr1((GdZ0t^NDUsPH-k z35(Sd@;?leWlcXJesdc=tp40{`ZUpekLz6CjRsD9BJ3|hR7nD0u-MjorHxok7i!QG zK4W7&IcrjY%MbyA;}5JR8~v@M_g2SC09>h;0vG|Hq9XEFS@+rw(jEwMBo$c*o|M60 zq>`u}0s7o(bBS?Vc+BO`VVxhX8@K8zL**$6!0kXEDOnwMR@;vYTn5~zvk@F~u)*>^a1coVbSxFX41__eI0{uww!#+~Tnr1B zR3*W#LG3LM1I}EoyYd652_OJ!fitsf)Te7oGJyN+5Paou3BW9Zilukf=RsR90r2e= zzPSD%?|c`r{>jRe2na0k&Uug~Mw(}ScFBqVcfQXtgg`pzB)v;FlN0~ww7ZN`%Y+NA z{}IRtx53t8`D^Tm1m7EAD*3+?&zlZ?2*>wJ6ylTxp|KOS@Fhl?t z>=0AkkUv6OD|Xw)Cm~xw{3Z#=wg*Y)vi}HD1t>&w3^HnsAq}ZdMF8kmk=_R6uebwV z3NVMvk2|>i{Xmk=Hq3VYb3gV7vEyG|OSCmOd#Z(BKLj9zKoP|K@7&yVKM?>eRCb-- zbPW*azrL~Ue%cr3fA-v?IYFWRN<_%9w7|vw4?Erh`Okj6+1e?otIM+Uxdq%7_pj-9 z8+fM@R9eMbSPVvsR=&Hl|J~ZT;`Zi^b%*@5m71xC%|wHrQv*<0b^!H7toef!K<(Q^ zaxAI?RNi`^nQX0ZYu6D1QtQlv6uYZbiOC{@WL`ZX|AV;y#bt7?Y=(7`#tmhVB`(ZS z!GiRtexJA-^#ZYd)PAhqNQ5T`<|$<^@+JYWdIxQfDg{vcJk|3-oy{rV1(zN;dWBZF zc}e(Zm=KR1=Je)^?y7{^*r>XaU^MUc^^uj(X9!nfZhVywLDE8|;Z9@_C@FxpRXE_` z`@N*}9+V^^|MY&u&2RaNGC0eKIwm8y2I5f#0g}G7aS|iHAECEa5(gVu&rlh&fRQK{`=810B8`i39$zARFnj#vs!P9Mc$!hgz8Edu!w&MIJEO}%270Mk?KJ@w93jJU*nZlQt! zo*jbj8=d6L|G1ho|2E%Wo(REc@Z^_q$5d3byFE83EAZX59T&mTHRRtavC7d*y2D;@ z6S}$MSKpnN{fnBSUVOF&10;7f%UfW{e!jX?)Q$f7@XQoK}CjIWd;lH)& zXK(92YSiBhy3@O?zk1Ss5~IR1jN1U0{(!b?9IR>a){jMPX_B<@7}&vJaPlq)lpUJYs5v9%dKJIfjLE5xiZ0roIAx z5O2SPulP9Y@$BPd3o(9c3DNN0b=Ra>YbP(F=dKeea)2~tb!91O;UjMF{I@S)2O~*3ZtRwzXDhO-ryX7%L1PK>Sj-)u?tOTb%`qDW^Ul z45~O{`LQFWOfpS7<-^$BWQS|mh1sU8i$muO?oPRX74*}1vU43`8gPLr8R_ec-w*SG zS0>s$3x4LO9$ii@|M@n46EHy98f<8f?V+R4q|BDg|Wuaqrw z7rTJgDSv}CqP0%mqkkBX3{QmX7yWonVWv#l)MY(xJ%}DU8d7>4HsZCWi9QvR)Om~f zjluJXY3K69h+t)8$_|VC956=i>w*0B+9DM|U~ty{990DC@@`NOW!!fv&#yO?=Y_}h z&3RVEaG4|}O$#kX17e{By8*oqGt$=R(l1jW13?ffV#4eWPxd?0m5Vi3sNVU+#{-I* z17cbTM%a&yKR|^@pt}s6dIug!FD*Hng^cg+Y!|dJ$k5c{l`u|~>casS2SX+) zgi%Gtj_#fK_mO-64x{c}<+gX(3Gd6UMXq25Eqa@DiN)yzZg?UB5OXVdM2jdH9l%51dUO~y)iBo0ucfF6+!(NckfgX*a0}?Pl#ZJ5|*fa z9!UBy;(qJ&IYgvxajs+JZ|#&qS5U`lTsj_s`W|r&1L=ON7`_cze5-gB)KB;kISGMB zTs;}+XkoCQ3dOLg8|!MHD}rX`yl98_mzi&io&4++DdF+xf>%*j4f08N*jpNpYe-%sJ=f^p`>Y^=|t89rBOch5bGBFKjJ+kEE$y{inBNc5W_La#TJsm}jwK^GCw@6+ymh+Wg`SSKIz zb~5mDR6%1B#UR(DZ2$lu07*naR5Ms+jd*n(?$SSlkbj$brtH7#tO4thUPL2si!{I@ z0<=|BxfuG9k(rfW#|z-(NlyS&a5IhaJ6RPBYYXFwGa?dD`sGtCuguQ8$aAI0*IM(= zhyb;#$+$^i=F(bNAv(0)%>^VINhH}&9R)h-6~}*QEFvJsN}=p18w*4;77-AE*HP=< zASx9_5h6f@z}k1e<7)NE=+{2A%6^bwLCE#-!bpQORYbt@r_y8#&m4i-vh<^|sB#%u zn}?B(T>v+>A_B%3ZyK~&A9sk}stk)=3_W9Lp*kx{0=kjDzmMcbzdB4?10=6k9uFHC zp6a)>lqJ_+^9(}V|55gL2{5-9#Wq z1-=lsm@``>I~(|rLX`?yhzti^XfX(Yy(q-xJOV&seZTw&L8C*B$x-@}xLpQ!!#5-$ z@WFlz`DRbC4S(G}jtzie}M0Tp2pgAji|aNOvTFUcu(hhepKy}O>zbb??ZRD z%ROC=D%G)DsbjpVUlIi@5+R_7jJsE-eePVxMUGz*T*1t8{rP{>b&`O36zX~X2O|gt zI8;``|8C7btBLzEYIEa?U$5 zziex37Kw@wm`4Oarn?Th>pPABu-^JXP*iVw#IJJgCvU@?p-L4D@Zu8UH?@;1obyk? ze#XH#TgiT6#INeg5mIOE6oE4jF>QSxLJ(YX5D4+_@Vu)8B{GnGb4&zSd6}5}GZFwh z!FKa=Pvs0kRJ?EZAml#|F=#4fddHu$Bl*t6S(dY$W}za7~P*y#gYWXA}^@`#u-RE zEEEGo+8Lsvltr(Gs5fiUmT@g2VCwGWFQRz-O3Y*2zvvd~M2iByZvTba8Vk0ID7YV+f6jQXumV1nwU1_6tk}1TF4=dbifg z6yeG@H(i#6AcoZOJaF7U5`Y-$ZH$hP0;KmLF?h(2&6p5~>)O850LiAt zoxi785+F4|6-nFHcW1AY+~v8f^*200mfqtLatf!cUxtoI$#EnmwIn%qy*u1GnHW+4 zWFfpCMci6ol!^Nf^Lk#t9aij);>Z_H3h4`MTR80wCHgm*$Nk&6;`a8lpZgxf`AY)e zT%v+*WgihxSiMc9=p<0${yVdhBlWx`|8*sUnFF^X00xEewRH{Ic>zospklLBFN&Sx zCL#hxKY-|h`xj{2hX61sKo=|iB_zCEB8(med02FXZ;wFI0Hp*G^6y8|)8=tpUy%Zs z8bHWj0nm!J0P8ShMYM#IPtx0tE)sTA^4Dg>2`S5KhuaVlP%Q`IG}P%Wok)_a*xV?H z-2reA@>lgSsv&Xz0>}Nc4aol;w%_FNmqdIY6`XWFTK>mjt-JpE?3yVRz)?Zm{|qQN zQA7mDb^a(|&SZBbONjU1*fhy%-qz`Lc#&gvB<`u>hc0)#vcjCACzXy^!DDnmxyc#S zmWUx9#MNbxWF`?Jh_8kZa7%fn|ICZ7GsQo?kB4EwF5{NdyGrz~)6HbKh<=VgMR^j3 zGlDP>$2}qytq{CGh^>lczkE4m*wzb%hOJ|*+y`IcII;KXCp;o?mZ%UR8Y3-9D*|K| zB2qR0a3@uCSY;I1rJ&5V0qVGM>J9@{HX`gXcaD!f_0^VVR#d;Ro>=!(u^uRrBp?>$ zX&}o#6_6c)Vm>Gl%8+okBM}Phm#~UOR_W@v$sTm`W3~>J2Yg}4O{y6D7?hDJWPeVq zee{8X^eq3voN1lH`0WZ}w=iI8b!;{sQ>f*7(!6e!y`@D0E)gWlKuohrJX-Rd#PoQAQmX8D)aod{#H< zZ*)jLZUe<2$bPh!G(XEK5ulcK&uMoD<3J^R0nT?{XYqVpyZgZi+o`2DRt?9adR$*R zXz3vZ`~C3wMtsx$d(;C-OnUzNR-~@^1m6iAu3W=&Rd6i*K_3iR>O1DYJb=0{M=Jzn z%}yf1#Z4+~o_w7?eGe2=(GXxr?eRhbPrW!6<>F?zi z!}MiRicLTmEsROHpJCc19y|MY@y#HJYmt?G=kev_9AoqRntg4a2Y;{>-|H;+g?;zM zi^*5N@-%bVU$W23t>42uCH$}~_T}3xQ1F{2eAd^o-B5ge!6?j)9gqpEgDZm#aa;Rm zb?i7ZiwD-6k_c|;jk%ZhJty$7UvMwe)NUpLu(sOjt-5Ux6PMFvQkMJYtC7!ja2zow zMvg2%RO3GR-Z1;zv->4O|j{vD$F!G#M-tZz!Uf=wwpX9{4mvk2j8 z?8l(!eIla8`KB1mDh2sK^NfoRsq7?Nyz?H60p=1A6TEX7HpAJvrHcSR9T>P(B#1-y zjRES&xcY7EdY(WH@hbgMzr*@kC3<1Xv%3)JdVW6?Xa^%Wsw7Jfb(8I@tW($qr1xF9o9Np0nQKND8@eS%8Eb>%0#PM&!4G#ixRNdMfk)J5h z7M7>Z@Fj4v6_CC`72>7@S5=OE%b6uY{*xf~52?qki9`N_b^ig&Ax*EjE9$+4X`0uM zLj^0-)&#?=e2|A))sT`@hhvL%9@`#Fd&~DsL^tRdTK1>Pe2X#+fLWgl@f*~67ws=T zo^1Wj`DDO*)Gwq8uqq6~X?;amsiPn7N4Wx2QOG|tN-0; z7K}7m`#;WyvrIT=Rh1tmBNmgsjB5bz8t2HIP(jP6Ki6FGgpNeULjFerCc`LTqQW{C zH4h7h%^4Pq7!(O_9*jh!MkmaO35Ru75>LQsVI=Z?REynM2gPC6eLjyaL!DV9YzWcxY(dF|$v`4Kzs%(QF|wdIjPV>23tVrZIyIXX=Q#utC*dDoQ)0fkZT z!6co)9Zy6+12tby5k2n^w07!xok(idBf@F})vLAw*%v5SkQlf=9#evyux2O%pAzw; zNMS4*pR2&XjL_oCk)(GQo31wAX96MrB4i|XGNa@1ryflv{F2R=iq-ZV+jw$8fcBj| zu;4qK`DK3jd^oV?K_~E*6RcnM1lmE>tbB;XBX+~L@>^|Vp7XG}LM_pfF|8`kN)))~bAaN=XAHATmZiGb?8ex2!uq#R9LP7LbzLj>?Eg7mD800<|9 z{6}FxIpe-Cz;)V?f1IXQ;_6Ny1|0WKJ=>~{3{eD%rdI?Z{+tkq-pE)aa)kWVt`gn4 zqWtwp@>7js`^!~N?ur7pExO4>#wSCJXhe}73f4Zj4>|9GxIwg}S5HAPZ$t>2dc)Y_ zP{#xq8ifTwI{)tXJi=c7S;t5xyWiPJdhr0YY!i3;XX?N1N%H1d2sS3QxjSa4bwmiP ze04QxJk(0o{)I;k-76mX>y|J4Z!hw{nXLRh>I5mkR`3q!?(RaNYURF^d!Ck1Higrl2}@JkuZQ#Bj{Q6~z!Q z7pc8zU;FkX1t`K{VsA-LN+Ek$v0dR<_iXoDI5j==iHoqa-Kwy3F9q0i zjfMONK?0!RdH(z*T>Vbt4R9$({uL(AP{bI1=Yp-xo#foP$Km?#967m;qJK5G);f|c zfnwsv5Oe>z0bpE#eUlUvigCDyqTcdi+-4-vnI{3**S1iwAZ{Pzzw%f+*$f%@`XLiu zq3Y~mpee0zoxB+>@@LG09>LV~Yhd)(Uz=Cs=w+EWeTaY}tdMJ^hYG|H{}R%?ZB%3i zA_P{?Hk0)~o03CabnB817-T`!X~)Iw2oAct)a3zD?kg^Kj8Pe4gk#)NyQ>oT*Y?)&HeA~c)*o$Z$kViv*V&XjCL%0*EgvDvhPmV@r zloz+ve&-GTNlg-k_T5KPg#lS?8z09w0e;V&k`zFy00%|{a8Sn1LZEyHL+O+w7+z7{ zfd;NB(*-+7hLTAT>}J?T7z`m)#=)&kQUF2q{&sTWA3UBc;A_80(4AfoCpt9%=M`5$ zU{Zi4T)$lJOa-v{2kV%>t-CsB{-<+E_v+1L{oh`8$M$dY-%aZb8{VzY&e>K(fM6UU zgp6;0D;P!ku$j6NOM1|R76LTH9g1)JSnc9I;{EA4UDrzhZi#U1Mn1~cvJF}vGj4uX zcm(9Hs%krjfJ%ng-OM8b)W(VbBktc2|2Yu=oOei{Z57td_SJ4X*a~RB2&2ddt9b69 z<5UKKK%W3YN`hlx`hPp#r~9`PY=^{Ps4_XrsV5@bsdoe6`2+~(qE@%J zYn;Eb?|Jfxd&cH!6?>4KTS)~pq`@i1jceON5-KUcC9*LZ>=BD%VF@)WL_j|f{|l&Z zdwBgE1{JAr3tm^6gIYIh{05Od&|YBHQl!MrI2G={2qFT+{hJgZn6bN{0#-0^rkIH$0`68{G%&TA{b{cVr{#0?by zY95FPI0%IJ8?ws*#<(WVgQEz|oCF~CR8P>9!0@WS&}W8~Xc=8+8H@iioO1(Cd8p`T zx;K!&gD}yQRj-UiNZm}_Y1g5O1{_~wPcAtlaITdyD99Pb2B`FMHK>`0NX75a)=C=|lQ{ zZAanzjED!IH_}8r@5KM)1dzwiB9SV0}paQ|k%HwrIDgwzljI}3T# zc_nNkV!~WRz$Dn>lt4%&IZn%df_2Bw)X+N;6(jMa%XOIo^ZfNJLytTOxz4<}>D3mD zbf#s2NYxzH8=t++Z~-=9jyL5U63usswsSSov^E5>XZ_3AM~q~M{GtDR={=34djs9~ z{p(5RDhyZn66+*1YlCD~ahVky|A|vc2kBY&nu5wO)>#0W7({nr(j1sfor95#zllT8 z$12?=@j|L2dSHpT^$UdIEkU3N4edb`T;ZB$h~Khxoon+P@?=|rd0dZ}6sZ9eDONUO zePJjhpx2T7J&KppE@c9FiU~h#x+7j2ctU{zz5I&tacIp!zow8Q<@P$e}{rzTg{ zP$RtJTK;&DvR}E!kHr@6s|K?(K33x$(vYz?;=7E3jZyCQHzBeCL;^v#{yC91e+E?$ zHHE^;AId|t83Hz?P1Y+H?9H$JXd>NnyNl=lw7T*z0V)g)MOT#I%V5a8SFw$#+>PB2 zg>}-IE5RG)#a6{_#Rw@nVHYF!Rm9K|>{cX>_OFdPv+I_)f7xTZG|V4Bl!e|>i=lw% zdCXcK4Y`@?;RBA9aZm+}aZhqY0OGnT`kyh>p5?4BH$8Pc?h{t!W(Pt6V=|)V*)PF& zxusw~8W@N`YT*THo6&DGh=K>f|5T!6xfTlK)88i;$y9d0W8(Veg5HGNb$IXp&ZTP~!KtuU8zB7ja)8Gi*J+=lJq&q+N6T)0gb zAf{L5J#*Jl^Yot33Dl_(6e^KX)R;jvzyiAnTNjY7Jg}J53AI`$bY!2XYrQMm5MzOh zDK?0XJ6F9FVeL1bCsJuF-2V~Wc&wM#xqR)jiqTe*hz{{-TMz)Y=0vCW?F#u9 zp)ARpP3K^jBSvVfq-8*f^{~8r5;f@cV$=LMJL22j-M;ml%sXXA!Okj@j0EPQ^}q@N zi_`~^H$NrpC~NxZLbkJuofV9cA%9n4&OfF1JqY@84G%`pE~W4s2}L(Zh_zkC8z&|J z)UUj^Mz&r{>QU(9WB<2xSX%Q!a%A^uLt9}$<^e&sF_ z5=Tr15jS7eIgtPV&gNJ6*%g10{ojm^*}Xj|qvn>H?k^QEruSTZbk#`jd>{c3Rd>6N z2+)9+VNwKRNRcvJzqo(x5BQ)${(>4GSl$AL{H<9BpI%MMG(-^VV6|;ryXwgARNx4K z%5<75P>+zm0^ZnGb;SMm1L4s4^z{Cuuj;%>=-7unm!dw$Sf7djFvzgR%)%g4+-pTZ z69kt~C}3YxS+FKhOor;~;4D35mQAlWVDQ$Wm#dbR;#O@%agBq&zd{v{u(GZPk-qB6 z&957|)2K|4BY*Z|I;4a@r z;=|wzyBv(ftalT)=6NE*2bpJ_=fvTW4U6^hU$!%EASMWGv74#D!8;T02IZo@O%Op! z3Lqi?(lQb9KMI^hY`*@+d}Jx)uiw+pJbjd|4y+@@UxTBUA)>ZvU^wCiqlmSZ=Y;c~ zm_q=>Z6qNO*!(jhpnUwnr1}JN_vP=*RM)|n?0xf@;mllXVIZFU+u%6utLn$J+mKT724(Ufm z!Yu`YduO_atDS zrd1O1kNy5bldrJ7QfU60h2uLqTz^$-v4_=1uqDYUOeA;21z{}Lc_-8)u>koSAy7!DsH)0!d%(gSp?(^|K&CnA73Tn>hdF%eKcetn-LU?O#8WB_{D zm3Fu9+{>WYZ-dw$8|2n7xcG`!1K6>o05N1Cftt!<+p4&Z)ByDmq0SPm+4%+x+a?Ff z{CJko*iG`JNCL19A+Y)gl9&tAFJ=*1t*y4ZFiwkFJGGA|fCvB`t6U%=AkGiuIDdD> zbN|{E@*f}t=)UXMk$RArHf3iJm;}`m;#b@!mUZV{qj0~jd@2Qa#1$mTKWFs;<;(w)#7NZyw0CAne_U9V@%|rg`1PRw&%CjwSx_`D#hmHO|QM`XB z=(6Q+hg29VOO!ZXYyn)pdX|T(oJtjVfr(K?9Wcb7b%bbt$l$L^oQr#rhR=L z8G&SQ?X3_MO_NkEUtM(gjr-{zE_DcUma(9z$VG6Z9A-Cy&WkX^hylR25EtBP5Aj!> z3MDA{VK5-+Lr^RR-Piid9ehr)4-iKweG!IAed4gY!66I#V2L;8zDv5v03$ecX$xv- zIuxc+U;|JYqEvt8BcdK~bwtb1&xAH(bTEM@kuP z?wioJxD8r6zg3-g$Su-As!ZCV7}7{b9+%s`yq0Hx`%tF8t?#c>oF*-7C%#)gRwV zXFpvaX4?N}a&RmnmVTLe{!7`rTSA>Ea`UtoR+8_}_iqLkNhB1odGEV6#MOXCw#-L$wQKHzn&$#%m&2GXYi(>axnKY6<9nBx=gjf$l!%tkzU8lP z(7$39Ovk0`j`>Rz0Vl=}_Zj+AT3R8hsm#&WkCE9#5{8I{OUW#Clkn4u94c_zH+?(V z5RFGQp4T&DZg_J^>A{`BSeS=edj-<{J8&4qk0? z^OOz!G|`pYJ5qlGRVJDsHsyh{2hnqH#v5wIQ-ngjC(U))aLKI9M%dt8^%8*d|V9V#s-~I0E%pSyBKIt8TRr z!6228nYguB*F@XpVZ22gLU3CA3pK5A!9jQrI##}q4FWS6RKS}o!|G)|%hy^=DpKC{MgevQS{5N0T*fTvi zHvj-207*naRF^$Z=VH)fYF#pLq9+DnpPvx|!}mez{EDEM0b^Dp1^H1<1#Jb@K2GWFs(m~ zFY;MJ^RgAxyKVQYLI8YJFvO3E6%%FuH~pyn|0mwwEv_R%`3}SURFuj}WCNq;Gvwb7 zA}|Z*y|ula9LFg1Fu3^g<+-Po9Lm8V$ln?^#2f&!tgoT7-v@@=G|zmt#eG$Z1S?sUIWnH`^<&Su_~kbi$?m@L3_6`@72wq}U5 zS>*U7sfSrKhxHfKpf=!})u0+vPcXsgQCsB@pY`Z1W*EWWbbT%)- z(d5?f#8Y@BNsK-hzC)=e1`4OOZVN%0rTi!mU4?2objUxH3lY5&_K&m~&au$nCFYGm zF$1KP|3z<0QDC5G2p@h~6MH$oT@eBL32cB!3V@55{LBr8NEbw9NT(rcQHdpzD4e8- zfj*JVg#1MW)WcV=3hOeSL!X4&0$}rHKS_Ewdr9LssY(gCx%>nX3c0?Z6gXVnufh^9Bf=8cBfG3%uEhTnH7pBG zfg=KVdF%NdY7YC_wc00M-89PbYbC^FjARLYo$Pm0~%B5uTpizqj?x3$ulh zmGSbI&p;LPeMkYiqeMRuv`L;*CyU;dKkyQUGhgxFp^Fr`L+k*H7hlf`i*7oVNLY7q zAQ(lNQ}8e6NJ53mXm+KM#KnjJ-yWVILOKygY~BBj+=>WrgaBNT0!qbF0OS1iVhs7m zFKH1XU^m37kIP$d)H^q~P?gh27UlUN!NuiaK0e_$uF-X9-gl%|H_{Eq^XF2p=R=Ioce`bDABMF2Fgf!Jg1)bAkBobKW+ zAegX@=iL9C273|Wx6^%$!i@mvA$?upL<3ho?eCCmsLl8gAz*-^zXKx%g#2alK+GbS z2uMOXBLHGgD8+f3Wd*FqnJw1(rFT#P(%XJ8r2qf3_kKT;T-TjvbY*8Ulfg=6s*1%f zRk5j(`UjhqY_l=6CD|I!&^AEL!V4HHKMA`KANIjs%-h0$gn?baBg6Y3EF@sDdRWhn zfze`xg<;tqduYvQ+&waBwz}D3kCAY5rM zZ=JWc_gg9~aRv9}(iEN!tJwVA7rHFM==H_<#}IS>q8KH@lE(l9fN}onu0%EUGi@)< zKnkEAHw^xwHe4sfyf)-7?qBI7B?%CS7%(KSW8?gV{H4o5j z^l!*tk^qVBg!~06SASs@A^@Yrh+r_}ue8J_d@_B$as6(9@J~d5z!3n%W>=Br+O2cKaoOMK z_LcCA_v{DQD6{1T0aaSDbV$;gHxWsbep5c-o^_j^LtMz|0ej58nPZeyN7@XGm1;A} zXE1Z}&*p)+Abl8jBn5DC5~KhQ;SkhC+6~XMh zDW79ffO38E9uWV5F^;IHE^j31=boBN1f&Y9UYcL?h7wV3$qDDRtFBTqHnx5)Z;FzK zIW@riZ?zkF9Lyu)Yq)k7?#2vUW8F6H->zeXKvSyX04cFsWP2r8B=)}u06{DPa24Sn z`K$055*{#9l^_y1 ze!?S&iUqwCUgge>9g@!I`Fj|mzi)7@?lzNqk$XlYy@9{Gph<*5#ZQ;6UvP~eLoK4+ zRX8VmeV9m3H0WZ5$vsyI)2kpy1N4%DK?v}%bdfZ!&!aMs7)$D7LlD>}XsWv)7Krd= z@h=cZD3`zi!=^~1st+i3L5>?7`w9gd>1z~Cv@#(pV)R|sOEl$}eAkW$aHE5e?o2;0 zXa684Ss;58wE`BliYF}?zlPDHGImux2cSBsKZ(HL2@6k8x!enCTm5ASpG^p~kdIt- z4&u*+dkVGAEx(&h3rlKf>jefc2oDpuQ~+v>P8 z*4B|8Y~$OE&$NR`;-OPmDs8{MgQ3{tc)RqI%`I$1A`$$s z=QB-IjOStuA$<@2dmG7z8>m@*B%M*c;)w{(esUG@KXKO4-P@Yv8VU-SF=F=FHy-=n z#&R|R+?o=gIgq6q3$}E_$pcR$n=g8|*D-4dnMIg?)9={wf9O2F{>nDWOE`@?_8%>4 z7xnV}w?sf@6JWLlkYVof<{mpC;n{?|9Vv!@%Ck_ftrMF->lpA3U(smG`P#S6lADFK zBg6K|-9un3)Ge1ylrf@w&oT0sPJ2NC#ONR!s4Nr_`sG8h{AP|G+B)nWFgB@3Ve2htS*<_RTQIYK`yh6>QCikQk#opAb(hRWm zXZ=$f$)Zw`?`~cu3LL~e3ozhx^$NGWQ2A51o!{r_CDp+8<3C1LJVs>Bxhh1pS)N@M zo>A~0_wAl4V*k7G`1jy=oZm?!SA-N?D9P5C-(ru+t&?1~7Oe%cx5&eKDi^?vwN2NR zwtSUm&)qvvSY*i=>Wv2W6Rcgt+YoDB6?W#f6jI`cAW*iwaTBh*q(`?ihQasKN+EywdP?M9XJ1rd zgVI0&CKP3=hdba>i0Lj1e-QvNxMV1C1^Yt&Ly*1@zhHxqw1Um682Pd9V@|_Cx*!eo zZ%#kFOupqjYa!+uar=8)xGNFF>t)Gp*dRunQJb3b3*X>}Hf#$_+U zA3@M{|F6wrI1vGdLHnPtfbcz{kq$wKf9KmT_%Yx0^Fap{qzUyJgwZWO2LJ>?`@U56 zI$A~!hc@YbW5~%35yK!zO9tU%bSY=)Ft7kkap#}mebgeSgqX(teu1vjN7q3Fo?tud zrwjQD@y~;vbZ3Ux=X4kcL*2^4>^qv%_1G%pxh$CPeVoE3;1pv>H*UtUfon@wHjwm9 z=d*4ID$79xiYnGbh^AmkId5KD_DN@W7p}RF)U}D+-f{w{O!!8-xQOl%LG}U+)$NdwNU``` zLLRAd4k5w@fsxQ-wM}<8|LIKcJ=*&__Wyvbn4d*km`6G$@?TMX%#J$h)sRK{n(P?|n+TVI{k8YWLY?Yvz(7TSNpLNdV{!5dlj`29%ITpmO{+oOBew zSQ+CQxP3?hAOgUUzxs;^s31;KP@Z9A{HHcSi*T2N+i=$6lmiIqw+J?rAs5n?U`Noq zQVNTh5%jj;_Ok}h#vQtUO{UKl>q1}18`xO) zpk&u4{{hzi4_8VlI9E1dkBX}FP8`A-2WGZ4RT_s>BY0%IuL5li)PpO4wT z7F6dQV80C_!2JYC0a7LRBFUFQtu#NcUh{;S+FO#~$+M^gvSN;<0EYM#J@h2Ve~EOo z%WP%HBjTcRoQ%DE@=1<`sosOw)>N1c)S1;t2dqn4Wg` zZ>%Q_G=zC;c|O*eNJc;9af_3bdRibtpig8vA%25J)?6h8+UDCf5a)lv4k+U=yixUm zU1cgAF&D~ifK7rgEv`OV^v{qc8Q?9V`Ki@)W&-r3GO=aA{Ji~1SK$7?Lg?R@Y>Y!n zA*uI-{575=0C_3p^C8zcwtADi85>djgLx+$E&-VB%_BY>&LDah_irFIfCzx`o4EO* zcds#FQTYXK9N&M40D<%0N9-@Z{2Vt8(+kPyPn4gye@Oupz^93)fqdb`F^`o+ifagB z?q3Fa^)Sf{`MW-W5YWEo{I$pR1Cp}R*Fu4}u#DAxhpc@P)f=R6ew`a2|6e0wUXTKa z7&!YFQiT%o*Ev17f2GDW0#*coQ~)M27xFh~t@*v(AED9+>z$+k{Wp+YJjZ#FVf=vK zwDD!Q2XyT+&f)V+hPXav3c(DlUh-qw+htD!(~p0&-`7^tE2#trGG zgmE1?S3q?_!V&B~x_@!aA$}1819bMOqy|V24BEf8#=RlCGeG4M!wA=vDoIEL4x!^& zAjH4(ZKxo?iTx?7pCXE5Pywi3=ZSC_MwD#hETU3~Kq3AZB>p$h7~=d58vCAjv|~v_ zCI0VR@qI)K$FLveO0aq%f8+Ga6uN$G(Z+r^*k0JVW(1d8e1foeTKmVaWJ&fA8%L@} zgg|ZOEC!lWkQh@C60J-d!k!aBM`{4;AR@r2PkF#q+C>CttHS-ySni9PE1kbYJbVKa z+1s(o_sjjqW4V1H?O-8aZj<<5;JJU_sugZZUiv!ycWHJhYa%2*WbnxU=$jBBVClrw zv(Gv$VqjbQ5CKvHT*N^7I_qd0+kfJG)cn{|14smZSY80%%M$^%-+c6}?anLR{FK{h zOz_R?80sz`(WWLNCPY}gFUW6Cal-o=XwJ#`2*xY&3YjndKX~HlEa+(S(}+~{v9ca6 z;43NE1MyVQIaeEqbP<;gS@+EdZcHrbG07x`xb`WNUuqcu3DsNWSbBUxB@&_bZ=oYw zVRD0na`f_bVhkuHZWTl-@qdp+zfNob={>4&W*u}%DF{Q*`UIB45+fr*sok$doQ3yc z?v*b|`)v^F=xxR&gsw#4BXr^dxghRC5L7=w31U~0p#tsmJ7vHnTL*Xw;N7~gu@D1cU{vw1#5dEb{fn<1D4+c6l5hz4#?2_A{X5xRwOdoHehxH4l zOKwCy2Tn^5V} zy6X8buOt>1h^%vqUm$c@4P1TkkM}QwEB{5hFSuxWFFW~yUuSX|LIdUooj!67Nhx+O z1P;qz-AeLZp+$iE(miSu7CD~`+9jEN<- z4^S22hQX@_sfW{g^8Gep@LXzO_ABfQLoYT7sIgj@(zsvQ0QcdvBmG{ zu5*iB&wd4C-i$aBD~~*?A+agwU|Ys~60UhS`6H@+i_N|d7YCq;%a3Ssel@_8kj;pB zVT@rUqS*g*c$x}3-<^Tn;6Zlo$a82B`#7!oReiDiwiLDYFi5b7e&e5Vbau+S>xcEM z&AjV(qW7SF#T@0CU{IS9U&oTJ(F%^tk}Kc8>IjsczNa_zEoE1J{12N+W5LhhRtqU9 zxW~yoL}o5T*U%t9{QhDap@-FR@(sm)e2mpU=xwDVCBM$^u^U} z!p)_Kg{$b~b0=Ejg+d%;s1;fmhY9(slp&!*{G^i<2;px$dB*MQpCNyaqvxF4tDI*=UopLlGVp}`49u0>pZuMNpkVOT}k!=LVxyu z-Q)wt*p++<7f7LdA=yZ7KI@GJuK!z301Ed^_E#P!FZkLjvB0NdKP9b*A;W4m+ulp+ zgq2xv9HNk=Snj(R;rh6MF{&PUV`%ZI(3XdA&AQ$I?++s? z#?&jlu~Hk05XkT2BZ#h-W0X`0`QT>=0e_hy9c{AW=Wq%^8sD$ppa?<(EtHcG+B7Fm zg%P+mr`1ok9`*1Ev^)cd#K?~@2yU}|8EpQHz{Ff+_&v(_mZB2Wrv2`1;_)MnuVHI5 z3fx151wWvznI|A=fH-y&5zB~Jh#@uCj6>eA4_rGR!*$zkmgvPlYXKo5T%8kLk{scXM#{n6``Y>PArpn~^=%wAbD3T{!pI zc_&DG|03HTx<(O&ck;hu{}0&0isD-QzkJFd#IgTL0Q9e;UgceJdJ^1-AaJT^*`wVn zaO&?c_}(1VL1*_iMwgxm6kaklvx)vAAiGXnskIsnBL#*uqYJrq} z5d=!_J0ReJ%8bMrhWwpnJ>!l+`o{U$-Bp9DoNNLFA_4>}=llmPLZEY##RPG(kiQ6l zE;vY$lEnRMUlM^B>Kkxxa3umE|1pd1IQ-)5O=vs7BFicH(Ga4b{{{#QWRkLSivSRa zS{5h@RUf0fwa2H6jJW8pu&wb+wf={Ovm;Kz&ApQqC0{p2b9Ea$4^mYF1Gk1B`-SwmS^OpF{pq)$l%K zH=@|!+6vYvoU1@m0!aWIFg=9)4N2E9@)PGTaAh#YvwLz4;h!S}qG(&HE-bQ57mcgd z%>9-EB}`=W6`+Dt$$~Sfc7n39z6>V-V_Sw6##bT&7MG?3rTR336?=%QgVck?*M(AJ zJdoYT#mx{R;9LBhuUTko+2m|q_47!GUj#r5PI?f2yXrIavXTM_3e^I0ZT4xoX7|r= z|KTvs7}!Gme;5%Uz5l&H{&rW+FffYaQEM(?do-O4A_S7#KjtIl+lX9&L=y(Ou#kWy zameuq`7cEKcHNVd7l=`C=cWkGVi>Kq`k)={_=TB1-vMuKR}$n*#S5y0Ppni z&$W^l!g^jl*Kz(3$tO_*vW(i?0$vq8?Ne;xPK7>D@+`*3PSz^;u0uFyf}Ul07CczL;l(qQIH1%JRJ*!^wV>2BR4%Ept|nX zIBBmF=!dd(7FRluzk%{)OZ4Bl1t$X`V4)|ioI(D?*j{^#dki4%fAujtVv<0aZESdi zYqdiB0z>}B{ad@0QUN%KyeF(p<&A%PBU!qzl^YlK>zEn4p4)p$?+2t*>|@0M5Gtf)@c`DgaE3NZ z+=mEX5&(e`gJ`p-RD<)7_lUUvswnJ`dChg^UxtyW2mna|9HNHch#_qwG2lLQPY%j6 zJUY%HOmYP?67pAkcOwGg0q5*5;C^XRfVkNQkphu5FS^q zkky(}xYbP%%XOp|KSsth$MM{!I_FH{UA0U=gy@$*Ez2`rT?XPnr(W%8a_Z9 z06*OE|D6GR^!)d5VZU9H0(4&WYxr3V>0`JX34pu-SPnhMUHjA-bh@PdT?k8Yn1_x+ zBagB`i?)cvCb9ds;KnaKxr*)rD|~eGW{tj#Zai(WC?hJ}CakRd)K}K9#O6u^5kNq`u1gKDKndc2UKqe-w?DI#bkOB)Jb~^6QR^Pu)1@!elWTvQC97P2 z4?}?#(XP5&JL9HS6|{$I_CwaIHXKM7y-E8Ki0**=wV&m++fh# zbY7V-wx`k*0kF3VImrU9{n~w852|bPDyj+YZ2;1c+G6`RnBI@%<34v-Q2Jd-Ja}AHh!;WY(}*dZPMau)1Xk$=V>RE(y>RUol8zPunsV4i z-Bsq{m_-Oz<5Vz^$X>-x#0<4$-w=Up zLX1Nh$vw(gqk+F)>EecOb3K%V^-qxl{brD@hcPl8LL?YSwICZ7OF|;wT|rf$tr?2ljbKE zlR=0xF$}g1DH0fYO~8x0d&*7?QOiv+xMwZ+j#S4l)!Xtt*^%y+`83A&T~AegmEYae z0cjh~z$NOzwg~-q4KcWphnfSjhnZ&-$S@xqVB-)&eVH5q!yfAbA10ajnvFB$OPS8u zvQ3T|jk+;T%O~6uit(7XFB@vBGxwy*Cy0-%Yw_1fS2YweJH#6t9TU)O|%5GWS? zigQcM@GKB?Uv)*XuUy$<5UYVC3Njv)BtiS>Cw)tXSUJPUQNe;_rLPdQLbhGLT@e6n zM7k;mEU%qcIFCMZ<4cGNC<7>`1LYnp{=e{7%K9YriChrP6G2xK@=pU{TSq@B#INg% zz;T`h{+1k4Z-)sWB0z8;*7@{ZyY^fkSn%mpqNZVQ%hebE7_WV9Jz0J7lCOHebNqD( zfNUFSLD0Rcanwbhc^_PUq?5OCOl&U1@A`&_f$5_d3le8w#3VMziRqbxxa;RullEoO z5?|T2CRZxTqY(ktATJOL*Q~k`7RTCJpM?m;O>}H4j-3!nkN9~Xfe=s<6M-UDTGUEE zQ~e3baA%Mr-O4a@>;<Qxod3RiyM3X_0z`wFdFJkbewH{~gEs zh}%Bs{g}Y01WUI{qcyz@Mq4#_*3p%#(>nGl4Sy(`7eTIUImdvL036m$-#qp=LjH$= zawY7&bXeXuruOqpyF>rr-I2foQD)s)X&$ z_Wgtr@*j#206`2v-VKnrz`{GaeZ=wtL;Tto*DtDX{i02JM8X02ixAjFv@Q_xmmj?$ z|7(9gU52%2#31A^DS#_OAQuqHEd%!K4h^~Jc3my&0)|%S|5ezt#DmgY*snf z5d!=yamykCR0{FNApd-U5WJX2lST%D+Bfpw`k6(I44?!Rq#S{Hb>#v|bhDvQIo5Rp z@>hQ$f2kzwx78n4?eQR&!Y!tVtay!R(C=9Yk;04+nKx3w{nI$yxi-_K_RtC zM!(jlSCZaOL{)KJsONeM^#OJXy&p|EsNVBP6OcHG5Ew%c3~u@U?xg6S5du{_Pc+5= z^@b4uQMZEgSDmB)qNiGTJctm;oM!{~O$g~?w$6M(+$Z153ib+0nJSP?P5aS;hjn!s zQUFN+421jzDhIbwJz*yxA|OT8Fb-Mhtgp^B5Fub3_(y>d(7gynj6+mS-Dmv_o+V8P z&k##Qb#kke6yP`zG2n>qgWhG_K9tBEFHafxkvN4(vx!bI< zF?3j$j{`{o#zfLXYml^9+Tm9UNI(Bnv0vJ`!tqzwzEP?_^f1RiIuG7k>SW&#yN4lv zb<r* zKp+AjUT}Qt^uJ>6E5)I}1>f0Zkqi;i`b4y91{Xf*)dihxxcX1klbx3_G-DytzMzc! z#r=y2*uii_E`bJ%4=vzIF`Yx=srcoB}@pZDL8zqQ54Uv(z>A9PqaAqHe0BoHAWs0QOHL+Y+F`X{6> zJBfRt(+GEBOP@J~p;_oLAFG5R7(>tV=v6qp1+gh1nyaI_?p5)p71Y?^B% z9X7t8Tob6ykR}OC)b9@Tk6USPMBlOUH2^~X0;!(_k_1Q!kdMhd5TpP#jN0T*E4R9W zHKy-Jffx`GP*b2E5Pu!-pO^rcCk1dn@{oUr@ts-;>`QJ&k{AtR$iE8V`P1V554ruK zT9SZqa3?N^fETX1c1Hw&7nC+Uh6>{Ac~Sr3J_q(K_lO9AIk=_|k={g7*ALRYa-4ma z_B|TZXC`Hy9U%eeqUUe1rHABN=mbx!=U^HA}&d%>SS3rJi!iUk(xR>nr9+sh?+;pT%5eWIWFvt`1m^gb|vr9pJeF=dGh=KMR zI;|00Rr6D;55F%K?GGiGBZ*&{_Ly*AVZ?fO6^4#BJdc#r@myBnoz=H!%& z^87ni|M6(bZR=QzLFx&-L01-g!wNOh(!3E8?(fK`6s)vuWu*$HFp_2K|Gr@WS8i6-OJNU&B~-_IcvOz$&nuXMv_C-mFa2R-x4HDBZJ%hu5n-A*Wgcy>$;V??WOr!_AN?@;nm1#`13 zs9{;ukPf_DI2^F9?-RMJiIscvejg<;PQKKBAWt??YqeN2dm)#Ka=!@lZgmaKi|#w% zmvDQ^q|hSr-%1ew+q@AHo36TUh(F^0Z?R2hkn8~7?Lk;D1}>sq42B`cAsF;fbheYA zU1jGec#y_BP7lS%?(61t)Uoq&yl%i3L!_O2s<dHlXXx|=y^NBu<%Ii(R`*X$ z%;Pljqn-nCFt{~&L&@7rF++H(1aq6*o?bq5 zrwI3`3O!?e4+7Y*a3>rHfeK{VFBl`XH-CR~#TsGo=lpz$_#hp(!L=Vu7ro}vLO~43 z*SQ1oU%}#Dr9e9W#fLn{BhKHv18l4oAzpv}bx2o$3;j$`b3&<){n=e4P>3pZHD zaL_=Zh7HUp(T-KhFw7w4sF_1EAgk{f`I{$$d}+0n!NlO@dL7SXezG-6uR@z{Jq$O7 zs@FCExypND_om;>Zomiz&Tx=Ibj6!|+>u?E^d$HvjBdIQwO? z0ba1vic-jb^-CMYv34>z{N1ZN4*Ay!M0JLwP#Z$}fW-Hk#40dueB;Rt2*M3VG`J3> ze>*?8h9qDMHP9mQ6xQ5U>N0b<&HY^aTQAkv_}q$`USw5F!|MGuI^3`+hZtLyY z-{CT?9>P`M&ChEtOxM4GJYN7S<8j6?LD~!q@fQKbtYJ<$h`#r@*(3+fxR8d8NOc?c zJ8ZxGC|u6b@Dj~0vK?Gl!g;k2^FKGE!lTEV*DBgc+_wX{0UievQ^_3Hk#IZg+M8P75&OW6T3?O)gC~+ zNHlNy-{o!&;nC3Ufe+-ywhZMyJooA%AQNR0`xPFT`I}UHA}90^mwSkV5_jL&Pu> z5PuatuF9mGEzmxC6FaJuM8xWCpimCU4mtde=hj6CY)T>!frx;O-}@p&0PpgZJ#_V6 zm#!{5Aly3M1LFF{>Bo@ain<%54XR&3T(4LJogaDb-v|M55Rx27DkQ=%1Np` zX3z@p2X=y3f1b+c>R)+6KVW(`5x}jw zFTNyW!*z&jb+wWv#R! zf0dFR9tHyp=29{X3Sz?Uu>Mi~u{HoT#L(j@0YvQo(N{QMM8k=Ju*VftSCR&N81Q8- zdb4!l-x!a^-z?QRiC@i0b;>OVk3|F=O91G!X@25>&8QRdcY!{F2zarL;fIjFT=gP} zzyQ(z#wEh~1_^-16X!4FZ&v??{1tn@MM_BnNdOv%=67(p6Da*{7NW4}xcBOGq0?~< zB&V1GE?xko_E)~tPKE(lND43{1E7Ia0m_H1oCPKckOj94#%lQAD_4P_+Vsd@`yzxC zU2m*JML-(F-QvgvilU`$1m`9Y*DoVDiT^!eQ1wZWxQ6l}WQck+o^-o5raN)ow_=2V z>u|Dv0|+B+5_gFRu&|vX1h@l4lAbe=B%lmZ1&sH-=wZ|kB8Woh%5Rg)RT|WRohTuV+8tu%nJYk$#@Jzu7+QEj zNCF@jVDn(0{YJ3pZ$k{oy=DvU-=NI(8=;|gU9;baRDy2Kx8X$5A6gHl)~A*JN{Et z0l%;P!D}5PE8fyICC9`ls6pKPksIw~iUigFFi>PbA$=hTxieYboRx={5^V4m2@o+W?(~k5AKeYaksW<4lF}H(p>h60 z=7m%MQvyI1h)`kTeTIBp8RCA4ImT0b83w5*8=v!j@Lo2}OZuEg4$JEch($ejy9k2c zN8ew;NN|sG4=d^o-1<73BT@jTP8Fa5&;G)a)B7tMU%tHNcP(o(P-i7SH#frhJw4_EO9 z_O2kcVPQ!_Oo72p*9lM5Pf*kI48FI9MC19RK7Aq|HW!oR)>ThnYbi`0Vx9&mjV{-F z3&Mf9u=ihf$bjbGcb&**E#)LYg3#Obb6(@|1bo5&ThH?#V;c#zmi)wHiAoQ;qW4C4 z`1D;R#C9LU)=Ff!F$y*c>EbxK_GirT%4)Lucs*G?S5L0|d-Uve)N1Sg9ycCCLhz5M z8D0qz0z`sYp$qr(BzyPRxB_m$DSp&3JCQ~8A0UhT{RE>oC;AU%N~q=>_sV|ol5q1S z(%VBi%wC~ostZ$wM>m=+e-SUkip-{lx&bx*q3WHh-#Qz~%wU5M+TQW2iPzIg^l!KJs)Lb!^J$}LoreRTT* z89lCGAUg}XErC`djGy_>)4oaZG+PW`6Jy>bca1XAR=CIrZU2!WfX`dW_$hxnr|t&noK_XY$N z>_P6LSxh?!@f!%~kAiiqmDZ-x(mT6-j0g4mMF3cO=KX#DyzQI?w~~pY4Tvd-F*8D* z?(%HP1dyHgL6lvrwQCXbUr=~hAw6J#WJX(#ie?8p5D@@^6*5T*I^W$)20!w@rTwUv z5U9TUno?9BoHuH_2cX6Hj%)w~A_NwLG{p!2)z@*|%SyicsxN~}`VxM>Ym-H82`QK! z)ygTVDv$QjJ+3UWI0UFHfq3_B+2M&wCjl@5fHRP9y7OXAKVwZ30ieu-alJZ@SQl&Z z#S0+LSDqV|2H5J$L%o^U8sp=;cMr6zLUQL5ilzTbR7@<_YC2uzeQ_217|ubTCUd7GOVA2 zkVhK5hzj~B@IBUEWsqK(cF0AsRq z$%kG+bmkd3Y(A%jWBMbs=nMJBh`)T{6pQ{9T>1teUX`2A`Ncr}L?Fb-e}!YI2E_Hd zc5DIq#-UOnDL_mJ^k3Oe)_z6PZQJ#?e_gDm>tUgB^b-v(lrV;3vZ9v_1DW^y>L;#2oh&g|$4CX#zdi0Z3#teE9V#8?9|(aV z5)45DDS#vaLi$753s|5LWe>ttI!y#)E^w7s!x?UZR zgEZ$}sRu*|X#NYDe4j=H)RA_bgaB|S+Ttcr9LQyrI0M=Y(v)wfl)u5+K2D_(0kYqy zJbX6EU%TZ9ffQ-jIGXdOn=gJFAAs2b6jFfD=m~-8{4dTa?W9_-4+L*2bt)Z7Dj+Gq zVIW~<^qIJBRR~%qHQ-3dUqpaK7F34{VSm?9=Linv{*&Yi&0k^rhWZ_VAQ7b=VeII^ z&^`e92a5i{8FMSh%kiz){-h6{T!dk}8`y^kxD5lfL~yyggfG)yQUHMv{+nzq9lReH zBe5w6fKi+>^#r3jHGm`mr+Kq;z;yhE{MBU>zkVYiE`0&yF4aIlEE^n)7%=2-L&iwo z<-OmWF7bUN0BaGwX{rDPpIOD?+Zk?wza<4&A)}r^?sMY&^)aMSxgvVx8*ZUt^F7j= z4hV^i6u=PyNB|`MHzJ@4H!4Ig@rxq@APNKp5g@%dpe%LC62CTZ{ze2W1Q$mU0or=o zyh&6dMg$1)OQbCBe-tdjqL2Mfb_deOc4PBL;e!~OA@fXJ$=8D1Y}IT%@>eHgh?DDeh~vQl60OR zk-_E?#DF9KH(o-@5eP^j|83}YcyM>!yZJZcF;UE5Kf)mT-Ks&vJu`I7{H737RU`m{ zOP73k?V2y&%YW(QmXsGdf=P1~j~PGrR2?sHt{b@$#&0)~T6n+t>glO8LsAAko}Byv z+63@su1p`mBj+t2V%t@Oe}m2G`Kpo%K(O(fUNW%x|L(YB8F#i=T=xm=R8;~eVn{n; z;7)!SNv}An-UmboFk_My$lq})H6Bka1?YvOI46|?6goKl3RHNjQRYik8HfllDS*{| z+)5Dv70GuasJ-1G962^dsP+U4!Huqv%7^7qQUHMw0VV}#u>K7rUu1=yod;ziU|yec zogwpb{ZYr5UpbJzUz=0_WjF%)tLx=*|I)FWf7H48M`@(K9;{XmwI2m`N8hB=*VM6( zw6+QI->1~tb{vTNFK3Rmb51Z%&s*P6+WnNO-`nA7>Cglc^Eh1r9HN4YOu-|D;usOH zH|hf!v91l!*UkVO%gUo53f5gE59(s%CQz7N)BDI!u#eUK_I1SE%ZM%E{1u!+1b{+4 zrz`%U4oLu!o+bFtF8=-G3=lV;m2PKmyOXT^3V8#rfJuS&r^#neDBc}{$h0pI8IbD; z(eGT_VT@*iW0Es0bcjK(A0s%I!I1SeeTWplaEN1BhO_Y2@Xf9e%xD0&UR7Rsp3> zzM)9ZVr`AFmJbNT$-z~}WhuLlV|1NkWpiVJ)infqsyW0-3db_YgCSW3A^<6YBo_MZ zvIh`I^j}w|MW(H!0KJ#d?+PIhMXGuq29Bs9obLNhIKiLh|MR=5d|6UQG~gP$As)AD zBs8#eYciM=2qCq}@~1#b3aPw$KGY-1^TdF^cV)8^^yKGGRWBGpiU3R@BvzJ<8b%`Y z^3WLsrMMJsfOiH2eYycbpyS0RZi~A~^5a_!rsrRVQXLV19W?mOmUVW>9GwCjbdWMA zE&@jI3HDRT#;3VQKJ5lRz?~f-OPi-*KnBnpU0cgZQo{V=c_@O}6Bw-aFq+&9Myq9; zf$}|@5v9K$3@hK6F4)b_Y$W5|og~LNFJ0$B04<0PF{lHcuY-4bNn>Y|kHB-WbuXdx zZK$WR+A`4@iGR@X^Cb%(KxSgp>CbWJWT*X$8Y`d>XnZiJ!l@v=`l}aQdw#l!iz6Y2 z&n3z8|Gt_mDJ&Q>vnh%X=)W<#;&#HnUe>dP)78K^#m(A3dO>td-$(TSfw%!$6oC98e$#!;qzVC0>2C)znugasLFYQDpM95j21wdx5}pdrMNepr zXT1G@o-vwvY?kD`G=^9hg)E(#-(#emDF)MHeA!^iG9Bdvo);_=+% zrrmGge%$YaIR8^#;qOZYnX^fHC!AJeePGEeKyiM$d~eO5nyolh8_!(d1@E0(Iys2z z?`-)uZsC2)XAAkq;1E9*igG7d3}JnR{I$Pwkp((P0n{$!zw%4b7#I=uF>dPbvTC|^ z5OQa_Xbg}7tPn{qeVAx7(-MULiz$LwVx8fZV=vEu#%)LGbj*ID3! z*2Rsa_rqBhQ;1&@3vEtq!E27i)L|Isr67-mG13VkeoKOrg1iSiJ?eaE{VO5qQu7l8 z;GuFSSj!9Xr?_MeKyY%Mbkj@s#&44yLYMW#q8!>-DwV&a%ES_~7YtA#IK+RZmUM29 zl1;PM;G-9;gd{kdoBmztSl$Ri{)YiVm%;$3+{fivpi-)e7|cC&?6?|IbbgvhkVsyx zUbS9$g5d7BvWlxG3tne-y-c=W^Yco*ZGVI3BSJu61~fX?dsDb-e!DL#OKYgj_IY+w zG5-Fm{(Y+yfiT$G#2e))M+6w+$L-g__%v_l+!OwQ|D(Yk3p^Bz0k_v!B?2Lv2!R@_ zrHE&PLEjHltNV4W8aTgdupL-jBsj}Ho;lY%VW0&?(0Rcl#+Ao;HmGKv|9_@q+Sn=$ zftY$AZad+=Te#@!b(Z^GcU+Zt>3u>|NykbM0x1@uPD{-n+rx^oa5l-SvAmJw5C9c& zdWaCHC@Be$>%%R9)SYs$SP0*wnjs&m?v@QyUL~kAAQJ{HM z!^N;&X*#()Dt{dRr`qFKedJ4gc7e^<&?Hh@dS)rP@t4;f@^?f4_6Jfw$PU3Fbr?G#{_J)6oMWN=PF3m&$Y~J+ejkdPdPfAj+9P!@#$!PO zkibO>+MmYn{UzG?AV=5oq%8!u1%l&P?vM(jtoR7Z(O}_f%Y=aR+vZ}rfuW|r5Wk24 zM-;&2uV5h9!9Y-Mheil=B1Eh6FGHCN^S8P{($8OC^0U6>j} z97hbBECu5JwP|0_abcBZpd*QdM|_)`zRmvclb~r$L<){OnvYN(Flum3hyI)J!DtgKKn&Dj6O8*85wMU=2@N9z#>8jP zR)w1%;iFxvxy8zl!NM&GfQSHt&Q1Re+%XTh^8#1`5HYZH3Ok*@ovIOPaD5}V2qOd( zNaa1K2Hr%6`fXjqt~|!VR7Akqqqq;hvaP1Of+mubMK*E%1^3SgqI(8+!8YF2ML*=u zA_DZLCe1Z>CwU9T=gn7=$=uC>fEl@ z%ODGzY3k#3VNw7!5U&&BFNy>>)BBJES^v-D{N)ZOeYi@2qyP^2Lj)M|Z?P6?6G#Oh zaM<{ksi9 zphF&c5dj8<_;oBvfH;4FhyXzkqCg-OKrQI+w|}_hkiY7e&n_hwe)FPs3kiU14;*5L zyBGK0_=G1SvNyU;{O>wP|Kw+Gk^n`t6Br?&eTz|`fJFi!exwO#&jCE zZju1>h=3^xfVMIeM8Fi6I_^L2C!}v%T>oD7jS!F&$+jl%REDGTz!3tlz!Ll0Cd3~j z|MGbq>@tcCLZE|v$I9b;i^R`RxNq49q*#WE5D;Jpbs6r%ePkj8P5`Iq<3GyKS;&9% zX3rg&>fr?A%~ksvKBo$>o%Q4s+#7!hElqyUR-fh#C$CdbBAmopEf`fDw!sg^ez-3Mfq`p7D^k4H& z+k1sW&y^IwjKXbj!+~~erRuk(I8R?8|F5&X$mYH$sQ^f6EaK#@LC9YqNx*57 z0XSO|4X4axh-buU3Gyl;pxEuI#BsS!;a>~u(Kc4&9RdPru^f=WPnQw&Sacn*6bx8s z1)>$@mgX$ok)-$GUQOhx_UtE!sQ(5#fQOL=U_`b7;n4XfM6q%k{3pcTaIGtFq-6LP*O4B1WApOjR>OFr~0^$ZjYN&34HxfvX{US~4Nxf4!PA8l(L9X3p&{Nxqj2$?Zr zJ8#t3en|Rpo@pQu67G9Wd9K;9hAt`i)i z{T6|(1Oq%k2B?8k#a#i+dFk5ge5Z7g7l39`1JPhbVn&`#EoE>E#7p)Lx5Zxp#Dj6bc}gTB zd-5^deGBQz@HXGBq?wVF#=Q`oV87F!eUsv8zw7_!cZknGObmfyEQ~M`cZT6D-NMl`PL?7wNkg4uc@8zKEO1o+V=*dz+zfH1(?4uh0v zf3`Ir@#hKo&jSUok%+PoQz9vlv_K$2VDqo=cLw>V%Z#ZFD|zK{k74sa+(^1xURS?% z`62+%Krp`shkm~af)?~JBoy-BeD-<7_hg?VQk=pED|GN8(t~|G0s2H86cJ$Hh=3@1 zT?=dEjeqf3*DU0}`sFVs8P`cc{DWN*9-%4_Y=57RvjiK&xcBL5MFh=Khf1O(P;PiZ zHBk3s5MwRmn0F2QYoX^Bn8d&x@NW_%1y$?>8d$H^Q7dSZpSe5<3|1dwK@E@+phBAx zdn~dUh%0n$p;Ud{NO$XWL@D)vi~$8A1a^=XD4u}n4XaT)RD~pNLktM{cd;|r!OlQd z`a=8yS?;ehp0-OHbtl5NvDGf=!zRh1r2pSIk8$eV#2^RxmtoL)A{lJ_deZyluNK=3 z@-Lroua8+QYioEJeDR5-{d@n)ZRwYuNNVe(n`L{i(CecHcx5HI`W*A}^#(RNUV^o9 zv75AUQLW?cpiQ8FRd)+x5}1rY2nOvy{Mzx)%e#C6WEli=LY+eloV#%7$+Zx}LLHh5 zwPbPXBInK#5n!+fb9LkUL~tZ-%W+^f0_rCZ1H~B7R)zscO5p{f5Cg7@)B@Pk&4rLx zVs6`qRjIVSvCTw=+qZ$3sd>x$5PPM0 zuroUNE@x;D7qJU!-yj3Q9tFLvY2RtTDYBT>`90YRIK=;mCjbV!ECRu(ON4+pbcNBq z{^vK!r-C3w2tX+=!{MVckh(y|gH9SiMmC515sjt~cp^Zt;Nx(xA_9_s4xuw4G9QRv z-2Wwzv|Q~(0CZpJ;EK0`>);NCd@{0w6{cK&at&@A4ih3ECIEDUA_A`dAK!C`Uj%?Q zL?CegH!d^q1oX z*2_v-B)MP!5ds3#ofsDRZJXmNu{~tLFOU_#C9{$Zf{iaCKp+C3{t371{$+1W_qEqx zZY6_2JPw$f5CP+N&lH`;b&%?Vvxqg1;_joX`76-Ryim8Pi|wl~?Qn1gf^eh6NuBA`vLsNAc=#>Xr6x*!#`r(|KPeSH@T*WfaWUWuo0TlotJ`?O$ty96n4BSWm+rlKL#QG z7|d2cl7Ji}S3l>GmLvh<{0;f*9FqWu0EoeefIf&{Qh+|2hyY95tacF#20bU!BiIvq zc^L?reSo!FDf<8;0#qjnz+o_e>z~rr)~n_t_XVk>ME@rK-*zTazF#Z}P>l=#1@(tq zfnA0#TOp#OKSCOG6XFZRl!WY_AE&U20yD=k#>z>z>8f7jk0`TLg?z|;WqPAbEDuP5C<|1)ej2!(6!x71fiU!1?%=Mezvo-Qx4wuTQ*$GkH0Hnibnd|HMc zQBup_SGkWw{{k!h(aHYnn>n~Xob259(aVr;F~2h&M!lQ`sdRy|twj$Bvp{aaf<6I) znihiD)fE5qJqfkGA07B0l*3isG=*DPhsm3MBs9f zQ=V?3OSt^c76$b`aeK4FjiQi~YQYy^rbFe~iHML0y|>xHAZvhaz^y3}fQZ~BWC{7y zHA0`Ty9;zh*wB3csNM3&hiNaEne3CG~ z{KnN!u^>a7B=2OzFejVg^*!p*)Y8^}iRTM(*uyTNxrW=?>u}%@V~bek=coV_M6QiL zyy=V@BvKhp{PU~J;g)xk66avSan8Iubm$dC{C^lAk{Viw3O>5Z;3%$6HWAC%hU`O3t(J1w=XxPIz|sUQ98$c>_5;ELZY}B+sW(xtSX#;CyErEV!^nhQix&b5OTN&8lP7 zXB*dS9PE@v$wol|d}iQ*f)Q}l?c)$4xfW73LHZc3g+v1sjJLLtRw=H*~T?7a253d!M%o^7kz6X5hxZ))ngMNFM=;qo>wx7W_9pl5@IxLkRtgS zA;2XCI1DU`p%UacSIPw@F!R%(qHxLY1M)~Bm**jJ4wJlU|&19<=K4dWveD|h* zu8`hX;7{ZHQ_PoO4{+%b`iA-5yNz^C_6JPY0X&(_syaAD$iKKR5y3KLm(E;3IbqE* zgVRFBpjpMM247sB+(*olx?--d7Na}Y9J^P**e%_QA~5E6xG!uIlrN!p!2I3}M$`cD2qqbw<5FZlLj?8Hb`X_!WP>0` zare#e{>qxSc_vK=bWb3wjiDX5I0Qr9uTVZNn;8ZZ)8!~|B6{F;{NxQrJXpa9EC2Tc z6~@UkT*X4B?Ydv-bo&57j^LL*Dc|Qf>|DHqsF%i(a9FFNw}|7RX2%)4*6Nh9NJ1OyHC%me5K!tc-&KA%25O zKp^AJtoTl+)20xhWmi6( zG}t3jTLZEGqOdXx2xk7dIx4)TTsT9R&6L0xE9U}2r{CBD;JCB&5rzdQIMxpcmZZ(V z5{uYz0)Z3*M*lNVMgZmW4?LA)5JY)A;uz0duU3QN0~XpIk&lUsA45jC=NV`kH}7jJ z5OpyO2tYLhrTZI&=T!8Oe>qTHU*pZMCBglh7#d-Y-r)-*p2j>-X3l!ZPFQL9J}JbR zh{h2HV3H0fl`k%U#p$+?Q+^$M^K{HnRBDZ+#lqJ+Od(v1^7EZ}Pe2lec)r%8Vo}H6 ze#&=;5GcbUgt$r3v_F7BivZ4LsUiEp(KzX*V}&wtht z1Txf<1VEzt)>#7i1R_BD;{LzzKR)G%07(FHsKK?*gWSIl!3GhqB+Gk1Qh@9=&R6gs zTmiE;$i)@h0qaXGM*xTr5cHj&Iy!80)Z%u%$bX6`g!r={))AK+gSht!n^F!d^>B_z z+>mz#4!epfL&!fzT2LWOaYYupQ1A+gEFxeZZwV&>hzE`KTZs94i2Dud*l`TIL>R=9 zM}$C?DQI?kCJB(c&*rPtGo_3H9{8WiFn%tG`xi{g94*0!5^aGq>6EGYJJXNe4G<7q z9_H!9BEh)EdH-e+=DZ#sWZl8fVHQDGPJ0e4@B43HJpCf)-iE~ls4LnLP>li*`HI=` zVe4j~Y@<-ApoV*J$}K2Qgh8Fuy>$p`-sF@BAXY?%Jx&2(Hy?V!WqcYd|Hy`6G)=?l z2mvjgAph^`d`Aqxg$PWKUx!^ejtE%d`&r`NmMO<%YMg=TXXC4bO-3#Fk>=;h~`z?S7Ee&%J3%F`?l78A%4Lk*+C7IPp7Ue zibbO~Nv|=4Ja7GE6e+2QL;fMOx>F~VYzpXK5Da#1x$N(cM-U*h+(Wt3oa5Q$MpA$> z5rDqE7U@Y9t9cA}sC@Dw1mb+-8oyFbb~1e~2QDunAdke+2RcyEWpc`}OGJQR0TD*5 z!>54FkSHrqPf{A-@1W_fVF?N1_JIBM8JMP{E`A_;!7PM#4nHv zVB=TMx%~^j{aIK3_^+?=akP`gM?D9p$}HFixDu*dh+jc~i~vv{Ev`lY=-41d)NVTe zm5bvw{u1z4!D&I=yK-~0C|vI z^-TR^1B6mUfCsXK1uWNMHbs|r(g5QCQXY?!1e6fE6zk{JU!2|!6D z2!n7QBH$*-{{ZJARgmP9Mg$1aRHk{{AvWa-J2k?*4FN5cRqRnv$d=t*@ejkw8j=Os zR|p~rw>v)YFBn5E1Y{%AwgroRb)fUS3Z)~Sk09suzL#~52#64}uC+r%O2KMG2*gqV zd3Tg00Nc-PC2OBsXPrD6(MEzEcMVAZno8*nhzQW8wBnaOg(pvt1jv@4tp6YF`Nk>+ z)$^d7;A>u=dsydK4(6{5#T%#Hy~}HUo&HbTIg*G9>cRHN>M75Med`}so~Vc4b;!Sq zltvkMPYS30^4~l)^C4C;G82DM6In@jHI7sX3TvMthF&2V z&nET;8$|tEB4S?u6+#aqdVT!&F1yHivFlz+0)+HYzX+vkXP`)yG4}h8yQcmP`l(CC zGvaxTgL=XmTh3L|-*I-Eh=oWPhKTTMMB=L=@>ZFVTcNu(N>)QC+Ri`9jm?iB!*p}6 z$@?Db=1`tvbE>7A(%TxOnB10Azsg5d;W^E6UU$x)%#snSdw_RtYK!v%@%Ga-hH%K#xq8f_l*BkBJ~S zn&7h^<_1mnzV8UxYTOE?KbzLTsSo*P4J2u*kWyGs1M@4Mz=8F}I)_p=CNogP3z(^$ z9+ZB6;{n82M}n6rV8b^HfUKDtIW0X0-!IctoziPVJwOOGF1Pg?)= z|0eL2UoR7EKm?nm`&Zo(2EZ3C`p;}Y%#l6ZhxbCb^S$nLz9}1^^x|k-9XR`tX;__WuM*2;9XzwRJe{}C z4?H2&8S@;Gl-3XwC})kf1Fu^jVvfiZ0A6PR03ZNKL_t(VAEQ7zJt2PMplf%~D@_gH zc`>{UV+M7C=F{|>Rm~K_T$@%f0YLg90?NogMStvo2{m}l59rDVe09tzt7ZhIs-Yg$ z1gkd@Ps=j%peV(i><~X+riF7IAaWM+?_eM(0-zbV`K@P(=!axs@ss{$_J883ABXrE zX|TOZdRM$A9=_nl&0f3VkiR>a^UqQU8}gsig_pljApf{s$lqn&3mm-KDovyzWegoo zl8E1uLcKl-R58YKj0!-GK z4^$fbQ$eRD{hcOrbVoMk&vt3Q|2_Un_q+lTaR+^S{QSz#^T08|j@@Mo#C(W5pxs*~ zWd9rmTb}ZFYX)G}Ux;5IVt3A0(wE&k+$&IpryPwVM<`M1a5%0#ky}SL(mkn5e!MxOg=!urI?^Z6XAO zo(klz4vr9ELS8|C5(oiRn*>0dzmUJcm4WavBETdDk^*RJqjKm3+RG6DksFmH0pk8e z02mQaw=8M5_8cKF!SG3lzw_)Bcg-`u{;RGO@{gg+{i`k85q}d=Ptgfur}svbiVj;u zK!&(%$hDMgDo$V{q`zQFch0XuAQ>nYbuE$rSbbdXzsZUaL7c){1VBpec_RQ^w?oD= zyh9P*r;78YHmpETD5F@XdhMylC{RG0oTYi4W9!Cax;e8!^f8olm zy{vxmUtWA~vj|g(Uyg$?rp=cF-G%%GBYI5aqIm)!{jlp*_Nq9@@{|TE^6L8fysQ!_ zbuWxuLVXPh#rSp*lTtUd#nH~=b5*oEgB&;ODzQrpDsX4Ud|BNGRf-76;QS3l1dJ6~ z^h>N^Mg;6`JLF#`0&Wlu^b21&W2ZVIKm>p>6h*_FotOwvv$V2C1ZYJ(3UVU+Ndj;L zXd(Uzn~>>;1_M&H3rqr_eGvhQYcmIQze4IUd<#P0YeP_ReIEmNhyd9T4EHA|{e8lG z4*T`NGqD69zDT?;so&|*V4ZM^*W!9N0i^pr`E#Gf`A5T}pHlLgK*>Z6eGq?>c>n944_rR6)kOfLL||JX0$Y9civ<1o zU)&i^5&*|DAm2bW*d+9SJY5XbX?UC50LxPjL1KRcWgJwfR`cUjqMouyK1BjB3PyuE zZ_ICt6H>&Xl+`|b2g2iR?RhX2f*qF^#2MsYbeisnia#MZmW=eA$|&klGD(P9KA7FHB3ngpz@{Q< zbGv07$Y_e(U3*ETpzkdU2A_3#bYPq)8wL>$g30|P9HTT9OCAWQN|}&wz2DzIsR5h> zK*Izg;HmSil2^I7|5w`fMIF0zANgh4Fbt1Q|D<}X_RB-X?r{e@59_BTLmOKH5fcf5f@FF~g$ zuHeE(vU8iG?B6B*`kL$8M^&=-Iv>cXv;LR}O@q_3BE`n(4e#gfdhq75-LU72-dh+~ z1f9Hm)w4nUeB5Dtr~aZHSMP`5!}Gu%_!y(9oclNX4c9N|XH3LugvQ z59J8RgG8bd7Qg|%=tptzmXN0c;gEI7;#b9%0Z%9`n}T{9-+c@n3-5+tBOqf$*Iu$2 zh*ff~L+P!QZ3xg-yKWYh&_$o5CcD2)ICsMSZ$6v+;<+=){+3^t>WE*m5d2?ifaJwI zxqxnai0iU6tSPQET%qbRA$ssXeNA(C@V1$o)EM?tH$PYop^DDGw}A z!>6l?k%3_B#My2aD|KFa&>{qH8`og|->P%ThN!Is@xL9b;{oC}ev3??39fD07G%|4 zn&3kIg0x9~dN#aFcnYqH%23WJUU?%>8SjJ#O`lF5!;O*^=FV20XyX^VQJO2AnbE#S z`r;Uxr|jas)>^9%no&dCn_GP&{;@pAw`SW-KV-G$2C3tber({Fg#4?_GLp4eS6||X z4Y;ReuG5j2U z{sim^MAD%X5TG{q<+iA~6|Xq+j_oSGq=%_aXB+&H)Ex^T@jNgpa*>uBTa8rG4p=m^ z*GL-nus2?;VC-0H%`y@5#=YCRvZq4*?QXKWaXDE#MNE^Ic9O+)PXtJUDkz8m)U7ve z4jd7%g!)wy!%p~0^|FvBPqz<9=$}}i)^x4aQzv>oe$ola5TA6^j*Li{2Esyy`CgX}9FKp+H^ zj4ne6AtFFvMq}f^avSou_hk|QJ2pu`K?HbO!w<&)NuWOE+pf*r%4G3xkcMDzju;Tq z*H*%V9aIGl-i^cyR0!$Eu!j}Dz)F5y+?;f<S*n(vfW9GQ@aafxhl8;B{%;@Y(*ZL?O{suSm zP2G?zXtfEHjZ0uez=yFQ_&YfCzk9}qw*I`~Bk=^ncQW&RaAOCKHNOOtVC?7){6D>C zft_Q=GqEow;*tRcvZ+4Mgb<%)2x{0Mjc=n;49Tf-)*Dj~)Q;AT`+@J`zleZlNFpU7 zK+r>-+JeypM;Q(SFX+*~8&M3V* zyi&iv_LXcn{zi09661e6I*wJ+C$a$$@>fXby)7aCCguK-M1aKuDI@@c{stWMW^oS^ z1sgG7l_CVnU?C4h1PFxK%bdRAgh+2>F`|KoWo%09QW`r{6(6 zV9<;rq1~dbRrRxRWih&_b^ZX#F&3>c;F}O1mdFd5!h&F(jzRwFRxB)bPAF~RvFh@% z)fXinPuwToFZz50cI>_&SCD#eLsb(WvMqvKvIBV-zN(a^4C6aS^pv^ z&i9f8q$4O|UVk01QkDpyShdh~=E)Bbe=d7Gs7k zMsuEvZPX;rc7}yW0em@px1H?gq=;QY_fDA%ZY7mZFfl^}wv62KPMqw!6RwvwMoB~7 z_5#5LD$q^c2=`j-Xx*HketK3Vx^p`W?3JGeLc@Pzkkjp4y`)H!a378dea+&X--HA+s}3! zqQei|^{e9xTz{~QoFFUr$hlx3{27vj39APM@d?My6*G#;=f=u7a9m9HbnI7%G?5h9tisZLt{CMvIH{{pUo6 z9lxXVhc8avnl72VpL@C<&Ak5!hIrhk)FujI)di8~>^G2-2*yNVZ7(*i2&?8K0os=e zH)gtEXe<{;9Yn4KOBtci10()Noc3F6GxIgN{@-Ndg=dhE-x)KGQ$tC0|84^}O}q+{ zAd&~+j)F?8Mn5M3V9)|Gat3P?^oWJmy#H3wmfr8VSs{OcD+5AZT*{OEJ#M;di>*H` zZOl$^UwiWZJBXTgqgdqCn&A_TunWG{Cu0EGJBA^B3EraXf z8#?*IM5FP9DRPUyMheh(Y{=$01k99P8Wiq5!54Yyxmt0bp2^nunxQR zD88P&B>HcXq-=hsKUOc+d9zVbsbe5BR|+rPd5NkQ*<>?N2E$0tR2PIB?F*fDYc6C- zU(9*{A%0V2A0Pm%la+)0smq$%KP{_sjMrYPCu@&SDJ|+m3n%M0wR`C@dyHura71{0<<(4Tjt)*tT&93%puk&yxvV?4YoemB-FyH^60A-gd1O8~&5C))tuLn$r| z2gBb${NKGpns44Ad}{C=0f46Jy&WpTxDQjZJ7JX7eW~hd-SDBhVBVf+ZOTwrL_+En zRo??z?_01RZ7G3RXA#OKN@Xa1%&Ve6qV6BHI(wMfFPgyVUjX_f`AVx zT|}Mt@AJL>*6;FtX+NU_4xi27b{L2y5P^@{tt{&StS1(v0NBazD4hY0`s1a7S!Qyg z5`go6^PKzPpI`TL_zD6Tr316%9Y}&H1z0}i+$(Ew4*4}l{xmtRl!9$|06-9c^L(Zn zF>b?#$|0+#e0l?xGbzB9@F7HaKR|#!mx2IJf!|RIpoxO(zc&Um{(D0?{$ersz?IgI zZy@B$2SN|=pcH^p0S5rUK&A>bUB9Euwd+Q2V)wf)3xxgKF<;K*D;=8eB*~m5=F~3* z5Bg!ZI5=Dv%eCpj)Mx(j8Lt|ZVAWX3Vz{TElHgAZYuvq$+@I$ZFQ{caVRAWiKyc`^ z)CRdveSiTLN9;b%9sUXp(=u0|&M;e(4?mhumtwa6DB@g@C2Poso2Ix)Uf~&U5S3r| zqZf%A=Fhl$gLx~F#3Kf12i}h@OgPsHs3C_kD*J9UU+c#V)L%2ZlRL!T147olNApqFme1cA^_6eD z48Sz-?WtJ*Mwo$|@{Tk+x(~E`HsiZF2gCFIQ)ZBQe-=w)X&pn}F~sf>y|3jp?=qC5 zs57uXYzISQnH>V@hgD~wgelH4bOz8W{9`4t&Hxst+a9JDjj-3s!he>qfzZ|8b4yPw z!4TSp@7q-;AjJ-`Yp;*o%Hx;@s5^K5N$0K+Vu5xc1>pL3_VaxVzS_{!s-I+t)SKgY z@4|C>h-1r=Kp!e>5JiB_6o^Zm0G5%@$-eOSCz{p*&pH^jd$BnsKl}{P)M>StvkuT%Fs|zX@Kr55shLcIdCW5}%p8Z_nASwa_|B*_3bi)Z&jFq~qE{Od$bLBv{?Y)o4`?E*a@C8q4UOjGxC4 z26D*wdz%|LU`7&Jt6@?Kohf&X<3Vwa9smbq`b41F+E{Aa9dR)3Q3vy}MYAEm>T`HrC5N zWcCjIn@#>8&r$Dud)7SLvU!qT-^oS#FR?#}ZTBCM?)wOv3J#7)b5H`Hk;(kWP$(He z3(+%v000uK%?HM>5wV#8&=}_^UJG8C(wlEys2W-*X>Lbf8$&gB6(9F3=3g8E-^tdz zrp=$`U7StpWDa8-aTk*m%j*WQ#2}Nf1WCu{UNMJ6wkl09m)0ng+e6E_eP^XOwAHchEWPY#;?TvxXJWe>*y2#0_d(jx8j4lKUmXfSk?r@F1Ee7 z=Yjo}R{8BN-$j=15hq?MW%KJ`;8MqMY9LCfiR_t5>}-k8uhR(D{{f$KRPt$bNPobQ z7(oD;KZ#rPdXoA!Bs)d8eU=d6{rNZLU<0a%4zU|bdC{ApPb;>m_ot-q`mVmM89M~f z83=XWyU~c=%7?tpzF(TE+U`Wa^g}TIBL^$e_N!q0{nonAiXdRT?ayZ>!{X|n_+Ah2 znth(yQt{b#V4aUr0J>`CUGHb=r+P6x+gmo6VF3HhL)!V&_)J4;4|ApH;1m9n2`uG8 zA)Z2rjKO!GdcpTag)A_yi}<_*-76hmifY^c?Hc|>eZng;V_a>$QNGX={wXj)EE$$Ez#x0-8{3pAR z9M{AEo!xVRokX;}(Pv5!fR#T40i*#W)!tZ;^u+)H-v1&0>H9B8!N~kc)k)sJOF4GY z?kDIwL}n8Bw zkN^M#Wb^k-HI9w(YE~awSAmN@fPM&nJ=ymk43dN})})}&QVHu^EtR4XJU_v#F>uj{ z5P6-ISqM82WXpckZxib{NyBo}jVf5?6WK+Wjh0o6Cc9wfxhC)+n&ZbTkY+vAtvc*` z0Q={|UJHA!H{DX>x{o*D{1K!J+*l~7N$xWXh6x5egE?cVXZia}u_;C) z%^7ylKY~+a|JZ zqcd7W|9}}R@22~yJNJAO%bc)}0~!tOd6OEyyy|*C*?=e&(_DtSqGQ4>vPoEwWkS*E z6t3=k!L`jwfKsre2{WKlU-*7%m>l1XX{5R^QHiE>EK@rWp9%i*uZ0WN?fn33sjEP$OZ}^&9`rGA3Tm2E7-B=QOLXRwm!2u#5E zXDcW#bOE?I&=B+L*6!w{%=A8Fz9igZY+fx@rZBu3wf<0F+LpU2f@P7orYP$ z_<>6ph4HvsqA{%&cn2E}k1Ot+Kgj%*y4XO7$9i(X_0s$x2$)8LF?JD@gW;p$ZgxzI zeW*o8-Tw(Tjgg@e zng8SzIzpiarZh+}AbHgQ03ZNKL_t(!{t5(m%@Mhd%6a`j$b47LZ(#IT2my-e}LHO=)tyT+uMQ256A=EEIZDroo5P0qeoocG60%Aw8JEZ;PD}&13ClTUYVn9 zP6zk{dS0YV>Z_u|DGxgM>_2qL>Ci?rxGq)m@=w$U(*aKe=1(8C<({akrO=R{MrD8! z9ts5FILiF#Z<)Wwt3a{03}ivK0sv870EiIso9=}3e+K6%^?#TyC3UdU=OuPlp_jYV z8k$y~srA*QiBEm}U9&?Y_Z5g~WR~9JH3#D8pJbVT2th>;j9_5Fo${fHl(&}~Iw z>U!j57CL)TVZ`hS5JBAS=0v>aMk zZv+EKL)Z_8|G;bjRE{QzOD7`k8RZ^da`aCCz{Ascw-BY%Ei%LU$qp)ZsK~=T?Hs!Y`0KifI z?ukhT1lC^dI0AqRzqIUL{QavwF&Y0FJ9&JYIlNBl5%C}h;K-lM{|A4#=AQe_mHcKn zBM4aicb{=r|LC$K2U8*P?YPf9rnN6>hBQ~Oj ziZs5u!`H*TOFPBy(S{yFiu(`%co1M1GSgD5&8Y!)d~}uBY8}`7@5P1G_cr>jZz0Xs zY`O$(r6>E!*>a3uhet3vu*+H$>)7 zDw|9x36RnB=g=1ZF@j&k;ok@2K4khPP4&`*eY?%RCsZ_Fo{9S$?tN%^IPzC1z}=RS zAb2N&b*T$zWnlGIP ztZU!Z{YzW{@h+(47VarktGDjs_eRPHqHh+>b1g!2pJr!L&GG|DS|F`TI^zd zZf_qWf?*JEQ^XeahX=~qd8^pv*TEUsiP&}GTr#EvP5l`e;qF@r0LA|={s5iF-kL^r zD;JySKmvri@=EaDh4`OS0F(gC0RXfhPT|OZ?(J}o3%|7FuKcSF0000AoPQtZN(2IB z`|LPJUzC9WN&=KP`sWnDt}uNve-8pS^u41Kd#&Y~PoHs=0<1xQKxr8anbZYSUdGCU zuHU37gzB2>SjQrS7XJy5QZWI`DF9Ddi^b>%V4(5Q)39^Ufw3d#3c$6ae#)(ATOhna zJUh;5Wl+g7T=lyP*Y^XPd+zItrYwi0tD^bzQHclwNYqi$Iz?B@#xQMzJSV-&@`c3m zAGh8fO3$xD@jpo!KhHT0!15MI02QSGBuvD3SEJF5%k3lF$KO%U4S_P2VCLWOK5nB) zwO^Mv!a*Q5AHoy>-ReicxhVxW1OPCTqd>q81aYv`?hj4@DC4I~V%7u!hEIF{1Ec># zloEa9L;eT?dc{?M)Gy**0f(e`DBk}4LJIJWT+c~s58A>E%45J~Tmsew*01|1v)^6t zks=5nrlZdI%pd$`|1kUTeITUH)vHf&`3Mhck>chz;zGU8*ZD9k6a<*^?nxRKKZ<|u zBKraZ!tQ$+VV>rIVIc`@$OafS@bB%Pm)y>qp@SGzQOgaDF;Z6=lo#FR@l}6W#x~0& zbkW{T%7DWpnX@0LGTvY<`0M{(@$nOYwzH!gI?usSgHm%03wW@+r9?v;qBXBx5R8`G zJSy3axb*=VywLSp&$Y#L^3E~2N347!BPdN%8t-7v9ZT+J0*Fw5bz%D0pSEQE{-UvL zmO_eBj;EP~$uyg@?!qT3t^onb`Ws`n@zd~JrE$eAeFCHN*1+vzi)xDd=O0hpH7o&q z{tKtwm7fmW^;hzD7JqLRrVbR)fH<=KwsX&ZD#esQDEs^pHadYBv(6hs*WSW9XM}P8 zi}6O+O>PAsF#C}?mp)Z<>6w~q{mbUc$6oW;O1m$% z1SU{29kX5wp{48TyK)msR?w1kUY$!%Npkn1A#D0fz4wvu*PX#P3su5<72gJcgGPM7 zE;kTmnd=-0A@8i!OIg%TK-k!sLY%K_|B*}qb;zOkPo?$> z=GX__w(Fx@bbA}n33xm24`#=udNI`l)wzhW2G5cDRpIh1(w@6G9F1OsM8X#e-^bK2 zA46J{Kj&W@o(1qk!6PJz`!sgee4^oMrxI724=t%%S#d4&VXbi$)1v)c0zl?J*bEAQ zVE#A2{Qo=T_s;0$!Dt7|zMzRN%-<(C z9&fg!rilpxNIR9RD|GV%FtAGK$`^z& z4a#bl?jlf34QU zz4*P*JuW{UnB%j*RB@Zzb+_^3j+=w_5P`rBS5ANyPABf=?`*l17fwqKMW+tf*ts42 zI*%$}O_AfR_M00HLI{FP!(l6Ir!T90dW4cXfT>LBQtE25#j! zEN#5j^9R50%17%S08lzY=AS^iLsAe>1_&5I1G|KdmJFQM5@~RX?%k5kmFq}a)3LVL zu|~1m zuRwSiVG{vhOk2gZ*=Uqr2LSeg?pof5kIeX{JLi6C3ZOJRcBg$I1uJpfY1hgiG|cMd zsGqu==5l}b9e-K*caQ_zk{tI0hi=nzXSJo zkGL;-s2ryr5l?H_R}kl$IQF}@pgb%9fa#hgEP)09AY~E&1pqzFB6d@MV;G4CZaAgwedEz+N$0mSuw-h?U!_FMxW^8BPaw0Nxz`y4mA5;1QS=X z<)a_)kSAR$T`~1>4x_8Zk5oP5Pah3zcL%l(Qb-<}P1-UTxofR4Ry$w=7uX{w0N|Yx zfFsgi3p-^l0L;l0kph5J#NIuO1``}b${94p`nm(R0s)P!jJ22+S0dpW%d%IyB$SeX zu}GXWo#r=Cv3IoUMB`1U-E z9>By89^F0`xX31|S@tj?gvo_`Sp zl&}Po^%D|+-+(lo!oX`2Lz1OwYhO7yslCCOxGnja3`S&M~OGO1n(*`}xJ>yxQh^TuzJE?%6daruXF{?uCs>Y)d(s*wQ5aE$E1 zr9==NjdCeKgyyO7kg&_$9urJS9;mlGz0#HgVG5>V!o?$(k_K=oL>TK_ENqIgwFt3e zkr~S7um|;PvVu>dwr8OU5dN@y@fh=^Sr8yPL0St(OnMtwq#c;wYmq-*=Q9Y;?6Er< zDL#2iMc36&tL_V@;H15%N-#^pZIZqEfja0^Dnn}AqjM(t)&*lN4vOrFqlNH-u4QL` zndIfnkWze1`$&@l#NQ^dpsx`D8Ip{EDDunE$;#TMhJ-+X*IxzX$sb@n81pn0@$%Gc z4rbas>E~NDMeCvr9=6lm)>L5|O;?(o2uW;caF)cZ6wuM9q81eXS!1G?3ZFq8d6Bp| zC+!0_B6rMaX2#1Q4G3snhktE7%elq``KfJQU;ODcOhW~#NsSz-shezm561E2mNJb! z{yLKDzbL?7$o5OI4^2mF35V`Bza~vD@~lj5SnfbKLu~hRkxKWb$bCDp6jY0zV{>+= zENPwU#wW7os?uL$cnItGWYTu)^TAL#`#M>T@#WlIW83GeW=U7|4^akw zJn?YCx8m8R71(}v2GIE4h*Gp~h(ZlsRsiU{=R}TAJo54TLhg|u9)-~yj(1C?$b$jF ziA?pnrwEA|YX<=*|3*lejV}Vw@5EGIesxc!9nbG1H&+DGBZ|6myYe92><7j)2}(oG z0;BhbB&H!S0^JqWy0JMe@dCDbv7YGPgZ=dWC->kCdC*G0`Cpf}H|M!~O;T;GiN@y) zU5%>9b$YP4*M($+e_VuZ!##Iu6%Bp~g)m7O*U}va968RC0ZJDkHP%yCzTM(_{qZj-;XC{XgHRBdXCBJE9a&-Ddq zp%VS1l|Akf%SZ8h3hgoWM)n3sK^RXk{yf*Oe}6RfvzDPJc;nKi73=O`4NPSTHrAnR zHsAcBJ6d*k5;4lM_<)Uk6D|hTu zh}j0e3HR}q^c}Bwx88Ez5qMM({t=JE%m*BMy@Ya3N4#8i5ow*q#r1PcS?9`rg{=?Y z3`^wib8|0GqZ>^Z7u>^U8vBD|GrrN(3Fl5Txn>}Up?$o?+NM`7bA{fWqjS&S=e#s72CKfC^9{nC z$n|IO<7v;IE4a&r=a(y}!eq*Q-Xu|dZIHgG&C;!jK?xa)Ev#(G_p&Yc5av%wIezhH zSn5|J4|Yiohxt>B0hITdXM{b?N(35OKlCtMOq8wA&w6e{K5(O)7W)|KF?f*@CanKC zKu7B=xea@s3|{(ss<9~YsEcz{Vm-`2K{yjLrKGiG%l$P+bM`GXG=0^pH)dr}O#eS) zg&IA|_uC!|QpfH#=ll7?iUVy^vHORCw*Zl5vc}h&l5jPz(wdO~bd0Y>6YpiOUIxvd zPSFfCj#uL6xa~V?c}0z9KXn_gmMhGfMWFBV@HL6XNdAhMDAxvlXo|Xm1+TIlrsX^o;K zNuFI^9ul5v-)F-ZJ3$2D*MN*chm6heM`aFE>uc~b5?}e8we5;Glc+}vPUzBaEUfNr z4AiZ6ii&e@B7<0&hlK+ff>G^AvN^A7x66sf{MhlJNcz6o(q4nDDcCG)+w7-UOAXvx zkw?F@vB19GMeFCE9lzq?KTB#f=s#yBa)v8kjW`FQbfbq{q?YXWY`r;Uz_Z~B!uNlv6h+c&51?txemp>k1(Ncx7sc&r7!@ndqfl(B_ zBmp7?Z9Ld#5DL8WxO3kFSNRFn>NgCWkK5~Tw54X*-=sM|a=wcDqi){WUFXryu~9)X zcA;Yeh68z5PyLT3R9V{>n(3QLzs8-(ex>JZ`s@tf;s_kT8RUyrAwgBrm_9h?c|~kw zPWt?LUTxouD}6^9wb$__lUajuoGIAUwBHmXuPb5j&ten!{PzzHP{5>dnRBxJ)?J3} za#Pg#z)C$Vwolu$gJf8dFE!=wD4$a%2t?A@NI3_6?tlG7PMGx8I(ABF)oXi3$~!B(PIaw~f+GzMn)16Q{+jlQnC zlfeO#m7;LI4+6kIyQz|`#EViNcrR>A*>z284F!y92tGFQZjsE^#ED#jazqH1Eg)HO zN3tg9$rOa$H^DVe`;=)8u#4ByY^YF>U|%qQ;-t8cGVRA}RWJ~Q76byvgVDPSY3@!L>}xQv-V`Ls~zKn5~yz?ATYmW6#zVAK6YM5W5r0~W+!*;$B4rwFq^QLaes4t z1`sI^u&0B~V4>gWEcS89*CJ=kZ!l^fE|`s|*gvp<^4N2S!}n?WQ2goi_G9h>@Qe+9 zV5q}#WEVoyn=q%tlYv+AobN5)LR}I3l7%m3Ci{M*90Cg0@5&Cy-vxCxcDS4f{2P%P z&lu@I-O3em)KS{q`86QrYV^_vnI0gCKlO&7)?J+RcKaulU*DVOY=tM{2%Mh`8pZj= zw|vzX1LWeKJjbV!eV>^1c*hUR`YvJ@j*t)vcjwDptyz?auIqQ27u}k`U*ijXqQ@j} z!t~7Q_M`DzMP)d1DtYGpEG$#^R0@Pp0ZhV9X$VR|-svcsDrplHWB}X_=pb3;$IWrE zSsT#9^+hK+Ia>epBH-W%ZQzBPdac|!^nu9<6KaO+jr!uL-hG78M(=o4wuOxy?|K1| znv$t8V5-*GlNADy6Mo@;- z3vO}=fNXFc1hF;s(?-RT{21#vG!ftip(&eT(%Eo`PBBk!i{Mhsu3vJLuv7S__12sI z__q@F(>7wEdxsh;XxlaziCl%bBq)KLv7S!BX`fNlE&7aQLAh(baY6xQC${#6K#`1! zuR7||oJ^4N(d8~5hn2!kHFcQH`6TB|(OT$;Qd+r_gA7Vurvm68%agb8+OiWv3vJRe zc^n7RIuWNFmNs}99lZYj0kec_5~@v1`1%B`->w!}fs~ecieJqYPgXZY`2dL5j~WtH zneg}PBHhh@1U=!7`YbYGVT&lT|B3f~*i2WT2Yr`R8xrHpxvY>O=qxnH{~4JFMVK_- z3mB(>CstL#Yi#GGxz)%xX^56*Bbnwel8a{VR-g6MX z=^C7ok?&WQlWb36x-cVBl7{;PDckM*Z^(gyZal6O#cJ;ZFtbl_8YT-x46KRgO!Ti6U#aJVF7oA95WZ5NBqh0!L04TKd&_f!pAoTlIw$0EVejdH0|KwRQBIc6 zk7zM}|MCg4Lrny;;f$^Z|IWbe@q!xeMC)Rgwx%@MhIUN+d^Lcr;xs+~JC3@0Uoo4q z3ZIUxYMSTR|Bjcb<#ZlX29Oark`*3U`>L@-|E zluj96`+ti$pAZxx zm1jA)FFRF)S;x;8P+Hr!ktEjSl^bRQsOO{XG~9dm@#M4HvcB)1yx`0zm2{B3XUPTR zAt_8*HM1WQbz%v3jQVBTgMtd4Eo951>j*yx?su6DoCDnkn-N&tN;6>O)O`A?_+M)SUYtH9NF!tJ7#f6}e*DdhIvJ z0n@!dE$+uv>1P*C@ke>cIdgqy4pOFDFYC8~=-16uU&62A z4BZ%50W*fa?{kVwR?rLJ>gO{Y9BD;-^q@G_MATB0s5O$dE%EvK7iN4IZQ5~#3)%Vh zn76kQsI;BPsoD9?b(!W$x>l>#_=!uw%(-RB3$t-Mdex7xPzv@aC6B7H^?a*|x=b42 zH7s#|YLSFCBDKen5PoE(n5II`!267(qaaK6?`b&wzJu-jNsw!s$jxN-ZplULE{+n> zM}NLuW||SOd!>&3$rASU$x`FK5EZ$P_JZu9OeT1cS}nO#$EFb757lWA|IIN^XEscWJ)8~rZ)2_lrn^(95%gX;Mr4+uKUiy37z57~Y zeuskL6D*p_5qkE&t;p<&U-bbT6^KrSB1WFczmiU$F-+m`#W*t-9m+=s5IPz5B7%Fe`?YCVOCv&3bK`Jq0&h}E+yne zhbP!)~509dp#J$IJWu%M(=8Wg4fm(IOY_edft=Zir6cWnn2 z2Z>y6e+5sk5{8k zh(v&(rQnaqQn(pebwEet&M8{!7xW#x(Me1IHt`%?axHoNQ@~|mxA5Ph9=5@=iO`Ri zzl2-i@5u65vL&%k_ufsll$S;;5fT%_L)6g`hBw;yVvGQT3P1!zkL)1J3N^IH-lI0^ z{}JVXeA!0+AD0Hgj$8C?V_E8us0cd~{(t!^wHeHid ztGrU<6S6EgFfpV0B%@4C$SAM-*)$IgWe^odi(Hf}wYl&rk7m}Mn|Kk5GLRJq z-A?NkzfnJbD1|J!zR-QCTfV$V~!Gd1?w^ziU6Rr0I+$D z`oSBEiUWXaM1PxkQ`!hD?jW>ZT{8hWA91Z#?+5TlV&%v!vPTQ zD4FZ^+yM2Fcp&-??;TDZ|;fY0h z?5?h$**a6V%sw_0Va`E*FV}omO~lfPNua3SRUz)z^efd2B--uyi5D_{- zT@vbT&(2tnd5S7@e&v1oP=3GHaou~MC(f!GF6J$EL5rclPw=wMR>P>3#SBDdMdXUj z-8g^9IuHM-BI#gXYqOUdyeidqTJeUA>o|r5WQLIf<|i4?!$mjECID~&vaZ)ic#xg{ z@Q(!m_?xTziL{y}p^@l+t%L#xyd-k3(IliXfQQh>mKQ4CDqJ080OVN&WMi!D1VCbJ zvcba8C!0Pn@U+5}HuYXq1weyX0B~g_G1+V|Ja;crZ%FBssFNSi^g5fCtVRa3Go&m8 zHXdoW>|u#4Le^X*k9Wg6K8}txlVbE>K-I18gXaFX3i(w`zLeC?q$r|)0e9Jyp(oP2 zGV7x4N+|C%eSMaF(&8jQ_zgW|-8C1GWCc?$hTYF^n5Z5b6?)G&F;p4o58to1DA`nJ zumEcU(r_$bsw|iR5XNQg9Og!TQ<4onfv$Pz^E(`Cp-*awcA#%j`=Ws#hyc0gYFRz> zUt8)$SP-+DH28MU=jU~e|FRh-CgzOSpnJ^Ny((sIe@^D^O0&#&FOSO5oC#`n$j_|5 zoUSCsWgb}`lG^HEBxWySm0(?&Yjj1#ql3{5lrX$c6CMPJpOt+5_hRGGAVk1PCKLfa zCLuyX2ec|x()-0vbooZ#K4doGVzYf6>iA#_d)2u6q= zVV;{}4V4A*5}Li8BAbRIVjoIFd2oNnM=F_Y*g?YH;dMH&BTw+ql7I3{0ujYaur--c z+zX&X$V%+cAkE#F;Mvt+f{ zLEl*MF3IM35&8OnnY*duzVYctoaC?Mzs{sgEvtbzNy!O`BrRAO(7eVUdH`^Y)bTB@ z|NNWq{8z6&?6mJk#?$-&yl>p@<@{WM*=Pi)cgW@Qi|5q)2ph{MlNS#%0vy#NiUJJ$v`dU5(3M1TN$!s2;R8XR!HiNn6k{4Ch19P^5YN5ACqX_abNx8 zy3gn3_3mB>r}Exp!KXbwcWF3x4)uU|SU+0)u>1yM*unpw=}_t1kpUoc>y}J?An0d> zpU3Pw_w;ms%0QBUCZboLYDilfJRj&ZFgXeTtDmW3z)n{t$fH}ThE1{v;ziL zfo7#(OHlle;*N6oo(EE49%TX60z%nmijSTBsG{SJe4E|+?6K~u$Z(YK-nOG!uhbcp_bHRBkziCk#>b52PDySTwyk1s$t*Z!o|VlZ z8Cb0U+034<&ZyrW5kpB<+^y&1z-N}TwNYtvHxdptJ11${Q#PSupx`in!+DNdlY{+Z zgL0`$C;Xn{^;pyBLRK%D|5%bb7hY8!akCG}y-5WQWg>6DsDV)su&55*WX6XS?L;SQ zv7{8io}}pj+s1GM$uLf5k29^hZ(8NFFD2rO(}q++RT*g)#>r7p66!nfILgch%ZM{t38q!Go-$X`223E z8pNLaB7zBeD(~1@jcv)v?q~k~6Bg9Ju_vRc{=-~%{OqGOcUO2JOqH?FOy!xUm^iGd z*e+0RLGzJ~&q`HsLYbJm+dqpMdAC}Zns#H^-i%Re@~SmlU^C4#QW?N`>^i!z0W=j zWt|Ys)vCq^yF@Iua(4kH!F+BbU$Q|{3`|Fefel$Z8-z1xGCEX1JuaCL=;wg>NUBFZ zoR=g6(nuCn#V!-E!N*|y=TkhTEe*Qq>+1QpC!{y@=hs?*62w04FSnbSd&~YWi*$m+ z*>g>NUv=u0JWxpa3Q2?*tux>G_Tb|FY8S;P7B<~9v#E=>G=j~3$k38q z_gXu25WFgCxiQa5E{)$oZSsecrO&#tVAU?al+d=j`@O+ZT*fJ(+p)VmO%SWSfUR1( zz-J^^oo>ONrJV+)X?W-DH&WkQvN7Ht{#T^pqh%uJJOL{l$R7R6J!F@y*M(wbZ8-1H z*5B?f$k3OM{=@KO2biV zC;SZY@C>UaKF-YD@TuiI;XfR zmZTBR!SX+wvoBFluUBoL&qldt#anJ)AU`RkLtfi4{mKlSt3D3~?6naX{JLLUy=}Pv zt0jb?~dTbs39m>t*Z5av;_&5bq@pg7lS51bX0d(ir zExMpU_VdO!n=aX4&1WvGm3Wk}T@Q0ES12N;FklLA$&Ezm{dh$#G5$*<1qXKIOoicEKh*@*Pr)1H5@ zY~-aTj;`IN5NKTL(~^4iO*8R5f49Uv%yMXP841r8qfo8ZM!uU@JtK(roViN!+Uxl2 z!{efLUe&==F3Y*TDev?5xqz}XKx(+Qrpw7#Nz~ZH?Ik2p{<{L=VfP8I2rAEM<}Od3 zR;aJq{fR~_E!0EX=kJ+xL82I@@oBLE34Dxi8e^#uc}?=)`)4-*_a4T zuPPGET00)FwP^Y$;TzueN}Si$of|P+kC})5exV5NBYcbW7tJh&n^X_|rSf!X-vn{{ zZRLTe7{UrkQt?KCZxq>;Nl$9y?#C-mTXd2PHMf-S6WKPg~kUuh+T6$2;~Wgc4c zZONBXtC6byM|ZN85z}hDkz#| zyJs<3DMS|fRM%Z)T2e^8n1AMtI(#9jkl){rk5Y0e^vKYr8`j2`@62E*JlwJY3a=ui!#?3=>A+o{KA1z?K4R?$ z6qCwI?%@5D5|3Q!NgSA}ck2Dc*}6*-%l^Zf;I!_0Li(5g{3wO(g_W4~jfl@r&;_X| zoMoM&d9$Ng$i>5Be6^4k$$GVdCa*WX!WN4=Vs8xJnd7*DsXl|{U7VX76AF$!%xc1J ze6&luG`F{VaXS3zoSVA7YBc@*9k=}JP)ew-3!>qh@0{Iw8$~%HahSNQ-x{F%V{}HT z^t7F0*R%e&=a^69(_X-65WCB^5tZta(&zJW?>U_Knzk#cyv=dN=@cS5Pk%~TH{U}N z&X+B4<7Z>n!|C40eOEqOCenUP*f&0%MGL zg)19mPAp5W9Xy*&AvVFDQCyjuHT-Wn*lxuJI2`T55+JlZ1dIw_DO<2xt1UcaRh5m* z3m+C0e*JRIrW`8gPb+&W@cWuT-^b#D&LG&MMX`BHSx;AXxNl!4&hOw#^pODCJJoCQ z!-BS_lmd?V#+pL-FcIG&4+MA5R0cg0!-i49$Re! zFRH)*e)~(Gj4gj8JE`qSL|?p;(QhTK0OJ+1-|@)tznuFlGd*hv!V>nTj&2*=!+Q;Q z;~nk)YOiYy4gA_QWSw~9If?e;3F&*s@uFNr7(irr>ozCS4C zwmvrh5fN_bPfiHkcO_G3e{tCbg$Q|ch&eZ{t~0Nxbo7lneq{DWfI58}ytM2Le5sk6 zIjy6a6yqsI6jF~qrBpa$VgfsS_@^Z#@Hy9gH*15+IHf%474@sA!vBn^3KB#O%q>_! zvJB^|_}K^pcC-^5cOtb?QUR7s_wW44hq1FCz)Ug}Oq}}U{Kg^z|Ej(lS#C{J5JwXY zd7yllsZCSZ9}PIn{O%%&({0SKp2bewam~Ps{KYJ1UaRfR!;{G%GCsu))|}J(ydX5i zL4p?y)V@9A*qpg;>K~ke?(xmQwi5v7`EcHjrx~?qDOfBGIKQWSj4ALNMV^lS2D@NF zge~hMDTyQQIwrBEyPA8&{qIqgm(8E8X;KTG$^n2y+SZa( zNHrmrAQci0Zg2`U2v>etKx*ozMw{ZgmsusUz2rpUgWRamK<7{$XC?T?o(aT4H4MU; zriuseWX-Cb3MT^%_5J{T{lTjQvfOCXV&FfyC7^k9B?myXH^vh1ZZ}39@)k|{S8jSl z@&4;NjF6UbnA3`iwRYYwzos}a;*22MeLMc2tZcbGe|XBPa~KO`BNuB_OB}2VoQMlz zdXr}%3!un{k*U7wvwrUwg&m(vkT*L0cDelO;Iqy*Hu+;i6o zZ1>mSh_mXR;lEuvZYC2z$hpt$N69NE0Chuc2vLc8U zXjdy%TpVie|KaX>mGyTV*;*d${NFO;+ixL2=8(X3&%L(Ko#49RcKy4^;^1g#;uuGD zwCiOvs`gSU3jW&RA@M#lBaq4qd`G>bQsTa2I{T~O}5KBz~Q~<#K-;`hMgSOhYN$X4B zJzCPScD$T>4SpHfwS4!Q?^u@a9Tc}#eNee6xk>@FDJv1FiL_2-WmufZxSi{Nto(mD z=k1ssf34hZagM|cM!4Rq4>H@we>AbLPx_zXydm7mlr)Eo*#Iih0%G0;^;M~WW@>^a z*9TmILZa+RvHU=;*Lt-WX6l91&bO`y&7Xu56zw)9KLJ3%4-h7}*{gllveej=hNj=Y5))!m(l1EX+J zWi=M1uGZHn6zt40f6k1Ht()K^{E5&CZVDdPDjYj9=_k@k05SFh16bHTQUdxcmNoNT zq~PO?0s$OrM+>Wwb8miI#{+pRqca`!&etuT&nnivqd0G;!M#`#)RQ>-b9sk2Jl`XV zs&G(U$_O>bKoBP*058;mNY5L_zMT7)o+}7ZuFoiI3OK_>k@i#O+^d_Y4tS)4`a(S} zaUIfMpv9klu|e1Qq?%NmA(Intq_kaRHG4GdcSa4{CUU$Bar8i;{>;M+6bb!nv;ve% zF!e8z0$88dk&rrti6YPY!AIK$qQiyOE46?C zq*-~90zW}>rgl!iY}a57bvc42{*?VY-oNOJK*kIbPV8x!j@M9xbOX~Zv?=wOnq_<> z;Ai4l(kt>^csc4OemR)!b1ns5k6se34_h=#;FQS^IlOBLC@5lx*B^E1*4+g^^@wzZ zaME1rt~1j&5CyITk3OH@HvW45Bgb5H4FwKye^Wo>^Vh=tt&C;KkoxWXm+K06VGfxV zc>ovkfa0a)`yoDxU$)3{9fh=_d?Sy>WMeHIa}wLtI?(2a0Te<`T~hN{ z>fsb`sgTg7OFSv3Ja-%v9uoRqdDj~1TCJ`~{x2D=dm1N=(aY6~1s6Y}+Cqh#V*V_2 zxc51JKxO*)$V_Q6_|c7=gsS_n4Sn9&cassT)q(lsVJBnp{chgpT=hT2Qr$%OD7~B~ z^2aMz(hH_RICo(8?H0P0^If(e4jF#bYRWF#8>pdv2e`fI>N)cb?bgV4k6`c7665vA z+tlSS)Ua=5_upj8b)o6}?Eoc-erI+Q`5 z$Gw`g<&K-pV60$sqR3pkFrS>aJyDnj?haiT>nU?G4-8Z2nk@wEovaR>yyb)q^<)Zn zSy@zb1Uaj+d~uxkeL$}YnnRo!`Ld(0t?I`|!p;PF*5m(5#n(mswX`stb`5~!7e3%O z1J|R2b5v6Flsw{9V1aTo5;X=#cggz0VY}@)iygC~gnB3@p!(kJx{Fs3 zPlYx+6Y-%KL(nr^&7*sD>{{s47S*2)milH7MxU%@<6K#S6SoUpQ`L#w-z2qK=!bSV zTooPGPsfa8C)cyf4|&$RGzy%7mpudvuZjT2AFi78p}O2BW1&C4NRQ`s&I##=#yS{? z(#6om{?+M569i4&B7FPfIash`-mV=A6(h-pH~F#GY}M`Rt5+OB3L@WTC{k!|{^8K3 zJd(}}!RXlqi3yp=Fbk*ta~vr($~Xt$=M0-t(L-i8^p;53n?HShGfOl3=@0(au;SL* zd~g)$5B3I$1%A};ndrMA62@1SGg=2zt-9BBix%E9sfHL^TE38s9bG5&OufQ;yhNW0 za5yk~l|b2`s!+Sq4?z!hp9qG(tg!LIC>0z1Oe8}OKXpAgxa2!=nBA@p2apW4h4^QU zn357Wll~ETIqSjA2-G%QZJPHz=mQkL<6ndDVr*T_-LLuP8BgRF*yc<8@U|O%3pu#5 zph2puH-Ey^e?a)UNYK7GjWkzX^++Jm_Wz^%??V1%cs72}!M%S+wCy)|qYMEH1&{z6 zXPbeiX>sAMSp@xx`~fz(Y(L}H;p}|v>lY)e99_NMo6Hbk;(AfTWh(#*5=T23d|0}n zR&nFFHbUBDZelkV;$w70{dhS8J?7$4GkSELbF3_`zS^0n>aNlO-{kZT99G*Bb++~$ z4jXyXh`miL_vyVOqokg8-E+68+YYpp$IvO?4hG#NE7Gn~93VV1i5m#3YuV(iZ8tuK zXrrXFD{4o)I%UVE^FzNZospMDq*!UyN4go_Ooe}2m||#+ww(d`=;j) zo6xxN2m-{x#-s2XPWhi6`OX)cR~Za1Sdv*^tHCuro|2g&l=DYdJn)>1($K^7qAI?| zRN*T#a=6gXYD)8MY2X5YDi09B2(-+W`ne*5WLflM@OQc8x{pSu#%wHZNaN2>eB)9IbngFW0e)#y zY%G&sm$$u+v&?|*h4Vfy5DIK7K2e~r>Sst1`w`c04tF~99cR`3!I=Woh`&NQZD_~8 z-TlGf*uDI7rO|?ht5gwM6=<5um5IUX|Uh4h$-292*YI65+eEI!Hs!ykw6_B-!+Zj$7j7D_M zXVsem2-xjp<-1VS$cxLmVuMvYux(1#>H2AdWUIe=q0&sY&O62Mlqa9-Kq9{R zA6>WO*k6Lcf8RK-huEiRWH3lsid?{u+VkKW)KYxb>`#z(tf~z+V=dRpfllLwG-uqid%WcH&BY>u=I;@E}x4IJo191CF zd)P4<0ib%vH26?D$+C!PMe=wqrx!MIr0-0PC@T47NQUqQ|El7s4IYp=a&7=XWD8&AJn^4@5QrXBSY0Dh^sL8>p#Kcv=-%6zSX zz81;BPlZ?wh7XiYt?|S1Msn@gF6q|Rxg5{qx)hpTgUpiOLRpxrzohg918nNXKi>om zkoIF6$b_S>61blgG9YwBaYh58ANYa>&7z*z{}B;O?SRzslqLJj4==Pa;1q4y#TVMZ z__5z)oA1F=#x`CG*4IfurkfnVs#RsQB`o$es4TTL_USvdtt9eRO^$Pn7ua>a zsn2KCHgFd$*z^`67cTLNZR?(@pzxis$Ob(e=UZW7E+sj zs!ag*{@sw0#ufADGKQ`j`)l`eDD&`9>(1VL8Spi;6#R)dr~uNb0(vj%<4>JuhYF2? zB8rwyoE+244lo@y+P-sSZLE1YQm0N*XpQlj2rDn!sz4X8I|by1p1(quihjx0Z(VYgJEn`PM4&+M&NLI#P`Ai<(j z1`9RVFuPxYgnRxLgLr34&CQ!ad@%6xI`(km7t$snuG@XnfLP1Uz0PW9aG>AC0vOJ( z(MTve5`J`<%`ZVYYm$*#LRX;)(YpkLN|Ew?ES#_Fg0rtJ|T^o2N83N=l>#) zG$Ll~?o3~KJ07tmjEx<(U-qYV5PDyk>r=7SKJj+Q;!pJUD|*H16_h(QgAuil?jN!KcbvGe3|f(ITgex`R3bzIoKrt)r0Or=&+{f zGbNUDj(EvH&)<{MvTB1r#hb?iT92yRVyPf4UW&4hs8h272FfAHX6V{<;*AY=A48rQ zuD!N?_832b&U&va>tc^%m-p;9^dvL;y-wrA7FO^sB)&ywIbPsp86`-N&#Gt90BgfABJ*= z3f!=eedC)mbE?~xQ1aWoB*XgYHQ!$=9Y>dM`CmYaMt*r}q2vXU1f32K#}RMzNqy-X zrg%|f&a3>?4APfe@w^8?HtPj9?X@&!v@`PVOlXgsUc(Uz$MDi?H+sSBwGw`5H%yFO zka)?h%||)!iWZ9UsXGG(5lbaKlmfZYW@RPK-!To&x_sK6Bi{(Bw7Ss}SIF}lS^Xza zi|9Msi3t#o1a~!}@|k%l8ejB%la`;6yeuXNGI}I$QRJ2~ULnv7u) zqb27bevt0OTP)*AQ5C=iS6iyi21I#{xXjyR!`BF%Q~X~YHokt|@>CA4BghlJGwb}R zd~>t+gRbhIatP`Ej(svN&MLo_fUl0OxVXkDca~jomw=ztiH!QvFenDg6|s4WC}?J_bST0i zyJ7#MKv5eO*Y#)cM6t{U0v>wsTcmamO}K?vq-XO@{G4^I}l* z1@QXpNx90a2%<`$A%piCLqH|gPwd;nIk)FeFHhql*OYN+=l!P@X`wm~g-y@FYm1=2T~JTn?16Q9{zmH2hlrhDz{)3+7zqy09M{ybir znGhF}%8bD$3Of}8fns!G-#DK3fxP57yOPp+T01tpHJ=M49C4w0V3$VqOp=|~0wx{>~Mk|(#OI8;kZyFXL(2li+J-US(3W0j3DinNo zSvG8J!)!#8a_x38ejokge5mebGEwYNZO68{mEX0>&A|8_r`Y&Sv8F?UQrw@S%~VFB z6jg=iawGkqc}Km}CpB0Hf2s%_)6S(K{DCeg`IW+Cv-fgNDjd!jyAkuEuH-ELY^j#ntEqK86Lq^#RCbgSdt&mlVJ~rvr zvxw2^i9g?leTZ07=#l0gkfZ~-W1gW99LY6JDtvwgAkbg1-|@Pn%#V!2|BHbSpqcJ} zmMI8#i5Uwnd=A_xfA#Wym|#VthN<>xWWo!IFT)GpvLl-bD?Sfhc&QiUD{ATg_jND* zznzG7&^YRU6oIE>{4$RpEY3NmzG;m9%rXddCL};^J}svJBjk6eI3!6Ba#Y(zR6N*z zE-k{k_84T;9Dr-#!6flk zQG;VhhyO{#jr3aeVKedYr^6GQ5K-YUzd)3}i$%tmlXhE)`hua^5yEKl!N)9ckLLsd zu$ASPqC&w?lKetOl1e56c_+VKToqz=$e{dhFDq_oOLZiGlq;5syh8;LMt1&J{3?L} zm?1fflO&1JQUNJ-TxU;D4B1Mka~M)kpeuuRRY_2Yl zH#vg-FGLr+=m4F9kQ?C40MZINOg}A+bmQH?2-0Z8+cK*In14*vF1I9DDf3#08-zTL zN&%X}KvVhdCFlsL(kMSg%WTHPOk;^h15CkES?bySFn!wi*NuJDWUjr(QRnRabiSJL z9uxq`@0kM<`lV5Sa!{iye-@vIER%)o!e36r^%wXX?q~hC_ZneU#5lA2i~3^#o2H=) z8Jxf5n4hGh`!a1G7#fHnHVx;L3uOqDFdqN`CS7)F02%!(0N{1J9kn|N+ls>cGa#VA z0xRJj0svq!JhAV>)S>TZeqjKBKHL$me_-vnErMp6Ma&z|VdS$6G3ffW5loMc-Ffiu zYp;YH8#0pNRS#%?@OH+6e1yOLQG7B`Q?#FV0rg(`mw6|!8A%AT4uc&zP`O?AI~uhi z04wSQ><%{p1abyEi=7DVb=;p}4>?~R8fac=n?^(7> zZ%m?i&bjgN#fxi~^M#Vo8MwsgI+D2G@|auS>*+U;;L8V0CBw6f(JyI)&5x2Kd8(%h zO7Me3Sl{Q&2x86B6oV~3@w@y3K=bdnCz7cPnB!)>S5nJpHI%W2eLUz|Qb5o_nl+5} zm2{*PNwocLnT#{mPEZpVSHG3<@~1lOV*TU%)ozB)*`GPdl?l*%mwDR6?Dk3h09gT+ zW%=V<*=abD=1*lazeH{3fFU*gK0ZF-TS-6wJ)jZd{q?V;%TVCqyJp0-^Z4;_P}ALw zOVH7UWNaW}`#4QX{T4ijor0k7ybsowQ|RCF>i~$kk&&k&K0b)1XKHw^y#C;AU{}K& zG(d~PXOm_oiSsZ96xlzD8?Cb+Ml82vmN_#0IC}PY?*nTD$=~l-hfYTEDvP*0SwuM* zM}XBnIir*)eFW(=f%e~HNb^XTH1uxv7fq2(={pY$Y_qh{33=c!sqOdP!pfz^C78_* zmH?w@zmS)HgcZNM6e3dA^<6Oi?wgp~du$elW5OpR2q3k79$ecAa$c205i46zYhwaK zE1|Q40MdsY`bS&zoImm=PJ7tQ$nzs8i>+YJ7?${=^wn~hvsb3yM*~Ph{q7i;7IDeh!qQ#%I_@OODNLK6|S-3tUxMpZHj@E`f*|W5MogGY7CJpmFTD- zC*&(AD<9tfe*6tI(!IFK{EtdgZKkgNiKe^y-L*K{3>nIUEKhucJ6wAPi#T7A!(W$x zp2o7$r2@v<+r+lTV6Hv!GkInW9(oT*t7@$##yy;7UrEzQ>6$Whw)dw3%=9(s z_S;m%!%{{A7?kmA9JpD1!1?}QZ=5|3uQePl>BwubAyP<>`|0)9k^XBv(Yc7{?(4D| zXwh`A)c0NM459avzZF{Mql}RgiQe_a3e2C{<=Vl=yL0MNH1-r@>GTN%tjL(mf-_gD zwJuo~cEpR>ua2l|dSfK&nWbkvVYV<)6SC8{A(?xokMq=wq8X$T3ie)Ajzd9VMMcE$ z4U5k}fRBCfuLtHE_lADSp?N5^IM~akCSX`cmzp3;EL=U9vGK7hsp!oO=aj~n4y+ik z;r*q4m$BN0gdPcHtO96+v3qI12)VqB(Z}R_-f>t&2iL6flCZmVN&>8*F6D{rzQlTf zsUy-5D=1V#;5{gjiWCLC|9$@Tc6S{Qshanh+Xp;3I(yG}bj08pKgvuE-Z_jUIr>++ z4vTKvfb9$5yL7dJYB+%a=T*u4sccoh6C^~!^H^p?y0&A)Pa?|I&0~7roamYxloz1M zK9A9KVEjHI{!-bdmJ$GxUJnK>h#`Z7K;6DnW@|TpR1J*Xjz)YwvP+%Mlz;nXg#xc5 zTjZaqhY^2k6dGm++7!ghsWn++_lYh&)3E;o|7V3d)MFc0BW^1OSE~ULB3cpF`Xmj2{80sC(BO z@6S!8Gh!}e`lKeTERs|l&hswHH$+Fevy0gYF#kY?GX)O-F5kI9Ux#^NZ8WEDroaFA zdG7goRz$+1$>g_jGama^X)hEB^%Q8e4@tnLh@jOUcIxyrbJc(hT|Zfa5M8XHCUBME zXNjhq5D4fTv<4G6*e)bym+eTI{RSd@*)sox zD;2=}NuK%B9fxI;-t#^96XrjIxpxnc(i1rd;O)uuy^A?|o_EZ;bRQ7?!P=Y8hels` z_#Q6A(f1IgcyO0xw0RL^%yb8neH_qP2w?nf@1kqS6$HfT?uPNlY3%iZ^ihv&!GTSu z=QQOUlU;5Y6z}pFX{7X)hlDd_@N_v95Z~WkbCm-r5rEOa=rsl~ggln|V8CSlgJ^Ew z#!(OeS(EqHl?rs@Dcmvjj0{T}7rZ-VB6@>Sd6yJx&QmsUxp5o*Q5(DFmnZfqY1qO>KpWB&OU^~jH}t~gMN$AoL4_?VuN_Z zt~mv_A!}6CcN3fcSXy*jZsk;{lq*Y65)rNG#re>$v0-WtrSh zW4Z4_M;V|jtUuhDYo8rd9TJNztVN_q+Rsa4PMY)KDycyH`_h?+ZhzFJ2PCRcNg&5I z(h!D3QF;%{8wc#fgofyhO3*^r`FknzLuc%I|7kAX7Xil%rinc8C`kj>xY}Oz8cLxT zc@A5X-V1O3QWhpBLnBreudJ@~`flqx>)~O9JbZZ%3(x$cSXJ|U9%|w3+bIRBPvG+~ zQy#n?3XmQ_Tt0*Xg=O#zSB9>jf_t4A;X@c~#R*@8zU!f@*5(CXuWK}~c z`i>z2{-e5zl-eFWKOCLRCCjbNo4=4#09u8svKPdOhnDhQ7Gvn$F@4}eVBA7oJKWT&Ou%Q$e+j=k^H0#F0DxWXIUHn0> z9E+bOlRf~z5X}FP)2AV^5fO?oe=Xw!(V4i5GBL`Z&dEb}!t;~N~x#>5i^)Qg%JKl_lhkis$4RAvDXe)X9<~13;Dh1Nz+t6!< z-wlz;>!AQZ)2YB;U0J=W!I=b>9yH~vx)tiG4g|vqbS(3y9}KL(6CefFS4pjz7Rs-8 z<2%ZkH^Ws4k>~UHZMzl({Y9y2O*VjHoDxodb&>m68pYL2nN3J$pO9HGWryA{&4v2F5}YWg9t41hohfRbhY zK@#9c*$mD)D~cTjkX(%uQlF2rYC&a*hX+@KDN9X*ZRFD=UzVqce3n` zF4or)L=!gCn z^_uX+MrkhfJF>ETp`^3M@DVe#kGq4BKAHCpK)}3!fQo1L`KUR?ss>UDLv1~X`^#YZ zx~bA&f-RPX`9n_NQ*EHLs_X+g7l#P zPnjXpQPPyxQ`TGZsyc%$edgDH>lYFLXqECJ4}D+@0@UvguI3X*yUn>pG!|-$c&@vR z(K3mWfQc|qN&$G(G2Y|I|Ctwj6o^#w2FNLZxksU3_1Mt8_=5xA$0s;EUfa@D0rldSWvCN-kLnqHs zG@m(p?uT4vz0WsLrZ02z7>@qAibD({6>bkE>dUR3@4@%iTiul#uMi;+P-z9jVuon} zahL|krkJ9!@_Y6@4t-Alt_6T`jk>H;FMN*!%roz9e7@F_-~b@H23?M_>??w4P0xTW z)92~{OMFMt1$l4HUKzfP%X1CS*cnd=H@`-VOdmbpXhPYHn1FR~7RKI8qmK}L^Uh`^zQ zLJ_Vff--Cv2S4?}xkvz(VK{{fhDijeH-S03*u!JvCm~H{7XX({7*m05dhFFaaW#(C zL3QkaxAUey^?z!?jTU#k$$gZm*9jFT#bzY6Q&>o7wn*-DG0zNBvr3zt#O=bkOSc~? zjTIqr^_DhB?fg}#@BeG>YIfr&g77%Ps~t98?_z#pB?KWQH!eX)NL-M(@EY)B004W zdcq?6DTTf$0$_>Gr%(5v0|*o2_G|k1Jl;3>%a|Detd)L(qPwWRKU8tSa-mT3GG^KP z66afJkbNH{FD*@H*sNpArJY>uX_0n{ItK63;6-3YS&?ks#|5ODkQRoN3zY-LJW%zhyhVw1Ze2(7};t~~-#0bW^tzhU7 zLNXqpT){H%r$Wo;PJt6G;_J9N8U|}bgnY!ZPhX-Z$p9p z*bDsbG<`o;>GO1N7uB)?a1~myjxd;)@(&}zpI4djvm%9aA9*7DcX34P??!;Lo`t^{ zy&eMD*50-zDqB0=zYlA{0M(2tomHIEPJx-1nlsnI@0tPUwrVdwM|8Cr$iuMcyjn z_!|R2A^cZ2aB3i~)4>BoB<~l+0hR+Fj*5=40Gz4+#|q)c(ZpQkG4bKY^)D#6A6&g( ze@Uvh?S@;UOyQ?5gG;!{_)ot7!C3*++_lN*E)_TNA(t?ZcC_#(R%M_dO<`iL*}~cH zR|U@g6R2D3l46DGXjObvjBKSvDiKkFC3P&i124UnIgGXPN-fc zh?d1H<+&7=-$3X;4XC#DBI6M{^U6HQU-YgB3u=)t2#8 z_}^tBC_yWt7{zB{GuoGdX)u!tz()8L&x-MT-ZIeH*>+7_)cWI(Vso3a>+G$>2?wM3 zW?vVhf$v|s>B_z-A*1|bQk?DXNO4gd3ttOaG=Yns6j^21I87Q%tq%YuaSbzzpH*JI$&e%jtGL*MeWWX0KPYN3^*hNY8p90xAo+yFQh zT*JU9XvJ~b-@BWBg~Q3to@Ox7`fd+1aUuXA^NcNf_5{dKi*&@ z_)iE&`^5AgOMO8pM~#Jg#^PpL*Khq9)G>doK7bKT|H1b;!x;r`ojI1EDE}@Swuv#4 znYRhw_+oM@Q=s7#V9dbDDt6Of>leLs{MOcr@{tL8Gd}fY56Q+L?9p1G!Ax*A-iZR# zRlDYREW6i_x-e}O2%})s6pjl!iJ7(MoBniAYit!$rP&w8Hjg!P>QV}b@V~S|DEJHu z(q1B)K?) z`v}bN`x#64;!0MmF~TyvH-Rm+E~pVUb4b9x5p!?*lT)mukFVZJeN3C!ib%@LHP5CE zLGo>;K&Ak=+p8n@BQ1V>vAg?6tk2eX*Z5 z9DcGNHew(A;0QlB{NivZ!V%Vs9DA`Nw02msR_nE>%g7^*H6}G9dbs5D42I3d00e=q zBG5%tSD^rZ-=F!N^Pj9!0Gi~CR-yg73z;WxCr@7fTmG4O;kW*qfAb{N!O3x5=$T>1 zC~f9KOh*3?3&vBb*Lcboj`KQRn5mR7t~}x4q?w0Qp2ru;8Z;W?&~VR8I6j%Hq|YB( zv(=En(V!C0Ol`|Rwm~Dr8jg>n+n6ceA2W_B`9JLk_4QMi%Xa1%%i24yeO~TFe`E<} zv+_i~ z*;~6G4nlA5Fm(HaFiKN;jI_o3UESzCP8FXCr_cZ6P;KuShd&w)*JQ;%)#I2I&7jeU zZKAlw2{0MjDu+D0QLS#C{73Md8umC=WU|KfRX9!^QumEMN8VI<`AY$* z(Ks{{eVI#P8M#SS$tQ%bq4#Uh`!M*Qwvt))%A+P)CGeC7BZ}x7xlDR$8QCBoyKisQ zA&Z)K=bhw}3^7oeGtLHxl49AjSPL_%eW=oj^3#2E}#MPMPbg6TMuCUK>l^b#Mh z_tMq7XTe?BPMZvR z69>8w`zeE7$)DEM#Cqy{s0+DO4p@>&l_U4O<>k}Tm;p)bGkI)$pW34!@faX8iQpTz zkI7WW1ngll6NXR5VS6hQe?I3D^~#kNg9}($jEn#|VSb+oevtqk5r2lM4SwXDvmYNC zGrp4EuW^?#0-hOT^7Aree_ogXw$G;}rKvkc7*lhJ0C>OR|E#(dyr=Q@L;9FP`p?Rj z^snG!F#<#_L?8~ukofoa2ce6fN&X36Xg;e9xg@}K1Y7avamSFt37#O;jV}@Vyi9w4 zYTFrb5p@KR;hzYmaUf?EI<3-Y<(r64^-pa@4Nner-_10}^klejGB?t3EC|loTy=e~ zzVl2#BT;-Z0!?tmB?EBQq!2=vn|+AYH^q^N<&vSkhaV?mqz@G_Q<}5fx{s|3JF6VV z*L6T`zGF-dsPClBE5=itGetRkJa$aL2pQ(E6wn_Frik{Q0|^ zQUM@h;TcNy)f8UZ_c4(;l%prl=hOQ3&;3lNyy`cf_gsFB878h9H!1{U@U;Fgh9F}S zl+~6KiU&%2QT02GX~^5hWi_wj?VSjzD@SRVLFwpMS|88w9P0AqY5cQKuW%CS9EPb8 zb8V8+DPGUH>*KvYPZ!G{hamAZS$OUo74viC9LXz5r24M} zW)C9%bV>X@c;d`(;-T~4J~AI%lFXS9M*;k63jcY^E)qM>G$NRXKQ%)@rb%O743vBC z55>!6T)m6^JAM7`e{OTBj)Qv@ZOn9>Q=Nb==ojj~k##18jI-;raPK#q2AMgFjpQll{PwV}P zuXCrR8)V~aP^AZTMHOKjRoQ3?r?Z&8&DtjX}vt zJjSpI;4=Iek%ySd1E8NFsK7CZ&@kBxjNBxZ)XuW&h|jQSFBD{`EaEe!Cx9oYfY#1kG}rtqfblX1djWm(aq#7_1*_#%^42`~+%?g)rBQ$* z$XsLcE7KUWRCxS{*gYqERCYS(C^N#0$frBRa}RzExeK*HULJOU3E(h0F&o0 zw9=|GASd{hw@-Nxq40#?C#?-IG{tpjuWks~nwL#X~YclXTCKL=m{Ry#{!0j`Iw56UHifm9Gku(sR^ePD=o zt2$|Nr0dJ7rt~rA^ZUN?e&5IPpQl96EGoUi>KK93;*|fqF3a-oP}$6{@VYR@E3aIJ z5%Tmt-p4Vm-a&s3{Y2;+XJM?A@xfMP{4@nrUf$oiL{ZF{lp(Lve8zFMGPS~76@%DZ z(Yxt3QU5%RkN=VRO>+Af2;r;>o`IK0{5^PNukdl!DLttByU-H$pd}>nA3+UMNBota zZchBkP#8?pn8nzMze5lS4|$6TGZmVlY`}RVWtKBkJyM~~lzxbU&F^1_uzby*f{cj2 zuh%p`%k`l5`LL(;mxTZHocva)-PJx>bqWTFxKnsie!9Ln__l0l6cx}iT@f(Flb2_s zk(EmQP)=VzkUimL!I_lLAgcP#%M5rz!Mub*_2J*k2>$j@B1R+bdN8``!&c<&s`sT8u84DsY(z5tE~B^NUDMJ zeEGA=sSD4;^ek6-6!9rdASh|K8z@a%Tol_nb2-WcbKXwCP3q}PD91G zy6{-ir~J3TX;nl~eX4)wL>szfe*Hf#XqD2xOJ-izwP6g3LFwNU|2(~aE(j|sEMnhC z>+5><=|`9lbDRJfOr#~jb(1F>Ud4FLiZMb(qLfRmRrZGrL79{OJid%AeZ{wyLFe}Q z_c2pW5c7i0ia(98kWrCFNQ66YKmWac9MMnakVc+48mmm-02lJKb!!26%&eOW*I*Hyz zSG?K*BP3OcOb^ykHSaxy&W_Ug2t=HOeEG@Lcc49D? zW^HXgv~3xnF2`h;`kw=XehrYxlriKyeI%~8t_%(GkIM*5Bc65dVwl5S6G<2+f;$oU zrxYL}AOyf_h=@`PaIhbHZ1+)gx3{WF#BTNRY?Xhuq>!%x=i5-{OJ37jXzWz@yWMeE zx*QvB{~*?{voaq8(%+_IAjAYPN^>kH_zGv5JdRHUg#YR!~SEe>%%3CvKiC|2eZA~wK)FC@T*DuefOPn zSO{!_GtoNO{y2(Q?RFE=LI^96yhbRbcNo8gFV)}L8y`RLkS zeay&-ftJ##pC{t84r00rv*6moUhdLc+OkIGWA&B4ENNp`l& zMgGm5QP_Dj7y9VieiHS^qjEiz>BlF21VdxQz^8%i{iAHnwtpBqpa}xQF}N`*m!tTa zol8;Yuy{GHRg5ph`p;jBj6f?f2xGj5zq4!veAVl4MrB!$i8YXY#%X@wuzWa8ORDjj z$NRBvaSqq;S@>a$IZK1B@o^~wN{d)28y(gFmTF+o_OT<|9rNNJ7;PgrV6sHNxPWdhUVy-T~g*!guNmx!mKwjq{N2o3z7H zZK`hFe9f0$C)&SS#HmlYpi);>p60Xy>+<{bu`Q|t)Jym?&>l~iJ-fbw?g;-dznmdo zph03XaOS&)7b1dfVV4?l{p2|?u|`ELB;_&~{WmMZZ_n=K@i}7K+_IO`NC!wf%~Al% z6llCTe6FZ-xo#X*(zDS#W2j=S@;sh9Mp7%+dLdYqBj3n5G@;!i)vjSlnS^LfFn&C|hR zlJ<$jb0G1jBudvCmHBjqP~#;8pWtKowcH~?gY(32PIbskE!nD)_pR^%Tms9?=WdKS z`>)64Of6jQ!@d9P5@UUo?p*jliO+CJ`U^;XZqJVR7xC~6z{rsa;F95-C-OcK{J#Ad zRcHW|PQ;#?0QnVX+JV$T;-$UDKfp@6(*+@1=Efrt2pS z(!+<5$ZvfRC1^4Me^!7RFTrpS{SUDWcJo>*%sEDuX>tvKP9{_S&SDcwT6&t|a=xAh zp7=8zpFagAKx6r|SDzL~d}vZ#&3Nl$>9GGe?fdWI#6L*?0!jbHb5b*y>OLcwp7=9; zz6LJhtg_B>7c&FnT*9Q?f(XAa%kvf9@6)I*KHj%6afap?T~GLZIdy)YzAm0&{$113 zoE5G*O-)A|F=s$dsb6r+@S3q)A^u8y4wpeDGN zAWj78N)>6$+Xaa3iINNIJf__dRQTev-BMy!q2ULw5t*EC)YfW78CLBLRa6z zy1a=0v`Xc~pM<}a_E)towIS`dLKn=zpoV)GVIY8`mPkI~+!rOaKiD+0P^t zM6|WILF0+z*!-H%S*wW&$eDvI*_q=>@5}Ppqak-c1Ik2HW#f#_GTLbbjtm4~H*K-ZO0pF7y})0W6}4n4UwOteC9<`!T0&{&7ifCTR0;lX}5kX08VuCJ69{!I7c=hnmCRyQ2Z&WG0J`Or%ny$=te1)zlv z)?|5@kYIQc>rYOcdv?2!8kQF4uoi^FhK4g?0X=H#e`#%Zj)>7gE+K0zP)X+8yA*b+ z>$qD>M|D-|18WhFpir0CO0Gm7?}7`j>aTQk@hc{n;t?$5Smb4xe=vX9mN9BFh0l`j zOU}o0E&DS(0`(QkvWZ$Yg;IEwE-GhqOZA!$6+BL;r z@ajf{i5V`kyY{xQY`oa2Sdkd>A=@|JKdf%4?e`(IV6WEBqr)(V@!t6EVOU;{b7*C0 z&J0{{x#fdarX8qaBM<-~1XqW`%Ww74M-fqa{OBN}tjw3JtxWx%B)YiH9Zwy|=Tuqx zFskHPhqSa(tO0W^A7fzf1R5YLLC!<+))-NK8{cGLkbMUI*F2PH;C6awK!fN@utlW7GCKu6i2(0kt?&n8>u>;$xsco zEKX)3Pp>o_8v+qjAEt6Ge;OkeW>SAS%3Lv4T*B@udSbb2!k!`qoV3-@37*FyG() zWr|l=_FPBwmGn=`eXt$J#DfPg27R2yOCi~pjYFjCm&aINKY4!?^%t`HVZH0s#qr5(EhG5x-3w{y zhQwbCfE7)lB!SL^kjr3wC$}Z@jFKGm?F?tRjoHZTE#iIquzfmCYZhW4+Sx|_oWQGm zG6noe#ZIGD!gzLM3;>NOJtLrebU6p4S>Usndizp*g1(7y0;SP>m8*EUB>K!RhCtz` zxl2&b9HJf0YnbWFqLC&IGtUdv*~wfrgs)Eb*4rP3E+%SYZXCQJnt$=?ReVS?8um